@charset "UTF-8";

body {
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: .1em;
    color: #000;
}

.hp-color-red {
    color: #D4145A;
}

.hp-color-green {
    color: #006467;
}

.br_sp {
    display: none;
}

@media (max-width:743px) {
    .br_sp {
        display: block;
    }
}

/* 共通 */
/* ============================ */
.lv2-heading {
    font-size: calc(56px * .7);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.lv2-heading.lv2-heading--lg {
    font-size: calc(67.45px * .7);
}

.lv2-heading__sub {
    font-weight: 500;
    font-size: .65em;
    display: block;
    margin-top: 24px;
    line-height: 1;
}

.ly-inner {
    max-width: calc(1720px * .7);
    width: 100%;
    margin: 0 auto;
    padding: 120px 0;
}

.ly-inner.ly-inner--sm {
    max-width: 900px;
    padding-top: 60px;
    padding-bottom: 100px;
}

@media (max-width:1279px) {
    .ly-inner {
        padding: 80px 50px;
    }
}

@media (max-width:959px) {
    .ly-inner.ly-inner--sm {
        padding-top: 40px;
        padding-bottom: 70px;
    }
}

@media (max-width:743px) {
    .ly-inner {
        padding: 50px 20px;
    }

    .ly-inner.ly-inner--sm {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .lv2-heading {
        font-size: calc(56px * .5);
        margin-bottom: 30px;
    }

    .lv2-heading__sub {
        margin-top: 12px;
    }

    .lv2-heading.lv2-heading--lg {
        font-size: calc(67.45px * .35);
    }
}

/* header */
/* ============================ */
.header {
    height: 100px;
}

.header__inner {
    position: fixed;
    left: 0;
    top: 0;
    height: 100px;
    width: 100%;
    background: linear-gradient(90deg, rgba(98, 178, 158, 1) 0%, rgba(0, 152, 139, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px 0 54px;
    z-index: 9999;
}

.header__logo {
    width: calc(551px * .7);
}

.header__logo a {
    display: inline-block;
}

.header__logo img {
    max-width: 100%;
    height: auto;
}

/* Nav */
.header__nav-wrap {
    display: flex;
    align-items: center;
}

.header__nav-list {
    display: flex;
}

.header__nav-item {
    color: #fff;
    font-size: calc(26px * .7);
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

.header__nav-item a {
    display: inline-block;
    padding: 5px;
}

.header__txt-en {
    display: block;
    font-size: .65em;
    font-weight: 400;
    margin-top: calc(19px * .7);
}

.header__nav-item+.header__nav-item {
    margin-left: 45px;
}

/* ボタン */
.header__btn-wrap {
    margin-left: 73px;
}

.header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 73.5px;
    font-size: calc(26px * .7);
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1;
    border: 3px solid #fff;
    border-radius: 90px;
    max-width: 316px;
    width: 100%;
    padding: 0 43px;
}

.header__btn-txt-en {
    display: block;
    font-size: .65em;
    font-weight: 400;
    margin-top: 9.4px;
}

.header__btn::before {
    content: "";
    display: block;
    width: calc(43px * .7);
    height: calc(34px * .7);
    background: url(../img/header/mail-icon.svg) no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 15px;
}

.header__nav-btn {
    display: none;
}

@keyframes openAnim {
    0% {
        height: 0px;
    }

    99% {
        height: var(--nav-height);
    }

    100% {
        height: auto;
    }
}

@keyframes closeAnim {
    0% {
        height: var(--nav-height);
    }

    100% {
        height: 0px;
    }
}

@media (hover:hover) {

    .header__logo,
    .header__nav-item a,
    .header__btn {
        transition: .15s ease;
    }

    .header__logo:hover,
    .header__nav-item a:hover,
    .header__btn:hover {
        opacity: .6;
    }
}

@media (max-width:1390px) {
    .header__logo {
        width: calc(551px * .5);
    }

    .header__nav-item {
        font-size: calc(26px * .5);
    }

    .header__btn {
        font-size: calc(26px * .5);
    }
}

@media (max-width:1279px) {
    .header__inner {
        padding: 0 20px 0 34px;
    }

    .header__btn-wrap {
        margin-left: calc(73px * .5);
    }

    .header__btn {
        padding: 0 calc(43px * .5);
    }

    .header__nav-item+.header__nav-item {
        margin-left: calc(45px * .5);
    }
}

@media (max-width:1024px) {

    .header,
    .header__inner {
        height: 80px;
    }

    .header__inner {
        padding-right: 10px;
    }

    .header__nav-wrap {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(90deg, rgba(98, 178, 158, 1) 0%, rgba(0, 152, 139, 1) 100%);
        height: 0;
        overflow: hidden;
        z-index: 9999;
    }

    .header__nav-wrap.is-open {
        animation: openAnim 0.45s forwards;
    }

    .header__nav-wrap.is-close {
        animation: closeAnim 0.45s forwards;
    }

    .header__nav {
        padding: 12px 34px 34px;
    }

    .header__nav-list,
    .header__nav-wrap {
        display: block;
    }

    .header__nav-item {
        font-size: calc(26px * .8);
        text-align: left;
    }

    .header__nav-item+.header__nav-item {
        margin: 20px 0 0 0;
    }

    .header__nav-item a {
        padding: 5px;
    }

    .header__txt-en {
        margin: 0 0 0 15px;
        display: inline-block;
    }

    .header__btn-wrap {
        display: none;
        margin: 20px 0 0 0;
    }

    .header__btn {
        margin: 0 auto;
    }

    /* メニューボタン */
    .header__nav-btn {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        outline: none;
    }

    .header__nav-btn-inner {
        width: 18px;
        height: 11px;
        position: relative;
        display: block;
    }

    .header__nav-btn-bar {
        background: #fff;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        margin: auto;
        width: 100%;
        height: 1px;
        opacity: 1;
        transition: all 250ms ease-out;
    }

    .header__nav-btn-bar:nth-child(2) {
        top: 5px;
    }

    .header__nav-btn-bar:nth-child(3) {
        bottom: 0;
        top: auto;
    }

    /* オープン */
    .header__nav-btn.is-open .header__nav-btn-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header__nav-btn.is-open .header__nav-btn-bar:nth-child(2) {
        transform: rotate(0deg) scale(0.2, 0.2);
        opacity: 0;
    }

    .header__nav-btn.is-open .header__nav-btn-bar:nth-child(3) {
        transform: translateY(-4px) rotate(-45deg);
    }
}

@media (max-width:599px) {

    .header,
    .header__inner {
        height: 60px;
    }

    .header__inner {
        padding-left: 17px;
        padding-right: 0;
    }

    .header__logo {
        width: calc(551px * .3);
    }

    .header__nav-wrap {
        top: 59px;
    }

    .header__nav {
        padding: 6px 17px 17px;
    }

    .header__nav-item {
        font-size: calc(26px * .55);
    }

    .header__txt-en {
        font-size: 12px;
    }
}

/* Mv */
/* ============================ */
.mv {
    background: url(../img/fv/mv.jpg) no-repeat;
    background-position: center right;
    background-size: contain;
    position: relative;
}

.mv__inner {
    padding: 0 60px;
}

.mv__cont {
    position: relative;
    z-index: 8;
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 700px;
}

.mv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.89) 10.54%, rgba(255, 255, 255, 0) 100%);
}

.mv__txt {
    position: relative;
    z-index: 8;
    max-width: 1100px;
    width: 100%;
}

.mv__btn {
    display: inline-block;
    max-width: 513px;
    width: 100%;
}

.mv__btn img {
    max-width: 100%;
}

.mv__txt img {
    max-width: 100%;
    height: auto;
}

.banner-go-01 {
    position: relative;
    z-index: 8;
    max-width: 800px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 22px;
}

.banner-go-01 img {
    max-width: 100%;
}

.banner-go-02 {
    position: relative;
    z-index: 8;
    max-width: 800px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 40px;
}

.banner-go-02 img {
    max-width: 100%;
}


@media (hover:hover) {
    .mv__btn {
        transition: .15s ease;
    }

    .mv__btn:hover {
        opacity: .85;
    }
}

@media (max-width:1390px) {
    .mv {
        background-size: cover;
    }

    .mv__txt {
        width: 90%;
    }

    .mv__cont {
        min-height: 600px;
    }

    .banner-go-01 {
        max-width: 70%;  
        left: 0; 
        transform: translateX(0%);     
    }
}

@media (max-width:1279px) {
    .mv__btn-wrap {
        margin-top: 30px;
    }

    .mv__btn {
        max-width: 540px;
    }

    .mv__inner {
        padding: 0 30px;
    }
}

@media (max-width:1024px) {
    .mv__cont {
        min-height: auto;
        height: 700px;
    }

    .mv__inner {
        padding: 0 20px;
    }

    .banner-go-01 {
        max-width: 60%;  
    }
}

@media (max-width:959px) {
    .mv__btn {
        max-width: 420px;
    }

    .mv__cont {
        height: 560px;
    }
}

@media (max-width:743px) {
    .mv__cont {
        height: 115vw;
        max-height: 540px
    }
}

@media (max-width:480px) {
    .mv__cont {
        max-height: 450px;
    }

    .mv__txt {
        width: 100%;
		margin-bottom: 20px;
    }

    .mv__btn-wrap {
        margin-top: 15px;
        margin-bottom: 50px;
    }

    .mv__btn {
        max-width: calc(613px * .45);
    }
}

/* problem */
/* ============================ */
.problem {
    background: rgba(118, 176, 159, 0.15);
    position: relative;
}

.problem::after {
    content: "";
    display: block;
    background: url(../img/problem/triangle.png) no-repeat;
    background-position: center top;
    background-size: contain;
    width: 300px;
    height: 90px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
}

.problem__pic {
    max-width: calc(1603px * .7);
    width: 100%;
    margin: 0 auto;
}

.problem__pic img {
    max-width: 100%;
    height: auto;
}

@media (max-width:743px) {
    .problem::after {
        width: 120px;
    }
}

/* solve */
/* ============================ */
.solve .ly-inner {
    padding-top: 170px;
    padding-bottom: 0;
}

.solve__heading img,
.solve__catch img {
    max-width: 100%;
    height: auto;
}

.solve__heading {
    max-width: calc(1126px * .7);
    width: 100%;
    margin: 0 auto;
}

.solve__catch {
    max-width: calc(1081px * .7);
    width: 100%;
    margin: 79px auto 0;
}

@media (max-width:959px) {
    .solve__heading {
        max-width: calc(1126px * .5);
    }

    .solve__catch {
        margin: calc(79px * .5) auto 0;
        max-width: calc(1081px * .5);
    }
}

@media (max-width:743px) {
    .solve .ly-inner {
        padding-top: 80px;
    }
}

/* service */
/* ============================ */
.service__item {
    background: #F2F2F2;
    position: relative;
    padding: calc(100px * .7) 0 0 calc(108px * .7);
}

.service__item+.service__item {
    margin-top: 115px;
}

.service__item-cont {
    display: flex;
    justify-content: space-between;
}

.service__item-ttl {
    font-size: calc(63px * .7);
    font-weight: 700;
    margin-bottom: 39px;
}

.service__item-txt {
    font-size: calc(39px * .7);
    line-height: 1.67;
}

.service__item-num {
    max-width: calc(314px * .7);
    width: 100%;
    position: absolute;
    bottom: -36px;
    left: -41px
}

.service__item-num img {
    max-width: 100%;
    height: auto;
}

.service__item-right {
    flex-shrink: 0;
}

.service__item-pic {
    max-width: calc(658px * .7);
    width: 100%;
    margin-left: auto;
    transform: translate(41px, 52px);
}

.service__item-pic img {
    width: 100%;
}

@media (max-width:1279px) {
    .service__item {
        padding: calc(100px * .5) 0 0 calc(108px * .5);
    }

    .service__item-pic {
        max-width: calc(658px * .5);
        transform: translate(20px, 25px);
    }

    .service__item-num {
        max-width: calc(314px * .5);
    }

    .service__item-ttl {
        font-size: calc(63px * .5);
    }

    .service__item-txt {
        font-size: calc(39px * .5);
    }
}

@media (max-width:959px) {
    .service__item-ttl {
        font-size: calc(63px * .4);
    }

    .service__item-txt {
        font-size: calc(39px * .4);
    }

    .service__item-txt br {
        display: none;
    }
}

@media (max-width:743px) {
    .service__item+.service__item {
        margin-top: calc(115px * .5);
    }

    .service__item {
        padding: calc(100px * .3) calc(108px * .3) 0 calc(108px * .3);
    }

    .service__item-ttl {
        margin-bottom: calc(39px * .5);
        font-size: calc(63px * .3);
    }

    .service__item-txt {
        font-size: calc(39px * .35);
    }

    .service__item-cont {
        display: block;
    }

    .service__item-num {
        bottom: -18px;
        left: -15px;
        max-width: calc(314px * .3);
    }

    .service__item-pic {
        transform: translate(45px, 15px);
        max-width: 100%;
        width: 88%;
    }
}

/* example */
/* ============================ */
.example__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 1500px;
    width: 90%;
    margin: 0 auto;
    gap: 16px;
}

