/* ----------------------------------------
Reset
---------------------------------------- */

* {
	margin: 0;
	padding: 0;
}

*,
::before,
::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	-webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

:where(a[href],
area,
button,
label[for],
select,
summary,
[tabindex]:not([tabindex*="-"])) {
	-ms-touch-action: manipulation;
	cursor: pointer;
	touch-action: manipulation;
}

:where(input[type=file]) {
	cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
	cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
	cursor: pointer;
}

:where(button,
button[type],
input[type=button],
input[type=submit],
input[type=reset])[disabled] {
	cursor: not-allowed;
}

/* ----------------------------------------
Base
---------------------------------------- */
.sp{
	display: none;
}
@media (max-width: 768px) {
	.sp{
	display: block;
}
	.pc{
		display: none;
	}
}
 
@font-face {
	font-family: "DIN 2014 Bold";
	src: url("../fonts/DIN 2014 Bold.otf") format("opentype");
}

html {
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
	visibility: hidden;
}

html.wf-active,
html.loading-delay {
	visibility: visible;
}

body {
	background-color: #fff;
	color: #191d1c;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	line-height: 1.5;
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
}

li {
	list-style: none;
}

a {
	color: #191d1c;
	text-decoration: none;
}

a:hover {
	opacity: 0.7;
}

/* ----------------------------------------
footer
---------------------------------------- */

.footer {
	background-color: #191d1c;
	padding: 25px;
	position: relative;
	text-align: center;
	z-index: 999;
}

.copyright {
	color: #fff;
	font-size: 1.2rem;
}

/* ----------------------------------------
header
---------------------------------------- */

.header {
	padding: 5px 0 10px;
	position: relative;
	z-index: 999;
}

.header__inner {
	margin: 0 auto;
	max-width: 1254px;
	width: 100%;
}

.header__logo {
	margin: 0 auto;
	width: 207px;
}

/* ----------------------------------------
button
---------------------------------------- */

.button {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fdf15e;
	border: none;
	
	border-radius: 20px;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 91px;
	justify-content: center;
	margin: 22px auto 0;
	position: relative;
	width: 468px;
	z-index: 10;
}

.button:hover {
	opacity: 1;
}

.button:active {
	border-bottom: none;
	height: 81px;
	margin-top: 32px;
	opacity: 1;
}

.button__text {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
	justify-content: center;
}

.button__text--sm {
	font-family: "YDWbananaslipplus", sans-serif;
	font-size: 2.4rem;
	font-weight: normal;
}

.button__text--lg {
	color: #ff2b74;
	font-size: 4rem;
	font-weight: 900;
	letter-spacing: calc(100 / 1000 * 1em);
}

.button-catch {
	background-color: #fff;
	border-radius: 100px;
	font-family: "YDWbananaslipplus", sans-serif;
	font-size: 2rem;
	font-weight: normal;
	line-height: 1.2;
	margin: 0 auto;
	padding: 6px 40px;
	position: relative;
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	z-index: 10;
}

.button-catch::after {
	-webkit-transform: translateX(-50%);
	border-color: #fff transparent transparent transparent;
	border-style: solid;
	border-width: 14px 14.5px 0 14.5px;
	content: "";
	display: block;
	height: 0;
	left: 50%;
	position: absolute;
	top: 100%;
	transform: translateX(-50%);
	width: 0;
}

/* ----------------------------------------
form
---------------------------------------- */

.form {
	margin: 0 auto;
	max-width: 600px;
	width: 100%;
}

.form__container {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-ms-flex-wrap: wrap;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 5px 20px;
	justify-content: space-between;
}

.form__container:not(:first-child) {
	margin-top: 40px;
}

.form__label {
	font-family: 'ヒラギノ角ゴシック', sans-serif;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: calc(100 / 1000 * 1em);
	min-width: 155px;
}

.form__input {
	
	border: none;
	border-radius: 5px;
	border: 1px solid #B4B4B4;
	font-family: hiragino-kaku-gothic-pron, sans-serif;
	height: 53px;
	min-width: 335px;
	padding: 17px 28px;
	width: 100%;
}

.form__input:focus-visible {
	outline: none;
}

.form__input::-webkit-input-placeholder {
	color: #eee;
	font-size: 1.4rem;
	font-weight: 300;
}

.form__input::-moz-placeholder {
	color: #eee;
	font-size: 1.4rem;
	font-weight: 300;
}

.form__input:-ms-input-placeholder {
	color: #eee;
	font-size: 1.4rem;
	font-weight: 300;
}

.form__input::-ms-input-placeholder {
	color: #eee;
	font-size: 1.4rem;
	font-weight: 300;
}

.form__input::placeholder {
	color: #eee;
	font-size: 1.4rem;
	font-weight: 300;
}

.form__submit {
	display: flex
;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #C09236;
    color: white;
    gap: 20px;
    padding: 14px 48px;
    width: 80%;
    margin-top: 64px;
    text-decoration: none;
    font-size: 36px;
    border-radius: 5px;
	font-weight: bold;
}

