@charset "UTF-8";

/* ==========================================================================
 * Responsive
 * ========================================================================== */

/*PCのみ表示(640px以下非表示)*/
@media screen and (max-width: 640px) {
	.visible-pc {
		display: none !important;
	}
}

/*SPのみ表示(641px以上非表示)*/
@media screen and (min-width: 641px) {
	.visible-sp {
		display: none !important;
	}
}

/*PCのみ非表示(640px以上非表示)*/
@media screen and (min-width: 640px) {
	.hidden-pc {
		display: none !important;
	}
}

/*SPのみ非表示(641px以下非表示)*/
@media screen and (max-width: 641px) {
	.hidden-sp {
		display: none !important;
	}
}

/* ==========================================================================
 * Reset / Base (from Base Template)
 * ========================================================================== */
*,
::before,
::after {
	background-repeat: no-repeat;
	box-sizing: border-box;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}
body {
	margin: 0;
  	font-family: "Noto Sans JP", sans-serif,"Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", Meiryo, Osaka;
  	font-size: 1.6rem;
  	font-weight: 500;
  	line-height: 1.6;
  	background-color: var(--color-white);
	color: var(--color-navy);
  	font-feature-settings: "palt";
}
article, 
aside, 
details, 
figcaption, 
figure,
footer,
header, 
hgroup, 
main, 
menu, 
nav, 
section, 
summary {
	display: block;
}
img {
	max-width: 100%;
  	height: auto;
  	border: 0;
  	vertical-align: bottom;
}
ul {
	margin: 0;
  	padding: 0;
  	list-style: none;
}
ol {
	margin: 0;
	padding: 0;
}
p { 
	margin: 0; 
}
p + p {
	margin-top: .5em; 
}
h1, 
h2,
h3, 
h4 { 
	margin: 0; 
}
a:link,
a:visited {
	color: var(--color-primary);
	text-decoration: none;
}
table {
	border-collapse: collapse; 
	border-spacing: 0; 
}
td, 
th { 
	padding: 0; 
}

/* ==========================================================================
 * Common Layout
 * ========================================================================== */
body {
    overflow-x: hidden;
}
#page-container {
	max-width: 2000px;
  	margin: 0 auto;
}
.inner-width {
	max-width: 920px;
	width: 100%;
	margin-right: auto;
	margin-left:  auto;
}
header .inner-width,
.fv .inner-width,
.results .inner-width {
	max-width: 1200px;
}

/* PC/SP 表示切り替え */
.sp-only { 
	display: none; 
}
.pc-only { 
	display: block; 
}

@media screen and (max-width: 640px) {
	img { 
		width: 100%; 
	}
	.sp-only { 
		display: block; 
	}
	.pc-only { 
		display: none; 
	}
	header .inner-width,
	.results .inner-width,
	.inner-width {
		width: 90%;
		margin: 0 auto;
	}
	.fv .inner-width {
		width: 100%;
		margin: 0 auto;
	}
}

/* ==========================================================================
 * Back to Top
 * ========================================================================== */
a.backtotop {
	position: fixed;
  	bottom: 30px;
  	right: 5%;
  	width: 44px;
  	height: 44px;
	border-radius: 50%;
  	opacity: 0.7;
	z-index: 100;
	background: #ccc;
}
a.backtotop::before {
  	content: "";
  	position: absolute;
  	top: 14px;
	left: 12px;
  	width: 0;
  	height: 0;
  	border-style: solid;
  	border-width: 0 10px 15px 10px;
  	border-color: transparent transparent #fff transparent;
}

/* ==========================================================================
 * Header
 * ========================================================================== */
.hd {
	position: fixed;
    top: 0;
    z-index: 9999;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
}
.header__wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 17px 0;
}
.header__logo {
	width: 30%;
	margin-right: 80px;
}
.header__logo img {
	width: 100%;
}
.header__cta {
	width: 100%;
	justify-content: flex-end;
	display: flex;
	gap: 7px;
}
.header__cta a:hover {
	opacity: 0.8;
}

