@charset "UTF-8";

/* ===================================================================
CSS information
 file name  :  style.css
 style info : LPスタイル
=================================================================== */
body, html {
    overscroll-behavior: none;
}

a:link{
    color: #183028;
}

body {
    background-color: #f2f2f2;
    font-family: FWD Cicular, 'Noto Sans JP', sans-serif, "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-feature-settings: "palt";
    color: #183028;
    font-weight: 500;
}

.main-content {
    width: min(calc(750 / 750 * 100vw), 750px);
    overflow-x: hidden;
    margin: 0 auto;
    text-align: center;
    -webkit-box-shadow: 0 0 10px 2px #d6d6d6;
    -moz-box-shadow: 0 0 10px 2px #d6d6d6;
    box-shadow: 0 0 10px 2px #d6d6d6;
    background: #fff;
    position: relative;
}

.main-content::-webkit-scrollbar {
    display: none;
}

.wrap {
    padding: 0 min(calc(40 / 750 * 100vw), 40px);
}

span.blue {
    color: #0097A9;
    font-weight: 700;
    letter-spacing: 0.11em;
}

span.orange {
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.11em;
}

.pc-nav {
    display: none;
}

:root {
    --orange: #E87722;
    --green: #0796a9;
    --yellow: #fed141;
    --orange-c: #fae4d3;
    --green-c: #e2f5f0;
    --yellow-c: #fff6d9;
		--gray: #d8dfe1;
}

h2.ttl {
    font-size: min(calc(40 / 750 * 100vw), 40px);
    text-align: center;
    color: #fff;
    letter-spacing: 0.07em;
    background: var(--orange);
    border-radius: min(calc(12 / 750 * 100vw), 12px);
    padding: min(calc(30 / 750 * 100vw), 30px) 0;
    margin-bottom: min(calc(60 / 750 * 100vw), 60px);
}

h2.ttl-green {
    font-size: min(calc(32 / 750 * 100vw), 32px);
    text-align: center;
    color: #fff;
    letter-spacing: 0.02em;
    background: var(--green);
    border-radius: min(calc(12 / 750 * 100vw), 12px);
    padding: min(calc(15 / 750 * 100vw), 15px) 0;
    margin-bottom: min(calc(29 / 750 * 100vw), 29px);
}

/* ======================
header
========================= */
header {
    width: 100%;
    background-color: #fff;
    font-size: min(calc(20 / 750 * 100vw), 20px);
    line-height: 1;
}

.header-logo {
    display: grid;
    grid-template-columns: min(calc(161 / 750 * 100vw), 161px) min(calc(100 / 750 * 100vw), 100px);
    align-items: center;
    justify-content: end;
    gap: min(calc(194 / 750 * 100vw), 195px);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
}

/* ハンバーガーボタン */
.hamburger {
    width: 100%;
    height: min(calc(100 / 750 * 100vw), 100px);
    margin: 0 auto;
    text-align: center;
    background: var(--orange);
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    display: block;
    width: min(calc(50 / 750 * 100vw), 50px);
    height: min(calc(5 / 750 * 100vw), 5px);
    margin: 0 auto min(calc(12 / 750 * 100vw), 12px);
    background-color: #fff;
    transform-origin: center;
    border-radius: min(calc(2.5 / 750 * 100vw), 2.5px);
}

.hamburger span:nth-child(1),
.hamburger span:nth-child(3) {
    transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger span:nth-child(3) {
    margin-bottom: 0;
}

/* バツにするとき */
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateY(-100%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-100%) rotate(-45deg);
}

#navMenu {
    width: 100%;
    font-size: min(calc(28 / 750 * 100vw), 28px);
    padding: 0;
    display: none;
    background: var(--orange-c);
}

#navMenu ul {
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

#navMenu li {
    height: min(calc(92 / 750 * 100vw), 92px);
    border-bottom: 1px solid #CED8D6;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0 0 0 min(calc(40 / 750 * 100vw), 40px);
    position: relative;
    box-sizing: border-box;
    letter-spacing: 0.05em;
}

#navMenu li:nth-child(1),
#navMenu li:nth-child(3) {
    border-right: 1px solid #CED8D6;
}