.form__submit:active {
	height: 57px;
	margin-top: 57px;
}

.wpcf7-form-control-wrap {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	position: relative;
}

.wpcf7-radio {
	display: block;
	text-align: center;
}

.wpcf7-list-item {
	margin-left: 0;
}

.wpcf7-response-output {
	display: none;
}

.wpcf7-not-valid-tip {
	font-size: 1.2rem;
	left: 20px;
	position: absolute;
	top: calc(100% + 5px);
}

.grecaptcha-badge {
	visibility: hidden;
}

/* ----------------------------------------
list
---------------------------------------- */

.list {
	margin-bottom: 30px;
}

.list__item {
	background-image: url(../img/icon_check.png);
	background-position: top 10px left 0;
	background-repeat: no-repeat;
	background-size: 22.26px;
	color: #ff4271;
	font-weight: bold;
	letter-spacing: calc(50 / 1000 * 1em);
	line-height: calc(41 / 16);
	padding-left: 32px;
}

.list__item span {
	background-color: rgba(253, 241, 94, 0.6);
}

/* ----------------------------------------
tab
---------------------------------------- */

.tab {
	-ms-flex-wrap: wrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}

.tab__label {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-transform: translateX(-50%);
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	align-items: center;
	border: none;
	bottom: -15px;
	color: #999;
	display: none;
	font-size: 1.4rem;
	left: 50%;
	order: -1;
	padding: 5px 10px;
	position: absolute;
	text-align: center;
	text-decoration: underline;
	transform: translateX(-50%);
	z-index: 100;
}

.tab__label:has(+ .is_show) {
	display: block;
}

.tab__content {
	-webkit-transform: translateX(-200%);
	-webkit-transition: -webkit-transform 0.4s;
	height: 0;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-200%);
	transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	transition: transform 0.4s, -webkit-transform 0.4s;
	visibility: hidden;
	width: 100%;
}

.tab__content.is_show {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	-webkit-transform: translateX(0);
	height: auto;
	opacity: 1;
	order: 1;
	padding-bottom: 100px;
	padding-top: 30px;
	pointer-events: auto;
	transform: translateX(0);
	visibility: visible;
}

.tab__content.is_show ~ .tab__content {
	-webkit-transform: translateX(200%);
	transform: translateX(200%);
}

/* ----------------------------------------
type
---------------------------------------- */

.type {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	align-items: center;
	aspect-ratio: 1;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	gap: 5px;
	justify-content: center;
	width: 186px;
}

.type.steady-savings {
	background-color: #00bc91;
}

.type.living-fulfilling {
	background-color: #ff8022;
}

.type.self-investment {
	background-color: #ff5c5c;
}

.type.status-oriented {
	background-color: #db4ad6;
}

.type__img--01 {
	width: 54px;
}

.type__img--02 {
	width: 64px;
}

.type__img--03 {
	width: 67px;
}

.type__img--04 {
	width: 68px;
}

.type__text {
	color: #fff;
	font-family: "YDWbananaslipplus", sans-serif;
	font-size: 3.4rem;
	letter-spacing: calc(-50 / 1000 * 1em);
	line-height: calc(36 / 34);
	text-align: center;
}

.type__text span {
	letter-spacing: calc(-200 / 1000 * 1em);
	margin-right: 5px;
}

/* ----------------------------------------
diagnosis
---------------------------------------- */