.example__item {
    text-align: center;
    background: linear-gradient(180deg, rgba(118, 176, 159, 1) 0%, rgba(0, 100, 103, 1) 100%);
    border-radius: 90px;
    border: solid rgba(0, 100, 103, 1) 5px;
    border-radius: 20px;
    transition: .3s;
}

.example__item a {
    padding: 14px 10px;
    display: block;
}

@media(hover: hover) {
    .example__item:hover {
        opacity: .6;
    }
}

.example__item-ttl {
    font-size: calc(43px * .7);
    font-weight: 700;
    letter-spacing: .075em;
    margin-top: calc(20px * .7);
    line-height: 1;
    color: #fff;
    font-size: 22px;
    margin-bottom: 14px;
}

.example__item-txt {
    color: #fff8c9;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 500;
}

.example__item-txt+.example__item-txt {
    margin-top: 6px;
}

.fa-arrow-down:before {
    color: #fff;
    font-size: 26px;
    display: block;
    margin-top: 14px;
}

.example__item-icon {
    max-width: calc(258px * .7);
    width: 38%;
    margin: 0 auto;
    display: block;
}

.example__item-icon img {
    max-width: 100%;
    height: auto;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

@media (min-width:1279px) {
    .example__item-ttl {
        font-size: 23px;
    }

    .example__item-txt {
        font-size: 16px;
        line-height: 1.3;
    }
}

/* こんな場面で活躍しています */
.example__lv3-heading {
    max-width: calc(807px * .7);
    width: 100%;
    margin: 180px auto 25px;
}

.example__lv3-heading img {
    max-width: 100%;
    height: auto;
}

.scene-item+.scene-item {
    margin-top: 140px;
}

.scene-item__in {
    display: grid;
    grid-template-columns: calc(548px * .7) 1fr;
    gap: calc(62px * .7);
    background: #F2F2F2;
    padding: calc(45px * .7) calc(57px * .7)
}

.scene-item__pic img {
    width: 100%;
}

.cene-item__ttl {
    margin-bottom: 54px;
}

.cene-item__ttl-box {
    display: inline-block;
    border: solid #231815 2.65px;
    font-size: calc(48px * .7);
    letter-spacing: .1em;
    font-weight: 700;
    background: #fff;
    padding: 10px 26px;
}

.cene-item__item-2col {
    display: flex;
}

.cene-item__item-icon {
    width: calc(155px * .7);
}

.cene-item__item-icon img {
    width: 100%;
}

.cene-item__item-txtarea {
    width: calc(100% - 155px);
    padding-left: calc(52px * .7);
}

.cene-item__item-ttl {
    font-size: calc(43px * .7);
    font-weight: 700;
    line-height: 1.32;
    margin-bottom: 25px;
}

.cene-item__item-txt {
    line-height: 1.83;
    letter-spacing: .075em;
    font-size: calc(25px * .7);
}

.cene-item__item+.cene-item__item {
    margin-top: 32px;
}

/* foot */
.scene-item__foot {
    background: #006467;
    color: #fff;
    margin-top: 42px;
    padding: calc(27px * .7) calc(30px * .7);
    display: flex;
    align-items: center;
}

.scene-item__foot-txt {
    font-size: calc(41px * .7);
    font-weight: 700;
    letter-spacing: .075em;
    display: flex;
    align-items: center;
}

.scene-item__foot-txt:not(:first-child):before {
    content: "";
    height: 82px;
    width: 4px;
    border-radius: 4px;
    display: block;
    background: #fff;
    margin: 0 calc(33px * .7) 0 calc(170px * .7);
}

.scene-item__foot-time {
    transform: translateY(-0.15em);
    margin-right: calc(39px * .7);
}

.scene-item__foot-time-em {
    font-size: 2em;
    font-weight: 500;
    line-height: 1;
    vertical-align: text-bottom;
    margin-right: calc(18px * .7);
}

.scene-item__foot-txt-box {
    display: inline-block;
    border: 3.42px solid #fff;
    padding: calc(11px * .7) calc(15px * .7);
    margin-right: calc(39px * .7);
}

@media (max-width:1279px) {
    .example__list {
        gap: 30px;
        grid-template-columns: 1fr 1fr 1fr;
        width: 84%;
    }

    .scene-item__in {
        gap: calc(62px * .5);
        grid-template-columns: calc(548px * .5) 1fr;
    }

    .example__item a {
        padding: 16px 18px;
    }

    .example__item-ttl {
        font-size: clamp(16px, 1.66vw, 28px);
        margin-top: calc(24px * .5);
    }

    .example__item-txt {
        font-size: 13px;
    }

    .cene-item__ttl-box {
        font-size: calc(48px * .5);
    }

    .cene-item__ttl {
        margin-bottom: calc(54px * .7);
    }

    .cene-item__item-ttl {
        font-size: calc(43px * .5);
    }

    .scene-item+.scene-item {
        margin-top: calc(140px * .5);
    }

    .scene-item__foot {
        display: block;
        padding: calc(27px * .5) calc(30px * .5);
        margin-top: calc(42px * .5);
    }

    .scene-item__foot-txt-box {
        padding: calc(11px * .5) calc(15px * .5);
    }

    .scene-item__foot-txt+.scene-item__foot-txt {
        margin-top: 0.5em;
    }

    .scene-item__foot-txt:not(:first-child):before {
        content: none;
    }

    .scene-item__foot-time {
        margin-right: calc(39px * .5);
    }

    .scene-item__foot-time-em {
        margin-right: calc(18px * .5);
        vertical-align: sub;
    }
}

@media (max-width:959px) {

    .example__list {
        width: 100%;
        gap: 18px;
    }

    .example__item {
        border: solid rgba(0, 100, 103, 1) 2px;
    }

    .example__item-ttl {
        font-size: 16px;
    }

    .scene-item__pic {
        margin-bottom: 25px;
        position: relative;
    }

    .scene-item__pic::before {
        content: "";
        display: block;
        padding-top: 56.25%;
    }

    .scene-item__pic img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .scene-item__in {
        display: block;
    }

    .scene-item__foot-txt {
        font-size: calc(41px * .5);
    }

    .example__item a {
        padding: 13px 11px 10px;
    }

    .fa-arrow-down:before {
        font-size: 16px;
        margin-top: 8px;
    }
}

@media (max-width:743px) {
    .example__list {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 600px;
    }

    .example__item-ttl {
        font-size: clamp(14px, 3.7vw, 16px);
        margin-top: calc(44px * .3);
        margin-bottom: 8px;
    }

    .example__item-txt {
        font-size: clamp(10px, 2.66vw, 13px);
    }

    .example__lv3-heading {
        margin: calc(180px * .3) auto calc(62px * .3);
        max-width: calc(807px * .35);
    }

    .scene-item+.scene-item {
        margin-top: calc(140px * .25);
    }

    .scene-item__in {
        padding: calc(45px * .3) calc(57px * .3);
    }

    .scene-item__foot {
        padding: calc(27px * .3) calc(30px * .3);
        margin-top: calc(42px * .3);
    }

    .scene-item__foot-txt {
        font-size: calc(41px * .35);
    }

    .scene-item__foot-txt-box {
        margin-right: calc(39px * .35);
        border: 2px solid #fff;
    }

    .scene-item__foot-time {
        margin-right: calc(39px * .3);
    }

    .cene-item__item-icon {
        width: calc(155px * .4);
    }

    .cene-item__item-txtarea {
        width: calc(100% - calc(155px * .4));
        padding-left: calc(52px * .3);
    }

    .cene-item__item-ttl {
        font-size: calc(43px * .35);
        margin-bottom: 12px;
    }

    .cene-item__item-txt {
        font-size: calc(25px * .5);
    }

    .cene-item__ttl {
        margin-bottom: calc(54px * .4);
    }

    .cene-item__ttl-box {
        padding: 5px 13px;
        font-size: calc(48px * .3);
    }

    .example__item-icon {
        max-width: 100px;
        width: 46%;
    }

    .example__item a {
        padding: 12px 10px 6px;
    }

    .example__item {
        border-radius: 8px;
    }
}

/* 導入事例 */
/* ============================ */
.case__cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 34px;
}

