@charset "UTF-8";

/*
------------------------------------------------------------------------------------------------------------
共通部分CSS
------------------------------------------------------------------------------------------------------------
*/
body {
	background: #fff; /*全体の背景色*/
	color: #4d4d4d; /*全体の文字色*/
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN","Hiragino Sans",  "Arial", "Yu Gothic", "Meiryo", "sans-serif"; /*全体のフォント設定*/
}

img {
	width: 100%; /*横幅設定*/
}

.fv-container{
	position: relative;
}

@media screen and (max-width:1920px) {

.pc-fv-img {
	margin: 0; /* 余白を削除 */
  padding: 0; /* パディングを削除 */
  overflow: hidden; /* スクロールを隠す */
  display: flex; /* フレックスボックスで配置 */
  justify-content: center; /* 水平方向中央揃え */
  align-items: start; /* 垂直方向中央揃え */
  height: 700px; /* 画面全体の高さ */
}

.pc-fv-img img {
	position: absolute; /* 絶対位置で配置 */
  top: 0%; /* 縦方向の中央揃え */
  left: 50%; /* 横方向の中央揃え */
  transform: translate(-50%, 0%); /* 画像の中心点を基準に位置調整 */
  width: 100%; /* フルワイド */
  height: auto; /* アスペクト比を維持 */
  min-height: 700px; /* 画面の高さを最低限満たす */
  object-fit: cover; /* 画面サイズに合わせて画像を切り取り */
}

}

.fv-cta img {
	position: absolute;
	top: 75%;
	left: 35%;
	width:400px;
	transform: translate(-50%, -50%); /* 画像の中心点を基準に位置調整 */
}



.sp-none {
	display: block !important; /*PC画面で表示*/
}
.sp_none {
	display: block !important; /*PC画面で表示*/
}
.pc-none {
	display: none !important; /*PC画面で非表示*/
}
.pc_none {
	display: none !important; /*PC画面で非表示*/
}
@media screen and (max-width: 768px) {
.sp-none {
	display: none !important; /*SP画面で非表示*/
}
.sp_none {
	display: none !important; /*SP画面で非表示*/
}
.pc-none {
	display: block !important; /*SP画面で表示*/
}
.pc_none {
	display: block !important; /*SP画面で表示*/
}
}

.serif {
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝","Noto Serif JP", serif;
}

.g-navi-container{
	height:40px;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	background-color: #003c8b;
	flex-wrap: wrap;
}
.navbar a {
	color: #fff;
	text-decoration: none;
	padding: 0 35px;
	font-size: 18px;
}
.navbar a:hover {
	text-decoration: underline;
}
.divider {
	width: 1px;
	height: 40px;
	background-color: #fff;
}

@media (max-width: 960px) {
	.navbar {
			height: auto;
			justify-content: space-evenly;
	}
	.navbar a {
			padding: 10px 10px;
			font-size:12px;
	}
	.divider {
			display: none;
	}
	.navbar a:nth-child(-n+6) {
			order: 1;
	}
	.navbar a:nth-child(n+7) {
			order: 2;
	}
}

.img-container {
	width:1080px;
	margin:0 auto;
}

.security {
	padding-top:90px;
	padding-bottom:150px;
	width:100%;
	background-image:url(../images/security_back.png);
	background-size:cover;
	background-position:bottom;
}

.utm {
	padding-top: 0px;
	padding-bottom: 80px;
} 

.case, .nozoe {
	padding: 80px 0;
}

.support, .process, .faq {
	background-color:#edf3fb;
	padding: 80px 0;
}