@media screen and (max-width: 1000px) {
	.hd .visible-pc {
		display: none;
	}
	.header__sp {
		display: flex!important;
		gap: 8px;
		align-items: center;
		padding: 2% 0;
	} 
	.hd {
		position: static; 
		box-shadow: none;
	}
    .header__logo {
        width: 30%;
    }
    .header__logo img {
        width: 100%;
    }
    .header__cta {
		width: 43%;
    }
    .header__ctaBtn {
        display: block;
        width: 100%;
    }
    .header__ctaBtn img {
        width: 100%;
        height: auto;
        display: block;
    }
	/* hamburger menu */
	.menu__btn {
		align-items: center;
		display: flex;
		justify-content: center;
		height: 40px;
		width: 40px;
		padding: 10px;
		border-radius: 3px;
		position: relative;
		z-index: 9999;
	}
	.menu__btn span,
	.menu__btn span:before,
	.menu__btn span:after {
		content: '';
		background: #2e3fbc;
		display: block;
		height: 5px;
		position: absolute;
		width: 40px;
	}
	.menu__btn span:before {
		bottom: 10px;
	}
	.menu__btn span:after {
		top: 10px;
	}
	#menu__btn--check:checked ~ .menu__btn span {
		background-color: rgba(255, 255, 255, 0);
	}
	#menu__btn--check:checked ~ .menu__btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#menu__btn--check:checked ~ .menu__btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}
	#menu__btn--check {
		display: none;
	}
	.gnavi__hamburger-menu {
		background: #fff;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;
		z-index: 80;
		transition: all 0.5s;
		width: 100%;
	}
	#menu__btn--check:checked ~ .gnavi__hamburger-menu {
		left: 0;
	}
	.gnavi__hamburger-menu ul {
		padding: 70px 10px 0;
		flex-direction: column;
		margin: 0;
	}
	.gnavi__hamburger-menu ul li {
		border-bottom: solid 1px #315069;
		list-style: none;
		padding: 0 0 0 3%;
		width: 100%;
		margin: 0;
	}
	.gnavi__hamburger-menu ul li a {
		box-sizing: border-box;
		color: #000;
		display: block;
		font-size: 2rem;
		padding: 30px 15px 15px 0;
		position: relative;
		text-decoration: none;
		width: 100%;
	}
	.gnavi__hamburger-menu ul li a::before {
		border-top: solid 2px #000;
		border-right: solid 2px #000;
		content: "";
		height: 7px;
		transform: rotate(45deg);
		position: absolute;
		right: 11px;
		top: 40px;
		width: 7px;
	}
	/* /hamburger menu */
	.sp {
		display: block;
	}
	.nav__cta {
		display: flex;
		flex-direction: column;
		gap: 30px;
		margin: 40px auto;
		width: 38%;
		text-align: center;
	}
	.header__tel {
		align-items: center;
		display: flex;
		justify-content: center;
		height: 40px;
		width: 40px;
		background: #009a44;
		padding: 8px;
		border-radius: 3px;
		position: relative;
		z-index: 9999;
	}
	.header__tel img {
		width: 100%;
	}
    .header__menu--fixed {
        display: block;
        position: fixed;
        top: 12px;
        right: 8%;
        z-index: 9999;
        background: #fff;
        border-radius: 4px;
        padding: 4px;
    }
}