.diagnosis {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	background-color: #fafafa;
	min-height: calc(100vh - 143px);
	overflow: hidden;
	padding-bottom: 140px;
	user-select: none;
	background-image: url(http://fire.test2223.com/wp-content/uploads/2025/02/fire-back.png);
	background-size: cover;
	
}

.diagnosis__inner {
	margin: 0 auto;
	max-width: 1440px;
	padding: 50px 20px 0;
	position: relative;
	width: 100%;
	z-index: 10;
}



.diagnosis__section {
	cursor: auto;
	margin: 0 auto;
	max-width: 800px;
	position: relative;
	width: 100%;
	z-index: 0;
}

.diagnosis__img {
	max-width: unset;
	position: absolute;
	z-index: -1;
}

.diagnosis__img--01 {
	left: -95px;
	top: 0;
	width: 588px;
}

.diagnosis__img--02 {
	right: -160px;
	top: 120px;
	width: 647px;
}

.diagnosis__step {
	-webkit-transform: translateX(-50%);
	background-color: #DEE1EB;
	
	display: none;
	height: 10px;
	left: 50%;
	max-width: 600px;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
	z-index: 10;
}

.diagnosis__step::after {
	background-color: #3C4358;
	

	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
}

.diagnosis__step.is_show {
	display: block;
}

.diagnosis__step--01::after {
	content: "";
	width: 10%;
}

.diagnosis__step--02::after {
	content: "";
	width: 20%;
}

.diagnosis__step--03::after {
	content: "";
	width: 30%;
}

.diagnosis__step--04::after {
	content: "";
	width: 40%;
}

.diagnosis__step--05::after {
	content: "";
	width: 50%;
}

.diagnosis__step--06::after {
	content: "";
	width: 60%;
}

.diagnosis__step--07::after {
	content: "";
	width: 70%;
}

.diagnosis__step--08::after {
	border-radius: 100px;
	content: "";
	width: 80%;
}
.diagnosis__step--09::after {
	border-radius: 100px;
	content: "";
	width: 90%;
}
.diagnosis__step--10::after {
	border-radius: 100px;
	content: "";
	width: 100%;
}
.diagnosis__heading {
	margin-bottom: 30px;
	text-align: center;
}

.diagnosis__num {
	color: #3C4358;
	font-family: "DIN 2014 Bold";
	font-size: 4rem;
	font-weight: normal;
	
}

.diagnosis__text {
	font-size: 2rem;
	letter-spacing: calc(200 / 1000 * 1em);
	margin-bottom: 15px;
}

.diagnosis__title {
	color: #3C4358;
	font-family: 'ヒラギノ角ゴシック', sans-serif;
	font-size: 4.8rem;
	font-weight: bold;
	letter-spacing: calc(100 / 1000 * 1em);
}

.diagnosis__title span {
	display: inline-block;
}

.diagnosis__list {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-ms-flex-wrap: wrap;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 40px 5%;
	justify-content: center;
}

.diagnosis__item {
	width: 47.5%;
}

.diagnosis__item input {
	display: none;
}

.diagnosis__item label {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	
	align-items: center;
	background-color: #fff;
	border-radius: 100px;
	border: 1px solid #3C4358;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 2rem;
	font-weight: 500;
	height: 63px;
	justify-content: center;
	letter-spacing: calc(200 / 1000 * 1em);
	width: 100%;
}

.diagnosis__item label:hover {
	-webkit-box-shadow: none;
	background-color: #C9D7FF;
	box-shadow: none;
}

.diagnosis__item label:has(:checked) {
	-webkit-box-shadow: none;
	background-color: #C9D7FF;
	box-shadow: none;
}

.slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.slick-slide {
	height: auto !important;
}

.slick-arrow {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
	align-items: center;
	background-color: #fff;
	border: none;
	border-radius: 100px;
	bottom: 0;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	height: 40px;
	padding: 0 36px;
	position: absolute;
	text-align: center;
	z-index: 10;
}

.slick-arrow.slick-disabled {
	opacity: 0;
	visibility: hidden;
}

.slick-prev {
	left: 0;
}

.slick-prev::before {
	content: "戻る";
	font-size: 1.4rem;
}

.slick-next {
	right: 0;
}

.slick-next::before {
	content: "次へ";
	font-size: 1.4rem;
}

.diagnosis__item .wpcf7-not-valid-tip {
	display: none;
}

/* ----------------------------------------
result
---------------------------------------- */

.result {
	background-color: #98f0f7;
	overflow: hidden;
	background-image: url(http://fire.test2223.com/wp-content/uploads/2025/02/fire-result-back.png);
	background-size: cover;
}

.result__inner {
	margin: 0 auto;
	max-width: 1440px;
	min-height: 100vh;
	padding: 80px 40px 100px;
	position: relative;
	width: 100%;
}



.result__title {
	color: #3C4358;
	font-family: 'ヒラギノ角ゴシック', sans-serif;
	font-size: 4.0rem;
	font-weight: bold;
	letter-spacing: calc(100 / 1000 * 1em);
	margin-bottom: 48px;
	text-align: center;
}

.result__contents {
	background-color: #fff;
	margin: 0 auto;
	max-width: 860px;
	padding: 40px 40px 20px;
	position: relative;
	width: 100%;
	z-index: 100;
	border: 2px solid #3C4358; 
}
.result_level{
	background-color: #4D5981;
	color: white;
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
	margin: 0 auto;
	max-width: 860px;
	padding: 24px;
}
.level1{
	background-color: #868686 !important;
}
.level2{
	background-color: #4D5981 !important;
}
.level3{
	background-color: #C09236 !important;
}
.level4{
	background-color: #FFC444 !important;
}
.level1-border{
	border: 2px solid #868686 !important;
}
.level2-border{
	border: 2px solid #4D5981 !important;
}
.level3-border{
	border: 2px solid #C09236 !important;
}
.level4-border{
	border: 2px solid #FFC444 !important;
}

.result__head {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	justify-content: center;
	padding-bottom: 40px;
	border-bottom: 1px solid #CECECE;
	margin-bottom: 60px;
}

.next-step {
    text-align: center;
    padding-bottom: 60px;
	border-bottom: 1px solid #CECECE;
}

.icon img {
   margin: 0 auto;
}

.next-step h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
	margin-top: 16px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 3.2rem;
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 800px;
	width: 100%;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    white-space: nowrap;
}

.dotted-line {
    flex-grow: 1;
    border-bottom: 2px dashed #333;
    height: 0.5px;
}

.step p {
    font-size: 1.4rem;
	line-height: 2;
    max-width: 400px;
    text-align: left;
}

.next-line{
	width: 100%;
}
.line-sec{
	position: relative;
}
.line-text{
	position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	    height: max-content;
    margin: auto;
}

.line-text p{
	font-size: 1.6rem;
	text-align: center;
	font-weight: bold;
	margin-bottom: 24px;
}






.result__head--steady-savings .result__heading--lg {
	color: #00bc91;
}

.result__head--steady-savings .result__lead {
	color: #00bc91;
}

.result__head--living-fulfilling .result__heading--lg {
	color: #ff8022;
}

.result__head--living-fulfilling .result__lead {
	color: #ff8022;
}

.result__head--self-investment .result__heading--lg {
	color: #ff5c5c;
}

.result__head--self-investment .result__lead {
	color: #ff5c5c;
}

.result__head--status-oriented .result__heading--lg {
	color: #db4ad6;
}

.result__head--status-oriented .result__lead {
	color: #db4ad6;
}

.result .type {
	margin-left: 0px;
	width: 250px;
}



.result .type__text {
	font-size: 5.2rem;
}

.result__text-area {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.result__heading {
	margin-bottom: 30px;
	background-color: #4C5981;
	color: white;
	padding: 20px;
	text-align: center;
	font-size: 3.2rem;
}

.result_headlead{
	font-size: 2.4rem;
	text-align: center;
	font-weight: bold;
	margin-bottom: 16px;
}

.result_description{
	font-size: 1.4rem;
	line-height: 2;
	font-weight: 500;
}

.result__img--sp {
	display: none;
}

.result__text {
	font-weight: bold;
	letter-spacing: calc(100 / 1000 * 1em);
	line-height: calc(35 / 16);
	margin-bottom: 50px;
	text-align: center;
}

.result__text span {
	display: inline-block;
}

.result__button {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #0ab53c;
	
	border-radius: 5px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 2.4rem;
	font-weight: 700;
	gap: 10px;
	height: 71px;
	justify-content: center;
	margin: 0 auto;
	max-width: 466px;
	position: relative;
	width: 100%;
	z-index: 10;
}

.result__button:hover {
	opacity: 1;
}


.result__button img {
	width: 48px;
}

/* ----------------------------------------
top
---------------------------------------- */

/* ----------------------------------------
Base
---------------------------------------- */
/* 全体のスタイル */
body {
    font-family: 'ヒラギノ角ゴシック', sans-serif;
    color: #3C4358;
    margin: 0;
    padding: 0;
}

/* mainの背景 */
main {
    background-image: url('../img/fv-back.png');
    background-size: cover;
    background-position: center;
}

/* FVコンテナ */
.fv-container {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 64px auto 0; /* コンテナの上に64pxのマージンを追加 */
    padding-bottom: 64px; /* コンテナ下部に64pxのパディングを追加 */
	gap: 40px;
	align-items: center;
}

/* 左側 */
.fv-left {
    width: 50%;
	max-width: 650px;
}

/* 右側 */
.fv-right {
    width: 40%;
}

/* タイトル */
h1 {
    font-size: 80px;
   
    font-weight: bold; /* 太字に変更 */
}

h2 {
    font-size: 24px;
    color: #C09236;
    font-weight: bold; /* 太字に変更 */
}

/* 3カラムのレイアウト */
.three-columns {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
}

.three-columns .column {
    font-size: 14px;
    font-weight: bold; /* 文字を太字に変更 */
    width: 33%;
    display: flex;
    gap: 8px;
	padding: 0 12px;
	justify-content: center;
}

.three-columns .column:not(:first-child) {
    border-left: 2px dotted #3C4358; /* 点線で区切る */
	
}

.highlight-text {
    color: #C09236;
}

/* CTAボタン */
.cta-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background-color: #C09236;
    color: white;
    padding: 14px 48px;
    margin-top: 30px;
    text-decoration: none;
    font-size: 36px; /* テキストサイズを36pxに設定 */
    border-radius: 5px;
    font-weight: bold;
}

.cta-icon {
    width: 75px; /* 画像の幅を75pxに設定 */
}

/* 右側の画像 */
.fv-right img {
    width: 100%;
    height: auto;
}
.gray-sec{
	background-color: #F5F5F5;
}
.problem-section {
    background-color: #F5F5F5;
    padding: 72px 0 24px 0;
    text-align: center;
    position: relative;
	max-width: 1400px;
	margin: 0 auto;
}
.problem-ab{
    position: absolute;
}
#problem-ab1{
    width: 270px;
    top: 30px;
    right: 30px;
}
#problem-ab2{
    width: 192px;
    bottom: 120px;
    left: 70px;
}
#problem-ab3{
    width: 220px;
    bottom: -100px;
    right: 100px;
}