.cta-area {
	text-align:center;
	padding-top:60px;
	padding-bottom:60px;
	background-image: url(../images/cta_back.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

.cta-area p{
	color:#fff;
}

.cta-btn02 a{
	margin:20px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 400px;
	height: 80px;
	color: #333;
	font-size: 28px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
	border-radius: 40px;
	background-color: #fcff19;
	border: 1px solid #fcff19;
}

.cta-btn02 a:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 50px;
	transform: rotate(45deg) translateY(-50%);
	width: 6px;
	height: 6px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #333;
}

.form-container {
	background: #dde8f8;
	padding: 80px 20px 50px;
}

.form-container h2 {
	text-align: center;
	font-size:48px;
	color: #1f52a6;
	margin-bottom: 20px;
}

.form-text p{
	text-align: center;
	font-size: 18px;
	color: #1f52a6;
}

.form-group {
	margin: 40px auto;
	padding: 70px 100px 100px;
	background-color: #fff;
	width: 1080px;
}

.form-area{
	display:flex;
	padding-top: 30px;
	padding-bottom: 30px;
	border-bottom: solid 1px #9e9e9e;
}

.form-area-last{
	display:flex;
	padding-top: 30px;
	padding-bottom: 30px;
}

.form-area label,.form-area-last label {
	margin-right: 100px;
	width:25%;
}

.form-group label {
	display: flex;
	font-weight: bold;
}

.form-area input	{
	border-bottom:none;
}

.form-area select {
	padding:10px;
}

.form-group label span.haveto{
	background: #1f52a6;
	color: #fff;
	font-size: 12px;
	padding: 6px 10px;
	border-radius: 3px;
	margin-right: 15px;
	height: 30px;
}

.form-group label span.any{
	background: #9e9e9e;
	color: #fff;
	font-size: 12px;
	padding: 6px 10px;
	border-radius: 3px;
	margin-right: 15px;
	height: 30px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
}

.form-group textarea {
	resize: vertical;
	width: 560px;
	height: 200px;
}

.form-button {
	text-align:center;
}

.form-button input{
	background: #fcff19;
	color: #292929;
	border: none;
	padding: 10px 20px;
	font-size: 28px;
	font-weight: 700;
	cursor: pointer;
	border-radius: 10px;
	margin: 30px auto 20px;
	width: 320px;
	height: 80px;
	transition: 0.3s;
	position:relative;
}

.form-button input:hover {
	background: #1f52a6;
	color:#fff;
}

.formmailer{
	text-align:center;
}

.formmailer a{

	text-decoration:none!important;
	color:#292929;
}

.footer-container {
	background-color:#327cdb;
	padding-top: 40px;
	padding-bottom:40px;
	text-align: center;
}

.footer-container.law {
	background-color:#fff;
}

.footer-text a {
	text-decoration: none;
	font-size:14px;
	color: #fff;
	padding-right: 30px;
	padding-left: 30px;
	border-right: 1px solid #fff;
}

.law .footer-text a {
	text-decoration: none;
	font-size:14px;
	color: #292929;
	padding-right: 30px;
	padding-left: 30px;
	border-right: 1px solid #292929;
}

.footer-text a:first-child {
	padding-left: 0px;
}

.footer-text a:last-child {
	border-right: none;
	padding-right: 0px;
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #1f52a6;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #1f52a6;
  border-right: 3px solid #1f52a6;
  transform: translateY(20%) rotate(-45deg);
}

	.privacy-policy-container {
		width: 1080px;
		text-align:left;
		margin: 50px auto;
	}

	.privacy-policy-container h1 {
		font-size: 32px;
		margin-bottom: 20px;
	}
	.policy-title p {
		margin-bottom: 40px;
	}

	.privacy-policy-container h2 {
		margin-top: 32px;
		margin-bottom: 16px;
		padding-left: 12px;
		border-left: 5px solid #327cdb;
	}

	.privacy-policy-container ol, .privacy-policy-container ul{
		margin-left: 30px;
	}

	.list-wrap {
    /* list-style:  none;          デフォルトのアイコンを消す */
    margin:  0;                 /* デフォルト指定上書き */
    padding: 0;                 /* デフォルト指定上書き */
    /* counter-reset: li_count;    カウンタをセット */
}

.list {
    padding:  5px;             /* 余白指定 */
    margin-bottom: 5px;         /* 要素と要素の間指定 */
    font-size:  16px;           /* 文字サイズ指定 */
}

/* .list_test:before  {
  counter-increment: li_count;  カウンタの値を計算していく
  content: counter(li_count)"."; 数字出力
  color: #327cdb;               文字色指定
	font-weight: bold;
  margin-right: 5px;            余白指定
} */

	li::marker {
		color:#0056b3;
		font-size: 1.2rem;
		font-weight: bold;
	}

	.right-text{
		text-align:right;
	}

.comaercial-law {
	margin: 0 auto;
}

	.commercial-law-container {
		width:50%;
		margin: 50px auto;
	}

	.commercial-law-container h1 {
		padding-bottom: 30px;
	}

	.commercial-law-container th, .commercial-law-container td{
		padding: 10px;
	}


/*
------------------------------------------------------------------------------------------------------------
body CSS
------------------------------------------------------------------------------------------------------------
*/

img {
	text-align:center;
	vertical-align:top;
}

.episode-img {
	width:100%;
	height:100%;
	padding-bottom:0px;
	margin-bottom:0px;
}


/*
------------------------------------------------------------------------------------------------------------
リンク（全般）設定のCSS
------------------------------------------------------------------------------------------------------------
*/
a:hover {
	opacity: .8;
}

/*
------------------------------------------------------------------------------------------------------------
コンテナー（HPを囲むブロック）のCSS
------------------------------------------------------------------------------------------------------------
*/
#container {
	width: 1000px;/*コンテナー幅*/
	background-color:#fff; /*背景色設定*/
	margin: 0 auto; /*外側の余白設定*/
}