.case__card img {
    width: 100%;
}

@media (max-width:959px) {
    .case__cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width:743px) {
    .case__cards {
        gap: 17px;
    }
}

/* 料金 */
/* ============================ */
.price {
    background: rgba(118, 176, 159, 0.15);
}

.price .lv2-heading {
    font-size: calc(56px * .8);
}

.price .lv2-heading__sub {
    font-size: .55em;
}

.price__catch {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: calc(68px * .7);
    font-weight: 700;
    margin-bottom: 72px;
}

.price__catch::before,
.price__catch::after {
    content: "";
    display: inline-block;
    width: calc(32px * .7);
    height: calc(70px * .7);
}

.price__catch::after {
    background: url(../img/case/line-r.png) no-repeat;
    background-position: center;
    background-size: contain;
}

.price__catch::before {
    background: url(../img/case/line-l.png) no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: calc(20px * .7);
}

.price__catch-three {
    width: calc(74px * .7);
    margin: 0 5px;
}

.price__catch-three img {
    width: 100%;
    height: auto;
}

.price__balloon {
    max-width: calc(844px * .7);
    width: 100%;
    margin-bottom: 25px;
}

.price__balloon img {
    width: 100%;
}

.price__figure img {
    width: 100%;
}

@media (max-width:959px) {
    .price__catch {
        font-size: calc(68px * .4);
    }

    .price__balloon {
        max-width: calc(844px * .5);
    }

    .price__catch-three {
        width: calc(74px * .5);
    }

    .price__catch::before,
    .price__catch::after {
        width: calc(32px * .5);
        height: calc(70px * .5);
    }
}