.problem-title-box {
    display: inline-block;
    text-align: center;
    margin-bottom: 24px;
}

.problem-title-box h2 {
    font-size: 40px;
    color: #3C4358;
}

.problem-title-box .highlight-text {
    color: #C09236;
    
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    margin-top: 24px;
    margin-bottom: 24px;
    max-width: 800px;
    
}

.problem-list li {
    background-color: #3C4358;
    color: #FFFFFF;
    padding: 12px 24px;
    margin-bottom: 12px;
    font-size: 20px;
    text-align: left;
    display: inline-block;
	font-weight: 700;
}
.problem-section p {
    font-size: 20px;
    font-weight: bold;
    margin-top: 40px;
    line-height: 2;
}

.highlight-underline {
    background: linear-gradient(transparent 80%, #FFD700 80%);
    margin: 0 8px;
}
.problem-title-box img {
    display: block;
    margin: 0 auto;
    margin-bottom: 24px;
}
.about-section {
    background-image: url('../img/fv-back.png'); /* FVと同じ背景 */
    background-size: cover;
    background-position: center;
    padding: 0 0 80px 0; /* 三角画像の上に余白をなし */
}

.about-top-img {
    width: 100%;
    display: block;
    margin-bottom: 80px; /* 下に80pxの余白 */
}

.about-container {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    gap: 60px; /* 2カラム間のgapを60pxに */
}

.about-left {
    width: 55%;
}

.about-right {
    width: 45%;
}

.about-label {
    font-size: 12px;
    color: #3C4358;
    font-weight: bold;
    margin-bottom: 0px !important;
}

.about-left h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.about-left p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 24px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.about-list li {
    background-color: #3C4358;
    color: #FFFFFF;
    padding: 12px 24px;
    margin-bottom: 12px;
    font-size: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
	font-weight: 700;
}

.about-check {
    font-size: 20px;
    font-weight: bold;
    color: #FF0000; /* 赤色 */
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
}
.contact-section {
    background-color: #3C4358;
    padding: 52px 0;
    color: #FFFFFF;
}

.contact-container {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.contact-left {
    width: 55%;
    color: #FFFFFF; /* すべてのテキスト色を白に設定 */
	max-width: 650px;
}

.contact-left h1 {
    font-size: 72px;
    
    font-weight: bold;
}

.contact-left h2 {
    font-size: 24px;
    
    color: #FFFFFF; /* h2のテキスト色を白に設定 */
}

.three-columns {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.column {
    width: 30%;
    display: flex;
    align-items: center;
}



.highlight-text {
    color: #C09236; /* ハイライト部分のテキスト色 */
}

.contact-left .cta-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background-color: #C09236;
    color: white;
    padding: 14px 48px;
    margin-top: 30px;
    text-decoration: none;
    font-size: 36px;
    border-radius: 5px;
}
.contact-three-columns {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.contact-three-columns .column {
    font-size: 14px;
    font-weight: bold; /* 文字を太字に変更 */
    width: 33%;
    display: flex;
    gap: 12px;
	justify-content: center;
}

.contact-three-columns .column:not(:first-child) {
    border-left: 2px dotted #fff; /* 点線で区切る */
	
}
.contact-left .cta-icon {
    width: 75px;
}

.contact-left .arrow {
    width: 30px;
}


.contact-right {
    width: 45%;
}

.contact-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ----------------------------------------
レスポンシブ対応（タブレット・スマホ向け）
---------------------------------------- */

/* タブレットサイズ（768px以下） */
@media (max-width: 768px) {
    /* FVコンテナの調整 */
    .fv-container {
        flex-direction: column-reverse;
        width: 90%;
        margin-top: 32px;

    }
    .fv-right img {
        width: 70%;
        height: auto;
        margin: 0 auto;
        margin-top: 0px;
    }
    /* 左右のコンテンツが重ならないように調整 */
    .fv-left, .fv-right {
        width: 100%;
        margin-bottom: 24px;
        text-align: center;
    }

    /* タイトルのサイズを小さく */
    h1 {
        
    }

    h2 {
        
    }

    .three-columns {
        
        
    }

    /* CTAボタンの調整 */
    .cta-btn {
        margin-top: 40px;
        font-size: 28px;
        padding: 12px 32px;
    }

    /* 問題セクション */
    #problem-ab1{
        width: 150px;
        top: 10px;
        right: 10px;
    }
    #problem-ab2{
        width: 100px;
        top: 20px;
        left: 10px;
    }
    #problem-ab3{
        width: 140px;
        bottom: -140px;
        right: 20px;
    }
    .problem-section {
        padding: 40px 0 24px;
    }
    .problem-title-box h2 {
        font-size: 30px;
    }

    /* アバウトセクションの調整 */
    .about-top-img {
        
        margin-bottom: 120px;
    }
    .about-container {
        flex-direction: column-reverse;
        width: 90%;
        gap: 40px;
    }
    .about-left, .about-right {
        width: 100%;
    }
    .about-left h2 {
        font-size: 48px;
    }
    .about-left p {
        font-size: 20px;
    }

    /* コンタクトセクション */
    .contact-container {
        flex-direction: column;
        align-items: flex-start;
        width: 90%;
        gap: 20px;
    }
    .contact-left {
        width: 100%;
        color: #FFFFFF;
        text-align: center;
    }
    
    .contact-right {
        width: 45%;
        margin: 0 auto;
        margin-top: 40px;
    }
}