/*
===================================================================================================================================
スマホ版のCSS
===================================================================================================================================
*/
@media screen and (max-width:960px) {


/*
------------------------------------------------------------------------------------------------------------
コンテナー（HPを囲むブロック）のCSS
------------------------------------------------------------------------------------------------------------
*/
#container {
	width: 100%; /*横幅設定*/
}

.body-container {
	width: 100%;
}

.episode-img {
	width: 100%;
}

/*
------------------------------------------------------------------------------------------------------------
body CSS
------------------------------------------------------------------------------------------------------------
*/
.fv-cta img {
	position: absolute;
	top: 87%;
	left: 50%;
	width:60%;
	transform: translate(-50%, -50%); /* 画像の中心点を基準に位置調整 */
}

.img-container {
	width: 100%;
}

.security,.utm, .support, .process, .case, .faq, .nozoe {
	padding:0;
}

.security {
	padding-top:0px;
	padding-bottom:0px;
	width:100%;
	background-image:none;
}

.cta-btn02 a{
	width: 80%;
	height: 80px;
	font-size: 20px;
	font-weight: 700;
	border-radius: 40px;
	background-color: #fcff19;
	border: 1px solid #fcff19;
}

.form-container{
	padding-top: 60px;
	padding-bottom: 30px;
}

.form-container h2{
	font-size:30px;
}

.form-text p{
	font-size: 14px;
	padding-bottom:20px;
}

.form-group {
	margin: 20px auto;
	padding: 20px 20px 20px;
	background-color: #fff;
	width: 100%;
}

.form-group textarea {
	resize: vertical;
	width: 100%;
	height: 100px;
}

.form-group label span.haveto{
	margin-right: 10px;
	height: 30px;
}

.form-group label span.any{
	margin-right: 10px;
	height: 30px;
}

.form-area{
	display:block;
	padding-top: 30px;
	padding-bottom: 30px;
	border-bottom: solid 1px #9e9e9e;
}

.form-area-last{
	display:block;
	padding-top: 30px;
	padding-bottom: 0px;
}

.form-area label,.form-area-last label {
	margin-right: 100px;
	margin-bottom: 10px;
	width:100%;
}

.form-area-last textarea {
	height: 200px;
}

.form-group label {
	display: flex;
	font-weight: bold;
}

.form-button input{
	background: #fcff19;
	color: #292929;
	border: none;
	padding: 10px 20px;
	font-size: 24px;
	font-weight: 700;
	cursor: pointer;
	border-radius: 10px;
	margin: 30px auto 20px;
	width: 100%;
	height: 80px;
	transition: 0.3s;
	position:relative;
}

.commercial-law-container {
	width:90%;
	margin: 50px auto;
}

.commercial-law-container h1 {
	font-size: 18px;
}

#page-top {
	width: 50px;
	height: 50px;
	right: 10px;
	bottom: 10px;
	}

	/* Font Awesome */
#page-top::before {
	font-weight: 900;
	font-size: 25px;
	}

.privacy-policy-container {
	width:90%;
}

.privacy-policy-container h1 {
	font-size: 28px;
	margin-bottom: 20px;
}
.policy-title p {
	margin-bottom: 40px;
}

.privacy-policy-container h2 {
	margin-top: 28px;
	margin-bottom: 16px;
	padding-left: 12px;
	border-left: 5px solid #327cdb;
}

.footer-container {
	padding:30px 20px;
	text-align:center;
	vertical-align:middle;
}

.footer-text{
	width:100%;
	/* text-align:justify;
text-align-last:justify; */
}

.footer-text a {
	font-size:9px;
	color: #fff;
	padding-right: 15px;
	padding-left: 15px;
	border-right: 1px solid #fff;
}

}