/*
Theme Name: a	
Theme URI: https://dessin.work/
Description: dessin Inc. Client theme.
Author: dessin Inc. development team [Yuki Fujii]
Version: 2023-08-03
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
u,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    color: #000;
    font: inherit;
    vertical-align: baseline;
    line-height: 1.6;
    letter-spacing: 0.06em;
    font-family: "Noto Sans JP", sans-serif;
}

input {
    font-family: "Noto Sans JP", sans-serif;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    font: inherit;
}

html {
    scroll-behavior: smooth;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

a:hover img {
    opacity: 0.8;
}

img {
    vertical-align: bottom;
    max-width: 100%;
    background: transparent;
    transition: 0.3s;
}

/* iframe {
    vertical-align: bottom;
    max-width: 100%;
    background: transparent;
} */

input[type=submit],
input[type=button] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
    display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
    outline-offset: -2px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}

.grecaptcha-badge {
    display: none;
}

.clear:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

.smt {
    scroll-margin-top: calc(120 / var(--screen-w) * 100vw);
}

.df {
    display: flex;
}

.sb {
    justify-content: space-between;
}

.fw {
    flex-wrap: wrap;
}

.w90 {
    margin: 0 auto;
    width: 90%;
}

:root {
    --screen-w: 1280;
}

.bgWrap {
    background-color: #FFF9E8;
    background-image: linear-gradient(#fff 1px, transparent 1px);
    background-size: 100% 12px;
}

.pageTop {
    padding-top: calc(150 / var(--screen-w) * 100vw);
    padding-bottom: calc(155 / var(--screen-w) * 100vw);
    position: relative;
    z-index: 1;
}

header {
    position: fixed;
    top: calc(17 / var(--screen-w) * 100vw);
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0 calc(29 / var(--screen-w) * 100vw);
    align-items: center;
    z-index: 999;
}

.whiteWrap {
    background-color: #fff;
    width: calc(895 / var(--screen-w) * 100vw);
    padding: calc(13 / var(--screen-w) * 100vw) calc(47 / var(--screen-w) * 100vw) calc(13 / var(--screen-w) * 100vw) calc(25 / var(--screen-w) * 100vw);
    margin-right: calc(13 / var(--screen-w) * 100vw);
    align-items: center;
    justify-content: space-between;
    border-radius: calc(8 / var(--screen-w) * 100vw);
}

.whiteWrap h1 {
    line-height: 1;
    width: calc(186 / var(--screen-w) * 100vw);
}

.whiteWrap h1 a {
    line-height: 1;
}

.whiteWrap h1 a img {
    width: 100%;
}

.whiteWrap nav ul {
    gap: calc(30 / var(--screen-w) * 100vw);
}

.whiteWrap nav.pc ul li:after {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #003A61;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
    margin-top: calc(5 / var(--screen-w) * 100vw);
}

.whiteWrap nav.pc ul li:hover:after {
    transform: scale(1, 1);
    transform-origin: left top;
}

.whiteWrap nav a {
    font-size: calc(13 / var(--screen-w) * 100vw);
    font-weight: 600;
    display: flex;
    align-items: center;
    line-height: 1;
    letter-spacing: 0;
    color: #003A61;
}

.whiteWrap nav a::before {
    display: block;
    content: "";
    width: calc(10 / var(--screen-w) * 100vw);
    height: calc(12 / var(--screen-w) * 100vw);
    background: url('img/arrow_b.svg') no-repeat center;
    background-size: contain;
    margin-right: calc(4 / var(--screen-w) * 100vw);
}

.headBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(151 / var(--screen-w) * 100vw);
    height: calc(45 / var(--screen-w) * 100vw);
    border-radius: calc(8 / var(--screen-w) * 100vw);
    border: 2px solid #fff;
    box-sizing: border-box;
    color: #fff;
    font-size: calc(14 / var(--screen-w) * 100vw);
    font-weight: bold;
    letter-spacing: 0;
}

.headBtn:after {
    display: block;
    content: "";
    width: calc(10 / var(--screen-w) * 100vw);
    height: calc(12 / var(--screen-w) * 100vw);
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
    margin-left: calc(14 / var(--screen-w) * 100vw);
}

.headBtn.application {
    background-color: #F3981F;
    margin-right: calc(12 / var(--screen-w) * 100vw);
}

.headBtn.application:hover {
    background-color: #fff;
    border: 2px solid #F3981F;
    color: #F3981F;
}

.headBtn.application:hover:after {
    background: url('img/arrow_o.svg') no-repeat center;
    background-size: contain;
}

.headBtn.contact {
    background-color: #003A61;
}

.headBtn.contact:hover {
    background-color: #fff;
    border: 2px solid #003A61;
    color: #003A61;
}

.headBtn.contact:hover:after {
    background: url('img/arrow_b.svg') no-repeat center;
    background-size: contain;
}

.obi {
    position: absolute;
    z-index: -1;
    width: 100%;
    left: 0;
}

.obi.top {
    top: calc(444 / var(--screen-w) * 100vw);
}

.obi.bottom {
    bottom: calc(-183 / var(--screen-w) * 100vw);
}

.mv {
    width: calc(1100 / var(--screen-w) * 100vw);
    padding-bottom: calc(84 / var(--screen-w) * 100vw);
    margin: 0 auto calc(45 / var(--screen-w) * 100vw);
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.mv .left {
    width: 39%;
}

.mv .left .imgBox {
    margin-bottom: calc(34 / var(--screen-w) * 100vw);
    position: relative;
}

.mv .left .imgBox .effect {
    position: absolute;
    bottom: calc(-15 / var(--screen-w) * 100vw);
    left: calc(-30 / var(--screen-w) * 100vw);
    width: calc(48 / var(--screen-w) * 100vw);
}

.mv .left>p {
    font-size: calc(15 / var(--screen-w) * 100vw);
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: calc(33 / var(--screen-w) * 100vw);
    color: #003A61;
    margin-bottom: calc(52 / var(--screen-w) * 100vw);
}

.mv .shindan {
    background-color: #003A61;
    border-radius: calc(16 / var(--screen-w) * 100vw);
    position: relative;
    padding: calc(24 / var(--screen-w) * 100vw) calc(35 / var(--screen-w) * 100vw) calc(16 / var(--screen-w) * 100vw) calc(36 / var(--screen-w) * 101vw);
    filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.1));
    width: calc(391 / var(--screen-w) * 100vw);
    box-sizing: border-box;
}

.mv .shindan::after {
    display: block;
    content: "";
    width: calc(28 / var(--screen-w) * 100vw);
    height: calc(44 / var(--screen-w) * 100vw);
    background: url('img/fukidasi-tail-b.svg') no-repeat center;
    background-size: contain;
    position: absolute;
    top: 90%;
    right: calc(31 / var(--screen-w) * 100vw);
}

.mv .shindan>img {
    position: absolute;
    bottom: calc(10 / var(--screen-w) * 100vw);
    right: calc(4 / var(--screen-w) * 100vw);
    width: calc(103 / var(--screen-w) * 100vw);
}

.mv .shindan .titTxt {
    font-size: calc(20 / var(--screen-w) * 100vw);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: calc(20 / var(--screen-w) * 100vw);
    font-family: "Zen Kaku Gothic New", sans-serif;
    letter-spacing: -1px;
}

.mv .shindan a {
    background-color: #F3981F;
    border-radius: calc(8 / var(--screen-w) * 100vw);
    border: 2px solid #fff;
    box-sizing: border-box;
    width: calc(161 / var(--screen-w) * 100vw);
    height: calc(45 / var(--screen-w) * 100vw);
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(14 / var(--screen-w) * 100vw);
    font-weight: 700;
    color: #fff;
}

.mv .shindan a:hover {
    background-color: #fff;
    border: 2px solid #F3981F;
    color: #F3981F;
}

.mv .shindan a::after {
    display: block;
    content: "";
    width: calc(10 / var(--screen-w) * 100vw);
    height: calc(12 / var(--screen-w) * 100vw);
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
    margin-left: calc(13 / var(--screen-w) * 100vw);
}

.mv .shindan a:hover:after {
    background: url('img/arrow_o.svg') no-repeat center;
    background-size: contain;
}

.mv .right {
    width: 59%;
    aspect-ratio: 646 / 468;
    position: relative;
    margin-top: calc(29 / var(--screen-w) * 100vw);
}

.mv .right .fukidashiBox {
    position: absolute;
}

.mv .right .fukidashiInner {
    background-color: #fff;
    position: relative;
    padding: calc(16 / var(--screen-w) * 100vw) calc(32 / var(--screen-w) * 100vw);
    border-radius: calc(8 / var(--screen-w) * 100vw);
    filter: drop-shadow(04px 4px 0 rgba(0, 0, 0, 0.1));
}

.mv .right .fukidashiInner:after {
    display: block;
    content: "";
    position: absolute;
    z-index: -1;
    width: calc(28 / var(--screen-w) * 100vw);
    height: calc(44 / var(--screen-w) * 100vw);
    background: url('img/mv-fulidasi-tail.svg') no-repeat center;
    background-size: contain;
}

.mv .right .fukidashiBox .num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(54 / var(--screen-w) * 100vw);
    height: calc(54 / var(--screen-w) * 100vw);
    border-radius: 50%;
    font-size: calc(32 / var(--screen-w) * 100vw);
    font-weight: 700;
    color: #FAC01C;
    background-color: #fff;
    font-family: "Inter", sans-serif;
    position: absolute;
    top: calc(-24 / var(--screen-w) * 100vw);
    left: calc(-24 / var(--screen-w) * 100vw);
    letter-spacing: 0;
    z-index: 1;
}

.mv .right .fukidashiBox .text {
    font-size: calc(16 / var(--screen-w) * 100vw);
    color: #003A61;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
}

.mv .right .fukidashiBox .text .txtOrange {
    font-size: calc(22 / var(--screen-w) * 100vw);
    color: #F3981F;
    line-height: calc(33 / var(--screen-w) * 100vw);
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

.mv .right .fukidashiBox.no1 {
    top: 0;
    left: calc(56 / var(--screen-w) * 100vw);
}

.mv .right .fukidashiBox.no1 .fukidashiInner:after {
    top: calc(74 / var(--screen-w) * 100vw);
    left: calc(73 / var(--screen-w) * 100vw);
    transform: rotate(162deg);
}

.mv .right .fukidashiBox.no2 {
    bottom: calc(129 / var(--screen-w) * 100vw);
    right: calc(0 / var(--screen-w) * 100vw);
    z-index: 2;
}

.mv .right .fukidashiBox.no2 .fukidashiInner:after {
    top: calc(-23 / var(--screen-w) * 100vw);
    left: calc(51 / var(--screen-w) * 100vw);
    transform: rotate(-41deg);
}

.mv .right .fukidashiBox.no3 {
    left: calc(26 / var(--screen-w) * 100vw);
    bottom: calc(72 / var(--screen-w) * 100vw);
    z-index: 2;
}

.mv .right .fukidashiBox.no3 .fukidashiInner:after {
    top: calc(-30 / var(--screen-w) * 100vw);
    right: calc(71 / var(--screen-w) * 100vw);
    transform: rotate(26deg);
}

.mv .right .pcImg {
    width: 79%;
    position: absolute;
    bottom: 0;
    left: calc(53 / var(--screen-w) * 100vw);
}

.mv .right .effect {
    position: absolute;
}

.mv .right .effect.kira1 {
    top: calc(-10 / var(--screen-w) * 100vw);
    right: calc(120 / var(--screen-w)*100vw);
}

.mv .right .effect.kira2 {
    top: calc(100% + (10 / var(--screen-w) * 100vw));
    left: calc(39 / var(--screen-w)*100vw);
}

.mv .right .effect.kira3 {
    bottom: calc(78 / var(--screen-w) * 100vw);
    right: calc(-28 / var(--screen-w)*100vw);
}

.scrollIcon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}

.scrollIcon p {
    font-size: calc(15 / var(--screen-w) * 100vw);
    font-weight: 500;
    font-family: "Inter", sans-serif;
    color: #003A61;
}

.scrollIcon img {
    display: block;
    margin: 0 auto calc(4 / var(--screen-w) * 100vw);
}

.scrollIcon img:first-of-type {
    animation: fadeTop 2.4s infinite ease-in-out;
}

.scrollIcon img:last-child {
    margin-bottom: 0;
    animation: fadeBottom 2.4s infinite ease-in-out;
}

@keyframes fadeTop {

    0%,
    20% {
        opacity: 1;
    }

    40%,
    60% {
        opacity: 0;
    }

    80%,
    100% {
        opacity: 1;
    }
}