/* スマホサイズ（480px以下） */
@media (max-width: 480px) {
	
	    .problem-section {
        padding: 40px 0 32px;
    }
	
    .fv-left h2{
        font-size: 18px;
    }
    .fv-left h1{
        font-size: 40px;
    }
    .three-columns .column {
        
        flex-direction: column;
        font-size: 10px;
    }
    .three-columns {
        
        margin-top: 8px;
    }
    .three-columns .column:not(:first-child) {
        border-left: 1px dotted #3C4358;
    }
    .cta-btn {
        margin-top: 24px;
        font-size: 20px;
        padding: 12px 20px;
    }
    .cta-icon {
        width: 40px;
    }
    .arrow{
        width: 40px;
    }
    .fv-container {
       padding-bottom: 0;
        gap: 0px;
    }
    .problem-title-box h2 {
        font-size: 20px;
    }
    #problem-ab1 {
        width: 80px;
        top: 70px;
        right: 10px;
    }
    #problem-ab2 {
        width: 60px;
        top: 50px;
        left: 20px;
    }
    .problem-list {
        width: 90%;
    }
    .problem-list li {
        
        font-size: 14px;
        
    }
    .problem-title-box {
        display: inline-block;
        text-align: center;
        margin-bottom: 8px;
    }
    .problem-section p {
        font-size: 16px;
        font-weight: bold;
        width: 90%;
        margin: 0 auto;
        margin-top: 32px;
        line-height: 2;
    }
	.about-top-img {
        margin-bottom: 60px;
    }
    #problem-ab3 {
        width: 100px;
        bottom: -70px;
        right: 20px;
    }
    .about-left p {
        font-size: 16px;
    }
    .about-left h2 {
        font-size: 24px;
    }
    .about-list li {
        background-color: #3C4358;
        color: #FFFFFF;
        padding: 12px;
        margin-bottom: 12px;
        font-size: 14px;
        text-align: left;
        display: flex
    ;
        align-items: center;
        gap: 12px;
    }
    .contact-left h2 {
        font-size: 18px;
        color: #FFFFFF;
    }
    .contact-left h1 {
        font-size: 40px;
        font-weight: bold;
    }
    .contact-three-columns .column {
        font-size: 10px;
        
        flex-direction: column;
    }
	.contact-three-columns .column:not(:first-child) {
        border-left: 1px dotted #ffffff;
    }
    .contact-three-columns {
    
        margin-top: 8px;
    }
    .contact-left .cta-icon {
        width: 40px;
    }
    .contact-left .cta-btn {
        margin-top: 24px;
        font-size: 20px;
        padding: 12px 20px;
    }
}

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