@media (max-width: 640px) {
    .header__wrap {
		gap: 8px;
		align-items: center;
		padding: 0;
    }
	.hd {
		position: static;
		padding: 5% 0;
	}
    .header__logo {
        width: 50%;
    }
    .header__logo img {
        width: 100%;
    }
    .header__cta {
		width: 43%;
    }
    .header__ctaBtn {
        display: block;
        width: 100%;
    }
    .header__ctaBtn img {
        width: 100%;
        height: auto;
        display: block;
    }
	/* hamburger menu */
	.menu__btn {
		align-items: center;
		display: flex;
		justify-content: center;
		height: 40px;
		width: 40px;
		padding: 10px;
		border-radius: 3px;
		position: relative;
		z-index: 9999;
	}
	.menu__btn span,
	.menu__btn span:before,
	.menu__btn span:after {
		content: '';
		background: #2e3fbc;
		display: block;
		height: 2px;
		position: absolute;
		width: 25px;
	}
	.menu__btn span:before {
		bottom: 7px;
	}
	.menu__btn span:after {
		top: 7px;
	}
	#menu__btn--check:checked ~ .menu__btn span {
		background-color: rgba(255, 255, 255, 0);
	}
	#menu__btn--check:checked ~ .menu__btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#menu__btn--check:checked ~ .menu__btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}
	#menu__btn--check {
		display: none;
	}
	.gnavi__hamburger-menu {
		background: #fff;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;
		z-index: 80;
		transition: all 0.5s;
		width: 100%;
	}
	#menu__btn--check:checked ~ .gnavi__hamburger-menu {
		left: 0;
	}
	.gnavi__hamburger-menu ul {
		padding: 70px 10px 0;
		flex-direction: column;
		margin: 0;
	}
	.gnavi__hamburger-menu ul li {
		border-bottom: solid 1px #315069;
		list-style: none;
		padding: 0 0 0 3%;
		width: 100%;
		margin: 0;
	}
	.gnavi__hamburger-menu ul li a {
		box-sizing: border-box;
		color: #000;
		display: block;
		font-size: 15px;
		padding: 18px 15px 15px 0;
		position: relative;
		text-decoration: none;
		width: 100%;
	}
	.gnavi__hamburger-menu ul li a::before {
		border-top: solid 2px #000;
		border-right: solid 2px #000;
		content: "";
		height: 7px;
		transform: rotate(45deg);
		position: absolute;
		right: 11px;
		top: 26px;
		width: 7px;
	}
	/* /hamburger menu */
	.sp {
		display: block;
	}
	.nav__cta {
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		margin: 20px auto;
		width: 90%;
		text-align: center;
	}
	.header__tel {
		align-items: center;
		display: flex;
		justify-content: center;
		height: 40px;
		width: 40px;
		background: #009a44;
		padding: 8px;
		border-radius: 3px;
		position: relative;
		z-index: 9999;
	}
	.header__tel img {
		width: 100%;
	}

    .header__menu--fixed {
        display: block;
        position: fixed;
        top: 8px;
        right: 4%;
        z-index: 9999;
        background: #fff;
        border-radius: 4px;
        padding: 4px;
    }
}
/* 1001px以上では非表示 */
@media screen and (min-width: 1001px) {
    .header__menu--fixed {
        display: none;
    }
}

/* ==========================================================================
 * NAV
 * ========================================================================== */
.gnavi {
	background: #fff;
	width: 70%;
}
.gnavi__list {
	display: flex;
	align-items: center;
	gap: 20px;
}
.gnavi__list li {
	text-align: center;
}
.gnavi__list li:hover {
	border-bottom: solid #22324d 2px;
}
.gnavi__list li a {
	color: #22324d;
	font-size: 1.6rem;
	font-weight: bold;
	display: block;
	line-height: 1.2;
	text-decoration: none;
}
.fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 998;
	width: 100%;
}

/* ==========================================================================
 * FV / Hero Section
 * ========================================================================== */
.fv {
  	padding: 100px 0 30px 0;
  	background-image: url('../images/pc/fv-bg.jpg');
  	background-size: cover;
  	background-position: center top;
}
.fv__inner {
  	padding: 30px 0 30px;
}
.fv__cont {
  	display: flex;
	justify-content: space-between;
}
.fv__subcopy {
	margin-bottom: 6.5%;
	text-align: center;
}
.fv__maincopy {
	margin-bottom: 8.5%;
}
.fv__cont-bottom {
	display: flex;
	align-items: center;
}
.fv__right {
  	width: 478px;
  	flex-shrink: 0;
}
.fv__form-wrap {
  	background-color: #eee;
  	border-radius: 10px;
  	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  	height: 550px;
}	
.fv__form-ttl {
  	text-align: center;    
	padding: 12px;
    border-radius: 10px 10px 0 0;
	background: #d85a30;
}
.fv__form {
	min-height: 40px;
	margin-bottom: 16px;
	overflow-y: scroll;
	max-height: 500px;
	padding: 10px 5px 0;
}
.fv__form-btns {
  	display: flex;
  	flex-direction: column;
  	gap: 10px;
}
.fv__form-btns .btn--outline-white {
  	border-color: var(--color-primary);
  	color: var(--color-primary);
}