@media (max-width:743px) {
    .price .lv2-heading {
        font-size: calc(56px * .6);
    }

    .price__catch {
        font-size: calc(68px * .2);
        margin-bottom: calc(72px * .3)
    }

    .price__catch-three {
        width: calc(74px * .2);
    }

    .price__catch::before,
    .price__catch::after {
        width: calc(32px * .2);
        height: calc(70px * .2);
    }

    .price__catch::before {
        margin-right: calc(20px * .2);
    }

    .price__balloon {
        margin-bottom: calc(25px * .3);
        max-width: calc(844px * .35);
    }
}

/* FAQ */
/* ============================ */
.faq-item {
    font-size: calc(37px * .7);
    line-height: 1.68;
    letter-spacing: .075em;
    font-weight: 700;
    border: 3px solid #006467;
    border-radius: 10px;
}

.faq-item {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.faq-item__head,
.faq-item__body {
    padding-left: 50px;
    padding-right: 207px;
}

.faq-item+.faq-item {
    margin-top: 39px;
}

.faq-item__head {
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    position: relative;
    cursor: pointer;
}

.faq-item__head::before {
    content: "";
    display: inline-block;
    background: url(../img/faq/icon-q.svg) no-repeat;
    background-position: center;
    background-size: contain;
    width: calc(50px * .7);
    height: calc(36px * .7);
    flex-shrink: 0;
    transform: translateY(0.4em);
    margin-right: 21px;
}

.faq-item__head::after {
    content: "";
    position: absolute;
    right: 47px;
    top: 50%;
    border-style: solid;
    border-width: 29px 19px 0px 19px;
    border-color: #006467 transparent transparent transparent;
    pointer-events: none;
    transition: .3s ease;
    transform: translateY(-50%);
}

.faq-item__head.is_active::after {
    transform: translateY(-50%) rotate(180deg);
    border-color: #D8BE56 transparent transparent transparent;
}

.faq-item__body {
    height: 0;
    overflow: hidden;
}

.faq-item__body-in {
    display: flex;
    padding-left: 4px;
    padding-bottom: 32px;
}

.faq-item__body-in::before {
    content: "";
    display: inline-block;
    width: calc(46px * .7);
    height: calc(34px * .7);
    background: url(../img/faq/icon-a.svg) no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
    transform: translateY(0.4em);
    margin-right: 21px;
}

@media (max-width:959px) {
    .faq-item {
        font-size: calc(37px * .5);
    }

    .faq-item+.faq-item {
        margin-top: calc(39px * .5);
    }

    .faq-item__head {
        padding-top: calc(32px * .5);
        padding-bottom: calc(32px * .5);
    }

    .faq-item__head::after {
        border-width: calc(29px * .6) calc(19px * .6) 0 calc(19px * .6);
    }

    .faq-item__head::before {
        width: calc(50px * .5);
        height: calc(36px * .5);
    }

    .faq-item__body-in::before {
        width: calc(46px * .5);
        height: calc(34px * .5);
    }

    .faq-item__body-in {
        padding-bottom: calc(32px * .5);
    }
}

@media (max-width:743px) {
    .faq-item {
        font-size: calc(37px * .4);
    }

    .faq-item+.faq-item {
        margin-top: calc(39px * .35);
    }

    .faq-item__head,
    .faq-item__body {
        padding-left: calc(50px * .3);
        padding-right: calc(207px * .25);
    }

    .faq-item__head::after {
        right: calc(47px * .4);
        border-width: calc(29px * .4) calc(19px * .4) 0 calc(19px * .4);
    }

    .faq-item__head {
        padding-top: calc(32px * .3);
        padding-bottom: calc(32px * .3);
    }

    .faq-item__body-in {
        padding-bottom: calc(32px * .3);
    }
}

/* Form */
/* ============================ */
.contact {
    background: #F2F2F2;
}

.contact .lv2-heading {
    margin-bottom: 120px;
}

.form__item textarea,
.form__item input[type="text"],
.form__item input[type="email"] {
    border: 3px solid #000;
    width: 100%;
    border-radius: 12px;
    background: #fff;
    padding: calc(18px * .7) calc(39px * .7);
    line-height: 1.4;
    outline: none;
}

.form__item textarea {
    height: 455px;
}

.form__item {
    display: flex;
    align-items: center;
}

.form__item+.form__item {
    margin-top: 57px;
}

.form__item {
    font-size: calc(42px * .6);
    font-weight: 500;
}

.form__item-head {
    width: calc(320px * .7);
    text-align: right;
}

.form__item-body {
    width: calc(100% - calc(320px * .7));
    padding-left: calc(57px * .7);
}

.form__comment {
    align-items: flex-start;
}

.form__comment .form__item-head {
    padding-top: 30px;
}

/* ラジオボタン */
.form__item-radio-group {
    margin: -10px 0 0 -10px;
}

.form__item-radio-label {
    display: inline-block;
    margin: 10px 0 0 10px;
}

.form__item-radio {
    display: none;
}

.form__item-radio-txt {
    position: relative;
    padding-left: 1.2em;
    cursor: pointer;
}

.form__item-radio-txt::before {
    content: "";
    position: absolute;
    border: 1px solid #000;
    width: 1em;
    height: 1em;
    border-radius: 90px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.form__item-radio:checked+.form__item-radio-txt::before {
    box-shadow: inset 0 0 0 6px #F2F2F2;
    background: #000;
}

/* プライバシーポリシー */
.form__privacy {
    font-size: calc(36px * .6);
    font-weight: 700;
    text-align: center;
    margin-top: calc(69px * .7);
}

.form__privacy br {
    display: none;
}

.form__privacy a {
    text-decoration: underline;
    text-underline-position: under;
}

/* ボタン */
.form__btn-wrap {
    margin-top: calc(117px * .7);
}

.form__btn {
    display: block;
    text-align: center;
    max-width: calc(513px * .7);
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(118, 176, 159, 1) 0%, rgba(0, 100, 103, 1) 100%);
    border-radius: 90px;
    border: solid rgba(0, 100, 103, 1) 5px;
    font-size: calc(43px * .7);
    font-weight: 700;
    color: #fff;
    height: calc(119px * .7);
}

/* 必須 */
.form__item-head.is-required::after {
    content: "*";
    color: #D8BE56;
}

/* プレースホルダー */
::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

/* 旧Edge対応 */
::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.45);
}