.button {
	height: 80px;
	width: 350px;
}

.button:active {
	height: 70px;
}

.button__text--sm {
	font-size: 2rem;
}

.button__text--lg {
	font-size: 3rem;
}

.form__submit {
	font-size: 2rem;
	height: 60px;
}

.form__submit:active {
	height: 53px;
}

.list {
	margin-bottom: 20px;
}

.result__yen {
	width: 150px;
}

.result__yen--02 {
	left: -30px;
}

.result__yen--06 {
	right: -30px;
}

.result__yen--07 {
	right: -50px;
}

.result__title {
	font-size: 6rem;
}

.result__contents {
	padding: 50px 35px;
}

.result__head {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}

.result .type {
	margin-left: 0;
	position: relative;
}

.result__text-area {
	width: 100%;
}

.result__heading {
	margin-bottom: 20px;
	text-align: center;
}

.result__lead {
	margin: 0 auto;
	text-align: center;
}

.result__img {
	bottom: -20px;
	left: unset;
	right: -100px;
	width: 155px;
}

.result__img--pc {
	display: none;
}

.result__img--sp {
	display: block;
}

.cta__inner {
	padding: 50px 20px;
}

.cta__yen {
	width: 150px;
}

.cta__yen--01 {
	bottom: 30px;
}

.cta__yen--02 {
	top: -30px;
}

.cta__yen--03 {
	bottom: -40px;
}

.cta__yen--04 {
	top: 30px;
}

.cta__img {
	width: 230px;
}

.cta__img--01 {
	right: 100%;
}

.cta__img--02 {
	left: 100%;
}

.cta__title {
	font-size: 2.4rem;
}

.cta__logo {
	width: 400px;
}

.intro {
	margin-bottom: 130px;
	padding: 80px 20px 50px;
}

.intro::after {
	border-top-width: 80px;
}

.intro__img {
	width: 36%;
}

.intro__text-area {
	min-width: 455px;
}

.intro__title {
	font-size: 4rem;
}

.intro__text01 {
	font-size: 1.8rem;
}

.intro__text02 {
	font-size: 1.7rem;
}