@media screen and (max-width: 1000px) {
	.fv {
		padding: 90px 0 40px 0;
		background-position: center top;
	}
}

@media screen and (max-width: 640px) {
	.fv {
		padding: 10% 0;
	  	background-image: url('../images/sp/fv-bg.jpg');
	  	min-height: unset;
	}
	.fv__maincopy {
        width: 100vw;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        margin-bottom: 7%; 
	}
	.fv__subcopy {
		margin: 0 11%;
	}
	.fv__cont-bottom {
		margin: 0 4.105%
	}
}

/* ==========================================================================
 * Logos Section
 * ========================================================================== */
.results {
	background-image: url('../images/pc/results-bg.jpg');
	background-size: cover;
	padding: 25px 0;
}
.results__cont {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo-slider-container {
	width: 63.5%;
  	overflow: hidden;
  	background: #fff;
  	position: relative;
}

/* スライドの通り道 */
.logo-slider-inner {
	display: flex;
  	width: 100%;
}

/* 画像を横に並べてアニメーションさせる */
.logo-slider-track {
	display: flex;
  	flex-shrink: 0;
	/* アニメーション設定：60秒で一周（速度はここで調整） */
	animation: logo-scroll 60s linear infinite;
}

.logo-slider-track img {
	height: 100px; /* ロゴの高さ。LPのデザインに合わせて調整 */
	width: auto;
	display: block;
}

@media screen and (max-width: 640px) {
	.results__cont {
		display: block;
	}
	.results__right img {
		margin-bottom: 4.5%;
	}
	.results__annotation {
		color: #2e3fbc;
		font-size: 1rem;
		margin-bottom: 5%;
	}
	.logo-slider-container {
		width: 100%;
	}
}
.logo-slider-track img{
    height: 70px;
}

/* 無限ループのアニメーション設定 */
@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* 半分（1枚目の画像分）進んだら0%に戻る */
  }
}

/* マウスホップで一時停止させたい場合（任意） */
.logo-slider-track:hover {
  animation-play-state: paused;
}

/* ==========================================================================
 * Problem Section
 * ========================================================================== */
.problem {
	padding: 100px 0;
	background-color: #dde4e4;
}

@media screen and (min-width: 641px) {

}

@media screen and (max-width: 640px) {
	.problem {
		padding: 12.5% 0;
	}
}

/* ==========================================================================
 * solution Section
 * ========================================================================== */
.solution {
	padding: 60px 0;
	background-image: url('../images/pc/solution-bg.jpg');
	background-position: center;
	position: relative;
}
.solution::before {
	position: absolute;
	content: "";
	background-image: url('../images/pc/down-arrow.png');
	top: 0;
  	left: 50%;
  	transform: translateY(-50%) translateX(-50%);
	max-width: 167px;
	width: 100%;
	max-height: 67px;
	height: 100%;
}
.solution__cont {
	text-align: center;
}

@media screen and (max-width: 640px) {
	.solution {
		padding: 12.5% 0 62%;
		background-image: url('../images/sp/solution-bg.jpg');
		background-repeat: no-repeat;
		background-size: cover;
		position: relative;
	}
	.solution::before {
		position: absolute;
		content: "";
		background-image: url('../images/sp/down-arrow.png');
		background-size: contain;
		top: 0;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		max-width: 83.5px;
		width: 100%;
		max-height: 30px;
		height: 100%;
	}
}

/* ==========================================================================
 * features Section
 * ========================================================================== */
.features {
	padding: 0 0 100px;
	background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
			          linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
	background-size: 16px 16px;
	background-repeat: repeat;
	background-position: center center;
}
.features h2 {
	text-align: center;
	margin-bottom: 20px;
}
.features__subcopy {
	background: #2e3fbc;
	border-radius: 50px;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	padding: 19px 0;
	margin-bottom: 50px;
}
.features__cont01,
.features__cont02 {
	margin-bottom: 8.7%;
}
.features h3 {
	margin-bottom: 4.4%;
}
.features__inner {
	margin-bottom: 3.5%;
}