/* エラー */
.parsley-errors-list {
    color: #D4145A;
    margin: 0.5em 0;
}

@media (hover:hover) {
    .form__btn {
        transition: .15s ease;
    }

    .form__btn:hover {
        opacity: .85;
    }
}

@media (max-width:959px) {
    .contact .lv2-heading {
        margin-bottom: 80px;
    }

    .form__item {
        display: block;
        font-size: calc(42px * .5);
    }

    .form__item-head {
        text-align: left;
        width: 100%;
    }

    .form__comment .form__item-head {
        padding-top: 0;
    }

    .form__item-body {
        width: 100%;
        padding: 20px 0 0 0;
    }

    .form__privacy {
        line-height: 1.8;
        font-size: calc(36px * .5);
    }

    .form__privacy br {
        display: block;
    }

    .form__btn-wrap {
        margin-top: calc(117px * .5);
    }

    .form__btn {
        font-size: calc(43px * .5);
    }
}

@media (max-width:743px) {
    .contact .lv2-heading {
        margin-bottom: 50px;
    }

    .form__item textarea,
    .form__item input[type="text"],
    .form__item input[type="email"] {
        padding: calc(18px * .35) calc(39px * .35);
    }

    .form__item textarea {
        height: 200px;
    }

    .form__item {
        font-size: 16px;
    }

    .form__item+.form__item {
        margin-top: calc(57px * .4);
    }

    .form__item-body {
        padding-top: 10px;
    }

    .form__item-radio:checked+.form__item-radio-txt::before {
        box-shadow: inset 0 0 0 3px #F2F2F2;
    }

    .form__privacy {
        margin-top: calc(69px * .4);
        font-size: calc(36px * .35);
    }

    .form__btn-wrap {
        margin-top: calc(117px * .35);
    }

    .form__btn {
        font-size: calc(43px * .35);
        max-width: calc(513px * .4);
        height: calc(119px * .5);
    }
}

/* about-wiz */
/* =============================== */
.about-wiz__pic {
    max-width: calc(1603px * .7);
    width: 100%;
    margin: 0 auto;
}

.about-wiz__pic img {
    max-width: 100%;
    height: auto;
}

/* footer */
/* =============================== */
.footer {
    color: #fff;
    background: linear-gradient(90deg, rgba(98, 178, 158, 1) 0%, rgba(0, 152, 139, 1) 100%);
}

.footer__inner {
    max-width: calc(1407px * .7);
    width: 100%;
    margin: 0 auto;
    padding: calc(87px * .7) 0 20px;
}

.footer__catch {
    margin-bottom: 48px;
}

.footer__catch-txt img {
    max-width: 100%;
    height: auto;
}

.footer__col2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 59px;
}

.footer__col2-col2 {
    padding-top: 14px;
}

.footer__tel {
    pointer-events: none;
}

.footer__web img,
.footer__tel img,
.footer__mail img {
    width: 100%;
    height: auto;
}

.footer__web a,
.footer__tel a,
.footer__mail a {
    display: inline-block;
}

.footer__mail {
    margin-bottom: 34px;
}

/* footer-nav */
.footer__bottom {
    padding: 25px 50px;
}