.about {
	padding-bottom: 120px;
	padding-right: 0;
}

.about__inner {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 70px;
}

.about__title {
	margin-bottom: 40px;
}

.about__title--en {
	font-size: 2.8rem;
}

.about__title--ja {
	font-size: 5rem;
}

.about__text {
	margin-bottom: 20px;
}

}

@media screen and (max-width: 768px) {
	
	.diagnosis__item label:hover {
	-webkit-box-shadow: none;
	background-color: #fff;
	box-shadow: none;
}


.footer {
	padding: 10px;
}

.copyright {
	font-size: 1.1rem;
}

.header {
	padding: 3px 0 6px;
}

.header__logo {
	width: 140px;
}

.button {
	border-bottom-width: 7px;
	height: 70px;
	margin-top: 15px;
	width: 300px;
}

.button:active {
	height: 63px;
	margin-top: 20px;
}

.button__text--sm {
	font-size: 1.8rem;
}

.button__text--lg {
	font-size: 2.6rem;
	letter-spacing: calc(50 / 1000 * 1em);
}

.button-catch {
	font-size: 1.8rem;
	padding: 4px 30px;
}

.button-catch::after {
	border-width: 10px 10.5px 0 10.5px;
}

.form__label {
	font-size: 2rem;
	padding-left: 15px;
}

.form__input {
	height: 45px;
}

.form__submit {
	font-size: 1.8rem;
	height: 50px;
	margin-top: 60px;
}

.form__submit:active {
	height: 43px;
	margin-top: 67px;
}

.list {
	margin-bottom: 10px;
}

.list__item {
	background-position: top 5px left 0;
	background-size: 16px;
	font-size: 1.4rem;
	line-height: 2;
	padding-left: 25px;
}

.tab__label {
	font-size: 1.4rem;
}

.tab__content.is_show {
	padding-bottom: 60px;
	padding-top: 20px;
}

.type {
	width: 130px;
}

.type__img--01 {
	width: 35.1px;
}

.type__img--02 {
	width: 41.6px;
}

.type__img--03 {
	width: 43.55px;
}

.type__img--04 {
	width: 44.2px;
}

.type__text {
	font-size: 2.2rem;
}

.diagnosis {
	min-height: calc(100vh - 86px);
	padding-bottom: 60px;
}

.diagnosis__inner {
	padding: 30px 20px 0;
}

.diagnosis__yen {
	width: 114px;
}

.diagnosis__bg {
	right: -30px;
	top: 50px;
	width: 170px;
}

.diagnosis__img--01 {
	-webkit-transform: translateX(-60%);
	left: 50%;
	transform: translateX(-60%);
	width: 350px;
}

.diagnosis__img--02 {
	-webkit-transform: translateX(85%);
	right: 50%;
	top: 100px;
	transform: translateX(85%);
	width: 385px;
}

.diagnosis__step {
	height: 8px;
	width: 80%;
}

.diagnosis__heading {
	margin-bottom: 20px;
}

.diagnosis__num {
	font-size: 2rem;
	margin-bottom: 10px;
}

.diagnosis__text {
	font-size: 1.4rem;
	margin-bottom: 10px;
}

.diagnosis__title {
	font-size: 2.9rem;
	letter-spacing: 0.05rem;
}

.diagnosis__list {
	gap: 20px 5%;
}

.diagnosis__item {
	min-width: 300px;
}

.diagnosis__item label {
	font-size: 1.6rem;
	font-weight: bold;
	height: 45px;
}

.slick-prev::before {
	font-size: 1.2rem;
}

.slick-next::before {
	font-size: 1.2rem;
}

.result__inner {
	padding: 40px 10px 50px;
}

.result__yen {
	width: 112px;
}

.result__yen--01 {
	left: -50px;
}

.result__yen--03 {
	left: 3%;
}

.result__yen--04 {
	bottom: 35px;
}

.result__yen--05 {
	right: 5%;
}

.result__title {
	font-size: 2.4rem;
	margin-bottom: 32px;
}
	
	.result_level {
    background-color: #4D5981;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    max-width: 860px;
    padding: 12px;
}
	.result__heading {
        font-size: 2rem;
			padding: 12px;
    }
.step {
    
    align-items: baseline;
    flex-direction: column;
    gap: unset;
    max-width: 800px;
    width: 100%;
}
	.steps {
    margin-top: 32px;
}
	.line-text p {
    font-size: 2.4rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 16px;
}
	
.result__contents {
	padding: 16px;
}

.result__head {
	margin-bottom: 20px;
	padding-bottom: 0px;
	border-bottom: 0;
}
	.result_headlead {
		font-size: 2rem;
	}
.result .type {
	width: 150px;
}

.result .type__img {
	margin-bottom: 5px;
}

.result .type__img--01 {
	width: 54px;
}

.result .type__img--02 {
	width: 64px;
}

.result .type__img--03 {
	width: 67px;
}

.result .type__img--04 {
	width: 68px;
}

.result .type__text {
	font-size: 3.4rem;
}

.result__heading--sm {
	font-size: 1.8rem;
}

.result__heading--lg {
	display: inline-block;
	font-size: 3rem;
}

.result__lead {
	font-size: 1.7rem;
	max-width: 300px;
	padding: 20px 10px;
	width: 100%;
}

.result__img {
	bottom: -10px;
	right: -50px;
	width: 90px;
}

.result__text {
	font-size: 1.4rem;
	letter-spacing: 0;
	line-height: 2;
	margin-bottom: 20px;
}

.result__button {
	border-bottom-width: 5px;
	font-size: 1.4rem;
	gap: 5px;
	height: 60px;
	margin-top: 24px;
	max-width: 350px;
	width: 90%;
}

.result__button:active {
	height: 55px;
	margin-top: 45px;
}

.result__button img {
	width: 34px;
}

.cta__inner {
	padding: 40px 20px;
}

.cta__yen {
	width: 112px;
}

.cta__img-area {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

.cta__img {
	position: static;
	width: 167.5px;
}

.cta__title {
	font-size: 2rem;
	margin-bottom: 10px;
}

.cta__logo {
	width: 335px;
}

.intro {
	margin-bottom: 90px;
	padding: 40px 20px 0;
}

.intro::after {
	border-top-width: 50px;
}

.intro__inner {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
	gap: 20px;
}

.intro__img {
	width: 220px;
}

.intro__text-area {
	min-width: unset;
}

.intro__title {
	font-size: 3rem;
	letter-spacing: calc(10 / 1000 * 1em);
	margin-bottom: 15px;
}

.intro__text01 {
	font-size: 1.5rem;
	letter-spacing: calc(100 / 1000 * 1em);
	line-height: 2;
	margin-bottom: 20px;
}

.intro__text02 {
	font-size: 1.4rem;
	margin-bottom: 5px;
}

.intro__text02 + .intro__text02 {
	margin-bottom: 15px;
}

.intro__text03 {
	font-size: 1.3rem;
	letter-spacing: calc(100 / 1000 * 1em);
}

.intro__text03 span {
	padding-bottom: 3px;
}

.about {
	padding: 0 20px 70px;
}

.about__text-area {
	min-width: unset;
}

.about__title {
	margin-bottom: 30px;
}

.about__title--en {
	font-size: 2.3rem;
	margin-bottom: 0;
}

.about__title--ja {
	font-size: 4rem;
}

.about__title--ja span {
	padding-bottom: 5px;
}

.about__text {
	font-size: 1.4rem;
	letter-spacing: calc(100 / 1000 * 1em);
	line-height: 2;
	margin-bottom: 10px;
}

.about__type-area {
	gap: 30px;
	width: 335px;
}

.about__type-area::before,
.about__type-area::after {
	width: 375px;
}

}
input[type="date"] {
	font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 700;
	background: #fff !important;
    -webkit-appearance: none; /* Safari/Chrome 用 */
    -moz-appearance: none;    /* Firefox 用 */
    appearance: none;         /* その他のブラウザ用 */
}
.wpcf7-radio {
	display: flex;
    gap: 20px;
	width: 100%;
}
.wpcf7-radio span{
	width: 100%;
}
.form__input {
min-width: 300px;
}
.form__mail-text {
	width: 65%;
    margin-left: auto;
	margin-top: 16px;

}

@media (max-width: 514px) {
	
	
	.form__mail-text {
		width: 100%;
		text-align: justify;
		font-size:14px;
	
	}
}

@media screen and (min-width: 633px) {
	.form__mail-text {
		width:100%;
		max-width: 416px;
	}
}


/* プレゼント規約セクション */
.present-terms-section {
  text-align: center;
  margin-top: 20px;
  padding: 20px 0;
}

.present-terms-btn {
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.present-terms-btn:hover {
  background-color: #555;
  transform: translateY(-2px);
}

/* モーダルウィンドウ */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 7% auto;
    padding: 0;
    border: none;
    width: 80%;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow: hidden;
}

.modal-header {
  padding: 20px 30px;
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.close {
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.close:hover,
.close:focus {
  color: #ccc;
  text-decoration: none;
}

.modal-body {
  padding: 30px;
  max-height: calc(70vh - 80px);
  overflow-y: auto;
  line-height: 1.6;
}

.modal-body h3 {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 15px 0;
  padding-bottom: 5px;
  border-bottom: 2px solid;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  margin-bottom: 12px;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.modal-body p strong {
  color: #333;
  font-weight: bold;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    margin: 10% auto;
    max-height: 80vh;
  }
  
  .modal-header {
    padding: 15px 20px;
  }
  
  .modal-header h2 {
    font-size: 20px;
  }
  
  .modal-body {
    padding: 20px;
    max-height: calc(80vh - 70px);
  }
  
  .modal-body h3 {
    font-size: 16px;
  }
  
  .modal-body p {
    font-size: 13px;
  }
  
  .present-terms-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}



/*# sourceMappingURL=styles.css.map */