@media screen and (max-width: 640px) {
	.features {
		padding-bottom: 12.5%;
		background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
			              linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
		background-size: 16px 16px;
		background-repeat: repeat;
		background-position: center center;
	}
	.features__subcopy {
		font-size: 2rem;
		margin-bottom: 12.5%;
	}
	.features__cont01,
	.features__cont02 {
		margin-bottom: 14%;
	}
	.features h3 {
		margin-bottom: 10%;
	}
	.features__inner {
		margin-bottom: 6.5%;
	}
}

/* ==========================================================================
 * CTA
 * ========================================================================== */
.cta-banner {
	padding: 80px 0;
	background-color: #2e3fbc;
}
.cta-banner__wrap {
	position: relative;
}
.cta-banner__txt {
	color: rgb(255, 255, 255);
  	font-size: 20px;
  	text-align: center;
	margin-bottom: 10px;
}
.cta-banner__wrap:nth-child(1) .cta-banner__txt {
	margin-left: 40px;
}
.cta-banner__img {
  	position: absolute;
  	display: block;
  	width: 150px;
  	top: -30px;
  	left: -60px;
  	z-index: 1;
}
.cta-banner__btns {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	gap: 40px;
}
.cta-banner__wrap a:hover {
	opacity: 0.8;
}
@media screen and (max-width: 640px) {
	.cta-banner {
		padding: 14vw 0;
	}
	  .cta-banner__btns {
		flex-direction: column;
		gap: 7vw;
	}
	  .cta-banner__wrap {
		width: 100%;
	}
	  .cta-banner__txt {
		font-size: 4.5vw;
		margin-left: 0 !important;
	}
	  .cta-banner__img {
		position: unset;
		width: 60%;
		margin: 0 auto 2vw;
	}
}

/* ==========================================================================
 * Reason Section
 * ========================================================================== */