@keyframes fadeBottom {

    0%,
    40% {
        opacity: 1;
    }

    60%,
    80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.topBlock1 {
    margin-bottom: calc(90 / var(--screen-w) * 100vw);
    position: relative;
    padding-top: calc(83 / var(--screen-w) * 100vw);
    padding-bottom: calc(85 / var(--screen-w) * 100vw);
}

.effectWrap {
    position: absolute;
    z-index: 1;
    width: calc(382 / var(--screen-w) * 100vw);
    aspect-ratio: 382 / 290;
}

.topBlock1 .effectWrap {
    top: calc(0 / var(--screen-w) * 100vw);
    right: calc(0 / var(--screen-w) * 100vw);
}

.effectWrap .effect.no1-1 {
    width: 63%;
    position: absolute;
    left: 0;
    top: 0;
}

.effectWrap .effect.no1-2 {
    width: 41%;
    position: absolute;
    right: 0;
    bottom: calc(27 / var(--screen-w) * 100vw);
}

.topBlock1 .effect.no2 {
    position: absolute;
    width: calc(219 / var(--screen-w) * 100vw);
    left: calc(90 / var(--screen-w) * 100vw);
    bottom: calc(27 / var(--screen-w) * 100vw);
}

.topBlock1 .effect.no3 {
    position: absolute;
    width: calc(247 / var(--screen-w) * 100vw);
    right: calc(90 / var(--screen-w) * 100vw);
    bottom: calc(0 / var(--screen-w) * 100vw);
}

.topBlock1 .effectWrap .effect.no2 {
    width: calc(153 / var(--screen-w) * 100vw);
}

.topBlock1Inner {
    background-color: #fff;
    width: calc(748 / var(--screen-w) * 100vw);
    margin: 0 auto;
    border-radius: calc(20 / var(--screen-w) * 100vw);
    padding: calc(60 / var(--screen-w) * 100vw) 0 calc(89 / var(--screen-w) * 100vw);
}

.topBlock1Inner .kyusyu {
    width: calc(94 / var(--screen-w) * 100vw);
    display: block;
    margin: 0 auto calc(33 / var(--screen-w) * 100vw);
}

.topBlock1Inner h2 {
    text-align: center;
    font-size: calc(32 / var(--screen-w) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: calc(44 / var(--screen-w) * 100vw);
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    color: #003A61;
}

.topBlock1Inner h2 img {
    display: block;
    width: calc(428 / var(--screen-w) * 100vw);
    margin-right: 0.1em;
}

.topBlock1Inner p {
    text-align: center;
    font-size: calc(24 / var(--screen-w) * 100vw);
    color: #003A61;
    line-height: calc(39 / var(--screen-w) * 100vw);
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    color: #003A61;
}

.titWrap .subTit {
    font-size: calc(22 / var(--screen-w) * 100vw);
    font-weight: 500;
    font-family: "Inter", sans-serif;
    text-align: center;
    color: #003A61;
    margin-bottom: calc(-14 / var(--screen-w) * 100vw);
}

.titWrap h2 {
    text-align: center;
    font-size: calc(48 / var(--screen-w) * 100vw);
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    color: #003A61;
    letter-spacing: 0;
}

.titWrap h2 .orange {
    color: #F3981F;
    font-size: calc(64 / var(--screen-w) * 100vw);
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

.titWrap h2 .orange span {
    color: #F3981F;
    font-size: calc(48 / var(--screen-w) * 100vw);
}

.topBlock2 {
    margin-bottom: calc(165 / var(--screen-w) * 100vw);
    position: relative;
}

.topBlock2>.effect.kira {
    width: calc(69 / var(--screen-w) * 100vw);
    position: absolute;
    top: calc(9 / var(--screen-w) * 100vw);
    left: calc(195 / var(--screen-w) * 100vw);
}

.topBlock2 .titWrap {
    margin-bottom: calc(57 / var(--screen-w) * 100vw);
}

.planCardWrap {
    width: calc(1100 / var(--screen-w) * 100vw);
    margin: 0 auto;
    position: relative;
}

.planCardWrap>.effect {
    position: absolute;
    bottom: 100%;
    right: calc(43 / var(--screen-w) * 100vw);
    width: calc(130 / var(--screen-w) * 100vw);
}

.planCard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(23 / var(--screen-w) * 100vw);
}

.planCard li {
    background-color: #fff;
    padding: calc(81 / var(--screen-w) * 100vw) 9% calc(46 / var(--screen-w) * 100vw);
    border-radius: calc(20 / var(--screen-w) * 100vw);
    position: relative;
}

.planCard li .planName {
    width: max-content;
    padding: calc(8 / var(--screen-w) * 100vw) calc(30 / var(--screen-w) * 100vw);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    border-radius: 0 0 calc(12 / var(--screen-w) * 100vw) calc(12 / var(--screen-w) * 100vw);
    font-size: calc(16 / var(--screen-w) * 100vw);
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.planCard li:nth-child(1) .planName {
    background-color: #003A61;
}

.planCard li:nth-child(2) .planName {
    background-color: #F3981F;
}

.planCard li:nth-child(3) .planName {
    background-color: #FAC01C;
}

.planCard li .num {
    font-size: calc(20 / var(--screen-w) * 100vw);
    font-weight: 500;
    font-family: "Inter", sans-serif;
    position: absolute;
    top: calc(15 / var(--screen-w) * 100vw);
    left: calc(22 / var(--screen-w) * 100vw);
}

.planCard li:nth-child(1) .num {
    color: #003A61;
}

.planCard li:nth-child(2) .num {
    color: #F3981F;
}

.planCard li:nth-child(3) .num {
    color: #FAC01C;
}

.planCard li h3 {
    text-align: center;
    font-size: calc(24 / var(--screen-w) * 100vw);
    margin-bottom: calc(18 / var(--screen-w) * 100vw);
    padding-bottom: calc(17 / var(--screen-w) * 100vw);
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

.planCard li:nth-child(1) h3 {
    border-bottom: 2px solid #003A61;
    color: #003A61;
}

.planCard li:nth-child(2) h3 {
    border-bottom: 2px solid #F3981F;
    color: #F3981F;
}

.planCard li:nth-child(3) h3 {
    border-bottom: 2px solid #FAC01C;
    color: #FAC01C;
}

.planCard li .detail {
    font-size: calc(16 / var(--screen-w) * 100vw);
    line-height: calc(33 / var(--screen-w) * 100vw);
    letter-spacing: 0;
    font-weight: 500;
    color: #003A61;
}

.planCard li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(222 / var(--screen-w) * 100vw);
    height: calc(46 / var(--screen-w) * 100vw);
    border: 2px solid #003A61;
    margin: calc(49 / var(--screen-w) * 100vw) auto 0;
    border-radius: calc(8 / var(--screen-w) * 100vw);
    font-size: calc(14 / var(--screen-w) * 100vw);
    font-weight: 600;
}

.planCard li a:hover {
    background-color: #003A61;
    color: #fff;
}

.planCard li a:after {
    display: block;
    content: "";
    width: calc(10 / var(--screen-w) * 100vw);
    height: calc(12 / var(--screen-w) * 100vw);
    background: url('img/arrow_b.svg') no-repeat center;
    background-size: contain;
    margin-left: calc(18 / var(--screen-w) * 100vw);
}

.planCard li a:hover:after {
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
}

.topBlock2 .planCard {
    margin-bottom: calc(46 / var(--screen-w) * 100vw);
}

.finderWrap {
    width: calc(1190 / var(--screen-w) * 100vw);
    border-radius: calc(20 / var(--screen-w) * 100vw) 0 0 calc(20 / var(--screen-w) * 100vw);
    margin: 0 0 0 auto;
    background: url('img/bg-finder.png') no-repeat left bottom;
    background-size: cover;
    position: relative;
}

.finderWrap .hakken {
    position: absolute;
    bottom: 0;
    right: calc(57 / var(--screen-w) * 100vw);
    width: calc(308 / var(--screen-w) * 100vw);
}

.finderWrap .finderTit {
    writing-mode: vertical-lr;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6%;
    border-right: 4px solid #FFF9E8;
    box-sizing: border-box;
    font-size: calc(20 / var(--screen-w) * 100vw);
    color: #FFF9E8;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.finderWrapInner {
    padding: calc(44 / var(--screen-w) * 100vw) 0 calc(46 / var(--screen-w) * 100vw);
    width: max-content;
    margin-left: calc(325 / var(--screen-w) * 100vw);
}

.finderWrapInner>p {
    text-align: center;
    color: #fff;
    font-size: calc(20 / var(--screen-w) * 100vw);
    font-weight: 700;
    margin-bottom: calc(-10 / var(--screen-w) * 100vw);
}

.finderWrapInner .titWrap2 {
    position: relative;
    margin-bottom: calc(36 / var(--screen-w) * 100vw);
}

.finderWrapInner .titWrap2 .effect {
    position: absolute;
    top: calc(35 / var(--screen-w) * 100vw);
}

.finderWrapInner .titWrap2 .effect.left {
    right: calc(100% + (18 / var(--screen-w)*100vw));
    width: calc(43 / var(--screen-w)*100vw);
}

.finderWrapInner .titWrap2 .effect.right {
    left: calc(100% + (13 / var(--screen-w)*100vw));
    width: calc(43 / var(--screen-w)*100vw);
}

.finderWrapInner .titWrap2 h2 {
    font-size: calc(62 / var(--screen-w) * 100vw);
    text-align: center;
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

.finderWrapInner a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(293 / var(--screen-w) * 100vw);
    height: calc(56 / var(--screen-w) * 100vw);
    margin: 0 auto;
    border-radius: calc(8 / var(--screen-w) * 100vw);
    background-color: #fff;
    color: #F3981F;
    font-size: calc(16 / var(--screen-w) * 100vw);
    font-weight: 600;
    border: 2px solid #F3981F;
}

.finderWrapInner a:hover {
    background-color: #F3981F;
    border: 2px solid #fff;
    color: #fff;
}

.finderWrapInner a::after {
    display: block;
    content: "";
    width: calc(12 / var(--screen-w) * 100vw);
    height: calc(14 / var(--screen-w) * 100vw);
    background: url('img/arrow_o.svg') no-repeat center;
    background-size: contain;
    margin-left: calc(29 / var(--screen-w) * 100vw);
}

.finderWrapInner a:hover::after {
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
}

.topBlock2 .effect.img {
    width: calc(377 / var(--screen-w) * 100vw);
    position: absolute;
    bottom: calc(-216 / var(--screen-w) * 100vw);
    left: 0;
    z-index: -1;
}

.topBlock3 {
    margin-bottom: calc(40 / var(--screen-w) * 100vw);
}

.topBlock3 .titWrap {
    margin-bottom: calc(59 / var(--screen-w) * 100vw);
}

.topBlock3 .titWrap .subTit {
    font-size: calc(20 / var(--screen-w) * 100vw);
    margin-bottom: calc(10 / var(--screen-w) * 100vw);
}

.topBlock3 .titWrap h2 {
    font-size: calc(30 / var(--screen-w) * 100vw);
    color: #003A61;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
}

.topBlock3Inner {
    width: calc(1100 / var(--screen-w) * 100vw);
    margin: 0 auto;
}

.postListWrap {
    position: relative;
}

.postListWrap .effect {
    width: calc(177 / var(--screen-w) * 100vw);
    position: absolute;
    bottom: 100%;
    right: calc(64 / var(--screen-w) * 100vw);
}

.postList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(33 / var(--screen-w) * 100vw);
}

.postList li img {
    display: block;
    aspect-ratio: 1/1;
    border-radius: calc(8 / var(--screen-w) * 100vw);
    margin-bottom: calc(23 / var(--screen-w) * 100vw);
}

.postList li h3 {
    font-size: calc(16 / var(--screen-w) * 100vw);
    font-weight: 600;
    margin-bottom: calc(20 / var(--screen-w) * 100vw);
    letter-spacing: 0;
}

.postList li p {
    font-size: calc(14 / var(--screen-w) * 100vw);
    line-height: calc(26 / var(--screen-w) * 100vw);
    letter-spacing: 0;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.topBlock3 .postList {
    margin-bottom: calc(51 / var(--screen-w) * 100vw);
}

.topBlock3Inner>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(208 / var(--screen-w) * 100vw);
    height: calc(52 / var(--screen-w) * 100vw);
    margin: 0 0 0 auto;
    border: 2px solid #F3981F;
    box-sizing: border-box;
    border-radius: 8px;
    color: #F3981F;
    font-weight: 600;
    font-size: calc(14 / var(--screen-w) * 100vw);
}

.topBlock3Inner>a:hover {
    background-color: #F3981F;
    ;
    color: #fff;
}

.topBlock3Inner>a:after {
    display: block;
    content: "";
    width: calc(10 / var(--screen-w) * 100vw);
    height: calc(12 / var(--screen-w) * 100vw);
    background: url('img/arrow_o.svg') no-repeat center;
    background-size: contain;
    margin-left: calc(14 / var(--screen-w) * 100vw);
}

.topBlock3Inner>a:hover:after {
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
}

.topBlock4 {
    padding: calc(72 / var(--screen-w) * 100vw) 0 calc(209 / var(--screen-w) * 100vw);
    position: relative;
}

.topBlock4 .effect {
    position: absolute;
}

.topBlock4 .effect.no1 {
    width: calc(481 / var(--screen-w) * 100vw);
    top: 0;
    left: 0;
}

.topBlock4 .effect.no2 {
    width: calc(289 / var(--screen-w) * 100vw);
    bottom: calc(55 / var(--screen-w) * 100vw);
    left: calc(90 / var(--screen-w) * 100vw);
}

.topBlock4Inner {
    width: calc(1134 / var(--screen-w) * 100vw);
    margin: 0 0 0 calc(56 / var(--screen-w) * 100vw);
    justify-content: space-between;
}

.topBlock4Inner>img {
    width: 34%;
    object-fit: contain;
}

.topBlock4Inner .contactList {
    width: 58%;
}

.contactList a {
    display: block;
    border-radius: calc(16 / var(--screen-w) * 100vw);
    box-sizing: border-box;
    padding: calc(7 / var(--screen-w) * 100vw) calc(9 / var(--screen-w) * 100vw);
    margin-bottom: calc(27 / var(--screen-w) * 100vw);
}

.contactList a:last-child {
    margin-bottom: 0;
}

.contactList a.contactListMail {
    background-color: #FAC01C;
}

.contactList a.contactListApplication {
    background-color: #F3981F;
}

.contactList a.contactListContact {
    background-color: #003A61;
}

.contactList a .contactListInner {
    border: 1px solid #fff;
    border-radius: calc(12 / var(--screen-w) * 100vw);
    position: relative;
}

.contactList a .contactListInner:after {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: calc(16 / var(--screen-w) * 100vw);
    height: calc(19 / var(--screen-w) * 100vw);
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
    margin-left: calc(14 / var(--screen-w) * 100vw);
    transition: .3s;
}

.contactList a:hover .contactListInner:after {
    transform: translateY(-50%) scale(1.5);
}

.contactList a .contactListInner .imgBox {
    width: 18%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactList a.contactListMail .imgBox img {
    width: calc(30 / var(--screen-w) * 100vw);
}

.contactList a.contactListApplication .imgBox img {
    width: calc(30 / var(--screen-w) * 100vw);
}

.contactList a.contactListContact .imgBox img {
    width: calc(36 / var(--screen-w) * 100vw);
}

.contactList a .contactListInner .txtBox {
    width: 82%;
    padding: calc(29 / var(--screen-w) * 100vw) 0 calc(40 / var(--screen-w) * 100vw);
}

.contactList a.contactListMail .contactListInner .txtBox {
    padding: calc(30 / var(--screen-w) * 100vw) 0 calc(32 / var(--screen-w) * 100vw);
}

.contactList a.contactListContact .contactListInner .txtBox {
    padding: calc(31 / var(--screen-w) * 100vw) 0;
}

.contactList a .contactListInner .txtBox h3 {
    font-size: calc(22 / var(--screen-w) * 100vw);
    color: #fff;
    margin-bottom: calc(10 / var(--screen-w) * 100vw);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-weight: 700;
}

.contactList a .contactListInner .txtBox p {
    font-size: calc(14 / var(--screen-w) * 100vw);
    font-weight: 400;
    color: #fff;
    line-height: calc(26 / var(--screen-w) * 100vw);
}

footer {
    padding-top: calc(105 / var(--screen-w) * 100vw);
    padding-bottom: calc(14 / var(--screen-w) * 100vw);
    position: relative;
}

footer .effectWrap {
    position: absolute;
    top: calc(0 / var(--screen-w) * 100vw);
    right: calc(0 / var(--screen-w) * 100vw);
}

footer .logo {
    display: block;
    margin: 0 auto calc(34 / var(--screen-w) * 100vw);
    width: max-content;
}

footer .logo img {
    width: calc(350 / var(--screen-w) * 100vw);
}

footer .companyBlock {
    margin-bottom: calc(51 / var(--screen-w) * 100vw);
}

footer .companyBlock p {
    text-align: center;
    color: #003A61;
    font-size: calc(14 / var(--screen-w) * 100vw);
    font-weight: 500;
}

footer .companyBlock a {
    display: block;
    text-align: center;
    color: #003A61;
    font-size: calc(14 / var(--screen-w) * 100vw);
    font-weight: 500;
    margin-bottom: calc(13 / var(--screen-w) * 100vw);
}

footer .companyBlock .companyTit {
    font-weight: 700;
    margin-bottom: calc(14 / var(--screen-w) * 100vw);
}

footer .companyBlock .companyName {
    margin-bottom: calc(28 / var(--screen-w) * 100vw);
}

footer .companyBlock .address {
    margin-bottom: calc(18 / var(--screen-w) * 100vw);
}

.footerLinks {
    width: calc(682 / var(--screen-w) * 100vw);
    margin: 0 auto;
}

.footerLinks a {
    display: flex;
    align-items: center;
    margin-right: calc(47 / var(--screen-w) * 100vw);
    font-size: calc(13 / var(--screen-w) * 100vw);
    font-weight: 700;
    color: #003A61;
    letter-spacing: 0;
    position: relative;
}

.footerLinks a:after {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #003A61;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
    position: absolute;
    bottom: 0;
}

.footerLinks a:hover:after {
    transform: scale(1, 1);
    transform-origin: left top;
}

.footerLinks a:last-child {
    margin-right: 0;
}

.footerLinks a::before {
    display: block;
    content: "";
    width: calc(10 / var(--screen-w) * 100vw);
    height: calc(12 / var(--screen-w) * 100vw);
    background: url('img/arrow_b.svg') no-repeat center;
    background-size: contain;
    margin-right: 0.3em;
}

.footerLinks.plan {
    margin-bottom: calc(25 / var(--screen-w) * 100vw);
}

.footerLinks.other {
    margin-bottom: calc(60 / var(--screen-w) * 100vw);
}

.copy {
    text-align: center;
    font-size: calc(12 / var(--screen-w) * 100vw);
    font-weight: 500;
    color: #003A61;
    font-family: 'inter', sans-serif;
}

.pageSub {
    position: relative;
    z-index: 1;
}

.pageSub>.obi {
    position: absolute;
    left: 0;
}

.pageSub>.obi.top {
    top: 0;
}

.pageAbout {
    padding-top: calc(116 / var(--screen-w) * 100vw);
}

.aboutBlock1 {
    margin-bottom: calc(91 / var(--screen-w) * 100vw);
    position: relative;
}

.aboutBlock1 .effectWrap {
    position: absolute;
    top: calc(155/var(--screen-w)*100vw);
    right: 0;
}

.aboutBlock1Inner {
    width: calc(1190 / var(--screen-w) * 100vw);
    background-color: #fff;
    border-radius: 0 calc(24 / var(--screen-w) * 100vw) calc(24 / var(--screen-w) * 100vw) 0;
    padding: calc(79 / var(--screen-w) * 100vw) 7.6% calc(71 / var(--screen-w) * 100vw);
    box-sizing: border-box;
    position: relative;
}

.aboutBlock1Inner>.effect {
    position: absolute;
    top: calc(85 / var(--screen-w) * 100vw);
    left: calc(560 / var(--screen-w) * 100vw);
    width: calc(52 / var(--screen-w) * 100vw);
}

.aboutBlock1Inner .subTit {
    font-size: calc(16/var(--screen-w)*100vw);
    margin-bottom: calc(-6/var(--screen-w)*100vw);
    font-weight: 500;
    font-family: inter, sans-serif;
    color: #F3981F;
}

.aboutBlock1Inner h2 {
    font-size: calc(32/var(--screen-w)*100vw);
    font-weight: 700;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    margin-bottom: calc(32 /var(--screen-w)*100vw);
    color: #003A61;
}

.aboutBlock1Inner p {
    font-size: calc(20/var(--screen-w)*100vw);
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    color: #003A61;
    line-height: calc(38/var(--screen-w)*100vw);
}

.aboutBlock2 {
    margin-bottom: calc(120/var(--screen-w)*100vw);
}

.aboutBlock2 .titWrap {
    margin-bottom: calc(48/var(--screen-w)*100vw);
}

.aboutBlock2 .titWrap .subTit {
    font-size: calc(20/var(--screen-w)*100vw);
    margin-bottom: calc(0/var(--screen-w)*100vw);
}

.aboutBlock2 .titWrap h2 {
    font-size: calc(30/var(--screen-w)*100vw);
}

.aboutBlock2Inner {
    width: calc(1100/var(--screen-w)*100vw);
    margin: 0 auto;
    position: relative;
}

.aboutBlock2Inner>img {
    width: 39%;
    border-radius: calc(8/var(--screen-w)*100vw);
}

.foryouBox {
    position: absolute;
    background-color: #fff;
    padding: calc(30/var(--screen-w)*100vw) calc(43/var(--screen-w)*100vw) calc(30/var(--screen-w)*100vw) 0;
    display: flex;
    align-items: center;
    border-radius: calc(8/var(--screen-w)*100vw);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
    width: max-content;
}

.foryouBox img {
    display: block;
}

.foryouBox p {
    font-size: calc(20/var(--screen-w)*100vw);
    font-weight: 700;
    color: #003A61;
}

.foryouBox.no1 {
    top: calc(27/var(--screen-w)*100vw);
    left: calc(390/var(--screen-w)*100vw);
    padding-left: calc(24/var(--screen-w)*100vw);
    z-index: 1;
}

.foryouBox.no1 img {
    width: calc(36/var(--screen-w)*100vw);
    margin-right: calc(29/var(--screen-w)*100vw);
}

.foryouBox.no2 {
    top: calc(100/var(--screen-w)*100vw);
    left: calc(538/var(--screen-w)*100vw);
    padding-left: calc(33/var(--screen-w)*100vw);
    z-index: 2;
}

.foryouBox.no2 img {
    width: calc(33/var(--screen-w)*100vw);
    margin-right: calc(23/var(--screen-w)*100vw);
}

.foryouBox.no3 {
    top: calc(173/var(--screen-w)*100vw);
    left: calc(393/var(--screen-w)*100vw);
    padding-left: calc(33/var(--screen-w)*100vw);
    z-index: 3;
}

.foryouBox.no3 img {
    width: calc(28/var(--screen-w)*100vw);
    margin-right: calc(28/var(--screen-w)*100vw);
}

.foryouBox.no4 {
    top: calc(246/var(--screen-w)*100vw);
    left: calc(318/var(--screen-w)*100vw);
    padding-left: calc(30/var(--screen-w)*100vw);
    z-index: 4;
}

.foryouBox.no4 img {
    width: calc(30/var(--screen-w)*100vw);
    margin-right: calc(28/var(--screen-w)*100vw);
}

.aboutBlock3 {
    background-color: #F3981F;
    border-radius: calc(24/var(--screen-w)*100vw);
    padding: calc(52/var(--screen-w)*100vw) 0 calc(42/var(--screen-w)*100vw);
    position: relative;
    margin-bottom: calc(59/var(--screen-w)*100vw);
}

.aboutBlock3>.effect {
    width: calc(163/var(--screen-w)*100vw);
    position: absolute;
    top: calc(-81/var(--screen-w)*100vw);
    left: calc(90/var(--screen-w)*100vw);
}

.aboutBlock3 .titWrap {
    margin-bottom: calc(52/var(--screen-w)*100vw);
}

.aboutBlock3 .titWrap * {
    color: #fff;
}

.aboutBlock3 .titWrap .subTit {
    font-size: calc(20/var(--screen-w)*100vw);
    margin-bottom: calc(6 / var(--screen-w) * 100vw);
}

.aboutBlock3 .titWrap h2 {
    font-size: calc(30/var(--screen-w)*100vw);
}

.pointListWrap {
    width: calc(1100/var(--screen-w)*100vw);
    margin: 0 auto;
}

.pointList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(33/var(--screen-w)*100vw);
}

.pointList li {
    padding-top: calc(29/var(--screen-w)*100vw);
    position: relative;
}

.pointList li .icon {
    width: calc(63/var(--screen-w)*100vw);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.pointList li .pointListInner {
    background-color: #fff;
    border-radius: calc(8/var(--screen-w)*100vw);
    height: calc(270/var(--screen-w)*100vw);
    padding-top: calc(37/var(--screen-w)*100vw);
    box-sizing: border-box;
}

.pointList li .pointListInner .pointNum {
    text-align: center;
    font-family: inter, sans-serif;
    font-weight: 500;
    color: #F3981F;
    margin-bottom: calc(27/var(--screen-w)*100vw);
}

.pointList li .pointListInner h3 {
    text-align: center;
    font-size: calc(20/var(--screen-w)*100vw);
    font-weight: 900;
    margin-bottom: calc(38/var(--screen-w)*100vw);
}

.pointList li .pointListInner h3 .marker {
    background: linear-gradient(transparent 60%, rgba(250, 192, 28, 1) 60%);
    padding: 0 0.5em;
    color: #003A61;
}

.pointList li .pointListInner .text {
    text-align: center;
    font-size: calc(16/var(--screen-w)*100vw);
    font-weight: 700;
    color: #003A61;
}

.pageAbout .topBlock2 {
    margin-bottom: calc(21/var(--screen-w)*100vw);
}

.pageAbout .topBlock2 .titWrap {
    margin-bottom: calc(64/var(--screen-w)*100vw);
}

.pageAbout .topBlock2 .titWrap .subTit {
    font-size: calc(20 / var(--screen-w) * 100vw);
    margin-bottom: calc(18/var(--screen-w)*100vw);
}

.pageAbout .topBlock2 .titWrap .subTxt2 {
    font-size: calc(30 / var(--screen-w) * 100vw);
    font-weight: 500;
    margin-bottom: calc(-11/var(--screen-w)*100vw);
    font-family: 'Zen Kaku Gothic New', sans-serif;
    text-align: center;
    color: #003A61;
}

.pageAbout .planCard li h3 {
    margin-bottom: calc(17/var(--screen-w)*100vw);
}

.pageAbout .planCard li {
    padding: calc(66 / var(--screen-w) * 100vw) 8.5% calc(46 / var(--screen-w) * 100vw);
    display: flex;
    flex-direction: column;
}

.pageAbout .planCard li .price {
    text-align: center;
    font-size: calc(30/var(--screen-w)*100vw);
    font-weight: 500;
    margin-bottom: calc(28/var(--screen-w)*100vw);
    color: #003A61;
    letter-spacing: 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.pageAbout .planCard li .price span {
    color: #003A61;
}

.pageAbout .planCard li .price .en {
    font-size: calc(20/var(--screen-w)*100vw);
    font-weight: 700;
    padding-left: 0.1em;
}

.pageAbout .planCard li .price .tax {
    font-size: calc(15/var(--screen-w)*100vw);
    font-weight: 700;
}

.pageAbout .planCard li .serviceTit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(10/var(--screen-w)*100vw) 0 calc(7/var(--screen-w)*100vw);
    border: 1px solid #003A61;
    border-radius: calc(16/var(--screen-w)*100vw);
    color: #003A61;
    font-size: calc(14/var(--screen-w)*100vw);
    font-weight: 700;
    line-height: 1;
    margin-bottom: calc(18/var(--screen-w)*100vw);
}

.pageAbout .planCard li .detail {
    line-height: calc(24/var(--screen-w)*100vw);
    margin-bottom: calc(19/var(--screen-w)*100vw);
    display: flex;
    letter-spacing: 0;
}

.pageAbout .planCard li:nth-child(2) .detail {
    margin-bottom: calc(35/var(--screen-w)*100vw);
}

.pageAbout .planCard li:nth-child(3) .detail {
    margin-bottom: calc(14/var(--screen-w)*100vw);
}

.pageAbout .planCard li .detail:last-child {
    margin-bottom: 0;
}

.pageAbout .planCard li:nth-child(3) .detail:last-child {
    margin-bottom: calc(36/var(--screen-w)*100vw);
}

.pageAbout .planCard li .detail::before {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(16/var(--screen-w)*100vw);
    height: calc(16/var(--screen-w)*100vw);
    content: "・";
    margin-top: calc(5/var(--screen-w)*100vw);
}

.pageAbout .planCard li a {
    margin: auto auto 0;
    background-color: #003A61;
    color: #fff;
}

.pageAbout .planCard li a:hover {
    background-color: #fff;
    color: #003A61;
}

.pageAbout .planCard li a:after {
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
}

.pageAbout .planCard li a:hover:after {
    background: url('img/arrow_b.svg') no-repeat center;
    background-size: contain;
}

.aboutBlock4 {
    padding-top: calc(65/var(--screen-w)*100vw);
    position: relative;
    margin-bottom: calc(78/var(--screen-w)*100vw);
}

.aboutBlock4>.effect {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(242/var(--screen-w)*100vw);
}

.aboutBlock4 .titWrap {
    margin-bottom: calc(46/var(--screen-w)*100vw);
}

.aboutBlock4 .titWrap .subTit {
    font-size: calc(20 / var(--screen-w) * 100vw);
    margin-bottom: calc(6/var(--screen-w)*100vw);
}

.aboutBlock4 .titWrap h2 {
    font-size: calc(30/var(--screen-w)*100vw);
}

.aboutBlock4 .titWrap .subTxt2 {
    font-size: calc(30 / var(--screen-w) * 100vw);
    font-weight: 500;
    margin-bottom: calc(16/var(--screen-w)*100vw);
    font-family: 'Zen Kaku Gothic New', sans-serif;
    text-align: center;
    color: #003A61;
}

.aboutBlock4 .tableWrap {
    width: calc(1100/var(--screen-w)*100vw);
    margin: 0 auto;
}

.aboutBlock4 th,
.aboutBlock4 td {
    width: 25%;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #E2E2E2;
    border-collapse: collapse;
    box-sizing: border-box;
}

.aboutBlock4 th {
    background-color: #F4F4F4;
    font-size: calc(14 / var(--screen-w) * 100vw);
    font-weight: 500;
    color: #003A61;
    border-right: 2px solid #E2E2E2;

}

.aboutBlock4 th span {
    font-size: calc(12 / var(--screen-w) * 100vw);
    color: #003A61;
}

.aboutBlock4 td {
    background-color: #fff;
    font-size: calc(14 / var(--screen-w) * 100vw);
    padding: calc(20/var(--screen-w)*100vw) 0;
    color: #003A61;
    letter-spacing: 0;
}

.aboutBlock4 .plan th {
    padding: calc(24/var(--screen-w)*100vw) 0 calc(22/var(--screen-w)*100vw);
}

.aboutBlock4 .plan td {
    color: #fff;
}

.aboutBlock4 .plan .color1 {
    background-color: #003A61;
}

.aboutBlock4 .plan .color2 {
    background-color: #F3981F;
}

.aboutBlock4 .plan .color3 {
    background-color: #FAC01C;
}

.aboutBlock4 .price td {
    font-weight: 500;
    font-size: calc(18 / var(--screen-w) * 100vw);
    font-weight: 700;
    letter-spacing: 0;
}

.aboutBlock4 table .maru,
.aboutBlock4 table .batu {
    font-size: calc(14 / var(--screen-w) * 100vw);
    font-weight: 800;
}

.aboutBlock4 table .maru {
    color: #F3981F;
}

.aboutBlock4 table .batu {
    color: #003A61;
}

.aboutBlock4 .recommend td {
    vertical-align: top;
}

.aboutBlock4 .recommend p {
    text-align: left;
    padding: 0 13.5%;
    margin-bottom: calc(27 / var(--screen-w) * 100vw);
    color: #003A61;
    font-size: calc(12 / var(--screen-w) * 100vw);
    font-weight: 500;
}

.aboutBlock4 .recommend p:last-child {
    margin-bottom: 0;
}

.aboutBlock5 {
    margin-bottom: calc(161/var(--screen-w)*100vw);
}

.aboutBlock5>.titWrap {
    margin-bottom: calc(33/var(--screen-w)*100vw);
}

.aboutBlock5 .titWrap .subTit {
    font-size: calc(20 / var(--screen-w) * 100vw);
    margin-bottom: calc(6/var(--screen-w)*100vw);
}

.aboutBlock5 .titWrap h2 {
    font-size: calc(30/var(--screen-w)*100vw);
}

.qaBoxWrap {
    width: calc(1100 / var(--screen-w) * 100vw);
    margin: 0 auto;
}

.qaBoxWrap .qaBox {
    background-color: #fff;
    border-radius: calc(12/var(--screen-w)*100vw);
    margin-bottom: calc(21/var(--screen-w)*100vw);
    overflow: hidden;
}

.qaBoxWrap .qaBox:last-child {
    margin-bottom: 0;
}

.qaBoxWrap .qBox {
    display: flex;
    align-items: center;
    padding: calc(21/var(--screen-w)*100vw) calc(28/var(--screen-w)*100vw) calc(15/var(--screen-w)*100vw);
    border-bottom: 2px solid #E2E2E2;
    position: relative;
    cursor: pointer;
}

.qaBoxWrap .qBox .qaBtn {
    width: calc(24/var(--screen-w)*100vw);
    height: calc(24/var(--screen-w)*100vw);
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.qaBoxWrap .qBox .qaBtn::before,
.qaBoxWrap .qBox .qaBtn::after {
    display: block;
    content: "";
    background-color: #F3981F;
    position: absolute;
}

.qaBoxWrap .qBox .qaBtn::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    transition: .3s;
}

.qaBox.on .qBox .qaBtn::before {
    transform: rotate(-90deg);
    opacity: 0;
}

.qaBoxWrap .qBox .qaBtn::after {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
}

.qaBoxWrap .qBox .iconTxt {
    font-size: calc(28/var(--screen-w)*100vw);
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #F3981F;
    margin-right: calc(9 /var(--screen-w)*100vw);
}

.qaBoxWrap .qBox .text {
    font-size: calc(20/var(--screen-w)*100vw);
    font-weight: 700;
    color: #003A61;
}

.qaBoxWrap .aBox {
    display: flex;
    padding: calc(0/var(--screen-w)*100vw) calc(59/var(--screen-w)*100vw) calc(0/var(--screen-w)*100vw) calc(28/var(--screen-w)*100vw);
    transition: .3s;
    max-height: 0;
    overflow: hidden;
}

.qaBox.on .aBox {
    padding: calc(20/var(--screen-w)*100vw) calc(59/var(--screen-w)*100vw) calc(35/var(--screen-w)*100vw) calc(28/var(--screen-w)*100vw);
    max-height: calc(500 / var(--screen-w) * 100vw);
}

.qaBoxWrap .aBox .iconTxt {
    font-size: calc(20/var(--screen-w)*100vw);
    margin-right: calc(20/var(--screen-w)*100vw);
    font-family: "Inter", sans-serif;
    color: #003A61;
}

.qaBoxWrap .aBox .text {
    font-size: calc(15 / var(--screen-w) * 100vw);
    line-height: calc(28 / var(--screen-w) * 100vw);
    color: #003A61;
}

.qaBoxWrap .aBox .text a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(329/var(--screen-w)*100vw);
    height: calc(46/var(--screen-w)*100vw);
    border: 2px solid #003A61;
    color: #003A61;
    border-radius: calc(8 / var(--screen-w) * 100vw);
    margin-top: calc(37 / var(--screen-w) * 100vw);
    font-size: calc(14 / var(--screen-w) * 100vw);
}

.qaBoxWrap .aBox .text a:hover {
    background-color: #003A61;
    color: #fff;
}

.qaBoxWrap .aBox .text a:after {
    display: block;
    content: "";
    width: calc(10 / var(--screen-w) * 100vw);
    height: calc(12 / var(--screen-w) * 100vw);
    background: url('img/arrow_b.svg') no-repeat center;
    background-size: contain;
    margin-left: calc(29 / var(--screen-w) * 100vw);
}

.qaBoxWrap .aBox .text a:hover::after {
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
}

.mvPlan {
    width: 100%;
    padding: calc(116 / var(--screen-w) * 100vw) 0 calc(86 / var(--screen-w) * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mvPlan .planMegahon {
    position: absolute;
    bottom: 0;
    right: calc(245 / var(--screen-w) * 100vw);
    z-index: 1;
    width: calc(180 / var(--screen-w) * 100vw);
}

.planBox {
    width: calc(600 / var(--screen-w) * 100vw);
    margin: 0 auto;
    background-color: #fff;
    border-radius: calc(24 / var(--screen-w) * 100vw);
    padding: calc(12 / var(--screen-w) * 100vw);

}

.planBoxInner {
    border-radius: calc(16 / var(--screen-w) * 100vw);
    border: 1px solid #003A61;
    padding: calc(22 / var(--screen-w) * 100vw) calc(24 / var(--screen-w) * 100vw);
}

.pagePlan.standard .planBoxInner {
    border: 1px solid #003A61;
}

.planBoxInner .subTit {
    width: max-content;
    padding: calc(8 / var(--screen-w) * 100vw) calc(38 / var(--screen-w) * 100vw);
    color: #fff;
    border-radius: calc(50 / var(--screen-w) * 100vw);
    font-size: calc(16 / var(--screen-w) * 100vw);
    font-weight: 500;
    font-family: "Inter", sans-serif;
    margin: 0 auto calc(24 / var(--screen-w) * 100vw);

}

.pagePlan.standard .planBoxInner .subTit {
    background-color: #003A61;
}

.pagePlan.advance .planBoxInner .subTit {
    background-color: #f3981f;
}

.pagePlan.premium .planBoxInner .subTit {
    background-color: #FAC01C;
}

.planBoxInner .planTitWrap {
    position: relative;
    width: max-content;
    margin: 0 auto calc(6 / var(--screen-w) * 100vw);
}

.planBoxInner .planTitWrap .kira {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(52 / var(--screen-w) * 100vw);
}

.planBoxInner .planTitWrap .kira.left {
    left: calc(100% + (31 / var(--screen-w) * 100vw));
}

.planBoxInner .planTitWrap .kira.right {
    right: calc(100% + (31 / var(--screen-w) * 100vw));
}

.planBoxInner h1 {
    text-align: center;
    font-size: calc(32 / var(--screen-w) * 100vw);
    font-weight: 700;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    margin-bottom: calc(30 / var(--screen-w) * 100vw);
}

.pagePlan.standard .planBoxInner h1 {
    color: #003A61;
}

.pagePlan.advance .planBoxInner h1 {
    color: #f3981f;
}

.pagePlan.premium .planBoxInner h1 {
    color: #FAC01C;
}

.pagePlan .planBoxInner h1:after {
    display: block;
    content: '';
    width: 100%;
    margin: calc(6 / var(--screen-w) * 100vw) auto 0;
    height: calc(13 / var(--screen-w) * 100vw);
}

.pagePlan.standard .planBoxInner h1:after {
    background-image: url('img/waveLine-stan.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.pagePlan.advance .planBoxInner h1:after {
    background-image: url('img/waveLine-adv.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.pagePlan.premium .planBoxInner h1:after {
    background-image: url('img/waveLine-pre.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.planBoxInner .waveLine {
    width: calc(290 / var(--screen-w) * 100vw);
    display: block;
    margin: 0 auto calc(30 / var(--screen-w) * 100vw);
}

.pagePlan.standard .planBoxInner .waveLine {
    width: calc(305 / var(--screen-w) * 100vw);
}

.planBoxInner .text {
    width: max-content;
    text-align: center;
    font-size: calc(18 / var(--screen-w) * 100vw);
    font-weight: 700;
    color: #003A61;
    padding: 0 calc(27 / var(--screen-w) * 100vw);
    margin: 0 auto;
    position: relative;
}

.planBoxInner .text::before,
.planBoxInner .text::after {
    display: block;
    content: "";
    height: 100%;
    width: 2px;
    background-color: #003A61;
    position: absolute;
    top: 0;
}

.planBoxInner .text::before {
    left: 0;
    transform: rotate(-30deg);
}

.planBoxInner .text::after {
    right: 0;
    transform: rotate(30deg);
}

.planForYou {
    padding: calc(30 / var(--screen-w) * 100vw) 0 calc(98 / var(--screen-w) * 100vw);
}

.pagePlan.standard .planForYou {
    background-color: rgba(0, 58, 97, 0.1);
}

.pagePlan.advance .planForYou {
    background-color: rgba(243, 152, 31, 0.1);
}

.pagePlan.premium .planForYou {
    background-color: rgba(252, 192, 28, 0.1);
}

.planForYou .outLine {
    position: relative;
    width: 100%;
    aspect-ratio: 1280 / 544;
    margin-bottom: calc(120 / var(--screen-w) * 100vw);
}

.pagePlan.advance .planForYou .outLine {
    aspect-ratio: 1280 / 518;
}

.planForYou .outLine .titWrap {
    width: calc(360 / var(--screen-w) * 100vw);
    height: calc(156 / var(--screen-w) * 100vw);
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pagePlan.standard .planForYou .outLine .titWrap {
    background-color: #003A61;
}

.pagePlan.advance .planForYou .outLine .titWrap {
    background-color: #f3981f;
}

.pagePlan.premium .planForYou .outLine .titWrap {
    background-color: #FAC01C;
    margin-bottom: calc(11 / var(--screen-w) * 100vw);
}


.pagePlan.premium .premiumDetail {
    width: max-content;
    margin: 0 auto calc(56 / var(--screen-w) * 100vw);
    font-size: calc(15 / var(--screen-w) * 100vw);
    font-weight: 600;
    color: #003A61;
    line-height: calc(33 / var(--screen-w) * 100vw);
    text-align: center;
    position: relative;
}

.pagePlan.premium .premiumDetail::before,
.pagePlan.premium .premiumDetail::after {
    position: absolute;
    display: block;
    content: "";
    width: calc(56 / var(--screen-w) * 100vw);
    height: calc(137 / var(--screen-w) * 100vw);
    top: 50%;
    transform: translateY(-50%);
}

.pagePlan.premium .premiumDetail::before {
    background: url('img/kakko-left-large.svg') no-repeat center;
    background-size: contain;
    right: calc(100% + (16 / var(--screen-w) * 100vw));
}

.pagePlan.premium .premiumDetail::after {
    background: url('img/kakko-right-large.svg') no-repeat center;
    background-size: contain;
    left: calc(100% + (17 / var(--screen-w) * 100vw));
}


.pagePlan.premium .premiumDetail span {
    font-size: calc(15 / var(--screen-w) * 100vw);
    font-weight: 700;
    color: #F3981F;
}

.planForYou .outLine .titWrap .subTit {
    color: #fff;
    text-align: center;
    font-size: calc(20 / var(--screen-w) * 100vw);
    font-weight: 500;
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
}

.planForYou .outLine .titWrap h2 {
    font-size: calc(30 / var(--screen-w) * 100vw);
    color: #fff;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    text-align: center;
}

.planForYou .planForYouInner {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(762 / var(--screen-w) * 100vw);
    aspect-ratio: 762 / 419;

}

.pagePlan.advance .planForYou .planForYouInner {
    width: calc(781 / var(--screen-w) * 100vw);
    aspect-ratio: 781 / 394;
}

.pagePlan.premium .planForYou .planForYouInner {
    position: relative;
    width: calc(611 / var(--screen-w) * 100vw);
    aspect-ratio: 611 / 362;
}

.planForYou .planForYouBox {
    position: absolute;
    background-color: #fff;
    padding: calc(25 / var(--screen-w) * 100vw) 4% 0;
    border-radius: calc(8 / var(--screen-w) * 100vw);
    width: calc(380 / var(--screen-w) * 100vw);
    box-sizing: border-box;
}

.pagePlan.premium .planForYou .planForYouBox {
    width: max-content;
}

.planForYou .planForYouBox:after {
    display: block;
    content: "";
    position: absolute;
    z-index: -1;
    width: calc(28 / var(--screen-w) * 100vw);
    height: calc(44 / var(--screen-w) * 100vw);
    background: url('img/mv-fulidasi-tail.svg') no-repeat center;
    background-size: contain;
}

.planForYou .planForYouBox .num {
    width: calc(54 / var(--screen-w) * 100vw);
    height: calc(54 / var(--screen-w) * 100vw);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(22 / var(--screen-w) * 100vw);
    font-weight: 700;
    font-family: "Inter", sans-serif;
    color: #fff;
    position: absolute;
    top: calc(-16 / var(--screen-w) * 100vw);
    left: calc(-27 / var(--screen-w) * 100vw);
}

.pagePlan.standard .planForYou .planForYouBox .num {
    background-color: #003A61;
}

.pagePlan.advance .planForYou .planForYouBox .num {
    background-color: #F3981F;
}

.pagePlan.premium .planForYou .planForYouBox .num {
    background-color: #FAC01C;
}

.planForYou .planForYouBox .subTxt {
    font-size: calc(16 / var(--screen-w) * 100vw);
    font-weight: 700;
    margin-bottom: calc(4 / var(--screen-w) * 100vw);
    color: #003A61;
}

.pagePlan.advance .planForYou .planForYouBox h3 {
    font-size: calc(16 / var(--screen-w) * 100vw);
    font-weight: 700;
    color: #003A61;
}

.planForYou .planForYouBox h3 span {
    font-size: calc(20 / var(--screen-w) * 100vw);
    font-weight: 700;
    color: #003A61;
    line-height: calc(35 / var(--screen-w) * 100vw);
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-decoration-color: #FAC01C;
    text-decoration-thickness: 12px;
    text-underline-offset: 0;

}

.planForYou .planForYouBox.no1 {
    top: calc(16 / var(--screen-w) * 100vw);
    left: calc(27 / var(--screen-w) * 100vw);
    padding-bottom: calc(46 / var(--screen-w) * 100vw);
}

.pagePlan.premium .planForYou .planForYouBox.no1 {
    padding: calc(25 / var(--screen-w) * 100vw) calc(47 / var(--screen-w) * 100vw) calc(32 / var(--screen-w) * 100vw) calc(35 / var(--screen-w) * 100vw);
}

.planForYou .planForYouBox.no1:after {
    left: calc(72 / var(--screen-w) * 100vw);
    top: calc(181 / var(--screen-w) * 100vw);
    transform: rotate(198deg);
}

.pagePlan.advance .planForYou .planForYouBox.no1:after {
    left: calc(62 / var(--screen-w) * 100vw);
}

.pagePlan.premium .planForYou .planForYouBox.no1:after {
    left: calc(93 / var(--screen-w) * 100vw);
    top: calc(167 / var(--screen-w) * 100vw);
    transform: rotate(198deg);
}

.pagePlan.advance .planForYou .planForYouBox.no2:after {
    right: calc(88 / var(--screen-w) * 100vw);
}

.planForYou .planForYouBox.no2 {
    top: calc(52 / var(--screen-w) * 100vw);
    right: 0;
    z-index: 1;
    padding-bottom: calc(43 / var(--screen-w) * 100vw);
}

.pagePlan.standard .planForYou .planForYouBox.no2 {
    padding: calc(30 / var(--screen-w) * 100vw) calc(53 / var(--screen-w) * 100vw) calc(46 / var(--screen-w) * 100vw);
}

.pagePlan.premium .planForYou .planForYouBox.no2 {
    top: calc(95 / var(--screen-w) * 100vw);
    right: 0;
    z-index: 1;
    padding: calc(27 / var(--screen-w) * 100vw) calc(35 / var(--screen-w) * 100vw) calc(43 / var(--screen-w) * 100vw);
}

.planForYou .planForYouBox.no2:after {
    right: calc(68 / var(--screen-w) * 100vw);
    top: calc(175 / var(--screen-w) * 100vw);
    transform: rotate(221deg);
}

.pagePlan.standard .planForYou .planForYouBox.no2:after {
    top: calc(185 / var(--screen-w) * 100vw);
}

.pagePlan.premium .planForYou .planForYouBox.no2:after {
    right: calc(68 / var(--screen-w) * 100vw);
    top: calc(121 / var(--screen-w) * 100vw);
    transform: rotate(221deg);
}

.planForYou .planForYouBox.no3 {
    bottom: 0;
    left: calc(155 / var(--screen-w) * 100vw);
    z-index: 2;
    padding-bottom: calc(30 / var(--screen-w) * 100vw);
}

.pagePlan.premium .planForYou .planForYouBox.no3 {
    left: calc(62 / var(--screen-w) * 100vw);
    padding: calc(30 / var(--screen-w) * 100vw) calc(24 / var(--screen-w) * 100vw) calc(36 / var(--screen-w) * 100vw) calc(44 / var(--screen-w) * 100vw);
}

.planForYou .planForYouBox.no3:after {
    right: calc(375 / var(--screen-w) * 100vw);
    top: calc(116 / var(--screen-w) * 100vw);
    transform: rotate(270deg);
}

.pagePlan.premium .planForYou .planForYouBox.no3:after {
    right: calc(385 / var(--screen-w) * 100vw);
    top: calc(81 / var(--screen-w) * 100vw);
    transform: rotate(270deg);
}

.planForYou .serviceDetail {
    width: calc(1100 / var(--screen-w) * 100vw);
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    padding: calc(42 / var(--screen-w) * 100vw) 0 calc(61 / var(--screen-w) * 100vw);
    position: relative;
    box-sizing: border-box;
}

.pagePlan.standard .planForYou .serviceDetail {
    border: 12px solid #003A61;
}

.pagePlan.advance .planForYou .serviceDetail {
    border: 12px solid #f3981f;
}

.pagePlan.premium .planForYou .serviceDetail {
    border: 12px solid #FAC01C;
}

.planForYou .serviceDetail .posTxt {
    font-family: "Inter", sans-serif;
    font-size: calc(32 / var(--screen-w) * 100vw);
    position: absolute;
    top: calc(28 / var(--screen-w) * 100vw);
    left: calc(28 / var(--screen-w) * 100vw);
    z-index: 1;
}

.pagePlan.standard .planForYou .serviceDetail .posTxt {
    color: #003A61;
}

.pagePlan.advance .planForYou .serviceDetail .posTxt {
    color: #f3981f;
}

.pagePlan.premium .planForYou .serviceDetail .posTxt {
    color: #FAC01C;
}

.planForYou .serviceDetail .effect.human {
    position: absolute;
    bottom: calc(100% + (12 / var(--screen-w) * 100vw));
    left: calc(151 / var(--screen-w) * 100vw);
    z-index: 1;
    width: calc(82 / var(--screen-w) * 100vw);
}

.planForYou .serviceDetail .effect.computer {
    position: absolute;
    top: calc(-85 / var(--screen-w) * 100vw);
    right: calc(122 / var(--screen-w) * 100vw);
    z-index: 1;
    width: calc(205 / var(--screen-w) * 100vw);
}

.planForYou .serviceDetail .titWrap {
    margin-bottom: calc(75 / var(--screen-w) * 100vw);
}

.planForYou .serviceDetail .titWrap .subTit {
    font-size: calc(19 / var(--screen-w) * 100vw);
    font-family: "Inter", sans-serif;
    margin-bottom: calc(6 / var(--screen-w) * 100vw);
}

.planForYou .serviceDetail .titWrap h2 {
    font-size: calc(30 / var(--screen-w) * 100vw);
    font-weight: 700;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.pagePlan.advance .planForYou .serviceDetail .titWrap .subTit {
    color: #f3981f;
}

.pagePlan.advance .planForYou .serviceDetail .titWrap h2 {
    color: #f3981f;
}

.planForYou .serviceDetail ul {
    width: 80%;
    margin: 0 auto;
}

.planForYou .serviceDetail li {
    align-items: flex-start;
    justify-content: space-between;
    padding-top: calc(45 / var(--screen-w) * 100vw);
    padding-bottom: calc(32 / var(--screen-w) * 100vw);

}

.pagePlan.standard .planForYou .serviceDetail li {
    border-bottom: 1px solid #003A61;
}

.pagePlan.advance .planForYou .serviceDetail li {
    border-bottom: 1px solid #f3981f;
}

.pagePlan.premium .planForYou .serviceDetail li {
    border-bottom: 1px solid #FAC01C;
}

.pagePlan.standard .planForYou .serviceDetail li:last-child {
    border-bottom: none;
}

.pagePlan.advance .planForYou .serviceDetail li:last-child {
    border-bottom: none;
}

.pagePlan.premium .planForYou .serviceDetail li:last-child {
    border-bottom: none;
}

.planForYou .serviceDetail li:first-child {
    padding-top: 0;
}

.planForYou .serviceDetail li:last-child {
    padding-bottom: 0;
}

.planForYou .serviceDetail li .title {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(13 / var(--screen-w) * 100vw) 0;
    font-size: calc(16 / var(--screen-w) * 100vw);
    font-weight: 500;
}

.pagePlan.standard .planForYou .serviceDetail li .title {
    border: 1px solid #003A61;
    color: #003A61;
    border-radius: calc(50 / var(--screen-w) * 100vw);
}

.pagePlan.advance .planForYou .serviceDetail li .title {
    width: 24%;
    border: 1px solid #f3981f;
    color: #f3981f;
    border-radius: calc(50 / var(--screen-w) * 100vw);
}

.pagePlan.premium .planForYou .serviceDetail li .title {
    width: 24%;
    border: 1px solid #FAC01C;
    color: #FAC01C;
    border-radius: calc(50 / var(--screen-w) * 100vw);
}

.planForYou .serviceDetail li .text {
    width: 70%;
}

.pagePlan.advance .planForYou .serviceDetail li .text,
.pagePlan.premium .planForYou .serviceDetail li .text {
    width: 74%;
}

.planForYou .serviceDetail li .text h3 {
    margin-bottom: calc(10 / var(--screen-w) * 100vw);
}

.pagePlan.advance .planForYou .serviceDetail li .text h3 {
    display: flex;
    align-items: center;
    margin-bottom: calc(10 / var(--screen-w) * 100vw);
}

.pagePlan.premium .planForYou .serviceDetail li .text h3 {
    display: flex;
    align-items: center;
    margin-bottom: calc(16 / var(--screen-w) * 100vw);
}

.pagePlan.advance .planForYou .serviceDetail li .textWrap,
.pagePlan.premium .planForYou .serviceDetail li .textWrap {
    width: calc(100% - (calc(32 / var(--screen-w) * 100vw) + calc(7 / var(--screen-w) * 100vw)));
}

.pagePlan.premium .planForYou .serviceDetail li .text h3 {
    font-size: calc(24 / var(--screen-w) * 100vw);
    font-weight: 800;
    color: #003A61;
}

.planForYou .serviceDetail li .text h3.mt50 {
    margin-top: calc(50 / var(--screen-w) * 100vw);
}

.planForYou .serviceDetail li .text h3 .num {
    display: block;
    width: calc(32 / var(--screen-w) * 100vw);
    height: calc(32 / var(--screen-w) * 100vw);
    background-color: #003A61;
    border-radius: 50%;
    font-size: calc(22 / var(--screen-w) * 100vw);
    font-weight: 700;
    color: #fff;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: calc(7 / var(--screen-w) * 100vw);
}

.planForYou .serviceDetail li .text h3 .marker {
    font-size: calc(24 / var(--screen-w) * 100vw);
    font-weight: 700;
    background: linear-gradient(transparent 60%, rgba(250, 192, 28, 1) 60%);
    color: #003A61;
    padding: 0 0.3em;
    letter-spacing: -1px;
}

.planForYou .serviceDetail li .text p {
    font-size: calc(16 / var(--screen-w) * 100vw);
    line-height: calc(30 / var(--screen-w) * 100vw);
    font-weight: 500;
    color: #003A61;
}

.pagePlan.advance .planForYou .serviceDetail li:first-child .text p,
.pagePlan.premium .planForYou .serviceDetail li:first-child .text p {
    padding-left: calc(42 / var(--screen-w) * 100vw);
}

.voiceBlock {
    padding: calc(101 / var(--screen-w) * 100vw) 0 calc(90 / var(--screen-w) * 100vw);
    border-radius: calc(24 / var(--screen-w) * 100vw);
    position: relative;
    margin-top: calc(-30 / var(--screen-w) * 100vw);
}

.pagePlan.standard .voiceBlock {
    background-color: #003A61;
    margin-bottom: calc(105 / var(--screen-w) * 100vw);
}

.pagePlan.advance .voiceBlock {
    background-color: #f3981f;
    margin-bottom: calc(105 / var(--screen-w) * 100vw);
}

.pagePlan.premium .voiceBlock {
    background-color: #FAC01C;
    margin-bottom: calc(105 / var(--screen-w) * 100vw);
}

.voiceBlock .effect {
    position: absolute;
    right: 0;
    top: calc(68 / var(--screen-w) * 100vw);
    width: calc(332 / var(--screen-w) * 100vw);
}

.voiceBlock .titWrap * {
    color: #fff;
}

.voiceBlock .titWrap .subTit {
    font-size: calc(20 / var(--screen-w) * 100vw);
    font-family: "Inter", sans-serif;
    margin-bottom: calc(6 / var(--screen-w) * 100vw);

}

.voiceBlock .titWrap h2 {
    font-size: calc(30 / var(--screen-w) * 100vw);
    font-weight: 700;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    margin-bottom: calc(50 / var(--screen-w) * 100vw);
}

.voiceBlock .voiceContainer {
    width: 86%;
    margin: 0 auto;
}

.voiceBlock .voiceContainer ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 calc(34 / var(--screen-w) * 100vw);
}

.voiceBlock .voiceContainer ul li {
    padding-top: 8px;
    position: relative;
    padding-bottom: calc(71 / var(--screen-w) * 100vw);
}

.voiceBlock .voiceContainer ul li::after {
    display: block;
    content: "";
    position: absolute;
    left: calc(28 / var(--screen-w) * 100vw);
    bottom: calc(49 / var(--screen-w) * 100vw);
    width: calc(90 / var(--screen-w) * 100vw);
    height: calc(50 / var(--screen-w) * 100vw);
    background-color: #003A61;
    background: url('img/icon-human-left.svg') no-repeat center;
    background-size: contain;
}

.voiceBlock .voiceContainer ul li:nth-child(odd) {
    padding-bottom: calc(0 / var(--screen-w) * 100vw);
}

.voiceBlock .voiceContainer ul li:nth-child(even) {
    margin-top: calc(49 / var(--screen-w) * 100vw);
}

.voiceBlock .voiceContainer ul li:nth-child(even)::after {
    bottom: 0;
    right: calc(27 / var(--screen-w) * 100vw);
    left: auto;
    background-image: url('img/icon-human-right.svg');
    background-size: contain;
}

.voiceBlock .voiceContainer ul li .quotation {
    position: absolute;
    top: calc(0 / var(--screen-w) * 100vw);
    font-size: calc(40 / var(--screen-w) * 100vw);
    font-weight: 700;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    line-height: 0.8;
    z-index: 1;
}

.voiceBlock .voiceContainer ul li .quotation.left {
    left: calc(25 / var(--screen-w) * 100vw);
}

.voiceBlock .voiceContainer ul li .quotation.right {
    right: calc(27 / var(--screen-w) * 100vw);
}

.pagePlan.standard .voiceBlock .voiceContainer ul li .quotation {
    color: #F3981F;
}

.pagePlan.advance .voiceBlock .voiceContainer ul li .quotation {
    color: #003A61;
}

.voiceBlock .voiceContainer ul li p {
    background-color: #fff;
    border-radius: calc(20 / var(--screen-w) * 100vw);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(158 / var(--screen-w) * 100vw);
    position: relative;
    font-size: calc(18 / var(--screen-w) * 100vw);
    filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.1));
    color: #003A61;
    line-height: 31px;
}

.voiceBlock .voiceContainer ul li p:after {
    display: block;
    content: "";
    position: absolute;
    width: calc(28 / var(--screen-w) * 100vw);
    height: calc(44 / var(--screen-w) * 100vw);
    background: url('img/mv-fulidasi-tail.svg') no-repeat center;
    background-size: contain;
    left: calc(80 / var(--screen-w) * 100vw);
    top: calc(140 / var(--screen-w) * 100vw);
    transform: rotate(198deg);
}

.voiceBlock .voiceContainer ul li:nth-child(even) p:after {
    left: auto;
    right: calc(76 / var(--screen-w) * 100vw);
    transform: rotate(-198deg);
}

.planLisksContactner {
    width: calc(1100 / var(--screen-w) * 100vw);
    margin: 0 auto calc(111 / var(--screen-w) * 100vw);
}

.planLisksWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 calc(34 / var(--screen-w) * 100vw);
    margin-bottom: calc(36 / var(--screen-w) * 100vw);
    box-sizing: border-box;
}

.planLisksContactner a {
    padding: calc(8 / var(--screen-w) * 100vw);
    border-radius: calc(16 / var(--screen-w) * 100vw);
}

.planLisksContactner a .planLinkInner {
    border-radius: calc(12 / var(--screen-w) * 100vw);
    border: 1px solid #fff;
    width: 100%;
    padding: calc(24 / var(--screen-w) * 100vw) calc(53 / var(--screen-w) * 100vw);
    color: #fff;
    font-size: calc(22 / var(--screen-w) * 100vw);
    font-weight: 700;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    line-height: calc(35 / var(--screen-w) * 100vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.planLisksContactner a .planLinkInner::after {
    display: block;
    content: "";
    width: calc(16 / var(--screen-w) * 100vw);
    height: calc(19 / var(--screen-w) * 100vw);
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
    margin-left: calc(14 / var(--screen-w) * 100vw);
    transition: .3s;
}

.planLisksContactner a:hover .planLinkInner::after {
    transform: scale(1.5);
}

.planLisksWrap .planLink.standard,
.planLisksContactner .planLink.sampleMail.standard {
    background-color: #003A61;
}

.planLisksWrap .planLink.advance,
.planLisksContactner .planLink.sampleMail.advance {
    background-color: #F3981F;
}

.planLisksWrap .planLink.premium,
.planLisksContactner .planLink.sampleMail.premium {
    background-color: #FAC01C;
}

.planLisksContactner .planLink.sampleMail {
    background-color: #003A61;
}

.planLisksContactner .planLink.sampleMail .planLinkInner {
    justify-content: flex-start;
    padding: calc(38 / var(--screen-w) * 100vw) calc(60 / var(--screen-w) * 100vw) calc(44 / var(--screen-w) * 100vw) calc(43 / var(--screen-w) * 100vw);
}


.planLisksContactner .planLink.sampleMail .planLinkInner>img {
    width: calc(30 / var(--screen-w) * 100vw);
    margin-right: calc(74 / var(--screen-w) * 100vw);
    display: block;
}

.planLisksContactner .planLink.sampleMail .txtBox {
    align-items: center;
}

.planLisksContactner .planLink.sampleMail .title {
    font-size: calc(22 / var(--screen-w) * 100vw);
    color: #fff;
    font-weight: 700;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    width: max-content;
    margin-right: calc(60 / var(--screen-w) * 100vw);
}

.planLisksContactner .planLink.sampleMail .text {
    font-size: calc(14 / var(--screen-w) * 100vw);
    color: #fff;
    font-weight: 700;
    width: max-content;
    line-height: calc(26 / var(--screen-w) * 100vw);
    font-weight: 400;
}

.planLisksContactner .planLink.sampleMail .planLinkInner::after {
    margin: 0 0 0 auto;
}

.planHover {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99999;
    padding: calc(5 / var(--screen-w) * 100vw) 0 0 calc(5 / var(--screen-w) * 100vw);
    border-radius: calc(16 / var(--screen-w) * 100vw) 0 0 0;
    display: block;
}

.planHover .effect {
    position: absolute;
    bottom: 100%;
    right: calc(22 / var(--screen-w) * 100vw);
    width: calc(68 / var(--screen-w) * 100vw);
    z-index: -1;
    transition: .3s;
    transform-origin: bottom;
}

.planHover.standard {
    background-color: #003A61;
}

.planHover.standard:hover {
    background-color: #FD8051;
}

.planHover.advance {
    background-color: #F3981F;
}

.planHover.advance:hover {
    background-color: #FD8051;
}

.planHover.premium {
    background-color: #FAC01C;
}

.planHover.premium:hover {
    background-color: #FD8051;
}

.planHover .planHoverInner {
    border: 1px solid #fff;
    border-radius: calc(12 / var(--screen-w) * 100vw) 0 0 0;
    padding: calc(21 / var(--screen-w) * 100vw) calc(25 / var(--screen-w) * 100vw) calc(24 / var(--screen-w) * 100vw);
    align-items: center;
    position: relative;
    z-index: 2;
}

.planHover .planHoverInner>img {
    width: calc(21 / var(--screen-w) * 100vw);
    display: block;
    margin-right: calc(21 / var(--screen-w) * 100vw);
    object-fit: contain;
}

.planHover .planHoverInner p {
    font-size: calc(15 / var(--screen-w) * 100vw);
    font-weight: 700;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    line-height: calc(22 / var(--screen-w) * 100vw);
    color: #fff;
    width: max-content;
}

.planHover .planHoverInner:after {
    display: block;
    content: "";
    width: calc(10 / var(--screen-w) * 100vw);
    height: calc(12 / var(--screen-w) * 100vw);
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
    margin-left: calc(26 / var(--screen-w) * 100vw);
}

.pageFinder {
    background-color: #F3981F;
    position: relative;
    padding: calc(91/ var(--screen-w)*100vw) 0 calc(88/ var(--screen-w)*100vw);
    z-index: 1;
}

.pageFinder:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: url('img/bg-finder.svg') no-repeat center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.pageFinder .iconFinder {
    width: calc(67/var(--screen-w)*100vw);
    display: block;
    margin: 0 auto calc(18/var(--screen-w)*100vw);
}

.pageFinder .subTit.finder {
    text-align: center;
    color: #fff;
    font-size: calc(16/var(--screen-w)*100vw);
    margin-bottom: calc(-6/var(--screen-w)*100vw);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.pageFinder>h1 {
    color: #fff;
    text-align: center;
    font-size: calc(48/var(--screen-w)*100vw);
    font-weight: 700;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    position: relative;
    width: max-content;
    margin: 0 auto calc(47/ var(--screen-w) * 100vw);
}

.pageFinder>h1::before,
.pageFinder>h1::after {
    display: block;
    content: "";
    position: absolute;
    width: calc(52/ var(--screen-w) * 100vw);
    height: 100%;
    top: 0;
}

.pageFinder>h1::before {
    background: url('img/kira-finder-left.svg') no-repeat center;
    background-size: contain;
    right: calc(100% + calc(23/ var(--screen-w) * 100vw));
}

.pageFinder>h1::after {
    background: url('img/kira-finder-right.svg') no-repeat center;
    background-size: contain;
    left: calc(100% + calc(16/ var(--screen-w) * 100vw));
}

.finderContentWrap {
    position: relative;
}

.finderContentWrap>.effect {
    position: absolute;
    z-index: 2;
}

.finderContentWrap>.effect-cloud {
    display: none;
}

.finderContentWrap.goals>.effect.line,
.finderContentWrap.goals>.effect.human {
    display: none;
}

.finderContentWrap.goals>.effect-cloud {
    display: block;
    position: absolute;
}

.finderContentWrap.goals>.effect-cloud.cloud1 {
    width: calc(309/ var(--screen-w)*100vw);
    top: calc(-123/ var(--screen-w)*100vw);
    left: 0;
}

.finderContentWrap.goals>.effect-cloud.cloud2 {
    width: calc(186/ var(--screen-w)*100vw);
    top: calc(-142/ var(--screen-w)*100vw);
    right: calc(133/ var(--screen-w)*100vw);
}

.finderContentWrap.goals>.effect-cloud.cloud3 {
    width: calc(186/ var(--screen-w)*100vw);
    bottom: calc(-24/ var(--screen-w)*100vw);
    left: calc(44/ var(--screen-w)*100vw);
}

.finderContentWrap.goals>.effect-cloud.cloud4 {
    width: calc(255/ var(--screen-w)*100vw);
    bottom: calc(-13/ var(--screen-w)*100vw);
    right: 0;
    z-index: 2;
}

.finderContentWrap>.effect.line {
    width: calc(71/ var(--screen-w)*100vw);
}

.finderContentWrap>.effect.line.left {
    top: 0;
    left: calc(175/ var(--screen-w)*100vw);
}

.finderContentWrap>.effect.line.right {
    bottom: 0;
    right: calc(169/ var(--screen-w)*100vw);
}

.finderContentWrap>.effect.human {
    bottom: calc(-12/ var(--screen-w)*100vw);
    left: calc(117/ var(--screen-w)*100vw);
    width: calc(183/ var(--screen-w)*100vw);
}

.finderContentWrap>.effect.glass {
    width: calc(246/ var(--screen-w)*100vw);
    top: calc(-35/ var(--screen-w)*100vw);
    right: 0;
    z-index: 3;
}

.finderContent {
    width: calc(870/ var(--screen-w) * 100vw);
    margin: 0 auto;
    padding: calc(40/ var(--screen-w) * 100vw) 0 calc(52/ var(--screen-w) * 100vw);
    background-color: #fff;
    border-radius: calc(220/ var(--screen-w) * 100vw);
    display: none;
    transition: .3s;
    opacity: 0;
}

.finderContent.active {
    display: block;
    opacity: 1;

    @starting-style {
        opacity: 0;
    }
}

.finderContent .titWrap {
    width: max-content;
    position: relative;
    margin: 0 auto calc(12/ var(--screen-w) * 100vw);
    padding: calc(6/ var(--screen-w) * 100vw) 0 calc(17/ var(--screen-w) * 100vw);
}

.finderContent .titWrap::before,
.finderContent .titWrap::after {
    display: block;
    content: "";
    position: absolute;
    width: calc(14/ var(--screen-w) * 100vw);
    height: calc(98/ var(--screen-w) * 100vw);
    background: url('img/effect-finder-tri.svg') no-repeat center;
    background-size: contain;
    top: 50%;
}

.finderContent .titWrap::before {
    right: calc(100% + (23 / var(--screen-w) * 100vw));
    transform: translateY(-50%) rotate(-209deg);
}

.finderContent .titWrap::after {
    left: calc(100% + (15 / var(--screen-w) * 100vw));
    transform: translateY(-50%) rotate(-151deg);
}

.finderContent .titWrap>P {
    font-size: calc(18/ var(--screen-w) * 100vw);
    font-weight: 700;
    color: #003A61;
    text-align: center;
}

.finderContent .titWrap h2 {
    font-size: calc(20/ var(--screen-w) * 100vw);
    font-weight: 700;
    color: #003A61;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
}

.finderContent .titWrap h2 span {
    font-size: calc(29/ var(--screen-w) * 100vw);
    color: #F3981F;
    text-decoration: underline;
    text-decoration-color: #FAC01C;
    text-decoration-thickness: 5px;
    text-underline-offset: 5px;
}

.finderInner {
    position: relative;
    padding-top: calc(47/ var(--screen-w) * 100vw);
}

.finderContent.shindan .finderInner {
    padding-top: 0;
}

.finderInner .start {
    width: max-content;
    padding: calc(14/ var(--screen-w) * 100vw) calc(11/ var(--screen-w) * 100vw) calc(9/ var(--screen-w) * 100vw);
    background-color: #FFE200;
    text-align: center;
    font-size: calc(20/ var(--screen-w) * 100vw);
    font-weight: 500;
    color: #F3981F;
    font-family: 'Inter', sans-serif;
    border-radius: calc(10/ var(--screen-w) * 100vw);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.finderInner .start:after {
    display: block;
    content: "";
    width: calc(10/ var(--screen-w) * 100vw);
    height: calc(12/ var(--screen-w) * 100vw);
    background: url('img/start-fukidashi.svg') no-repeat center;
    background-size: contain;
    position: absolute;
    top: 99%;
    left: 50%;
    transform: translateX(-50%);
}

.shindanBoxWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.finderContent.start .shindanBoxWrap {
    width: 67%;
    margin: 0 auto;
    gap: calc(28/ var(--screen-w) * 100vw);
}

.finderContent.start .shindanBox {
    padding: calc(52/ var(--screen-w) * 100vw) 0 calc(46/ var(--screen-w) * 100vw);
}

.finderContent .shindanBox.advance {
    background: url('img/bg-cloud.svg') no-repeat center;
    background-size: 100% 100%;
}

.finderContent .shindanBox.premium {
    background: url('img/bg-cloud2.svg') no-repeat center;
    background-size: 100% 100%;
}

.finderContent .shindanBox.standard {
    background: url('img/bg-cloud3.svg') no-repeat center;
    background-size: 100% 100%;
}

.shindanBox p {
    text-align: center;
    font-size: calc(13/ var(--screen-w) * 100vw);
    font-weight: 700;
    color: #fff;
    margin-bottom: calc(16/ var(--screen-w) * 100vw);
}

.shindanBox p span {
    font-size: calc(18/ var(--screen-w) * 100vw);
    font-weight: 700;
    color: #fff;
}

.shindanBox .btn {
    font-size: calc(14/ var(--screen-w) * 100vw);
    font-weight: 700;
    color: #fff;
    position: relative;
    display: block;
    width: calc(224 / var(--screen-w) * 100vw);
    margin: 0 auto;
    padding: calc(14/ var(--screen-w) * 100vw) 0 calc(14/ var(--screen-w) * 100vw) calc(32/ var(--screen-w) * 100vw);
    box-sizing: border-box;
    background-color: #003A61;
    border-radius: calc(8/ var(--screen-w) * 100vw);
    cursor: pointer;
    border: 2px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
}

.shindanBox .btn::before {
    display: block;
    content: "";
    width: calc(31/ var(--screen-w) * 100vw);
    height: calc(31/ var(--screen-w) * 100vw);
    background: url('img/icon-glass-w.svg') no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0;
}

.shindanBox .btn::after {
    display: block;
    content: "";
    width: calc(10 / var(--screen-w) * 100vw);
    height: calc(12 / var(--screen-w) * 100vw);
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
    margin-left: calc(16 / var(--screen-w) * 100vw);
}

.footerFinder {
    padding-top: calc(176 / var(--screen-w) * 100vw);
    padding-bottom: calc(41 / var(--screen-w) * 100vw);
    background-color: #FFF9E8;
}

.footerFinder .effectWrap {
    top: calc(71 / var(--screen-w) * 100vw);
}

.finderContent.shindan {
    padding: calc(4/ var(--screen-w) * 100vw) 0 calc(45/ var(--screen-w) * 100vw);
}

.finderContent.shindan .shindanTitWrap {
    width: max-content;
    margin: 0 auto calc(37 / var(--screen-w) * 100vw);
    padding-top: calc(42 / var(--screen-w) * 100vw);
    position: relative;
}

.finderContent.shindan .shindanTitWrap::before,
.finderContent.shindan .shindanTitWrap::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    transform: rotate(0deg) !important;
}

.finderContent.shindan .shindanTitWrap::before {
    width: calc(39/ var(--screen-w) * 100vw);
    height: calc(82/ var(--screen-w) * 100vw);
    background: url('img/tit-human1.svg') no-repeat center;
    background-size: contain;
    left: calc(48/ var(--screen-w) * 100vw);
}

.finderContent.shindan .shindanTitWrap::after {
    width: calc(25/ var(--screen-w) * 100vw);
    height: calc(84/ var(--screen-w) * 100vw);
    background: url('img/tit-human2.svg') no-repeat center;
    background-size: contain;
    right: calc(45 / var(--screen-w) * 100vw);
    left: auto !important;
}

.finderContent.shindan .shindanTitWrap::before {
    right: calc(100% + (23 / var(--screen-w) * 100vw));
    transform: translateY(-50%) rotate(-209deg);
}

.finderContent.shindan .shindanTitWrap::after {
    left: calc(100% + (15 / var(--screen-w) * 100vw));
    transform: translateY(-50%) rotate(-151deg);
}

.finderContent.shindan .shindanTit {
    padding: calc(10 / var(--screen-w) * 100vw) calc(105 / var(--screen-w) * 100vw) calc(15 / var(--screen-w) * 100vw);
    background-color: #FFE200;
    border-radius: calc(50 / var(--screen-w) * 100vw);
    font-size: calc(16/ var(--screen-w) * 100vw);
    font-weight: 700;
    color: #003A61;
}

.finderContent.shindan .shindanTit span {
    font-size: calc(22/ var(--screen-w) * 100vw);
    font-weight: 700;
    color: #003A61;
}

.finderContent.shindan .qestionTxt {
    font-size: calc(18 / var(--screen-w) * 100vw);
    font-weight: 700;
    color: #003A61;
    margin: 0 auto calc(35 / var(--screen-w) * 100vw);
    width: max-content;
    position: relative;
}

.finderContent.shindan .qestionTxt::before,
.finderContent.shindan .qestionTxt::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.finderContent.shindan .qestionTxt::before {
    width: calc(30/ var(--screen-w) * 100vw);
    height: calc(73/ var(--screen-w) * 100vw);
    background: url('img/kakko-left.svg?v=2') no-repeat center;
    background-size: contain;
    right: calc(100% + (21 / var(--screen-w) * 100vw));
}

.finderContent.shindan .qestionTxt::after {
    width: calc(30/ var(--screen-w) * 100vw);
    height: calc(73/ var(--screen-w) * 100vw);
    background: url('img/kakko-right.svg?v=2') no-repeat center;
    background-size: contain;
    left: calc(100% + (21 / var(--screen-w) * 100vw));
}

.finderContent.shindan .shindanBoxWrap {
    width: 52%;
    gap: calc(31 / var(--screen-w) * 100vw);
    margin: 0 auto;
}

.finderContent.shindan .shindanBox {
    padding: calc(69/ var(--screen-w) * 100vw) 0 calc(66/ var(--screen-w) * 100vw);
}

.finderContent.shindan .shindanBox p {
    margin-bottom: 0;
    font-size: calc(18/ var(--screen-w) * 100vw);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.finderContent.shindan .shindanBox p::after {
    display: block;
    content: "";
    width: calc(10 / var(--screen-w) * 100vw);
    height: calc(12 / var(--screen-w) * 100vw);
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
    margin-left: calc(4 / var(--screen-w) * 100vw);
}

.finderContent.result {
    border-radius: calc(24 / var(--screen-w) * 100vw);
    padding: calc(148 / var(--screen-w) * 100vw) 0 calc(43 / var(--screen-w) * 100vw);
    position: relative;
}

.finderContent.result .shindanTitWrap {
    position: absolute;
    top: calc(-30 / var(--screen-w) * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.finderContent.result .shindanTitWrap::before,
.finderContent.result .shindanTitWrap::after {
    content: "";
    display: block;
    width: 35%;
    height: calc(13/ var(--screen-w) * 100vw);
    background-color: #FAC01C;
}

.finderContent.result .shindanTitWrap h2 {
    background: url('img/bg-cloud2.svg') no-repeat center;
    background-size: 100% 100%;
    padding: calc(67 / var(--screen-w) * 100vw) calc(57 / var(--screen-w) * 100vw);
    font-size: calc(20 / var(--screen-w) * 100vw);
    color: #fff;
    font-weight: 700;
    width: max-content;
}

.finderContent.result .resultTxt {
    text-align: center;
    font-size: calc(20 / var(--screen-w) * 100vw);
    font-weight: 700;
    color: #003A61;
    text-decoration: underline;
    text-decoration-color: #003A61;
    text-decoration-thickness: 2px;
    text-underline-offset: 9px;
    padding-bottom: calc(38 / var(--screen-w) * 100vw);
    position: relative;
    width: max-content;
    margin: 0 auto;
}

.finderContent.result .resultTxt::before,
.finderContent.result .resultTxt::after {
    content: "";
    display: block;
    position: absolute;
    width: calc(52 / var(--screen-w) * 100vw);
    height: calc(37 / var(--screen-w) * 100vw);
    background: url('img/kira-plan-right.svg') no-repeat center;
    background-size: contain;
}

.finderContent.result .resultTxt::before {
    right: calc(100% + (38 / var(--screen-w) * 100vw));
    bottom: 0;
    transform: rotate(180deg);
}

.finderContent.result .resultTxt::after {
    left: calc(100% + (31 / var(--screen-w) * 100vw));
    top: 0;
    transform: rotate(180deg);
}

.finderContent.result .resultBox {
    width: max-content;
    margin: 0 auto calc(36 / var(--screen-w) * 100vw);
    position: relative;
}

.finderContent.result .resultBox .planTit::before,
.finderContent.result .resultBox .planTit::after {
    display: block;
    content: "";
    position: absolute;
    width: calc(14/ var(--screen-w) * 100vw);
    height: calc(98/ var(--screen-w) * 100vw);
    background: url('img/effect-finder-tri.svg') no-repeat center;
    background-size: contain;
    top: 60%;
}

.finderContent.result .resultBox .planTit::before {
    right: calc(100% + (37 / var(--screen-w) * 100vw));
    transform: translateY(-50%) rotate(-209deg);
}

.finderContent.result .resultBox .planTit::after {
    left: calc(100% + (20 / var(--screen-w) * 100vw));
    transform: translateY(-50%) rotate(-151deg);
}

.finderContent.result .resultBox .subTxt {
    text-align: center;
    font-size: calc(16/ var(--screen-w) * 100vw);
    font-weight: 700;
    color: #003A61;
    margin-bottom: calc(10 / var(--screen-w) * 100vw);
}

.finderContent.result .resultBox .planTit {
    font-size: calc(20 / var(--screen-w) * 100vw);
    font-weight: 700;
    color: #003A61;
    width: max-content;
    margin: 0 auto;

}

.finderContent.result .resultBox .planTit span {
    font-size: calc(29 / var(--screen-w) * 100vw);
    font-weight: 700;
    color: #F3981F;
    text-decoration: underline;
    text-decoration-color: #FAC01C;
    text-decoration-thickness: 5px;
    text-underline-offset: 5px;
}

.finderContent.result .planLink {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(283/ var(--screen-w) * 100vw);
    height: calc(80/ var(--screen-w) * 100vw);
    margin: 0 auto;
    border-radius: calc(40/ var(--screen-w) * 100vw);
    background-color: #F3981F;
    border: 2px solid #fff;
    box-sizing: border-box;
    font-size: calc(14/ var(--screen-w) * 100vw);
    font-weight: 700;
    color: #fff;
}

.finderContent.result .planLink::before {
    content: "";
    display: block;
    width: calc(50/ var(--screen-w) * 100vw);
    height: calc(54/ var(--screen-w) * 100vw);
    background: url('img/result-megahon.svg') no-repeat center;
    background-size: contain;
    margin-right: calc(15 / var(--screen-w) * 100vw);
}

.finderContent.result .planLink::after {
    display: block;
    content: "";
    width: calc(10 / var(--screen-w) * 100vw);
    height: calc(12 / var(--screen-w) * 100vw);
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
    margin-left: calc(24 / var(--screen-w) * 100vw);
}

.finderContent.result .resultMan {
    position: absolute;
    bottom: calc(-43 / var(--screen-w) * 100vw);
    left: calc(51 / var(--screen-w) * 100vw);
    width: calc(122 / var(--screen-w) * 100vw);
}

.sp {
    display: none;
}

.hbWrap {
    display: none;
}

.pageContact {
    padding: calc(132 / var(--screen-w) * 100vw) 0 calc(73 / var(--screen-w) * 100vw);
    position: relative;
}

.pageContact>.effect {
    width: calc(425 / var(--screen-w) * 100vw);
    position: absolute;
    left: 0;
    top: calc(113 / var(--screen-w) * 100vw);

}

.pageContactInner {
    width: calc(829 / var(--screen-w) * 100vw);
    margin: 0 auto;
}

.pageContactInner .icon {
    display: block;
    width: calc(46 / var(--screen-w) * 100vw);
    margin: 0 auto calc(26 / var(--screen-w) * 100vw);
}

.pageContactInner .subTit {
    font-size: calc(16 / var(--screen-w) * 100vw);
    font-weight: 500;
    color: #F3981F;
    text-align: center;
    margin-bottom: calc(5 / var(--screen-w) * 100vw);
}

.pageContactInner h1 {
    font-size: calc(34 / var(--screen-w) * 100vw);
    font-weight: 900;
    color: #003A61;
    text-align: center;
    margin-bottom: calc(48 / var(--screen-w) * 100vw);
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.pageContactInner .subTxt {
    font-size: calc(20 / var(--screen-w) * 100vw);
    font-weight: 700;
    text-align: center;
    margin-bottom: calc(73 / var(--screen-w) * 100vw);
    color: #003A61;
}

.pageContactInner .flowArrow {
    display: flex;
    margin-bottom: calc(28 / var(--screen-w) * 100vw);
}

.pageContactInner .flowArrow p {
    flex: 1;
    height: calc(51 / var(--screen-w) * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(15 / var(--screen-w) * 100vw);
    font-weight: 700;
    color: #FFFFFF;
    background-color: #CCCCCC;
}

.pageContactInner .flowArrow p:nth-child(1) {
    clip-path: polygon(0% 0%, calc(100% - (23 / var(--screen-w) * 100vw)) 0%, 100% 50%, calc(100% - (23 / var(--screen-w) * 100vw)) 100%, 0% 100%);
    z-index: 3;
}

.pageContactInner .flowArrow p:nth-child(2) {
    clip-path: polygon(0% 0%, calc(100% - (23 / var(--screen-w) * 100vw)) 0%, 100% 50%, calc(100% - (23 / var(--screen-w) * 100vw)) 100%, 0% 100%, calc(23 / var(--screen-w) * 100vw) 50%);
    z-index: 2;
}

.pageContactInner .flowArrow p:nth-child(3) {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, calc(23 / var(--screen-w) * 100vw) 50%);
    z-index: 1;
}

.pageContactInner .flowArrow p.active {
    background-color: #003A61;
}

.pageContactInner .contactContent {
    padding: calc(52 / var(--screen-w) * 100vw) 6% calc(81 / var(--screen-w) * 100vw);
    background-color: #fff;
    box-sizing: border-box;
    border-radius: calc(16 / var(--screen-w) * 100vw);
    margin-bottom: calc(75 / var(--screen-w) * 100vw);
}

.pageContactInner .contactContent .form-preview-dl input[type="text"],
.pageContactInner .contactContent .form-preview-dl input[type="password"] {
    background-color: #fff;
    border-radius: calc(4 /var(--screen-w)*100vw);
}

.contactLink {
    width: 100%;
    height: calc(156 / var(--screen-w) * 100vw);
    background-color: #003A61;
    padding: calc(6 / var(--screen-w) * 100vw) calc(9 / var(--screen-w) * 100vw);
    box-sizing: border-box;
    display: block;
    border-radius: calc(16 / var(--screen-w) * 100vw);
}

.contactLinkInner {
    border: 1px solid #FFF;
    border-radius: calc(8 / var(--screen-w) * 100vw);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(22 / var(--screen-w) * 100vw);
    font-weight: 900;
    color: #FFF;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #fff;
}

.contactLinkInner::before {
    display: block;
    content: "";
    width: calc(36 / var(--screen-w) * 100vw);
    height: calc(36 / var(--screen-w) * 100vw);
    background: url('img/Icon-message.png') no-repeat center;
    background-size: contain;
    margin-right: calc(109 / var(--screen-w) * 100vw);
}

.contactLinkInner::before {
    display: block;
    content: "";
    width: calc(36 / var(--screen-w) * 100vw);
    height: calc(36 / var(--screen-w) * 100vw);
    background: url('img/Icon-message.png') no-repeat center;
    background-size: contain;
    margin-right: calc(109 / var(--screen-w) * 100vw);
}

.contactLinkInner::after {
    display: block;
    content: "";
    width: calc(16 / var(--screen-w) * 100vw);
    height: calc(19 / var(--screen-w) * 100vw);
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
    margin-left: calc(110 / var(--screen-w) * 100vw);
}

@media (width < 1000px) {
    :root {
        --screen-w: 390;
    }

    br.pc {
        display: none;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    header {
        padding: 0 5%;
    }

    header nav {
        display: none;
    }

    header .headBtn {
        display: none;
    }

    .hbWrap {
        display: block;
        width: calc(40 / var(--screen-w) * 100vw);
        height: calc(40 / var(--screen-w) * 100vw);
        border-radius: calc(8 / var(--screen-w) * 100vw);
        background-color: #F3981F;
        border: 2px solid #fff;
        box-sizing: border-box;
    }

    .hbBtn {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hbBtn span {
        display: block;
        height: calc(2 / var(--screen-w) * 100vw);
        width: calc(15 / var(--screen-w) * 100vw);
        background-color: #fff;
        margin-bottom: calc(3 / var(--screen-w) * 100vw);
    }

    .hbBtn span:last-child {
        margin-bottom: 0;
    }

    .hbMenu {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100dvh;
        background-color: #fff;
        background-color: #FFF9E8;
        background-image: linear-gradient(#fff 1px, transparent 1px);
        background-size: 100% 25px;
        transition: .3s;
        box-sizing: border-box;
        padding: calc(20 / var(--screen-w) * 100vw) calc(24 / var(--screen-w) * 100vw) calc(26 / var(--screen-w) * 100vw);
        overflow-y: scroll;
    }

    .hbMenuInner {
        width: 100%;
        background-color: #fff;
        border-radius: calc(8 / var(--screen-w) * 100vw);
        padding: calc(3 / var(--screen-w) * 100vw) 0 calc(22 / var(--screen-w) * 100vw);
        box-sizing: border-box;
        margin-bottom: calc(43 / var(--screen-w) * 100vw);
    }

    .hbMenuInner .hbHeadWrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 calc(3 / var(--screen-w) * 100vw) 0 calc(10 / var(--screen-w) * 100vw);
        margin-bottom: calc(51 / var(--screen-w) * 100vw);
        box-sizing: border-box;
    }

    .hbMenuInner .hbHeadWrap>p {
        width: calc(164 / var(--screen-w) * 100vw);
    }

    .hbMenuInner .hbHeadWrap>p a img {
        width: 100%;
    }

    .hbMenuInner .hbHeadWrap .hbBtnSub {
        width: calc(40 / var(--screen-w) * 100vw);
        height: calc(40 / var(--screen-w) * 100vw);
        border-radius: calc(8 / var(--screen-w) * 100vw);
        background-color: #003A61;
        border: 2px solid #fff;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hbMenuInner .hbHeadWrap .hbBtnSub span {
        display: block;
        height: calc(2 / var(--screen-w) * 100vw);
        width: calc(15 / var(--screen-w) * 100vw);
        background-color: #fff;
    }

    .hbMenuInner .hbHeadWrap .hbBtnSub span:first-child {
        transform: rotate(30deg);
        margin-bottom: calc(-2 / var(--screen-w) * 100vw);
    }

    .hbMenuInner .hbHeadWrap .hbBtnSub span:last-child {
        transform: rotate(-30deg);
    }

    .hbMenuInner nav {
        width: 88%;
        margin: 0 auto calc(37 / var(--screen-w) * 100vw);
    }

    .hbMenuInner nav .mainNav a {
        padding: calc(25 / var(--screen-w) * 100vw) 0 calc(22 / var(--screen-w) * 100vw);
        border-bottom: 1px solid #EBEBEB;
        font-size: calc(14 / var(--screen-w) * 100vw);
    }

    .hbMenuInner .mainNav>a:first-child {
        padding-top: 0;
    }

    .hbMenuInner nav .subLink {
        width: 90%;
        margin: 0 auto;
    }

    .hbMenuInner nav .subLink a::before {
        display: none;
    }

    .hbMenuInner .application {
        display: flex;
        justify-content: center;
        align-items: center;
        width: calc(107/ var(--screen-w) * 100vw);
        height: calc(107/ var(--screen-w) * 100vw);
        border-radius: 50%;
        background-color: #F3981F;
        font-size: calc(14/ var(--screen-w) * 100vw);
        color: #fff;
        margin: 0 calc(20 / var(--screen-w) * 100vw) 0 auto;
    }

    .hbMenuInner .application:after {
        display: block;
        content: "";
        width: calc(10 / var(--screen-w) * 100vw);
        height: calc(12 / var(--screen-w) * 100vw);
        background: url('img/arrow_w.svg') no-repeat center;
        background-size: contain;
        margin-left: calc(13 / var(--screen-w) * 100vw);
    }

    .hbWrap.on .hbMenu {
        left: 0;
    }

    .whiteWrap {
        width: 100%;
        margin-right: 0;
        padding: calc(3 / var(--screen-w) * 100vw) calc(3 / var(--screen-w) * 100vw) calc(3 / var(--screen-w) * 100vw) calc(10 / var(--screen-w) * 100vw);
    }

    .whiteWrap h1 {
        width: calc(164 / var(--screen-w) * 100vw);
    }

    .pageTop {
        padding-top: calc(116 / var(--screen-w) * 100vw);
        padding-bottom: calc(47 / var(--screen-w) * 100vw);
    }

    .obi.top.sp {
        top: calc(708 / var(--screen-w) * 100vw);
    }

    .mv {
        width: 100%;
        flex-direction: column;
        margin: 0 auto calc(61 / var(--screen-w) * 100vw);
        padding-bottom: 0;
    }

    .mv .left {
        width: 90%;
        margin: 0 auto;
    }

    .mv .left .txtImg {
        width: calc(242 / var(--screen-w) * 100vw);
    }

    .mv .left>p {
        font-size: calc(14 / var(--screen-w) * 100vw);
        line-height: calc(27 / var(--screen-w) * 100vw);
        margin-bottom: calc(22 / var(--screen-w) * 100vw);
    }

    .mv .left .imgBox {
        margin-bottom: calc(23 / var(--screen-w) * 100vw);
    }

    .mv .left .imgBox .effect {
        bottom: calc(-25 / var(--screen-w) * 100vw);
        left: calc(-26 / var(--screen-w) * 100vw);
    }

    .mv .left .imgBox .effect.sp {
        top: 0;
        right: calc(21 / var(--screen-w) * 100vw);
        left: auto;
    }

    .mv .shindan {
        padding: calc(26 / var(--screen-w) * 100vw) calc(27 / var(--screen-w) * 100vw) calc(21 / var(--screen-w) * 100vw);
        width: 100%;
    }

    .mv .shindan .titTxt {
        font-size: calc(18 / var(--screen-w) * 100vw);
        letter-spacing: 0;
        margin-bottom: calc(17 / var(--screen-w) * 100vw);
    }

    .mv .right {
        width: 100%;
        margin-top: calc(44 / var(--screen-w) * 100vw);
        aspect-ratio: 352 / 484;
    }

    .mv .right .pcImg {
        bottom: auto;
        top: calc(79 / var(--screen-w) * 100vw);
        width: 73%;
    }

    .mv .right .fukidashiInner {
        padding: calc(16 / var(--screen-w) * 100vw) calc(35 / var(--screen-w) * 100vw);
    }

    .mv .right .fukidashiBox .text {
        font-size: calc(17 / var(--screen-w) * 100vw);
    }

    .mv .right .fukidashiBox .text .txtOrange {
        font-size: calc(20 / var(--screen-w) * 100vw);
    }

    .mv .right .fukidashiBox .num {
        font-size: calc(30 / var(--screen-w) * 100vw);
    }

    .mv .right .fukidashiBox.no1 {
        top: calc(22 / var(--screen-w) * 100vw);
        left: calc(39 / var(--screen-w) * 100vw);
    }

    .mv .right .fukidashiBox.no1:after {
        left: calc(63 / var(--screen-w) * 100vw);
    }

    .mv .right .fukidashiBox.no2 {
        bottom: calc(90 / var(--screen-w) * 100vw);
        right: calc(25 / var(--screen-w) * 100vw);
    }

    .mv .right .fukidashiBox.no3 {
        left: calc(32 / var(--screen-w) * 100vw);
        bottom: 0;
    }

    .mv .right .fukidashiBox.no3:after {
        left: calc(42 / var(--screen-w) * 100vw);
        right: auto;
    }

    .mv .right .effect.kira1 {
        display: none;
    }

    .mv .right .effect.kira2 {
        width: calc(43 / var(--screen-w) * 100vw);
        left: calc(11 / var(--screen-w) * 100vw);
        top: calc(322 / var(--screen-w) * 100vw);
    }

    .mv .right .effect.kira3 {
        top: calc(186 / var(--screen-w) * 100vw);
        bottom: auto;
        right: calc(16 / var(--screen-w) * 100vw);
        width: calc(43 / var(--screen-w) * 100vw);
    }

    .scrollIcon {
        bottom: calc(265 / var(--screen-w) * 100vw);
        left: auto;
        transform: translate(0);
        right: calc(14 / var(--screen-w) * 100vw);
        z-index: 800;
    }

    .topBlock1Inner {
        width: 90%;
        padding: calc(32 / var(--screen-w) * 100vw) 0 calc(39 / var(--screen-w) * 100vw);
    }

    .topBlock1Inner .kyusyu {
        width: calc(51 / var(--screen-w) * 100vw);
        margin: 0 auto calc(18 / var(--screen-w) * 100vw);
    }

    .topBlock1Inner h2 {
        font-size: calc(17 / var(--screen-w) * 100vw);
        margin-bottom: calc(24 / var(--screen-w) * 100vw);
    }

    .topBlock1Inner h2 img {
        width: calc(234 / var(--screen-w) * 100vw);
    }

    .topBlock1Inner p {
        font-size: calc(14 / var(--screen-w) * 100vw);
        line-height: calc(23 / var(--screen-w) * 100vw);
    }

    .planCardWrap {
        width: 90%;
    }

    .planCard {
        grid-template-columns: 1fr;
        gap: calc(22 / var(--screen-w) * 100vw);
    }

    .finderWrap {
        width: 95%;
        overflow: hidden;
    }

    .topBlock3Inner {
        width: 90%;
    }

    .postList {
        grid-template-columns: repeat(2, 1fr);
        gap: calc(39 / var(--screen-w) * 100vw) calc(22 / var(--screen-w) * 100vw);
        margin-bottom: calc(36 / var(--screen-w) * 100vw);
    }

    .topBlock3 .postList {
        margin-bottom: calc(36 / var(--screen-w) * 100vw);
    }

    .topBlock4Inner {
        width: 90%;
        flex-direction: column;
        margin: 0 auto;
    }

    .topBlock4Inner .contactList {
        width: 100%;
    }

    .footerLinks {
        width: 90%;
        flex-direction: column;
    }

    .finderWrapInner {
        margin-left: calc(10 / var(--screen-w) * 100vw);
        padding: calc(31 / var(--screen-w) * 100vw) 0 calc(40 / var(--screen-w) * 100vw);
    }

    .finderWrapInner .titWrap2 {
        width: max-content;
        margin: 0 auto calc(17 / var(--screen-w) * 100vw);
    }

    .finderWrapInner .titWrap2 h2 {
        font-size: calc(34 / var(--screen-w) * 100vw);
    }

    .topBlock1 {
        margin-bottom: calc(62 / var(--screen-w) * 100vw);
        position: relative;
        padding-top: calc(43 / var(--screen-w) * 100vw);
        padding-bottom: calc(85 / var(--screen-w) * 100vw);
        overflow: hidden;
    }

    .topBlock1 .effect.no2 {
        width: calc(119 / var(--screen-w) * 100vw);
        left: calc(-36 / var(--screen-w) * 100vw);
        bottom: calc(22 / var(--screen-w) * 100vw);
    }

    .topBlock1 .effect.no3 {
        width: calc(151 / var(--screen-w) * 100vw);
        right: calc(-18 / var(--screen-w) * 100vw);
        bottom: calc(0 / var(--screen-w) * 100vw);
    }

    .effectWrap {
        width: calc(143 / var(--screen-w) * 100vw);
        aspect-ratio: 143 / 110;
    }

    .effectWrap .effect.no1-1 {
        width: 64%;
    }

    .effectWrap .effect.no1-2 {
        width: 42%;
        bottom: 0;
    }

    .titWrap .subTit {
        font-size: calc(15 / var(--screen-w) * 100vw);
    }

    .titWrap h2 {
        font-size: calc(24 / var(--screen-w) * 100vw);
    }

    .titWrap h2 .orange {
        font-size: calc(48 / var(--screen-w) * 100vw);
    }

    .titWrap h2 .orange span {
        font-size: calc(24 / var(--screen-w) * 100vw);
    }

    .topBlock2 .titWrap {
        margin-bottom: calc(35 / var(--screen-w) * 100vw);
    }

    .planCardWrap>.effect {
        bottom: 100%;
        right: -5%;
        width: calc(67 / var(--screen-w) * 100vw);
    }

    .topBlock2>.effect.kira {
        width: calc(40 / var(--screen-w) * 100vw);
        top: calc(0/ var(--screen-w) * 100vw);
        left: calc(16 / var(--screen-w) * 100vw);
    }

    .planCard li {
        border-radius: calc(16 / var(--screen-w) * 100vw);
        padding: calc(55 / var(--screen-w) * 100vw) 9% calc(25 / var(--screen-w) * 100vw);
    }


    .planCard li .planName {
        font-size: calc(14 / var(--screen-w) * 100vw);
        padding: calc(10 / var(--screen-w) * 100vw) calc(28 / var(--screen-w) * 100vw);
    }

    .planCard li h3 {
        font-size: calc(20 / var(--screen-w) * 100vw);
        margin-bottom: calc(16 / var(--screen-w) * 100vw);
        padding-bottom: calc(16 / var(--screen-w) * 100vw);
    }

    .planCard li .detail {
        font-size: calc(14 / var(--screen-w) * 100vw);
        line-height: calc(26 / var(--screen-w) * 100vw);
    }

    .planCard li a {
        height: calc(52 / var(--screen-w) * 100vw);
        margin: calc(31 / var(--screen-w) * 100vw) auto 0;

    }

    .topBlock2 .planCard {
        margin-bottom: calc(33 / var(--screen-w) * 100vw);
    }

    .finderWrap .hakken {
        width: calc(127 / var(--screen-w) * 100vw);
        right: calc(-42 / var(--screen-w) * 100vw);
        bottom: calc(24 / var(--screen-w) * 100vw);
    }

    .finderWrap .finderTit {
        width: 11%;
        font-size: calc(15 / var(--screen-w) * 100vw);
    }

    .finderWrapInner>p {
        font-size: calc(18 / var(--screen-w) * 100vw);
        margin-bottom: calc(0 / var(--screen-w) * 100vw);
    }

    .finderWrapInner .titWrap2 .effect.left {
        right: calc(100% + (12 / var(--screen-w)*100vw));
        width: calc(25 / var(--screen-w)*100vw);
        top: calc(14 / var(--screen-w) * 100vw);
    }

    .finderWrapInner .titWrap2 .effect.right {
        width: calc(25 / var(--screen-w)*100vw);
        top: calc(14 / var(--screen-w) * 100vw);
    }

    .finderWrapInner a {
        width: calc(240 / var(--screen-w) * 100vw);
        height: calc(46 / var(--screen-w) * 100vw);
    }

    .topBlock2 .effect.img {
        width: calc(311 / var(--screen-w) * 100vw);
        position: absolute;
        bottom: calc(-216 / var(--screen-w) * 100vw);
        left: calc(-24 / var(--screen-w) * 100vw);
        z-index: -1;
    }

    .topBlock2 {
        margin-bottom: calc(231 / var(--screen-w) * 100vw);
    }

    .postListWrap .effect {
        width: calc(111 / var(--screen-w) * 100vw);
        bottom: 100%;
        right: calc(-5% + (-13 / var(--screen-w) * 100vw));
    }

    .topBlock3 .titWrap {
        margin-bottom: calc(33 / var(--screen-w) * 100vw);
    }

    .topBlock3 .titWrap .subTit {
        font-size: calc(15 / var(--screen-w) * 100vw);
    }

    .topBlock3 .titWrap h2 {
        font-size: calc(24 / var(--screen-w) * 100vw);
    }

    .postList li img {
        margin-bottom: calc(12 / var(--screen-w) * 100vw);
    }

    .postList li h3 {
        font-size: calc(15 / var(--screen-w) * 100vw);
        margin-bottom: calc(13 / var(--screen-w) * 100vw);
    }

    .topBlock3 a {
        margin: 0 auto;
    }

    .topBlock3 {
        margin-bottom: calc(84 / var(--screen-w) * 100vw);
        padding-top: calc(35 / var(--screen-w) * 100vw);
        overflow: hidden;
    }

    .topBlock4 {
        padding: calc(375 / var(--screen-w) * 100vw) 0 calc(269 / var(--screen-w) * 100vw);
        overflow: hidden;
    }

    .topBlock4 .effect.no1 {
        width: calc(388 / var(--screen-w) * 100vw);
        left: calc(-89 / var(--screen-w) * 100vw);
        z-index: 1;
    }

    .topBlock4Inner>img {
        width: calc(275 / var(--screen-w) * 100vw);
        right: calc(-3 / var(--screen-w) * 100vw);
        top: calc(147 / var(--screen-w) * 100vw);
        position: absolute;
    }

    .contactList a {
        padding: calc(6 / var(--screen-w) * 100vw) calc(8 / var(--screen-w) * 100vw);
    }

    .contactList a .contactListInner {
        flex-direction: column;
    }

    .contactList a .contactListInner .txtBox {
        width: 100%;
        padding: 0;
    }

    .contactList a.contactListMail .contactListInner .txtBox {
        padding: 0;
    }

    .contactList a.contactListContact .contactListInner .txtBox {
        padding: 0;
    }

    .contactList a .contactListInner:after {
        margin-left: 0;
        right: 5%;
    }

    .contactList a.contactListMail .contactListInner {
        padding: calc(17 / var(--screen-w) * 100vw) 6% calc(29 / var(--screen-w) * 100vw);
    }

    .contactList a.contactListApplication .contactListInner {
        padding: calc(22 / var(--screen-w) * 100vw) calc(54 / var(--screen-w) * 100vw) calc(27 / var(--screen-w) * 100vw) 6%;
    }

    .contactList a.contactListContact .contactListInner {
        padding: calc(20 / var(--screen-w) * 100vw) 6% calc(28 / var(--screen-w) * 100vw);
    }

    .contactList a .contactListInner .imgBox {
        width: max-content;
        margin-bottom: calc(15 / var(--screen-w) * 100vw);
    }

    .contactList a.contactListMail .imgBox img {
        width: calc(23 / var(--screen-w) * 100vw);
    }

    .contactList a.contactListApplication .imgBox img {
        width: calc(24 / var(--screen-w) * 100vw);
    }

    .contactList a.contactListContact .imgBox img {
        width: calc(24 / var(--screen-w) * 100vw);
    }

    .contactList a .contactListInner .txtBox h3 {
        font-size: calc(18 / var(--screen-w) * 100vw);
        margin-bottom: calc(15 / var(--screen-w) * 100vw);
    }

    .contactList a .contactListInner .txtBox p {
        font-size: calc(13 / var(--screen-w) * 100vw);
        line-height: calc(21 / var(--screen-w) * 100vw);
        text-align: justify;
    }

    .contactList a.contactListApplication .contactListInner .txtBox p br {
        display: none;
    }

    .topBlock4 .effect.no2 {
        width: calc(184 / var(--screen-w) * 100vw);
        bottom: 0;
        left: calc(24 / var(--screen-w) * 100vw);
    }

    .obi.bottom {
        bottom: calc(78 / var(--screen-w) * 100vw);
    }

    footer {
        padding-top: calc(0 / var(--screen-w) * 100vw);
        padding-bottom: calc(22 / var(--screen-w) * 100vw);
    }

    footer .effectWrap {
        top: calc(422 / var(--screen-w) * 100vw);
    }

    footer .logo {
        margin: 0 auto calc(39 / var(--screen-w) * 100vw);
    }

    footer .logo img {
        width: calc(246 / var(--screen-w) * 100vw);
    }

    footer .companyBlock {
        margin-bottom: calc(59 / var(--screen-w) * 100vw);
    }

    .footerLinks.plan {
        margin-bottom: calc(21 / var(--screen-w) * 100vw);
    }

    .footerLinks a {
        margin-right: calc(0 / var(--screen-w) * 100vw);
        margin-bottom: calc(21 / var(--screen-w) * 100vw);
    }

    .footerLinks a:last-child {
        margin-bottom: 0;
    }

    .copy {
        font-size: calc(10 / var(--screen-w) * 100vw);
        letter-spacing: 0;
    }

    .aboutBlock1Inner {
        width: 95%;
        padding: calc(40 / var(--screen-w) * 100vw) 5% calc(40 / var(--screen-w) * 100vw);
    }

    .aboutBlock1Inner>.effect {
        left: 90%;
        top: calc(-15 / var(--screen-w) * 100vw);
    }

    .aboutBlock1 .effectWrap {
        top: calc(230/var(--screen-w)*100vw);
    }

    .aboutBlock1Inner h2 {
        font-size: calc(24 / var(--screen-w) * 100vw);
        margin-bottom: calc(20 / var(--screen-w) * 100vw);
    }

    .aboutBlock1Inner p {
        font-size: calc(16 / var(--screen-w) * 100vw);
        line-height: 1.6;
    }

    .aboutBlock1Inner p br {
        display: none;
    }

    .aboutBlock2Inner {
        width: 90%;
    }

    .pointListWrap {
        width: 90%;
    }

    .pointList {
        grid-template-columns: repeat(1, 1fr);
        gap: calc(24/var(--screen-w)*100vw);
    }

    .qaBoxWrap {
        width: 90%;
    }

    .aboutBlock2Inner>img {
        width: 100%;
        margin-bottom: 40px;
    }

    .aboutBlock2 .titWrap {
        margin-bottom: calc(18/var(--screen-w)*100vw);
    }

    .aboutBlock2 .titWrap .subTit {
        font-size: calc(15/var(--screen-w)*100vw);
    }

    .aboutBlock2 .titWrap h2 {
        font-size: calc(24/var(--screen-w)*100vw);
    }

    .foryouBox {
        width: auto;
        position: static;
        margin-bottom: 10px;
    }

    .foryouBox:last-child {
        margin-bottom: 0;
    }

    .foryouBox p {
        font-size: calc(16 / var(--screen-w) * 100vw);
    }

    .aboutBlock3 {
        padding: calc(32/var(--screen-w)*100vw) 0 calc(42/var(--screen-w)*100vw);
        margin-bottom: calc(100 /var(--screen-w)*100vw);
    }

    .aboutBlock3>.effect {
        width: calc(80/var(--screen-w)*100vw);
        top: calc(-40/var(--screen-w)*100vw);
        left: 5%;
    }

    .aboutBlock3 .titWrap {
        margin-bottom: calc(32/var(--screen-w)*100vw);
    }

    .aboutBlock3 .titWrap .subTit {
        font-size: calc(15/var(--screen-w)*100vw);
    }

    .aboutBlock3 .titWrap h2 {
        font-size: calc(24/var(--screen-w)*100vw);
    }

    .pointList li .pointListInner {
        height: calc(235/var(--screen-w)*100vw);
    }

    .pointList li .pointListInner .pointNum {
        margin-bottom: calc(10/var(--screen-w)*100vw);
    }

    .pointList li .pointListInner h3 {
        margin-bottom: calc(18/var(--screen-w)*100vw);
    }

    .pageAbout .topBlock2 .titWrap .subTit {
        font-size: calc(15/var(--screen-w)*100vw);
        margin-bottom: 0;
    }

    .pageAbout .topBlock2 .titWrap .subTxt2 {
        font-size: calc(18 / var(--screen-w) * 100vw);
        margin-bottom: calc(-4/var(--screen-w)*100vw);
    }

    .pageAbout .planCard li .price {
        margin-bottom: calc(8/var(--screen-w)*100vw);
    }

    .planCard li .detail {
        font-size: calc(13 / var(--screen-w) * 100vw);
    }

    .pageAbout .planCard li .detail:last-child {
        margin-bottom: calc(36/var(--screen-w)*100vw);
    }

    .pageAbout .topBlock2 {
        margin-bottom: calc(40/var(--screen-w)*100vw);
    }

    .aboutBlock4 {
        margin-bottom: calc(100/var(--screen-w)*100vw);
    }

    .aboutBlock4>.effect {
        width: calc(120/var(--screen-w)*100vw);
    }

    .aboutBlock4 .titWrap .subTit {
        font-size: calc(15/var(--screen-w)*100vw);
    }

    .aboutBlock4 .titWrap h2 {
        font-size: calc(24/var(--screen-w)*100vw);
    }

    .aboutBlock4 .tableWrap {
        width: 90%;
        margin: 0 auto;
        overflow: hidden;
    }

    .aboutBlock4 .tableWrap table {
        width: calc(920/var(--screen-w)*100vw);
        display: block;
    }

    .aboutBlock5 .titWrap .subTit {
        font-size: calc(15 / var(--screen-w) * 100vw);
    }

    .aboutBlock5 .titWrap h2 {
        font-size: calc(24/var(--screen-w)*100vw);
    }

    .qaBoxWrap .qaBox {
        margin-bottom: calc(10/var(--screen-w)*100vw);
    }

    .qaBoxWrap .qBox {
        padding: calc(21/var(--screen-w)*100vw) 8% calc(15/var(--screen-w)*100vw) 4%;
    }

    .qaBoxWrap .qBox .iconTxt {
        font-size: calc(20/var(--screen-w)*100vw);
    }

    .qaBoxWrap .qBox .text {
        font-size: calc(14/var(--screen-w)*100vw);
    }

    .qaBoxWrap .qBox .qaBtn {
        width: calc(15/var(--screen-w)*100vw);
        height: calc(15/var(--screen-w)*100vw);
        right: 3%;
    }

    .qaBoxWrap .aBox {
        padding: calc(0/var(--screen-w)*100vw) 8% calc(0/var(--screen-w)*100vw) 4%;
    }

    .qaBox.on .aBox {
        padding: calc(20/var(--screen-w)*100vw) 8% calc(35/var(--screen-w)*100vw) 4%;
    }

    .qaBoxWrap .qBox .iconTxt {
        margin-right: calc(4/var(--screen-w)*100vw);
    }

    .qaBoxWrap .aBox .iconTxt {
        margin-right: calc(4/var(--screen-w)*100vw);
    }

    .qaBoxWrap .aBox .text a {
        width: 100%;
    }

    .aboutBlock5 {
        margin-bottom: calc(100/var(--screen-w)*100vw);
    }

    .planForYou .serviceDetail {
        width: 90%;
        margin: 0 auto;
    }

    .planLisksContactner {
        width: 90%;
        margin: 0 auto calc(100 / var(--screen-w) * 100vw);
    }

    .planForYou .planForYouInner {
        width: 90%;
        position: static;
        aspect-ratio: auto;
        transform: translateX(0);
        margin: 0 auto;
    }

    .pagePlan.advance .planForYou .planForYouInner,
    .pagePlan.premium .planForYou .planForYouInner {
        width: 90%;
        aspect-ratio: auto;

    }

    .planForYou .planForYouBox {
        position: relative;
        width: 100%;
        margin-bottom: 10px;
    }

    .planForYou .planForYouBox:last-child {
        margin-bottom: 0;
    }

    .planForYou .planForYouBox:after {
        display: none;
    }

    .planForYou .planForYouBox.no1 {
        top: auto;
        left: auto;
    }

    .planForYou .planForYouBox.no2 {
        top: auto;
        left: auto;
    }

    .planForYou .planForYouBox.no3 {
        top: auto;
        left: auto;
    }

    .planBoxInner .planTitWrap .kira.left {
        left: 0;
    }

    .planLisksWrap {
        grid-template-columns: 1fr;
        gap: calc(20/var(--screen-w) * 100vw) 0;
        margin-bottom: calc(20/var(--screen-w) * 100vw);
    }

    .planBoxInner .planTitWrap .kira.left {
        left: 93%;
        top: 0;
    }

    .planBoxInner .planTitWrap .kira.right {
        right: 93%;
        top: 0;
    }

    .planBox {
        width: 90%;
    }

    .planBoxInner .subTit {
        font-size: calc(14 / var(--screen-w) * 100vw);
    }

    .planBoxInner h1 {
        font-size: calc(28 / var(--screen-w) * 100vw);
        margin-bottom: calc(20 / var(--screen-w) * 100vw);
    }

    .mvPlan {
        padding: 100px 0 40px;
    }

    .planForYou {
        padding: calc(60 / var(--screen-w) * 100vw) 0 calc(100 / var(--screen-w) * 100vw);
    }

    .planForYou .outLine .titWrap {
        width: 90%;
        height: calc(126 / var(--screen-w) * 100vw);
        margin-bottom: calc(40 / var(--screen-w) * 100vw);
    }

    .planForYou .outLine .titWrap .subTit {
        font-size: calc(15 / var(--screen-w) * 100vw);
    }

    .planForYou .outLine .titWrap h2 {
        font-size: calc(24 / var(--screen-w) * 100vw);
    }

    .planBoxInner .text {
        font-size: calc(13 / var(--screen-w) * 100vw);
    }

    .planForYou .planForYouBox .num {
        width: calc(40/var(--screen-w) * 100vw);
        height: calc(40/var(--screen-w) * 100vw);
        font-size: calc(18/var(--screen-w) * 100vw);
        top: calc(-16 / var(--screen-w) * 100vw);
        left: calc(-14 / var(--screen-w) * 100vw);
    }

    .planForYou .planForYouBox .subTxt {
        font-size: calc(14 / var(--screen-w) * 100vw);
    }

    .planForYou .planForYouBox .subTxt br {
        display: none;
    }

    .planForYou .planForYouBox h3 span {
        font-size: calc(17 / var(--screen-w) * 100vw);
        text-decoration: none;
        background: linear-gradient(transparent 60%, rgba(250, 192, 28, 1) 60%);
        line-height: calc(28 / var(--screen-w) * 100vw);
    }

    .planForYou .planForYouBox h3 br {
        display: none;
    }

    .planForYou .serviceDetail .effect.human {
        width: calc(60/var(--screen-w)*100vw);
        left: 5%;
    }

    .planForYou .serviceDetail .effect.computer {
        width: calc(100 / var(--screen-w) * 100vw);
        top: calc(-52 / var(--screen-w) * 100vw);
        right: calc(12 / var(--screen-w) * 100vw);
    }

    .planForYou .serviceDetail .posTxt {
        font-size: calc(16 / var(--screen-w) * 100vw);
        top: calc(14 / var(--screen-w) * 100vw);
        left: calc(14 / var(--screen-w) * 100vw);
    }

    .planForYou .serviceDetail {
        padding: calc(60 / var(--screen-w) * 100vw) 0 calc(61 / var(--screen-w) * 100vw);
    }

    .planForYou .serviceDetail .titWrap {
        margin-bottom: calc(40 / var(--screen-w) * 100vw);
    }

    .planForYou .serviceDetail .titWrap .subTit {
        font-size: calc(15 / var(--screen-w) * 100vw);
    }

    .planForYou .serviceDetail .titWrap h2 {
        font-size: calc(24 / var(--screen-w) * 100vw);
    }

    .planForYou .serviceDetail ul {
        width: 90%;
    }

    .planForYou .serviceDetail li {
        flex-direction: column;
    }

    .planForYou .serviceDetail li .title {
        width: 100%;
        padding: calc(10 / var(--screen-w) * 100vw) 0;
        margin-bottom: calc(20 / var(--screen-w) * 100vw);
    }

    .pagePlan.advance .planForYou .serviceDetail li .title {
        width: 100%;
    }

    .pagePlan.premium .planForYou .serviceDetail li .title {
        width: 100%;
    }

    .planForYou .serviceDetail li .text {
        width: 100%;
    }

    .planForYou .serviceDetail li .text h3 {
        margin-bottom: calc(20/var(--screen-w) * 100vw);
    }

    .planForYou .serviceDetail li .text h3 .marker {
        font-size: calc(18/var(--screen-w) * 100vw);
    }

    .planForYou .serviceDetail li .text p {
        font-size: calc(14/var(--screen-w) * 100vw);
        line-height: 1.6;
    }

    .voiceBlock {
        padding: calc(50 / var(--screen-w) * 100vw) 0 calc(60 / var(--screen-w) * 100vw);
    }

    .voiceBlock .effect {
        width: calc(160 /var(--screen-w) * 100vw);
        top: calc(110 / var(--screen-w) * 100vw);
    }

    .voiceBlock .titWrap {
        margin-bottom: 40px;
    }

    .voiceBlock .titWrap .subTit {
        font-size: calc(15 / var(--screen-w) * 100vw);
    }

    .voiceBlock .titWrap h2 {
        font-size: calc(24 / var(--screen-w) * 100vw);
    }

    .voiceBlock .voiceContainer ul {
        grid-template-columns: 1fr;
        gap: calc(20/var(--screen-w) * 100vw);
    }

    .voiceBlock .voiceContainer ul li:nth-child(odd) {
        padding-bottom: calc(71 / var(--screen-w) * 100vw);
    }

    .voiceBlock .voiceContainer ul li:nth-child(even) {
        margin-top: 0;
    }

    .voiceBlock .voiceContainer ul li:nth-child(odd):after {
        bottom: 0;
    }

    .voiceBlock .voiceContainer ul li p {
        text-align: left;
        padding: 0 5%;
        text-align: left;
        font-size: calc(14 / var(--screen-w) * 100vw);
        height: calc(128 / var(--screen-w) * 100vw);
    }

    .voiceBlock .voiceContainer ul li p br {
        display: none;
    }

    .voiceBlock .voiceContainer ul li p:after {
        top: calc(110 / var(--screen-w) * 100vw);
    }

    .planLisksContactner a .planLinkInner {
        padding: calc(20 / var(--screen-w) * 100vw) 3%;
        font-size: calc(18 / var(--screen-w) * 100vw);
        line-height: 1.6;
    }

    .planLisksContactner .planLink.sampleMail .planLinkInner {
        padding: calc(20 / var(--screen-w) * 100vw) 3%;
    }

    .planLisksContactner .planLink.sampleMail .txtBox {
        flex-direction: column;
        align-items: flex-start;
    }

    .planLisksContactner .planLink.sampleMail .planLinkInner>img {
        margin-right: calc(14 / var(--screen-w) * 100vw);
    }

    .planLisksContactner .planLink.sampleMail .title {
        font-size: calc(18 / var(--screen-w) * 100vw);
        margin-right: 0;
    }

    .planLisksContactner .planLink.sampleMail .text {
        font-size: calc(12/var(--screen-w) * 100vw);
    }

    .planHover .planHoverInner {
        padding: calc(12 / var(--screen-w) * 100vw) calc(10 / var(--screen-w) * 100vw) calc(12 / var(--screen-w) * 100vw);
    }

    .planHover .effect {
        width: calc(48 / var(--screen-w) * 100vw);
    }

    .planHover .planHoverInner>img {
        margin-right: calc(10 / var(--screen-w) * 100vw);
    }

    .planHover .planHoverInner p {
        font-size: calc(12 / var(--screen-w) * 100vw);
    }

    .mvPlan .planMegahon {
        display: none;
    }

    .pagePlan.advance .planForYou .serviceDetail li .text,
    .pagePlan.premium .planForYou .serviceDetail li .text {
        width: 100%;
    }

    .pagePlan.advance .planForYou .serviceDetail li .text h3,
    .pagePlan.premium .planForYou .serviceDetail li .text h3 {
        align-items: center;
        font-size: calc(18 / var(--screen-w) * 100vw);
    }

    .pagePlan.premium .planForYou .planForYouInner {
        position: static;
        width: 90%;
        margin: 0 auto;
        aspect-ratio: auto;
    }

    .pagePlan.premium .planForYou .planForYouBox {
        position: relative;
        width: 100%;
    }

    .pagePlan.premium .planForYou .planForYouBox.no2 {
        top: auto;
    }

    .pagePlan.premium .planForYou .planForYouBox.no3 {
        left: auto;
    }

    .pagePlan.premium .premiumDetail {
        width: 90%;
        margin: 0 auto;
        text-align: justify;
        margin-bottom: calc(60 / var(--screen-w) * 100vw);
    }

    .pagePlan.premium .premiumDetail br {
        display: none;
    }

    .pagePlan.premium .planForYou .outLine .titWrap {
        margin-bottom: calc(40 / var(--screen-w) * 100vw);
    }

    .pagePlan.premium .premiumDetail::before,
    .pagePlan.premium .premiumDetail::after {
        display: none;
    }

    .planForYou .planForYouBox,
    .pagePlan.advance .planForYou .planForYouBox,
    .planForYou .planForYouBox {
        margin-bottom: calc(30 / var(--screen-w) * 100vw);
    }

    .planForYou .planForYouBox.no1,
    .planForYou .planForYouBox.no2,
    .planForYou .planForYouBox.no3,
    .pagePlan.standard .planForYou .planForYouBox.no2,
    .pagePlan.advance .planForYou .planForYouBox.no1,
    .pagePlan.advance .planForYou .planForYouBox.no2,
    .pagePlan.advance .planForYou .planForYouBox.no3,
    .pagePlan.premium .planForYou .planForYouBox.no1,
    .pagePlan.premium .planForYou .planForYouBox.no2,
    .pagePlan.premium .planForYou .planForYouBox.no3 {
        padding: calc(25 / var(--screen-w) * 100vw) 4% calc(30 / var(--screen-w) * 100vw);
    }

    .planLisksContactner .planLink.sampleMail {
        width: 100%;
        box-sizing: border-box;
    }

    .finderContent {
        width: 90%;
    }

    .shindanBoxWrap {
        grid-template-columns: 1fr;
    }

    .finderContent.start .shindanBoxWrap {
        width: 90%;
    }

    .pageFinder>h1 {
        font-size: calc(28/var(--screen-w)*100vw);
        z-index: 1;
    }

    .finderContent {
        border-radius: calc(20/ var(--screen-w) * 100vw);
    }

    .finderContent .titWrap h2 {
        line-height: 2;
    }

    .finderContent .titWrap h2 span {
        font-size: calc(20/ var(--screen-w) * 100vw);
    }

    .finderContentWrap>.effect.line.left {
        top: calc(-18/ var(--screen-w) * 100vw);
        left: calc(5/ var(--screen-w) * 100vw);
    }

    .finderContentWrap>.effect.line {
        width: calc(30/ var(--screen-w) * 100vw);
    }

    .finderContentWrap>.effect.line.right {
        bottom: calc(-18/ var(--screen-w) * 100vw);
        right: calc(5/ var(--screen-w)*100vw);
    }

    .finderContentWrap>.effect.glass {
        width: calc(96/ var(--screen-w)*100vw);
        top: calc(-35/ var(--screen-w)*100vw);
    }

    .finderContentWrap>.effect.human {
        bottom: calc(-70/ var(--screen-w)*100vw);
        left: calc(0/ var(--screen-w)*100vw);
        width: calc(133/ var(--screen-w)*100vw);
    }

    .finderContent.shindan .shindanTitWrap {
        width: 90%;
        padding-top: calc(48 / var(--screen-w) * 100vw);
    }

    .finderContent.shindan .shindanTit {
        padding: calc(48 / var(--screen-w) * 100vw) 5%;
    }

    .finderContent.shindan .shindanTitWrap::before,
    .finderContent.shindan .shindanTitWrap::after {
        top: calc(9/ var(--screen-w)*100vw);
    }

    .finderContent.shindan .qestionTxt {
        font-size: calc(16 / var(--screen-w) * 100vw);
        max-width: 80%;
        width: auto;
        text-align: left;
    }

    .finderContent.shindan .qestionTxt br {
        display: none;
    }

    .finderContent.shindan .qestionTxt::before {
        content: "" !important;
        position: absolute;
        top: 0 !important;
        bottom: 0 !important;
        right: 102% !important;
        width: calc(20 / var(--screen-w) * 100vw) !important;
        height: auto !important;
        transform: none !important;
        background: none !important;
        border-top: 4px solid #f3981f;
        border-bottom: 4px solid #f3981f;
        border-left: 4px solid #f3981f;
        border-top-left-radius: calc(30 / var(--screen-w) * 100vw);
        border-bottom-left-radius: calc(30 / var(--screen-w) * 100vw);
    }

    .finderContent.shindan .qestionTxt::after {
        content: "" !important;
        position: absolute;
        top: 0 !important;
        bottom: 0 !important;
        left: 101% !important;
        width: calc(20 / var(--screen-w) * 100vw) !important;
        height: auto !important;
        transform: none !important;
        background: none !important;
        border-top: 4px solid #f3981f;
        border-bottom: 4px solid #f3981f;
        border-right: 4px solid #f3981f;
        border-top-right-radius: calc(30 / var(--screen-w) * 100vw);
        border-bottom-right-radius: calc(30 / var(--screen-w) * 100vw);
    }

    .finderContent.shindan .shindanBoxWrap {
        width: 100%;
    }

    .finderContent.shindan .finderInner {
        padding-top: 0;
    }

    .finderContent.shindan .shindanBoxWrap {
        width: 100%;
        gap: calc(20 / var(--screen-w) * 100vw);
    }

    .finderContentWrap.goals>.effect-cloud.cloud1 {
        width: calc(150/ var(--screen-w)*100vw);
    }

    .finderContentWrap.goals>.effect-cloud.cloud2 {
        width: calc(90/ var(--screen-w)*100vw);
        right: calc(5/ var(--screen-w)*100vw);
    }

    .finderContentWrap.goals>.effect-cloud.cloud3 {
        width: calc(90/ var(--screen-w)*100vw);
    }

    .finderContentWrap.goals>.effect-cloud.cloud4 {
        width: calc(110/ var(--screen-w)*100vw);
        z-index: 0;
    }

    .finderContent.result .shindanTitWrap {
        top: calc(-17 / var(--screen-w) * 100vw);
    }

    .finderContent.result .shindanTitWrap h2 {
        padding: calc(40 / var(--screen-w) * 100vw) 11%;
        font-size: calc(18 / var(--screen-w) * 100vw);
        white-space: nowrap;
    }

    .finderContent.result {
        padding-top: calc(118 / var(--screen-w) * 100vw);
    }

    .finderContent.result .resultTxt {
        font-size: calc(18 / var(--screen-w) * 100vw);
    }

    .finderContent.result .resultBox .planTit span {
        font-size: calc(24 / var(--screen-w) * 100vw);
    }

    .finderContent.result .resultBox {
        text-align: center;
        width: 100%;
    }

    .finderContent.result .resultMan {
        bottom: calc(-63 / var(--screen-w) * 100vw);
        left: calc(1 / var(--screen-w) * 100vw);
        width: calc(67 / var(--screen-w) * 100vw);
    }

    .finderContent.result .resultBox .planTit::before,
    .finderContent.result .resultBox .planTit::after {
        width: calc(9/ var(--screen-w) * 100vw);
    }

    .finderContent.result .resultBox .planTit {
        width: 100%;
    }

    .finderContent.result .resultBox .planTit::before {
        right: 93%;
        transform: translateY(-50%) rotate(-199deg);
    }

    .finderContent.result .resultBox .planTit::after {
        left: 93%;
        transform: translateY(-50%) rotate(-161deg);
    }

    .finderContent.result .resultTxt::before {
        right: 100%;
        bottom: calc(10/ var(--screen-w) * 100vw);
    }

    .finderContent.result .resultTxt::before,
    .finderContent.result .resultTxt::after {
        width: calc(37 / var(--screen-w) * 100vw);
    }

    .finderContent.result .resultTxt::after {
        left: 100%;
        top: calc(-10/ var(--screen-w) * 100vw);
    }

    .finderContent .titWrap::before,
    .finderContent .titWrap::after {
        width: calc(9/ var(--screen-w) * 100vw);
    }

    .planFooter {
        padding-bottom: calc(120 / var(--screen-w) * 100vw);
    }

    .pageAbout {
        padding-bottom: calc(47 / var(--screen-w) * 100vw);
    }

    .pagePlan.advance .planForYou .serviceDetail li:first-child .text p,
    .pagePlan.premium .planForYou .serviceDetail li:first-child .text p {
        padding-left: 0;
    }

    .pageContactInner {
        width: 90%;
    }

    .pageContactInner .contactContent {
        padding: calc(40 / var(--screen-w) * 100vw) 6% calc(60 / var(--screen-w) * 100vw);
        margin-bottom: calc(35 / var(--screen-w) * 100vw);
    }

    .pageContactInner .flowArrow {
        flex-direction: column;
        gap: calc(20 / var(--screen-w) * 100vw);
    }

    .pageContactInner .flowArrow p {
        padding-top: calc(10 / var(--screen-w) * 100vw);
        height: auto;
    }

    .pageContactInner .flowArrow p:nth-child(1) {
        clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - (23 / var(--screen-w) * 100vw)), 50% 100%, 0% calc(100% - (23 / var(--screen-w) * 100vw)));
        padding-left: 0;
        padding-bottom: calc(23 / var(--screen-w) * 100vw);
    }

    .pageContactInner .flowArrow p:nth-child(2) {
        clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - (23 / var(--screen-w) * 100vw)), 50% 100%, 0% calc(100% - (23 / var(--screen-w) * 100vw)));
        margin-left: 0;
        margin-top: 0;
        padding-bottom: calc(23 / var(--screen-w) * 100vw);
    }

    .pageContactInner .flowArrow p:nth-child(3) {
        clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - (23 / var(--screen-w) * 100vw)), 50% 100%, 0% calc(100% - (23 / var(--screen-w) * 100vw)));
        padding-right: 0;
        margin-left: 0;
        margin-top: 0;
        padding-bottom: calc(23 / var(--screen-w) * 100vw);
    }

    .pageContactInner h1 {
        font-size: calc(30 / var(--screen-w) * 100vw);
        margin-bottom: calc(18 / var(--screen-w) * 100vw);
    }

    .pageContactInner .subTxt {
        font-size: calc(16 / var(--screen-w) * 100vw);
        margin-bottom: calc(48 / var(--screen-w) * 100vw);
    }

    .contactLink {
        height: calc(76 / var(--screen-w) * 100vw);
    }

    .contactLinkInner {
        font-size: calc(12 / var(--screen-w) * 100vw);
    }

    .contactLinkInner::before {
        width: calc(20 / var(--screen-w) * 100vw);
        height: calc(20 / var(--screen-w) * 100vw);
        margin-right: calc(10 / var(--screen-w) * 100vw);
    }

    .contactLinkInner::after {
        width: calc(8 / var(--screen-w) * 100vw);
        height: calc(10 / var(--screen-w) * 100vw);
        margin-left: calc(10 / var(--screen-w) * 100vw);
    }

    .pageContact>.effect {
        display: none;
    }

}

/* Thanks Page Styles */
.thanksContent {
    text-align: center;
    padding: 60px 40px !important;
}

.thanksTitle {
    font-size: 24px;
    font-weight: bold;
    color: #003A61;
    margin-bottom: 30px;
}

.thanksText {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    text-align: left;
    display: inline-block;
    max-width: 700px;
}

.thanksBtnWrap {
    display: flex;
    justify-content: center;
}

.thanksBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 54px;
    background-color: #003A61;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    border: 2px solid #003A61;
}

.thanksBtn:hover {
    background-color: #fff;
    color: #003A61;
}

.thanksBtn::after {
    display: block;
    content: "";
    width: 10px;
    height: 12px;
    background: url('img/arrow_w.svg') no-repeat center;
    background-size: contain;
    margin-left: 16px;
    transition: background 0.3s;
}

.thanksBtn:hover::after {
    background: url('img/arrow_b.svg') no-repeat center;
    background-size: contain;
}

@media only screen and (max-width: 729px) {
    .thanksContent {
        padding: calc(40 / var(--screen-w) * 100vw) calc(20 / var(--screen-w) * 100vw) !important;
    }

    .thanksTitle {
        font-size: calc(20 / var(--screen-w) * 100vw);
        margin-bottom: calc(20 / var(--screen-w) * 100vw);
    }

    .thanksText {
        font-size: calc(14 / var(--screen-w) * 100vw);
        margin-bottom: calc(30 / var(--screen-w) * 100vw);
    }

    .thanksBtn {
        width: 100%;
        height: calc(50 / var(--screen-w) * 100vw);
        font-size: calc(14 / var(--screen-w) * 100vw);
        border-radius: calc(6 / var(--screen-w) * 100vw);
    }

    .thanksBtn::after {
        width: calc(8 / var(--screen-w) * 100vw);
        height: calc(10 / var(--screen-w) * 100vw);
        margin-left: calc(10 / var(--screen-w) * 100vw);
    }
}

/* sample mail page */
.pageSampleMail {
    position: relative;
    padding: calc(150 / var(--screen-w) * 100vw) 0 calc(120 / var(--screen-w) * 100vw);
}

.pageSampleMailInner {
    width: calc(1000 / var(--screen-w) * 100vw);
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.pageSampleMail .subTit {
    color: #F39800;
    font-family: "Inter", sans-serif;
    font-size: calc(18 / var(--screen-w) * 100vw);
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: calc(10 / var(--screen-w) * 100vw);
}

.pageSampleMail h1 {
    font-size: calc(42 / var(--screen-w) * 100vw);
    font-weight: 900;
    color: #003A61;
    margin-bottom: calc(18 / var(--screen-w) * 100vw);
}

.pageSampleMail .subTxt {
    font-size: calc(16 / var(--screen-w) * 100vw);
    line-height: 1.9;
    margin-bottom: calc(42 / var(--screen-w) * 100vw);
}

.sampleMailBlock {
    background: #fff;
    border: 3px solid #003A61;
    border-radius: calc(24 / var(--screen-w) * 100vw);
    padding: calc(36 / var(--screen-w) * 100vw);
    box-shadow: 0 12px 0 rgba(0, 58, 97, 0.12);
}

.sampleMailTabs {
    display: flex;
    gap: calc(12 / var(--screen-w) * 100vw);
    margin-bottom: calc(26 / var(--screen-w) * 100vw);
}

.sampleMailTab {
    flex: 1;
    cursor: pointer;
    background: #F4F7F9;
    border: 2px solid #003A61;
    border-radius: calc(14 / var(--screen-w) * 100vw);
    color: #003A61;
    font-size: calc(16 / var(--screen-w) * 100vw);
    font-weight: 800;
    padding: calc(16 / var(--screen-w) * 100vw) calc(20 / var(--screen-w) * 100vw);
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.sampleMailTab.is-active,
.sampleMailTab:hover {
    background: #003A61;
    color: #fff;
    transform: translateY(-2px);
}

.sampleMailPanelHead {
    text-align: left;
    margin-bottom: calc(18 / var(--screen-w) * 100vw);
}

.sampleMailPanelHead h2 {
    color: #003A61;
    font-size: calc(24 / var(--screen-w) * 100vw);
    font-weight: 900;
    margin-bottom: calc(6 / var(--screen-w) * 100vw);
}

.sampleMailPanelHead p {
    color: #333;
    font-size: calc(15 / var(--screen-w) * 100vw);
}

.sampleMailFrameWrap {
    overflow: hidden;
    background: #f9f9f9;
    border: 1px solid #d8e0e6;
    border-radius: calc(16 / var(--screen-w) * 100vw);
}

.sampleMailFrameWrap iframe {
    display: block;
    width: 100%;
    height: calc(900 / var(--screen-w) * 100vw);
    min-height: 680px;
    border: 0;
    background: #f9f9f9;
}

@media only screen and (max-width: 729px) {
    .pageSampleMail {
        padding: calc(110 / var(--screen-w) * 100vw) calc(20 / var(--screen-w) * 100vw) calc(70 / var(--screen-w) * 100vw);
    }

    .pageSampleMailInner {
        width: 100%;
    }

    .pageSampleMail .subTit {
        font-size: calc(14 / var(--screen-w) * 100vw);
    }

    .pageSampleMail h1 {
        font-size: calc(30 / var(--screen-w) * 100vw);
    }

    .pageSampleMail .subTxt {
        font-size: calc(14 / var(--screen-w) * 100vw);
        text-align: left;
    }

    .sampleMailBlock {
        border-width: 2px;
        border-radius: calc(16 / var(--screen-w) * 100vw);
        padding: calc(20 / var(--screen-w) * 100vw);
    }

    .sampleMailTabs {
        flex-direction: column;
        gap: calc(10 / var(--screen-w) * 100vw);
    }

    .sampleMailTab {
        border-radius: calc(10 / var(--screen-w) * 100vw);
        font-size: calc(14 / var(--screen-w) * 100vw);
        padding: calc(13 / var(--screen-w) * 100vw);
    }

    .sampleMailPanelHead h2 {
        font-size: calc(19 / var(--screen-w) * 100vw);
    }

    .sampleMailPanelHead p {
        font-size: calc(13 / var(--screen-w) * 100vw);
    }

    .sampleMailFrameWrap {
        border-radius: calc(10 / var(--screen-w) * 100vw);
        overflow: hidden;
    }

    .sampleMailFrameWrap iframe {
        width: 100%;
        max-width: 100%;
        height: 900px;
        min-height: 620px;
    }
}


/* samplemail inline preview fix: iframeを使わず、スマホでも本文をそのまま表示する */
.sampleMailPreview {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #f9f9f9;
    border: 1px solid #d8e0e6;
    border-radius: calc(16 / var(--screen-w) * 100vw);
    padding: calc(18 / var(--screen-w) * 100vw) 0;
    box-sizing: border-box;
}

.sampleMailPreview,
.sampleMailPreview table,
.sampleMailPreview td {
    font-family: 'メイリオ', 'Hiragino Kaku Gothic Pro', Meiryo, sans-serif !important;
    color: #333333;
    line-height: 1.6;
}

.sampleMailPreview center {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

.sampleMailPreview table {
    max-width: 100% !important;
}

.sampleMailPreview img {
    max-width: 100% !important;
    height: auto !important;
}

.sampleMailPreview a {
    color: #007bff;
    text-decoration: underline;
}

.sampleMailPreview a.button {
    box-sizing: border-box !important;
    max-width: 100% !important;
    white-space: normal !important;
}

@media only screen and (max-width: 729px) {
    .sampleMailPreview {
        border-radius: calc(10 / var(--screen-w) * 100vw);
        padding: calc(12 / var(--screen-w) * 100vw) 0;
        overflow: hidden;
    }

    .sampleMailPreview table,
    .sampleMailPreview tbody,
    .sampleMailPreview tr,
    .sampleMailPreview td {
        box-sizing: border-box !important;
    }

    .sampleMailPreview table {
        width: 100% !important;
        max-width: 100% !important;
    }

    .sampleMailPreview td {
        width: auto !important;
        max-width: 100% !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }

    .sampleMailPreview > center > table > tbody > tr > td:first-child,
    .sampleMailPreview > center > table > tbody > tr > td:last-child {
        display: none !important;
    }

    .sampleMailPreview > center > table > tbody > tr > td {
        display: block !important;
        width: 100% !important;
        padding: 0 calc(10 / var(--screen-w) * 100vw) !important;
    }

    .sampleMailPreview p,
    .sampleMailPreview td {
        font-size: 13px !important;
    }

    .sampleMailPreview a.button {
        display: inline-block !important;
        width: auto !important;
        min-width: 150px !important;
        height: auto !important;
        padding: 9px 14px !important;
    }
}

/* samplemail final fix: HTMLメールのtable/iframe再現をやめ、レスポンシブ本文として表示 */
.pageSampleMailInner { max-width: 1000px; }
.sampleMailPanel[hidden] { display: none !important; }
.sampleMailPreview {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    background: #f9f9f9 !important;
    border: 1px solid #d8e0e6 !important;
    border-radius: 16px !important;
    padding: 18px !important;
    box-sizing: border-box !important;
    text-align: left !important;
}
.mailPreviewBody {
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    font-family: 'メイリオ', 'Hiragino Kaku Gothic Pro', Meiryo, sans-serif !important;
    color: #333 !important;
    line-height: 1.65 !important;
    font-size: 15px !important;
}
.mailPreviewLead {
    background: #fff !important;
    padding: 18px !important;
    border: 1px solid #e5e5e5 !important;
    margin-bottom: 16px !important;
}
.mailPreviewLead p { margin: 0 0 14px !important; }
.mailPreviewLead p:last-child { margin-bottom: 0 !important; }
.mailNote { color: #e03e2d !important; }
.mailGrantCard {
    margin: 0 0 18px !important;
    border: 2px solid #bfedd2 !important;
    background: #ecf0f1 !important;
}
.mailGrantCard--premium { border-color: #c2e0f4 !important; }
.mailGrantCard h3 {
    margin: 0 !important;
    padding: 10px 14px !important;
    text-align: center !important;
    background: #bfedd2 !important;
    color: #333 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.55 !important;
}
.mailGrantCard--premium h3 { background: #c2e0f4 !important; }
.mailGrantCard h3 span {
    display: block !important;
    font-weight: 500 !important;
}
.mailGrantContent { padding: 16px !important; }
.mailGrantContent p { margin: 0 0 16px !important; }
.mailGrantContent p:last-child { margin-bottom: 0 !important; }
.mailButton {
    display: inline-block !important;
    width: 180px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 8px !important;
    padding: 10px 12px !important;
    border: 2px solid #fff !important;
    border-radius: 20px !important;
    color: #000 !important;
    background: #bfedd2 !important;
    text-align: center !important;
    text-decoration: none !important;
    box-shadow: 0 2px 2px rgba(0,0,0,.12) !important;
}
.mailPreviewBody--premium .mailButton { background: #c2e0f4 !important; }
.mailFooter {
    background: #000 !important;
    color: #fff !important;
    padding: 16px 18px !important;
    font-size: 14px !important;
}
@media only screen and (max-width: 729px) {
    .sampleMailBlock { padding: 20px 16px !important; }
    .sampleMailPreview { padding: 10px !important; border-radius: 10px !important; }
    .mailPreviewBody { max-width: none !important; font-size: 13px !important; line-height: 1.7 !important; }
    .mailPreviewLead { padding: 14px !important; }
    .mailGrantCard { margin-bottom: 14px !important; }
    .mailGrantCard h3 { font-size: 14px !important; padding: 9px 10px !important; }
    .mailGrantContent { padding: 13px !important; }
    .mailGrantContent p { margin-bottom: 14px !important; }
    .mailButton { width: auto !important; min-width: 150px !important; padding: 9px 14px !important; }
    .mailFooter { padding: 14px !important; font-size: 12px !important; overflow-wrap: anywhere !important; }
}