#navMenu li::before,
#navMenu li::after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    left: min(calc(10 / 750 * 100vw), 10px);
    width: min(calc(20 / 750 * 100vw), 20px);
    height: min(calc(5 / 750 * 100vw), 5px);
    border-radius: 9999px;
    background-color: var(--orange);
    transform-origin: calc(100% - 2px) 50%;
}

#navMenu li::after {
    transform: rotate(-38.45deg);
}

#navMenu li::before {
    transform: rotate(38.45deg);
}

#navMenu li a {
    text-decoration: none;
    display: block;
    width: 100%;
}

#navMenu.active {
    display: block;
}

/* ======================
fv
========================= */
.fv {
    background: url(../img/conversation/fv.png) no-repeat top center/ 100%, var(--orange);
    padding-top: min(calc(18 / 750 * 100vw), 18px);
}

.fv h2.ttl {
    display: grid;
    width: min(calc(670 / 750 * 100vw), 670px);
    height: min(calc(70 / 750 * 100vw), 70px);
    font-size: min(calc(42 / 750 * 100vw), 42px);
    margin: 0 auto min(calc(20 / 750 * 100vw), 20px);
    border-radius: min(calc(35 / 750 * 100vw), 35px);
    padding: 0;
    background: var(--yellow);
    letter-spacing: 0.055em;
    color: #183028;
}

.fv .fv-sub {
    margin-bottom: min(calc(456 / 750 * 100vw), 456px);
}

.fv .fv-sub span {
    letter-spacing: 0.03em;
}

/* fv-bottom */
.fv-bottom .box {
    width: min(calc(670 / 750 * 100vw), 670px);
    margin: 0 auto;
    padding: 0 0 min(calc(50 / 750 * 100vw), 50px);
}

.fv-bottom .box h2 {
    position: relative;
    width: min(calc(250 / 750 * 100vw), 250px);
    font-size: min(calc(40 / 750 * 100vw), 40px);
    margin: 0 auto min(calc(30 / 750 * 100vw), 30px);
    text-align: center;
    color: #fff;
}

.fv-bottom .box h2::before {
    content: "";
    position: absolute;
    bottom: min(calc(10 / 750 * 100vw), 10px);
    left: 0;
    width: min(calc(21 / 750 * 100vw), 21px);
    height: min(calc(38 / 750 * 100vw), 38px);
    background: url(../img/conversation/slash_l.png) no-repeat center center/ cover;
}

.fv-bottom .box h2::after {
    content: "";
    position: absolute;
    bottom: min(calc(10 / 750 * 100vw), 10px);
    right: 0;
    width: min(calc(21 / 750 * 100vw), 21px);
    height: min(calc(38 / 750 * 100vw), 38px);
    background: url(../img/conversation/slash_r.png) no-repeat center center/ cover;
}

.fv-bottom .box ul {
    display: grid;
    grid-template-columns: repeat(3, min(210px, calc(210 / 750 * 100vw)));
    gap: min(calc(20 / 750 * 100vw), 20px);
}