.reason {
	padding: 80px 0 100px;
	background-image: url('../images/pc/reason-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}
.reason__ttl {
	font-size: 5rem;
	font-weight: bold;
	text-align: center;
	color: #233551;
	margin-bottom: 60px;
	line-height: 1.2;
}
.reason__ttl span {
	font-size: 60%;
}
.reason__cont01,
.reason__cont02 {
	margin-bottom: 6.5%;
}

@media screen and (max-width: 640px) {
	.reason {
		padding: 12.5% 0;
		overflow: hidden; 
	}
	.reason__ttl {
		font-size: 3rem;
		margin-bottom: 9%;
	}
	.reason__cont01 {
		position: relative; 
		overflow: hidden;
		width: 100%;
	}
	.table {
		position: absolute;
		top: 36%;
		left: 0;
		width: 100%;
		overflow: hidden;
		padding: 0 20px;
	}
	.comparison__table {
		overflow-x: scroll;
        width: 100%;
        margin: 5% 0 0;
		box-sizing: border-box;
        position: relative;
	}
    .swipe-hint{
        content: "";
        position: absolute;
        top: 60%;
        left: 62%;
        transform: translate(-50%, -50%);
        width: 110px;
        height: 120px;
        background-image: url(../images/sp/swipe.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 10;
        pointer-events: none;
        animation: pulse 2s infinite;
		transition: opacity 0.5s ease;
    }
	.comparison__table picture {
		width: 255%;
		display: block;
		padding-bottom: 8%;
	}
	.comparison__table .scrolled::before {
		opacity: 0 !important;
		pointer-events: none;
		animation: none !important;
	}
}

/* ==========================================================================
 * case Section
 * ========================================================================== */
.case {
	padding: 100px 0;
	background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
			          linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
	background-size: 16px 16px;
	background-repeat: repeat;
	background-position: center center;
}
.case__ttl {
	font-size: 5rem;
	color: #2e3fbc;
	text-align: center;
	margin-bottom: 6.5%;
}
.case__cont01 {
	margin-bottom: 6.5%;
}
@media screen and (max-width: 640px) {
	.case {
		padding: 12.5% 0;
		background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
			              linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
		background-size: 16px 16px;
		background-repeat: repeat;
		background-position: center center;
	}
	.case__ttl {
		font-size: 3rem;
		margin-bottom: 9%;
	}
}

/* ==========================================================================
 * relief Section
 * ========================================================================== */
.relief {
	padding: 100px 0;
	background: #2e3fbc;
}
.relief__ttl {
	font-size: 5rem;
	text-align: center;
	color: #fff;
	line-height: 1.2;
	vertical-align: bottom;
	letter-spacing: 2px;
	margin-bottom: 4.4%;
}
.relief__ttl span {
	font-size: 60%;
}
.relief__ttl strong {
	font-size: 150%;
}
.relief__ttl .pc-only {
	display: inline-block;
}
.relief__cont {
	margin-bottom: 6%;
}

@media screen and (max-width: 640px) {
	.relief {
		padding: 12.5% 0;
	}
	.relief__ttl {
		font-size: 3rem;
		margin-bottom: 9%;
	}
	.relief__ttl .pc-only {
		display: none;
	}
	.relief__ttl .sp-only {
		display: inline-block;
	}
}

/* ==========================================================================
 * FAQ Section
 * ========================================================================== */
.faq {
	padding: 100px 0;
	background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
			          linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
	background-size: 16px 16px;
	background-repeat: repeat;
	background-position: center center;
}
.faq__ttl {
	font-size: 5rem;
	text-align: center;
	color: #233551;
	margin-bottom: 4.4%;
}
.faq__list {
	max-width: 920px;
	margin: 0 auto;
}
.faq__item {
  margin-bottom: 30px;
  overflow: hidden;
}
.faq__question {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 20px 24px;
  	cursor: pointer;
  	font-size: 2.4rem;
  	font-weight: bold;
  	color: #fff;
  	transition: background-color 0.2s;
  	position: relative;
  	padding-right: 50px;
	background-color: #2e3fbc;
	border-radius: 10px;
}
.faq__question.is-open .faq__q-icon {
	background-color: var(--color-white);
	color: var(--color-primary);
}
.faq__q-icon {
	display: inline-flex;
  	align-items: center;
  	justify-content: center;
  	width: 28px;
  	height: 28px;
  	border-radius: 50%;
  	font-size: 3.4rem;
  	font-weight: bold;
  	flex-shrink: 0;
}
.faq__toggle {
  	position: absolute;
  	right: 20px;
  	top: 50%;
  	transform: translateY(-50%);
  	width: 20px;
  	height: 20px;
}
.faq__toggle::before,
.faq__toggle::after {
  	content: "";
  	position: absolute;
  	background-color: #fff;
  	border-radius: 2px;
}
.faq__toggle::before {
	top: 50%; 
	left: 0;
  	width: 100%; 
	height: 2px;
  	margin-top: -1px;
}
.faq__toggle::after {
	top: 0; 
	left: 50%;
	width: 2px; 
	height: 100%;
	margin-left: -1px;
	transition: transform 0.3s;
}
.faq__question.is-open .faq__toggle::after {
	transform: rotate(90deg);
}
.faq__answer {
	display: none;
	padding: 16px 24px 20px;
	line-height: 1.7;
}
.answer__inner {
	display: flex;
	align-items: center;
	gap: 10px;
}
.faq__answer span {
	font-size: 2.4rem;
	color: #2e3fbc;
}
.faq__answer p {
	font-size: 1.8rem;
}

@media screen and (max-width: 640px) {
	.faq { 
		padding: 12.5% 0 6.5%;
		background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
			              linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
		background-size: 16px 16px;
		background-repeat: repeat;
		background-position: center center;
	}
	.faq__item {
		margin-bottom: 4.5%;
	}
	.faq__question { 
		padding: 16px 44px 16px 16px; 
		font-size: 1.4rem; 
		align-items: center;
	}
	.faq__ttl {
		font-size: 3rem; 
		margin-bottom: 9%;
	}
	.faq__q-icon {
		font-size: 2rem;
		width: 20px;
		height: 20px;
	}
	.faq__answer {
		padding: 16px 24px 20px;
		margin: 0;
	}
	.faq__answer p {
		font-size: 1.6rem;
	}
}

/* ==========================================================================
 * Company
 * ========================================================================== */
.company {
  background-color: #273752;
  padding: 80px 0;
}
.company__ttl {
    color: #fff;
    font-size: 30px;
    text-align: left;
    margin-bottom: 40px;
}
.company__table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}
.company__table th, .company__table td {
  padding: 10px 0;
  font-size: 20px;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
}
.company__table th {
  white-space: nowrap;
  padding-right: 1em;
}
@media screen and (max-width: 640px) {
  .company {
    padding: 14vw 0;
  }
  .company .section-ttl {
    font-size: 8vw;
    margin-bottom: 8vw;
}
  .company__table th, .company__table td {
    padding: 0 0 1em;
    font-size: 4.5vw;
    width: 100%;
    display: block;
  }
  .company__table th {
    padding-bottom: 0.5em;
    font-weight: bold;
}
  .company__table td {
    border-bottom: 1px solid;
    margin-bottom: 1em;
}
}
/* ==========================================================================
 * Footer
 * ========================================================================== */
.footer {
	padding: 24px 0;
}
.footer__inner {
	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	flex-wrap: wrap;
  	gap: 12px;
}
.footer__logo {
	display: flex;
	align-items: center;
	gap: 6px;
}
.footer__copy {
	font-size: 14px;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.footer {
		margin-bottom: 16vw;
	}
	.footer__inner {
		justify-content: center;
		text-align: center;
		flex-direction: column;
	}
}


/* ==========================================================================
 * Back to Top
 * ========================================================================== */
a.backtotop {
  position: fixed;
  bottom: 10%;
  right: 5%;
  width: 44px;
  height: 44px;
  background-color: #ccc;
  border-radius: 50%;
  opacity: 0.7;
  z-index: 100;
  transition: opacity 0.2s;
}
a.backtotop:hover { 
	opacity: 1; 
}
a.backtotop::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 16px 10px;
  border-color: transparent transparent #fff transparent;
}

/* ==========================================================================
 * Spacing Utilities (from Base Template)
 * ========================================================================== */
.margin-none  { margin:          0 !important; }
.padding-none { padding:         0 !important; }
.margin-T20   { margin-top:    20px !important; }
.margin-T40   { margin-top:    40px !important; }
.margin-B20   { margin-bottom: 20px !important; }
.margin-B40   { margin-bottom: 40px !important; }
.txt-center   { text-align: center; }
.txt-left     { text-align: left; }
.txt-right    { text-align: right; }
.txt-bold     { font-weight: bold; }
.txt-small    { font-size: 80%; }
.clear        { clear: both; }


/* ==========================================================================
 * Form
 * ========================================================================== */
.document {
  background-color: #fff;
}
.dl__ttl {
	color: #d55931;
	font-size: 3rem;
	text-align: center;
	margin-bottom: 11%;
}
.document__content {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.document__overview {
    border-radius: 10px;
    background-color: #e3f1f6;
    width: 350px;
    margin: 0;
}
.document__overview dt {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    background-color: #273752;
    color: #fff;
    padding: 5px;
    border-radius: 10px 10px 0 0;
}
.document__overview dd {
    margin: 0;
    padding: 20px 30px;
}
.document__overview li {
    padding-left: .7em;
    text-indent: -.7em;
}
.document__overview li::before {
            content: "・";
            letter-spacing: 0.2em;
        }
.document__form {
	flex: 1 1 0;
}
.document__form-ttl {
	background-color: #d55931;
	padding: 12px;
	text-align: center;
  	margin-top: 40px;
}	
.document__form-area {
  	background-color: var(--color-white);
  	border-radius: 8px;
	margin-top: 10px;
}
.form-placeholder {
  	text-align: center;
  	padding: 40px 20px;
  	border: 2px dashed var(--color-border);
  	border-radius: 6px;
}
.form-placeholder--contact {
  	padding: 60px 20px;
}
.form-placeholder__txt {
  	font-size: 1.4rem;
  	color: var(--color-text-sub);
  	margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
	.document {
		padding: 50px 0;
	}
  	.document__content {
    	display: block;
    	position: relative;
  	}
  	.document__img {
    	width: 40%;
    	max-width: 50%;
    	position: absolute;
    	right: 0;
    	bottom: 0;
  	}
  	.document__overview {
		width: 100%;
	}
}


/* ==========================================================================
 * Satori
 * ========================================================================== */

.satori__custom_form select {
	width: 100%;
	border-radius: 5px;
	padding: 5px !important;
}
.satori__require {
	background: #d85a30 !important;
	color: #fff !important;
	font-size: 1.2rem;
	font-weight: bold;
}
.satori__custom_form_8681cc65df44cd42_css .satori__input_group label:first-child {
    background: #eee !important;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.satori__not_require {
	background: #545a5a !important;
	color: #fff !important;
	font-size: 1.2rem;
	font-weight: bold;
}
.satori__input_group label {
	font-weight: bold;
	width: 100%;
}
#satori__creative_container input::placeholder,
#satori__creative_container textarea::placeholder {
	color: #b7b7b7;
}
#satori__creative_container a {
	color: #305582 !important;
}
.satori__system_notes {
	font-size: 1.4rem;
}
#satori__submit_confirm {
	padding: 10px 0;
	width: 200px;
	text-align: center;
	border-radius: 100px;
}
.satori__custom_form_8681cc65df44cd42_css .satori__btn {
    background-color: var(--color-accent);
    border-radius: 100px;
}
@media screen and (max-width: 640px) {
	.satori__custom_form_8681cc65df44cd42_css {
		font-size: 16px !important;
	}
}