.footer__nav {
    max-width: calc(1407px * .7);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer__nav-item {
    margin: 0 20px;
}

.footer__nav-item a {
    font-size: 14px;
    display: inline-block;
    padding: 5px;
    font-weight: 500;
}

@media (hover:hover) {

    .footer__nav-item a,
    .footer__mail a,
    .footer__web a {
        transition: .15s ease;
    }

    .footer__nav-item a:hover,
    .footer__mail a:hover,
    .footer__web a:hover {
        opacity: .6;
    }
}

@media (max-width:1279px) {
    .footer__inner {
        padding: calc(87px * .5) 20px 20px;
    }
}

@media (max-width:743px) {
    .footer:not(.no-floating) {
        margin-bottom: 70px;
    }

    .footer__col2 {
        gap: calc(59px * .5);
    }

    .footer__col2-col2 {
        padding-top: 7px;
    }

    .footer__tel {
        pointer-events: auto;
    }

    .footer__bottom {
        margin-top: 10px;
        padding: 20px;
    }

    .footer__nav {
        justify-content: flex-start;
        margin-top: -5px;
    }

    .footer__nav-item {
        margin: 5px 10px 0;
    }
}

@media (max-width:599px) {
    .footer__inner {
        padding: calc(87px * .3) 20px 15px;
    }

    .footer__catch {
        margin-bottom: calc(48px * .4);
    }

    .footer__col2 {
        grid-template-columns: 1fr;
        width: 90%;
        margin: 0 auto;
    }

    .footer__nav-item a {
        font-size: 12px;
    }
}

/* 確認ページ */
/* ========================== */
.page-confirm p {
    font-size: 18px;
    line-height: 2.2;
    margin: 0 0 1em 0;
    font-weight: 500;
}

.page-confirm p:last-child {
    margin-bottom: 0;
}

.page-confirm table {
    width: 100%;
    margin-bottom: 50px;
}

.page-confirm th {
    background: #efefef;
    width: 25%;
}

.page-confirm th,
.page-confirm td {
    border: 1px solid #ddd;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 500;
}

.page-confirm input[type="submit"],
.page-confirm input[type="button"] {
    display: block;
    text-align: center;
    max-width: calc(513px * .7);
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(118, 176, 159, 1) 0%, rgba(0, 100, 103, 1) 100%);
    border-radius: 90px;
    border: solid rgba(0, 100, 103, 1) 5px;
    font-size: calc(43px * .7);
    font-weight: 700;
    color: #fff;
    height: calc(119px * .7);
    margin-top: 20px;
}

@media (max-width:959px) {

    .page-confirm input[type="submit"],
    .page-confirm input[type="button"] {
        font-size: calc(43px * .5);
    }
}

@media (max-width:743px) {

    .page-confirm p,
    .page-confirm th,
    .page-confirm td {
        font-size: 14px;
    }

    .page-confirm table,
    .page-confirm tr,
    .page-confirm th,
    .page-confirm td,
    .page-confirm tbody {
        display: block;
        width: 100%;
    }

    .page-confirm th,
    .page-confirm td {
        margin-top: -1px;
    }

    .page-confirm input[type="submit"],
    .page-confirm input[type="button"] {
        font-size: calc(43px * .35);
        max-width: calc(513px * .4);
        height: calc(119px * .5);
    }

    .page-confirm table {
        margin-bottom: 25px;
    }

    .page-confirm input[type="submit"],
    .page-confirm input[type="button"] {
        margin-top: 12px;
    }
}

@media (hover:hover) {

    .page-confirm input[type="submit"],
    .page-confirm input[type="button"] {
        transition: .15s ease;
    }

    .page-confirm input[type="submit"]:hover,
    .page-confirm input[type="button"]:hover {
        opacity: .85;
    }
}

/* 各ページ */
/* ============================ */
.page-fv {
    position: relative;
}

.page-fv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.89) 10.54%, rgba(255, 255, 255, 0) 100%);
}