.fv-bottom .box ul li {
    padding: min(calc(30 / 750 * 100vw), 30px) min(calc(10 / 750 * 100vw), 10px) min(calc(25 / 750 * 100vw), 25px) min(calc(15 / 750 * 100vw), 15px);
    background: #fff;
    border-radius: min(calc(12 / 750 * 100vw), 12px);
    font-size: min(calc(26 / 750 * 100vw), 26px);
    text-align: left;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.fv-bottom .box .pic {
    text-align: center;
    margin: 0 auto min(calc(5 / 750 * 100vw), 5px);
}

.fv-bottom .box li:first-of-type p {
    letter-spacing: 0.015em;
}

.fv-bottom .box li:last-of-type .husband {
    color: var(--green);
}

/* ======================
comet
========================= */
.comet {
    width: min(calc(670 / 750 * 100vw), 670px);
    display: grid;
    grid-template-columns: min(calc(160 / 750 * 100vw), 160px) min(calc(510 / 750 * 100vw), 510px);
    justify-content: space-between;
    margin: 0 auto min(calc(40 / 750 * 100vw), 40px);
}

.comet-reverse {
    width: min(calc(670 / 750 * 100vw), 670px);
    display: grid;
    grid-template-columns: min(calc(510 / 750 * 100vw), 510px) min(calc(160 / 750 * 100vw), 160px);
    justify-content: space-between;
    margin-bottom: min(calc(35 / 750 * 100vw), 35px);
}

.comet-reverse .comet-green,
.comet-reverse .comet-orange {
    margin-left: 0;
    margin-right: auto;
}

.comet-green,
.comet-yellow,
.comet-orange {
    position: relative;
    margin-left: auto;
}

.comet-green .wrapper p,
.comet-yellow .wrapper p,
.comet-orange .wrapper p {
    position: relative;
    text-align: left;
    line-height: 1.41;
    letter-spacing: 0.08em;
    z-index: 2;
}

.comet-green .wrapper,
.comet-yellow .wrapper,
.comet-orange .wrapper {
    position: relative;
    background-color: var(--orange-c);
    width: min(calc(490/750 * 100vw), 490px);
    padding: min(calc(20 / 750 * 100vw), 20px) min(calc(18 / 750 * 100vw), 18px) min(calc(26 / 750 * 100vw), 26px) min(calc(20 / 750 * 100vw), 20px);
    border-radius: min(calc(20 / 750 * 100vw), 20px);
    box-shadow: 0 0 10px rgba(24, 48, 40, 0.16);
    font-size: min(calc(28/750 * 100vw), 28px);
    margin-top: 0;
}

.comet-orange .wrapper {
    padding: min(calc(26 / 750 * 100vw), 26px) min(calc(18 / 750 * 100vw), 18px) min(calc(26 / 750 * 100vw), 26px) min(calc(20 / 750 * 100vw), 20px);
}

.comet-green .wrapper {
    background-color: var(--green-c);
}

.comet-yellow .wrapper {
    background-color: var(--yellow-c);
}

.comet-orange::before,
.comet-green::before,
.comet-yellow::before {
    content: '';
    position: absolute;
    top: 0;
    left: max(calc(-19 / 750 * 100vw), -19px);
    width: min(calc(20 / 750 * 100vw), 20px);
    height: min(calc(46 / 750 * 100vw), 46px);
    background: url(../img/conversation/arrow_orange.png) no-repeat center center/ 100%;
    filter: drop-shadow(-1px 0px 5px rgba(24, 48, 40, 0.16));
    clip-path: inset(0px 0px -5px -10px);
    z-index: 1;
}

.comet-reverse .comet-green::before,
.comet-reverse .comet-orange::before {
    right: max(calc(-19 / 750 * 100vw), -19px);
    left: auto;
}

.comet-reverse .comet-green::before {
    filter: drop-shadow(4px 0px 5px rgba(24, 48, 40, 0.16));
    clip-path: inset(0px -5px -10px 0);
}

.comet-reverse .comet-orange::before {
    transform: scale(-1, 1);
}

.comet-green::before {
    background: url(../img/conversation/arrow_green.png) no-repeat center center/ 100%;
}

.comet-yellow::before {
    background: url(../img/conversation/arrow_yellow.png) no-repeat center center/ 100%;
}

/* ======================
child
========================= */
.child .wrap {
    margin-top: min(calc(50 / 750 * 100vw), 50px);
    padding-bottom: min(calc(60 / 750 * 100vw), 60px);
    background: #f8f9f9;
}

.child h2 {
    font-size: min(calc(36 / 750 * 100vw), 36px);
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1.45;
    background: var(--yellow-c);
    padding: min(calc(35 / 750 * 100vw), 35px) 0;
    border: var(--orange) solid min(calc(6 / 750 * 100vw), 6px);
    border-radius: min(calc(12 / 750 * 100vw), 12px);
    margin-bottom: min(calc(50 / 750 * 100vw), 50px);
}

.child .wrap>div:nth-of-type(1) .wrapper p {
    line-height: 1.41;
    letter-spacing: 0.12em;
}

.child .wrap>div:nth-of-type(2) .wrapper p {
    letter-spacing: 0.101em;
}

.child .wrap>div:nth-of-type(2) .comet-orange .wrapper {
    padding: min(calc(17 / 750 * 100vw), 17px) min(calc(18 / 750 * 100vw), 18px) min(calc(33 / 750 * 100vw), 33px);
}

.child .wrap>div:nth-of-type(3) .wrapper p {
    letter-spacing: 0.09em;
}

.child .wrap>div:nth-of-type(4) {
    margin-bottom: min(calc(39 / 750 * 100vw), 39px);
}

.child .wrap>div:nth-of-type(4) .comet-orange .wrapper {
    padding: min(calc(20 / 750 * 100vw), 20px) min(calc(18 / 750 * 100vw), 18px) min(calc(23 / 750 * 100vw), 23px);
}

.child .wrap>div:nth-of-type(4) .wrapper p {
    line-height: 1.43;
    letter-spacing: 0.09em;
}

.child .wrap>div:nth-of-type(4) .wrapper p span.orange {
    letter-spacing: 0.11em;
}

.child .wrap>div:nth-of-type(6) .comet-orange .wrapper {
    padding: min(calc(22 / 750 * 100vw), 22px) min(calc(16 / 750 * 100vw), 16px) min(calc(30 / 750 * 100vw), 30px) min(calc(20 / 750 * 100vw), 20px);
}

.child .wrap>div:nth-of-type(6) .wrapper p span.space {
    letter-spacing: 0.02em;
}

.child .wrap>div:nth-of-type(6) .wrapper p {
    letter-spacing: 0.11em;
}

/* ======================
nearby
========================= */
.nearby {
    background: url(../img/conversation/dot_bg.png)repeat top center/ contain;
}

.nearby .wrap {
    padding-top: min(calc(99 / 750 * 100vw), 99px);
    padding-bottom: min(calc(52 / 750 * 100vw), 52px);
}

.nearby .wrap>div:nth-of-type(1) .wrapper p {
    letter-spacing: 0.12em;
}

.nearby .wrap>div:nth-of-type(1) {
    margin-bottom: min(calc(34 / 750 * 100vw), 34px);
}

.nearby .wrap>div:nth-of-type(2) {
    margin-bottom: min(calc(32 / 750 * 100vw), 32px);
}

.nearby .wrap>div:nth-of-type(3) .wrapper {
    padding-top: min(calc(22 / 750 * 100vw), 22px);
    padding-bottom: min(calc(33 / 750 * 100vw), 33px);
}

.nearby .wrap>div:nth-of-type(3) .wrapper p {
    letter-spacing: 0.1em;
}

.nearby .wrap>div:nth-of-type(3) {
    margin-bottom: min(calc(32 / 750 * 100vw), 32px);
}

.nearby .wrap>div:nth-of-type(4) .wrapper p {
    letter-spacing: 0.1em;
}

/* ======================
what
========================= */
.what {
    background: #f8f9f9;
}

.what .wrap {
    padding-top: min(calc(102 / 750 * 100vw), 102px);
    padding-bottom: min(calc(42 / 750 * 100vw), 42px);
}

.what .pic {
    margin-bottom: min(calc(40 / 750 * 100vw), 40px);
}

.what h2.ttl {
    letter-spacing: 0.125em;
    margin-bottom: min(calc(52 / 750 * 100vw), 52px);
}

.what .wrap>div.comet-reverse {
    margin-bottom: min(calc(36 / 750 * 100vw), 36px);
}

.what .wrap>div:nth-of-type(8) {
    margin-bottom: min(calc(40 / 750 * 100vw), 40px);
}

/* ======================
price
========================= */
.price {
    background: url(../img/conversation/dot_bg.png)repeat top center/ contain;
}

.price .wrap {
    padding-top: min(calc(107 / 750 * 100vw), 107px);
    padding-bottom: min(calc(48 / 750 * 100vw), 48px);
}

.price .pic {
    margin-bottom: min(calc(40 / 750 * 100vw), 40px);
}

.price .wrap>p.pic:nth-of-type(3) {
    margin-bottom: min(calc(50 / 750 * 100vw), 50px);
}

.price .wrap>div:nth-of-type(4) {
    margin-bottom: min(calc(45 / 750 * 100vw), 45px);
}

.price .wrap>div:nth-of-type(6) {
    margin-bottom: min(calc(39 / 750 * 100vw), 39px);
}

.price .wrap>div:nth-of-type(7) {
    margin-bottom: min(calc(33 / 750 * 100vw), 33px);
}

.price .wrap>div:nth-of-type(11) {
    margin-bottom: min(calc(29 / 750 * 100vw), 29px);
}

.price .wrap>div:nth-of-type(12) .wrapper p {
    letter-spacing: 0.13em;
}

/* ======================
case
========================= */
.case .wrap {
    padding-top: min(calc(100 / 750 * 100vw), 100px);
    padding-bottom: min(calc(47 / 750 * 100vw), 47px);
    background: #f8f9f9;
}

.case .wrap h2.ttl {
    letter-spacing: 0.12em;
    margin-bottom: min(calc(40 / 750 * 100vw), 40px);
}

.case .wrap>div:nth-of-type(4) {
    margin-bottom: min(calc(41 / 750 * 100vw), 41px);
}

.case .wrap>div:nth-of-type(6) .wrapper p {
    letter-spacing: 0.1em;
}

/* ======================
point
========================= */
.point {
    margin-bottom: min(calc(50 / 750 * 100vw), 50px);
}

.point h3 {
    position: relative;
    width: min(calc(250 / 750 * 100vw), 250px);
    font-size: min(calc(28 / 750 * 100vw), 28px);
    padding: min(calc(8 / 750 * 100vw), 8px) min(calc(18 / 750 * 100vw), 18px) min(calc(7 / 750 * 100vw), 7px) 0;
    background: var(--orange);
    border-radius: min(calc(12 / 750 * 100vw), 12px) min(calc(12 / 750 * 100vw), 12px) 0 0;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    text-align: right;
}

.point h3::before {
    position: absolute;
    content: '';
    background: url(../img/conversation/point_icon.png)no-repeat center left/ 100%;
    width: min(calc(50 / 750 * 100vw), 50px);
    height: min(calc(36 / 750 * 100vw), 36px);
    left: min(calc(20 / 750 * 100vw), 20px);
    top: min(calc(11 / 750 * 100vw), 11px);
}

.point div {
    padding: min(calc(20 / 750 * 100vw), 20px) min(calc(5 / 750 * 100vw), 5px) min(calc(18 / 750 * 100vw), 18px) min(calc(12 / 750 * 100vw), 12px);
    border: var(--orange) solid min(calc(4 / 750 * 100vw), 4px);
    border-radius: 0 min(calc(12 / 750 * 100vw), 12px) min(calc(12 / 750 * 100vw), 12px) min(calc(12 / 750 * 100vw), 12px);
    font-size: min(calc(26 / 750 * 100vw), 26px);
    text-align: left;
    background: #fff;
    letter-spacing: -0.01em;
}

.point .note {
    margin-top: min(calc(14 / 750 * 100vw), 14px);
    text-indent: -1em;
    padding-left: 1em;
    letter-spacing: -0.03em;
}

.case .wrap>div:nth-of-type(12) div {
    padding: min(calc(20 / 750 * 100vw), 20px) min(calc(18 / 750 * 100vw), 18px) min(calc(17 / 750 * 100vw), 17px) min(calc(22 / 750 * 100vw), 22px);
    letter-spacing: 0.13em;
}


/* ======================
option
========================= */
.option {
    background: url(../img/conversation/dot_bg.png)repeat top center/ contain;
}

.option .wrap {
    padding-top: min(calc(93 / 750 * 100vw), 93px);
    padding-bottom: min(calc(74 / 750 * 100vw), 74px);
}

.option .note-text {
    font-size: min(calc(24 / 750 * 100vw), 24px);
    text-align: left;
    margin-bottom: min(calc(20 / 750 * 100vw), 20px);
		margin-top: max(calc(-24 / 750 * 100vw), -24px);
}

.option h2.ttl {
    margin-bottom: min(calc(38 / 750 * 100vw), 38px);
}

.option .note-text {
    letter-spacing: 0.01em;
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: min(calc(36 / 750 * 100vw), 36px);
}

.option .wrap>div:last-of-type {
    margin-bottom: 0;
}

/* ======================
simulation
========================= */
.simulation {
	margin-top: min(calc(48 / 750 * 100vw), 48px);
	background: #fff;
	border: var(--gray) solid min(calc(2 / 750 * 100vw), 2px);
	border-radius: min(calc(16 / 750 * 100vw), 16px);
	overflow: hidden;
}
.simulation .wrapper {
	padding: min(calc(18 / 750 * 100vw), 18px) min(calc(21 / 750 * 100vw), 21px) min(calc(22 / 750 * 100vw), 22px) min(calc(30 / 750 * 100vw), 30px);
	letter-spacing: 0.06em;
}

.simulation h3 {
	font-size: min(calc(28 / 750 * 100vw), 28px);
	font-weight: 700;
	color: #fff;
	background-color: var(--orange);
	padding: min(calc(23 / 750 * 100vw), 23px) min(calc(2 / 750 * 100vw), 2px);
}

.simulation .condition-box h4 {
	font-size: min(calc(26 / 750 * 100vw), 26px);
	font-weight: 700;
	background-color: var(--green-c);
	padding: min(calc(16 / 750 * 100vw), 16px) min(calc(4 / 750 * 100vw), 4px);
	margin-bottom: min(calc(21 / 750 * 100vw), 21px);
	letter-spacing: 0.05em;
	line-height: 1.3;
}
.simulation .condition-box h4 .line {
	text-decoration: underline;
}

.simulation dl {
	font-size: min(calc(26 / 750 * 100vw), 26px);
}
.simulation dl dt {
	font-weight: 700;
	margin-bottom: min(calc(16 / 750 * 100vw), 16px);
}
.simulation dl dt .orange {
	font-size: min(calc(28 / 750 * 100vw), 28px);
}
.simulation dl dd {
	font-size: min(calc(34 / 750 * 100vw), 34px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: min(calc(36 / 750 * 100vw), 36px);
}
.simulation dl dd>span {
	display: block;
	text-align: center;
	letter-spacing: 0.07em;
	line-height: min(calc(48/ 750 * 100vw), 48px);
	position: relative;
}
.simulation dl dd > span + span::before {
	content: '';
	width: min(calc(2 / 750 * 100vw), 2px);
	height: min(calc(86 / 750 * 100vw), 86px);
	background-color: var(--gray);
	position: absolute;
	top: min(calc(8 / 750 * 100vw), 8px);
	left: max(calc(-19 / 750 * 100vw), -19px);
}
.simulation dl dd .num {
	font-size: min(calc(48/ 750 * 100vw), 48px);
	letter-spacing: 0.06em;
}
.simulation dl dd .yen {
	font-size: min(calc(36/ 750 * 100vw), 36px);
	letter-spacing: 0.1em;
}

.simulation .condition-box + .condition-box,
.simulation ul {
	border-top: min(calc(2/750 * 100vw), 2px) dotted var(--gray);
}
.simulation ul {
	padding-top: 0.9em;
	margin-top: 0.75em;
}
.simulation .condition-box + .condition-box {
	padding-top: 2.9em;
	margin-top: 2em;
}

.simulation ul {
	font-size: min(calc(26 / 750 * 100vw), 26px);
	text-align: left;
}
.simulation ul li {
	position: relative;
	padding-left: min(calc(20 / 750 * 100vw), 20px);
	letter-spacing: 0.06em;
	margin-bottom: min(calc(1/750 * 100vw), 1px);
}
.simulation ul li:first-child {
	padding-left: 0;
}
.simulation ul li:not(:first-child)::before {
	position: absolute;
	content: '';
	left: 0;
	top: min(calc(14 / 750 * 100vw), 14px);
	background: #859d99;
	width: min(calc(16 / 750 * 100vw), 16px);
	height: min(calc(16 / 750 * 100vw), 16px);
}

.simulation + .notes-box {
	margin-bottom: min(calc(60 / 750 * 100vw), 60px);
}
.simulation + .notes-box p {
	font-size: min(calc(24 / 750 * 100vw), 24px);
	margin-top: min(calc(12 / 750 * 100vw), 12px);
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
	letter-spacing: 0.06em;
}
.simulation + .notes-box .link {
	position: relative;
	display: block;
	font-size: min(calc(28 / 750 * 100vw), 28px);
	text-decoration: underline;
	text-decoration-color: var(--orange);
	letter-spacing: 0.07em;
	color: var(--orange);
	text-align: left;
	padding-left: min(calc(20 / 750 * 100vw), 20px);
	margin-top: min(calc(8 / 750 * 100vw), 8px);
}
.simulation + .notes-box .link::before {
	position: absolute;
	content: '';
	top: min(calc(10 / 750 * 100vw), 10px);
	left: 0;
	background: var(--orange);
	height: calc(tan(70deg) * min(calc(16 / 750 * 100vw), 16px) / 2);
	width: min(calc(16 / 750 * 100vw), 16px);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.option .simulation {
	margin-top: min(calc(45 / 750 * 100vw), 45px);
}
.option .simulation .wrapper {
	padding: min(calc(30 / 750 * 100vw), 30px) min(calc(20 / 750 * 100vw), 20px) min(calc(22 / 750 * 100vw), 22px);
}
.option .simulation ul {
	padding: 0.6em 0.4em 0;
}
.option .simulation + .notes-box .link {
	margin-top: min(calc(14 / 750 * 100vw), 14px);
}

/* ======================
ボタン
========================= */
.btn {
    background: var(--yellow-c);
    padding: min(calc(38 / 750 * 100vw), 38px) min(calc(20 / 750 * 100vw), 20px) min(calc(24 / 750 * 100vw), 24px);
}

.btn h2 {
    font-size: min(calc(34 / 750 * 100vw), 34px);
    margin: 0 auto min(calc(20 / 750 * 100vw), 20px);
    letter-spacing: 0.05em;
    font-weight: 700;
    line-height: 1;
}

.btn a {
    display: block;
    width: min(calc(670 / 750 * 100vw), 670px);
    margin: 0 auto min(calc(20 / 750 * 100vw), 20px);
}

.btn02 {
    background: none;
    margin-bottom: min(calc(12 / 750 * 100vw), 12px);
}

/* ======================
info
========================= */
.info h3 {
    font-size: min(calc(24 / 750 * 100vw), 24px);
    margin: 0 0 min(calc(5 / 750 * 100vw), 5px) min(calc(12 / 750 * 100vw), 12px);
    font-weight: 700;
    text-align: left;
    line-height: 1;
    letter-spacing: 0.05em;
}

.info .wrap {
    padding: min(calc(34 / 750 * 100vw), 34px) min(calc(40 / 750 * 100vw), 40px) 0;
}

.info ul {
    font-size: min(calc(26 / 750 * 100vw), 26px);
    margin-bottom: min(calc(4 / 750 * 100vw), 4px);
    text-align: left;
    list-style: none;
    letter-spacing: -0.01em;
    padding: 0;
}

.info ul li {
    position: relative;
    padding-left: 1em;
    line-height: 1.39;
    margin-bottom: 0;
}

.info ul li::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
    font-size: inherit;
}

.info .line {
    width: min(calc(710 / 750 * 100vw), 710px);
    border-top: dashed min(calc(2 / 750 * 100vw), 2px) #869D99;
    margin-bottom: min(calc(39 / 750 * 100vw), 39px);
}

h3.company {
    text-align: center;
    font-size: min(calc(28 / 750 * 100vw), 28px);
    margin: 0 auto min(calc(10 / 750 * 100vw), 10px);
}

address {
    font-style: normal;
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
}

address .company-name {
    font-size: min(calc(40 / 750 * 100vw), 40px);
    line-height: 1;
    letter-spacing: 0.06em;
    margin-bottom: min(calc(40 / 750 * 100vw), 40px);
}

address .address {
    font-size: min(calc(24 / 750 * 100vw), 24px);
    letter-spacing: 0.04em;
    font-weight: 500;
}

address .hp {
    font-size: min(calc(24 / 750 * 100vw), 24px);
    letter-spacing: 0.04em;
    font-weight: 500;
    margin-bottom: min(calc(25 / 750 * 100vw), 25px);
}

address .tel {
    font-size: min(calc(30 / 750 * 100vw), 30px);
    line-height: 1;
    letter-spacing: 0.07em;
    font-weight: 500;
    margin-bottom: min(calc(8 / 750 * 100vw), 8px);
}

address .tel a {
    font-size: min(calc(40 / 750 * 100vw), 40px);
    letter-spacing: 0.08em;
    margin-top: min(calc(11 / 750 * 100vw), 11px);
    margin-left: min(calc(10 / 750 * 100vw), 10px);
    color: var(--orange);
}

address .time {
    font-size: min(calc(24 / 750 * 100vw), 24px);
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 500;
    margin-bottom: min(calc(42 / 750 * 100vw), 42px);
    text-indent: -1em;
    padding-left: 1em;
}

.disclaimer {
    font-size: min(calc(24 / 750 * 100vw), 24px);
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-align: right;
    margin-left: min(calc(45 / 750 * 100vw), 45px);
    margin-bottom: min(calc(38 / 750 * 100vw), 38px);
}

/* ======================
footer 
========================= */
footer {
    margin-top: min(calc(45 / 750 * 100vw), 45px);
    margin-bottom: min(calc(230 / 750 * 100vw), 230px);
}

.footer-nav {
    font-size: min(calc(28 / 750 * 100vw), 28px);
    padding: 0 min(calc(40 / 750 * 100vw), 40px);
    margin-bottom: min(calc(45 / 750 * 100vw), 45px);
    justify-content: start;
    text-align: left;
}

.footer-nav ul {
    width: min(calc(456 / 750 * 100vw), 456px);
    display: flex;
    flex-wrap: wrap;
    gap: min(calc(20 / 750 * 100vw), 20px) 0;
    line-height: 1;
}

.footer-nav ul li:not(:last-child)::after {
    margin: 0px min(calc(10 / 750 * 100vw), 10px);
    content: "|";
}

.copy {
    text-align: center;
    letter-spacing: 0.03em;
    font-size: min(calc(28 / 750 * 100vw), 28px);
    padding-bottom: min(calc(20 / 750 * 100vw), 20px);
}

.float_btn {
    width: min(calc(750 / 750 * 100vw), 750px);
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 0;
    padding: min(calc(20 / 750 * 100vw), 20px) 0 0;
    z-index: 99;
    margin-bottom: 0;
    background: var(--green-c);
}

.copy {
    text-align: center;
    letter-spacing: 0.03em;
    font-size: min(calc(30 / 750 * 100vw), 30px);
    padding: min(calc(10 / 750 * 100vw), 10px);
    line-height: 1;
    background: #edeff0;
    margin-bottom: min(calc(195 / 750 * 100vw), 195px);
}

.top_btn {
    display: none;
    width: min(calc(80 / 750 * 100vw), 80px);
    position: fixed;
    bottom: min(calc(220 / 750 * 100vw), 220px);
    right: 0;
    left: calc(50% + min(calc(295 / 750 * 100vw), 295px));
    z-index: 99;
}

@media screen and (min-width: 960px) {
    body {
        background: #fae4d3;
    }

    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }

    .header-logo {
        padding: min(calc(20 / 1920 * 100vw), 20px) 0;
    }

    #hamburger {
        display: none;
    }

    .pc-nav {
        display: block;
        height: calc(80vh / 0.8);
        transform: scale(0.8);
        transform-origin: center center;
        width: 400px;
    }

    .pc-nav-wrapper{
        width: 100%;
        max-width: 350px;
        height: 100vh;
        align-content: center;
        display: flex;
        justify-content: center;
    }

    .pc-nav h3 {
        width: 100%;
        max-width: 338px;
        font-size: 41px;
        margin: 0 auto 37px;
        padding: 19px 0 17px;
        color: #fff;
        font-weight: 700;
        line-height: 1.1;
        text-align: center;
        letter-spacing: 0.05em;
        background: var(--orange);
        border-radius: 12px
    }

    .pc-nav h3 span {
        font-size: 32px;
    }

    .pc-nav .nav-btn {
        margin-bottom: 34px;
    }

    .pc-nav .nav-btn div {
        width: 100%;
        max-width: 338px;
        margin: 0 auto 20px;
    }

    .pc-nav .btn {
        background: none;
        padding: 0;
    }

    .pc-nav .nav-btn div img {
        width: 100%;
        max-width: 336px;
    }

    .pc-nav .btn a {
        width: 100%;
        margin: 0 auto 30px;
        text-align: center;
    }

    .pc-nav .btn img {
        display: block;
        width: 100%;
        width: 400px;
    }

    .pc-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: min(calc(60 / 1920 * 100vw), 60px);
        height: 100vh;
        margin: 0 auto;
    }

    .main-wrapper {
        width: 100%;
        max-width: 480px;
        height: 100vh;
    }

    .main-content {
        height: calc(100vh / 0.64);
        transform: scale(0.64);
        transform-origin: top left;
        -ms-overflow-style: auto;
        scrollbar-width: thin;
        overflow-y: scroll;
    }

    .float_btn {
        position: sticky;
    }

    footer {
        margin-bottom: 0;
    }

    .float_btn {
        display: none;
    }
    .copy {
        margin-bottom: 0;
    }
    .top_btn {
        display: none;
    }
}