/* 親要素：ボタン同士の隙間を調整 */
.satori__input_group:has(input[type="radio"]):not(:has(#satori__privacy_policy_agreement)) {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  padding: 10px !important;
}

/* 部署ラベル：1行まるごと使用 */
.satori__input_group > label:first-child {
  width: 100% !important;
  margin-bottom: 10px !important;
  display: block !important;
}

/* ラジオボタン本体：非表示 */
.satori__input_group:has(input[type="radio"]):not(:has(#satori__privacy_policy_agreement)) input[type="radio"] {
  display: none !important;
}

/* ボタン化したラベル：PCでの並び */
.satori__input_group input[type="radio"] + label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 10px 20px !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 4px !important;
  background-color: var(--color-white) !important;
  cursor: pointer !important;
  font-size: 1.4rem !important;
  text-align: center !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  white-space: nowrap !important;
}

/* 選択時の色 */
.satori__input_group input[type="radio"]:checked + label {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  border-color: var(--color-primary) !important;
}

.satori__custom_form_8681cc65df44cd42_css input[type=checkbox]+label, .satori__custom_form_8681cc65df44cd42_css input[type=radio]+label {
	padding: 2px 10px !important;
	border: solid 1px #eee !important;
}

.satori__custom_form_8681cc65df44cd42_css .satori__input_group input[type=text], .satori__custom_form_8681cc65df44cd42_css .satori__input_group input[type=tel], .satori__custom_form_8681cc65df44cd42_css .satori__input_group input[type=password], .satori__custom_form_8681cc65df44cd42_css .satori__input_group input[type=email], .satori__custom_form_8681cc65df44cd42_css .satori__input_group input[type=number], .satori__custom_form_8681cc65df44cd42_css .satori__input_group input[type=url], .satori__custom_form_8681cc65df44cd42_css .satori__input_group textarea {
  padding: 5px !important;
}


.ft-cta {
	background: #2e3fbc;
	padding: 3% 0;
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 99;
}
.ft-cta ul {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: 0 4.105%;
	gap: 8px;
}

/* ==========================================================================
  * form add
  * ========================================================================== */
.satori__input_group:has(#satori__custom_field_5b6ecdfdd7f72e638),
.satori__input_group:has(#satori__custom_field_5b6ecdfdd7f72e638) * {margin:0 !important; padding:0 !important; width:1px !important; height:1px !important; font-size:1px; line-height:1px; color:#fff !important; border:none !important; background:transparent !important;}
.satori__input_group:has(#satori__custom_field_5b6ecdfdd7f72e638) label {display:none;}