.page-fv--terms {
    background: url(../img/page/fv-terms.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.page-fv--contact {
    background: url(../img/page/fv-contact.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.page-fv__inner {
    padding: 160px 50px;
}

.page-fv__ttl {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 8;
}

@media (max-width:959px) {
    .page-fv__inner {
        padding: 100px 50px;
    }
}

@media (max-width:743px) {
    .page-fv__inner {
        padding: 60px 20px
    }

    .page-fv__ttl {
        font-size: 30px;
    }
}

/* コンテンツ部分 */
/* ============================ */
.post-cont {
    letter-spacing: .05em;
}

.post-cont :not(h2):not(h3):not(h4):not(h5):not(h6)+h2,
.post-cont :not(h2):not(h3):not(h4):not(h5):not(h6)+h3,
.post-cont :not(h2):not(h3):not(h4):not(h5):not(h6)+h4,
.post-cont :not(h2):not(h3):not(h4):not(h5):not(h6)+h5,
.post-cont :not(h2):not(h3):not(h4):not(h5):not(h6)+h6 {
    margin-top: 40px !important;
}

.post-cont h2,
.post-cont h3,
.post-cont h4,
.post-cont h5,
.post-cont h6 {
    font-weight: 700;
    margin: 0 0 1em 0;
    line-height: 1.5;
}

.post-cont h2 {
    font-size: 24px;
    color: rgba(0, 152, 139, 1);
    border-bottom: 2px solid rgba(0, 152, 139, 1);
    padding-bottom: 15px;
}

.post-cont h3 {
    font-size: 20px;
    color: rgba(0, 152, 139, 1);
}

.post-cont p {
    line-height: 2;
    margin: 0 0 1em 0;
    font-weight: 500;
}

.post-cont p:last-child {
    margin-bottom: 0;
}

.post-cont ul {
    margin-bottom: 20px;
    margin-left: 1em;
}

.post-cont li {
    line-height: 2.2;
    font-weight: 500;
}

/* テーブル */
.post-cont table {
    width: 100%;
}

.post-cont th,
.post-cont td {
    border: 1px solid #ddd;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 500;
}

.post-cont th {
    background: #efefef;
    width: 25%;
}

.post-cont a {
    text-decoration: underline;
    color: rgba(0, 152, 139, 1);
    ;
}

@media (max-width:743px) {

    .post-cont :not(h2):not(h3):not(h4):not(h5):not(h6)+h2,
    .post-cont :not(h2):not(h3):not(h4):not(h5):not(h6)+h3,
    .post-cont :not(h2):not(h3):not(h4):not(h5):not(h6)+h4,
    .post-cont :not(h2):not(h3):not(h4):not(h5):not(h6)+h5,
    .post-cont :not(h2):not(h3):not(h4):not(h5):not(h6)+h6 {
        margin-top: 30px !important;
    }

    .post-cont li,
    .post-cont p {
        font-size: 13px;
    }

    .post-cont h2 {
        font-size: 20px;
    }

    .post-cont h3 {
        font-size: 16px;
    }

    .post-cont table,
    .post-cont tr,
    .post-cont th,
    .post-cont td,
    .post-cont tbody {
        display: block;
        width: 100%;
    }

    .post-cont th,
    .post-cont td {
        padding: 15px;
        font-size: 13px;
        margin-top: -1px;
        line-height: 1.3;
    }
}

/* ぱんくず *
/* ================================*/
.bread-list-wrap {
    background: linear-gradient(90deg, rgba(98, 178, 158, 1) 0%, rgba(0, 152, 139, 1) 100%);
    color: #fff;
}

.bread-list {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 50px;
    white-space: nowrap;
    overflow-x: scroll;
    scrollbar-width: none;
    font-weight: 500;
}

/* 水平スクロールバー非表示 */
.bread-list::-webkit-scrollbar {
    display: none;
}

/* 垂直スクロールバー非表示 */
.bread-list::-webkit-scrollbar-vertical {
    display: none;
}

/* 水平スクロールバー非表示 */
.bread-list::-webkit-scrollbar-horizontal {
    display: none;
}

.bread-list li::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin: 0 15px;
}

.bread-list li:last-child::after {
    content: none;
}

@media (max-width:1279px) {
    .bread-list {
        padding: 0 50px;
    }
}

@media (max-width:743px) {
    .bread-list {
        padding: 0 20px;
        font-size: 12px;
        height: 40px;
    }

    .bread-list li::after {
        margin: 0px 10px;
    }
}

/* footer middle */
/* ============================ */
.footer__middle {
    background: #fff;
    color: #000;
}

.footer__middle-inner {
    max-width: calc(1407px * .8);
    width: 100%;
    margin: 0 auto;
    padding: 15px 20px;
}

.footer__mark-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.footer__mark-item {
    display: flex;
    align-items: center;
}

.footer__mark-item-txt {
    font-size: 11px;
}


.footer__mark-item-icon {
    width: 70px;
}

.footer__mark-item-icon img {
    width: 100%;
}

.footer__mark-item-cont {
    width: calc(100% - 70px);
    padding-left: 8px;
}

@media (max-width:743px) {
    .footer__middle-inner {
        padding: 25px 20px;
    }

    .footer__mark-list {
        display: block;
    }

    .footer__mark-item+.footer__mark-item {
        margin-top: 5px;
    }

    .footer__mark-item-icon {
        width: 50px;
    }

    .footer__mark-item-cont {
        width: calc(100% - 50px);
    }
}

/* FV under */
.mv__btn-u {
    display: inline-block;
    max-width: 300px;
    width: 100%;
    position: absolute;
    right: 20px;
    bottom: 22px;
    z-index: 16;
}

.mv__btn-u a {
    display: block;
}

.mv__btn-u img {
    width: 100%;
    height: auto;
}

@media (hover:hover) {
    .mv__btn-u {
        transition: .15s ease;
    }

    .mv__btn-u:hover {
        opacity: .85;
    }
}

@media (max-width:1279px) {
    .mv__btn-u {
        max-width: 300px;
    }
}

@media (max-width:959px) {
    .mv__btn-u {
        max-width: 240px;
    }
}

@media (max-width:743px) {
    .mv__btn-u-wrap {
        text-align: right;
    }

    .mv__btn-u {
        max-width: 30vw;
        min-width: 160px;
    }
}


/* 追従sp */
.sp-floating {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.sp-floating-list {
    display: flex;
    flex-wrap: wrap;
}

.sp-floating-item {
    display: none;
    width: 50%;
    font-size: 13px;
}

.sp-floating-item:nth-child(1) {
    border-right: 1px solid #fff;
}

.sp-floating-item a {
    text-align: center;
    color: #fff;
    background: rgba(0, 152, 139, 1);
    padding: 0 8px;
    letter-spacing: .05em;
    font-weight: 700;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sp-floating-item.sp-floating-item--tel {
    font-family: "Arial", sans-serif;
    font-size: 16px;
}

.sp-floating-item i {
    font-size: 1.2em;
    margin-right: 0.2em;
}

.sp-floating-item__tel-note {
    width: 100%;
    font-size: 10px;
    display: block;
    margin-top: 4px;
}

@media (max-width:743px) {
    .sp-floating-item {
        display: block;
    }
}

.clearfix {
    clear: both;
}

.example .ly-inner {
    padding: 120px 0 0;
}

.case .ly-inner {
    padding: 0 0 120px;
}

ul.case_list li {
    border: 4px solid #006467;
    padding: 0;
    margin: 0 auto 50px;
}

ul.case_list li:last-child {
    margin: 0 auto;
}

ul.case_list li h3 {
    text-align: center;
    background: #006467;
    font-size: 44px;
    color: #fff;
    font-weight: 700;
    padding: 15px 0 17px;
}

ul.case_list li h3 span {
    display: inline-block;
    background: #fff;
    color: #006467;
    font-size: 34px;
    margin: 0 0 0 15px;
    padding: 5px 15px;
    vertical-align: bottom;
}

ul.case_list li .double_column {
    padding: 50px;
}

ul.case_list li .double_column .fl_left {
    float: left;
    width: 450px;
}


ul.case_list li .double_column .fl_right {
    float: right;
    width: calc(100% - 500px);
}

ul.case_list li .double_column .fl_left .thumb {
    width: 100%;
}

ul.case_list li .double_column .fl_left .logo {
    margin: 15px auto;
}

ul.case_list li .double_column .fl_left p {
    background: #ebf3f1;
    padding: 10px 25px;
    line-height: 1.7;
    font-size: 22px;
    font-weight: 500;
}

ul.case_list li .double_column .fl_left p a {
    color: #1558d6;
}

ul.case_list li .double_column .fl_right .sub_title_01 {
    font-size: 30px;
    font-weight: 700;
    color: #d50600;
    margin: 0 auto 10px;
}

ul.case_list li .double_column .fl_right .sub_title_02 {
    font-size: 30px;
    font-weight: 700;
    color: #0048ff;
    margin: 15px auto 10px;
}

ul.case_list li .double_column .fl_right .sub_title_03 {
    font-size: 30px;
    font-weight: 700;
    color: #006467;
    margin: 15px auto 10px;
}

ul.case_list li .double_column .fl_right .sub_title_04 {
    font-size: 30px;
    font-weight: 700;
    color: #006467;
    margin: 15px auto 10px;
}

ul.case_list li .double_column .fl_right .indent_01 {
    position: relative;
    font-size: 22px;
    margin: 10px auto;
    padding: 0 0 0 25px;
    line-height: 1.5;
}

ul.case_list li .double_column .fl_right .indent_01::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #d50600;
    font-size: 16px;
    line-height: 33px;
}

ul.case_list li .double_column .fl_right .indent_02 {
    position: relative;
    font-size: 22px;
    margin: 10px auto;
    padding: 0 0 0 25px;
    line-height: 1.5;
}

ul.case_list li .double_column .fl_right .indent_02::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #0048ff;
    font-size: 16px;
    line-height: 33px;
}

ul.case_list li .double_column .fl_right .indent_03 {
    position: relative;
    font-size: 22px;
    margin: 10px auto;
    padding: 0 0 0 25px;
    line-height: 1.5;
}

ul.case_list li .double_column .fl_right .indent_03::before {
    content: "\f219";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #006467;
    font-size: 10px;
    line-height: 33px;
    padding: 0 0 0 5px;
}

ul.case_list li .double_column .fl_right .half_04 {
    width: 49%;
    display: inline-block;
    font-size: 22px;
    margin: 5px auto;
    font-weight: 700;
}

ul.case_list li .double_column .fl_right .half_04 span {
    display: inline-block;
    background: #006467;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    margin: 0 15px 0 0;
    font-weight: 400;
}

ul.case_list li .double_column .fl_right .full_04 {
    font-size: 22px;
    margin: 5px auto;
    font-weight: 700;
}

ul.case_list li .double_column .fl_right .full_04 span {
    display: inline-block;
    background: #006467;
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    margin: 0 15px 0 0;
    font-weight: 400;
}

ul.case_list li button {
    display: block;
    border: 3px solid #006467;
    max-width: 700px;
    width: 95%;
    text-align: center;
    cursor: pointer;
    color: #006467;
    font-size: 30px;
    padding: 10px 0;
    position: relative;
    border-radius: 50px;
    font-weight: 500;
    margin: 25px auto 0;
    transition: .3s;
}

ul.case_list li button::before {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 50px;
    color: #006467;
}

ul.case_list li button:hover {
    opacity: .7;
}

ul.case_list li button.active::before {
    content: "\f0d8";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 50px;
    color: #006467;
}

ul.case_list li .toggle_contents {
    background: #ebf3f1;
    padding: 25px 50px;
    margin: 25px auto 0;
    display: none;
}

ul.case_list li .toggle_contents .sub_title_05 {
    font-size: 25px;
    font-weight: 500;
    color: #006467;
    position: relative;
    padding: 0 0 0 30px;
    margin: 0 0 10px;
}

ul.case_list li .toggle_contents .sub_title_05::before {
    content: "";
    background: #006467;
    height: 3px;
    width: 20px;
    position: absolute;
    left: 0;
    top: 15px;
}

ul.case_list li .toggle_contents .text {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 auto 25px;
}

ul.case_list li .toggle_contents .text.mt_25 {
    font-size: 18px;
    line-height: 1.7;
    margin: 25px auto;
}

p.faq-item__txt a {
    color: #1558d6;
}

@media (max-width:1200px) {

    ul.case_list {
        width: 95%;
        margin: 0 auto;
    }

    ul.case_list li .double_column {
        padding: 50px 25px;
    }

    ul.case_list li .double_column .fl_right .half_04 {
        width: auto;
        margin: 5px 10px 5px 0;
    }

}

@media (max-width:1000px) {

    ul.case_list li .double_column .fl_left {
        float: none;
        width: 100%;
    }

    ul.case_list li .double_column .fl_left .thumb {
        max-width: 450px;
        display: block;
        margin: 0 auto;
    }

    ul.case_list li .double_column .fl_right {
        float: none;
        width: 100%;
        margin: 25px auto 0;
    }

}

@media (max-width:743px) {

    ul.case_list li h3 {
        font-size: 25px;
    }

    ul.case_list li h3 span {
        font-size: 15px;
    }

    ul.case_list li .double_column .fl_left p {
        font-size: 16px;
        padding: 10px 15px;
    }

    ul.case_list li .double_column .fl_right .sub_title_01,
    ul.case_list li .double_column .fl_right .sub_title_02,
    ul.case_list li .double_column .fl_right .sub_title_03,
    ul.case_list li .double_column .fl_right .sub_title_04 {
        font-size: 22px;
    }

    ul.case_list li .double_column .fl_right .indent_01,
    ul.case_list li .double_column .fl_right .indent_02,
    ul.case_list li .double_column .fl_right .indent_03 {
        font-size: 16px;
    }

    ul.case_list li .double_column .fl_right .indent_01::before,
    ul.case_list li .double_column .fl_right .indent_02::before,
    ul.case_list li .double_column .fl_right .indent_03::before {
        line-height: 27px;
    }

    ul.case_list li .double_column .fl_right .half_04 {
        font-size: 16px;
        display: block;
        margin: 10px auto;
    }

    ul.case_list li .double_column .fl_right .half_04 span {
        margin: 0 10px 0 0;
        font-size: 14px;
    }

    ul.case_list li .double_column .fl_right .full_04 {
        font-size: 16px;
        display: block;
        margin: 10px auto;
    }

    ul.case_list li .double_column .fl_right .full_04 span {
        margin: 0 10px 0 0;
        font-size: 14px;
    }

    ul.case_list li button {
        font-size: 18px;
    }

    ul.case_list li button::before,
    ul.case_list li button.active::before {
        right: 3%;
    }

    ul.case_list li .toggle_contents {
        padding: 25px;
    }

    ul.case_list li .toggle_contents .sub_title_05 {
        font-size: 18px;
        line-height: 1.5;
    }

    ul.case_list li .toggle_contents .sub_title_05::before {
        top: 13px;
    }

    ul.case_list li .toggle_contents .text {
        font-size: 14px;
        margin: 0 auto 15px;
    }

    ul.case_list li .toggle_contents .text.mt_25 {
        margin: 15px auto;
        font-size: 14px;
    }

}

@media (max-width:500px) {

    ul.case_list li {
        border: 2px solid #006467;
    }

    ul.case_list li .double_column {
        padding: 15px;
    }

    ul.case_list li h3 span {
        display: block;
        margin: 10px auto 0;
        max-width: 150px;
    }

    ul.case_list li .toggle_contents {
        padding: 10px;
    }

    ul.case_list li .double_column .fl_right p br {
        display: none;
    }

}


/** 2405 追加**/
.form__input-select-wrap {
    position: relative;
    display: inline-block;
}

.form__input-select-wrap select {
    vertical-align: middle;
    border: 3px solid #000;
    width: inherit;
    border-radius: 12px;
    background: #fff;
    padding: calc(18px* .7) calc(80px* .7) calc(18px* .7) calc(39px* .7);
    line-height: 1.4;
    outline: none;
}

.form__input-select-wrap:after {
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: var(--sub-color);
    width: 0;
    z-index: 0;
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
}

@media (max-width: 743px) {
    .__type-wrap {
        width: 200px;
    }
    .__select-wrap{
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    .form__input-select-wrap:after  {
        right: 40px;
    }
    .form__input-select-wrap select {
        padding: calc(18px* .35) calc(39px* .35);
    }
}