@charset "utf-8";

:root {
    --base-color: #3B3B3B;
    --main-color: #2D69B2;
    --sub-color: #01A4D8;
    --accent-color: #EF8F36;
    --base-size: 8px;
    --header-height: 70px;
}

@media (max-width: 767px) {
    :root {
        --base-size: 7px;
        --header-height: 60px;
    }
}

:target {
    scroll-margin-block: var(--header-height);
}


/*============================
common
============================*/
html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, .3);
    height: 100%;
    /* スムーススクロール */
    scroll-behavior: smooth;
    /* scroll-padding-top: 70px; */
}

body {
    height: 100%;
    background-attachment: fixed;
    background-color: #fff;
    -webkit-font-smoothing: unset;
    font-size: calc(var(--base-size) * 2);
    line-height: 1.5;
    background-position: 50% 0;
    background-repeat: no-repeat;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: var(--base-color);
}

@media screen and (max-width: 767px) {
    .noScroll {
        overflow: hidden;
        -ms-touch-action: none;
        touch-action: none;
        -ms-scroll-chaining: none;
        overscroll-behavior: none;
    }
}

a {
    color: var(--sub-color);
    text-decoration: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

a:hover {
    opacity: 0.5;
}

a, a:hover, a:focus, a:active, a.active {
    outline: 0
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.5;
}

p {
    font-weight: normal;
}

img {
    vertical-align: middle
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
    display: unset
}

dt {
    font-weight: 700
}

.fixed {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

/* 初期状態（PC向け） */
.vsbl_pc {
    display: inherit;
}

.vsbl_pc_tab,
.vsbl_sp,
.vsbl_sp_ss,
.vsbl_ss,
.visible-xs,
.vsbl_sp_tab {
    display: none;
}

/* タブレット以下 */
@media (max-width: 979px) {
    .vsbl_pc {
        display: none !important;
    }

    .vsbl_pc_tab,
    .vsbl_sp_tab {
        display: block !important;
    }
}

/* スマホ（～767px） */
@media (max-width: 767px) {

    .vsbl_pc,
    .vsbl_pc_tab {
        display: none !important;
    }

    .vsbl_sp,
    .vsbl_sp_ss,
    .vsbl_sp_tab {
        display: block !important;
    }

    .visible-xs {
        display: block !important;
    }

    .hidden-xs {
        display: none !important;
    }
}

/* 超小型（～560px） */
@media (max-width: 560px) {
    .vsbl_ss {
        display: block !important;
    }
}


/* 文字あしらい */
.font_bold {
    font-weight: bold;
}

.font_en {
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 1.2em;
    display: inline-block;
}

.font_blue {
    color: var(--main-color);
    display: inline-block;
}

.font_big {}

.font_small {}

.marker {
    background: -o-linear-gradient(transparent 75%, #FFCD71 75%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #FFCD71));
    background: linear-gradient(transparent 75%, #FFCD71 75%);
}

/* 見出し */
.sec_ttl {
    text-align: center;
    font-size: calc(var(--base-size) * 5);
    margin-bottom: calc(var(--base-size) * 5);
}

.sec_ttl .sec_subttl {
    color: var(--sub-color);
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    display: block;
    font-size: calc(var(--base-size) * 3);
}


@media (max-width: 979px) {
    .sec_ttl {
        font-size: calc(var(--base-size) * 4);
        margin-bottom: calc(var(--base-size) * 4);
    }

    .sec_ttl .sec_subttl {
        font-size: calc(var(--base-size) * 2.5);
    }
}


@media (max-width: 767px) {}

@media (max-width: 560px) {
    .sec_ttl {
        font-size: calc(var(--base-size) * 3);
        margin-bottom: calc(var(--base-size) * 3);
    }

    .sec_ttl .sec_subttl {
        font-size: calc(var(--base-size) * 2);
    }
}


/* 枠付きボックス */
.borderCont {
    background: #fff;
    border: 1px solid var(--main-color);
    border-radius: 10px;
    padding: calc(var(--base-size) * 2);
    position: relative;
}

.borderCont .borderCont_ttl {
    text-align: center;
    position: absolute;
    top: -1em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    padding: 0 calc(var(--base-size) * 2);
    background: #fff;
    font-size: calc(var(--base-size) * 2);
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

@media (max-width: 560px) {
    .borderCont {
        padding: calc(var(--base-size) * 1.5);
    }
}


/* ボタン */
.btnCont {
    z-index: 5;
    position: relative;
}

.btn {
    background-color: var(--accent-color);
    color: #fff !important;
    font-size: calc(var(--base-size) * 3);
    font-weight: bold;
    padding: calc(var(--base-size) * 3) calc(var(--base-size) * 5);
    border-radius: 5px;
    display: block;
    text-align: center;
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    position: relative;
    top: 0px;
    margin: auto;
}

.btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #C56409;
    top: 5px;
    left: 0;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.btn::after {
    content: "";
}

.btn:hover {
    top: 5px;
    opacity: 1;
}

.btn:hover::before {
    top: 0px;
}

.btn svg {
    width: calc(var(--base-size) * 2.2);
    fill: #fff;
    margin-left: calc(var(--base-size) * 2);
}

.cta_bg {
    position: relative;
}

.cta_bg::before {
    content: "";
    mix-blend-mode: screen;
    background-image: url("img/ctabg_l.png"), url("img/ctabg_r.png");
    background-size: calc(var(--base-size) * 50);
    background-repeat: no-repeat;
    background-position: top left, bottom right;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta_bg>* {
    z-index: 1;
    position: relative;
}

@media (max-width: 979px) {
    .btn {
        font-size: calc(var(--base-size) * 2.5);
        padding: calc(var(--base-size) * 2) calc(var(--base-size) * 4);
    }

    .btn svg {
        width: calc(var(--base-size) * 2);
        margin-left: calc(var(--base-size) * 1.8);
    }
}

@media (max-width: 560px) {
    .btn {
        font-size: calc(var(--base-size) * 2);
    }

    .btn svg {
        width: calc(var(--base-size) * 1.8);
        margin-left: calc(var(--base-size) * 1.5);
    }
}

/* 横並び */
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: calc(var(--base-size) * 10) 20px;
    margin: auto;
}

@media (max-width: 979px) {
    .container {
        padding: calc(var(--base-size) * 8) 20px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: calc(var(--base-size) * 7) 15px;
    }
}

@media (max-width: 560px) {
    .container {
        padding: calc(var(--base-size) * 5) 10px;
    }
}


/*============================
header
============================*/
#header {
    padding: 0;
    color: #000;
    position: fixed;
    z-index: 900;
    width: 100%;
    height: var(--header-height);
}

#header h1 {
    margin: 0
}

#header .for-sp {
    display: none
}

.navbar-default {
    background-color: rgb(255 255 255 / 20%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.navbar-default .navbar-brand {}

.navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand {
    margin-left: 0
}

.navbar-default .navbar-collapse {
    border-color: rgba(255, 255, 255, .02)
}

.navbar-default .navbar-toggle {
    margin: 5px;
    padding: 0;
    border: 0
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: rgba(0, 0, 0, 0)
}

.navbar-default .nav li a {
    color: var(--base-color);
    font-weight: bold;
    text-shadow: 0px 0px 10px #FFFFFF;
}

.navbar-default .nav li a:hover {
    color: var(--main-color);
    opacity: 1;
}

input, button, select, textarea {
    padding: 0 0 8px 0
}

#header .contact {
    border: 1px solid rgba(0, 0, 0, 0);
    color: #000;
    font-size: calc(var(--base-size) * 1.75);
    text-decoration: none;
    text-transform: uppercase
}

#header .contact:hover, #header .contact:focus {
    border: 1px solid rgba(0, 0, 0, 0) !important;
    background-color: rgba(0, 0, 0, 0) !important;
    color: #000 !important;
    text-decoration: underline !important
}

#header .container {
    padding: 0 calc(var(--base-size) * 2);
    max-width: 1200px;
    width: 100%;
    height: var(--header-height);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#header .container .logo-inner {
    display: block;
    width: 144px;
    z-index: 999;
}

#header .container .logo-inner a {
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    display: block;
}

#header .container .logo-inner a:hover {
    opacity: .5;
}

#header .container .text-inner {
    width: calc(100% - 144px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: anchor-center;
    -ms-flex-align: anchor-center;
    align-items: anchor-center;
    gap: calc(var(--base-size) * 2);
}

#header .navbar-default .navbar-collapse {
    width: auto
}

#header .navbar-default .navbar-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    float: none !important;
    margin-right: 0;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: calc(var(--base-size) * 2);
}

#header .navbar-default .navbar-collapse .navbar-nav>li {
    white-space: nowrap
}

#header .navbar-default .btnCont {
    max-width: 144px;
    width: auto;
    margin-top: -3px;
}

#header .navbar-default .btnCont .btn {
    font-size: calc(var(--base-size) * 2);
    padding: calc(var(--base-size) * 1) calc(var(--base-size) * 3);
}


@media screen and (max-width: 767px) {
    .navbar-default {
        -webkit-backdrop-filter: unset;
        backdrop-filter: unset;
        background-color: unset;
    }

    #header .container {
        padding-right: 0;
    }

    #header .container .text-inner {
        padding-right: 60px;
    }

    #header .container .logo-inner .navbar-header {
        width: 50px;
        margin-right: 0;
        margin-left: 0
    }

    #header .container .logo-inner .navbar-header .navbar-brand {}

    #header .navbar-default .navbar-collapse {}

    #header .navbar-default .navbar-right {
        margin-right: 0;
        position: absolute;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100svw;
        height: 100svh;
        top: -100svh;
        left: 0;
        margin-top: 0;
        padding: 60px 20px 20px;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
        background: rgb(255 255 255 / 50%);
        overflow: hidden;
    }

    #header .navbar-default .navbar-right::before {
        content: "";
        position: fixed;
        width: 100svw;
        height: var(--header-height);
        top: 0;
        left: 0;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        z-index: -1;
    }

    #header .navbar-default .menu-btn:checked~.navbar-right {
        top: 0;
    }

    #header .navbar-default .menu-btn:checked~.navbar-right::before {
        height: 100svh;
        top: 0;
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
    }

    #header .navbar-default .navbar-collapse .navbar-nav>li {
        width: 100%;
        z-index: 5;
    }

    #header .navbar-default .navbar-collapse .navbar-nav>li.ctr {
        margin-bottom: calc(var(--base-size) * 3);
    }


    #header .navbar-default .navbar-collapse .navbar-nav>li a {
        display: block;
        text-align: center;
    }

    #header .navbar-default .navbar-collapse .navbar-nav>li .btn {
        text-shadow: unset;
        max-width: unset;
    }

    .menu-btn {
        display: none !important
    }

    #header .navbar-default .navbar-collapse .navbar-nav>li .sns_list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: calc(var(--base-size) * 3);
    }

    #header .navbar-default .navbar-collapse .navbar-nav>li .home_link svg {
        width: calc(var(--base-size) * 1.5);
        fill: var(--base-color);
        margin-left: calc(var(--base-size) * 1);
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

    #header .navbar-default .navbar-collapse .navbar-nav>li .home_link:hover svg {
        fill: var(--main-color);
    }

    .menu-icon {
        z-index: 990;
        position: fixed;
        right: 0;
        top: 0;
        width: var(--header-height);
        height: var(--header-height);
        cursor: pointer;
        padding: 0;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
    }

    .navicon {
        background: #000;
        position: relative;
        display: block;
        height: 3px;
        width: 30px;
        top: 28px;
        right: -15px;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
        border-radius: 5px
    }

    .navicon:before, .navicon:after {
        content: "";
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        background: #000;
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
        border-radius: 5px
    }

    .navicon:before {
        top: 9px
    }

    .navicon:after {
        bottom: 9px
    }

    .navtext {
        text-align: center;
        font-size: 12px;
        font-weight: bold;
        position: absolute;
        bottom: 0;
        width: 100%;
        line-height: 1
    }

    .menu-btn:checked~.menu-icon .navicon {
        background: rgba(0, 0, 0, 0);
        -webkit-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out
    }

    .menu-btn:checked~.menu-icon .navicon:before {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    .menu-btn:checked~.menu-icon .navicon:after {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .menu-btn:checked~.menu-icon:not(.steps) .navicon:before {
        top: 0
    }

    .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
        bottom: 0
    }

    #header .for-sp {
        display: block
    }
}

@media (max-width: 560px) {
    #header .container .logo-inner {
        width: 110px;
    }

    #header .container .text-inner {
        width: calc(100% - 110px);
    }

    #header .navbar-default .btnCont .btn {
        font-size: calc(var(--base-size) * 1.8);
        padding: calc(var(--base-size) * 1) calc(var(--base-size) * 2.5);
    }
}



/*============================
#mv
============================*/
#mv {
    background-image: url("img/mv_bg.png");
    background-position: center;
    background-size: cover;
}

#mv .flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#mv .mv_textCont {
    width: 45%;
    text-align: center;
}

#mv .mv_textCont h2 {
    font-size: calc(var(--base-size) * 3);
    margin-bottom: var(--base-size);
}

#mv .mv_textCont h2 span {
    font-size: 1.2em;
}

#mv .mv_textCont h1 {
    font-size: calc(var(--base-size) * 6);
    line-height: calc(var(--base-size) * 10);
}

#mv .mv_textCont h1 span {
    font-size: calc(var(--base-size) * 9);
}

#mv .mv_textCont .btnCont {
    margin-top: calc(var(--base-size) * 3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

#mv .mv_textCont .btnCont .balloon {
    background: #fff;
    color: var(--main-color);
    padding: calc(var(--base-size) * 1) calc(var(--base-size) * 3);
    border: 1px solid;
    border-bottom: 2px solid;
    border-radius: 5px;
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    display: block;
    margin: auto;
    position: relative;
    z-index: 5;
    -webkit-animation: shake-up 3s infinite ease-in-out;
    animation: shake-up 3s infinite ease-in-out;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

@-webkit-keyframes shake-up {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

@keyframes shake-up {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

#mv .mv_textCont .btnCont a:hover+.balloon {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

#mv .mv_textCont .btnCont .balloon::before,
#mv .mv_textCont .btnCont .balloon::after {
    content: "";
    position: absolute;
    left: 50%;
    border-style: solid;
    translate: -50% 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

#mv .mv_textCont .btnCont .balloon::before {
    bottom: -2px;
    border-width: 10px 10px 0 10px;
    border-color: var(--main-color) transparent transparent;
}

#mv .mv_textCont .btnCont .balloon::after {
    bottom: 0;
    border-width: 9px 9px 0 9px;
    border-color: #fff transparent transparent;
}

#mv .mv_textCont .btnCont a:hover+.balloon::after {
    border-color: var(--main-color) transparent transparent;
}


#mv .mv_textCont .btnCont .btn {
    margin: auto;
}

#mv .mv_imgCont {
    width: 50%;
}

#mv .mv_imgCont img {}

@media(max-width: 979px) {
    #mv .flex {
        padding-top: calc(var(--base-size) * 10);
    }

    #mv .mv_textCont h2 {
        font-size: calc(var(--base-size) * 2.2);
    }

    #mv .mv_textCont h1 {
        font-size: calc(var(--base-size) * 4);
        line-height: calc(var(--base-size) * 8);
    }

    #mv .mv_textCont h1 span {
        font-size: calc(var(--base-size) * 7);
    }

    #mv .mv_textCont .btnCont {
        margin-top: calc(var(--base-size) * 2);
    }
}

@media (max-width: 560px) {
    #mv .flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: calc(var(--base-size) * 2);
        padding-top: calc(var(--base-size) * 8);
    }

    #mv .mv_textCont {
        width: 100%;
    }

    #mv .mv_imgCont {
        max-width: 300px;
        width: 100%;
    }

    #mv .mv_textCont h1 {
        line-height: calc(var(--base-size) * 7);
    }

    #mv .mv_textCont h1 br {
        display: none;
    }

    #mv .mv_textCont h1 span {
        font-size: calc(var(--base-size) * 6);
    }

    #mv .mv_textCont h2 {
        font-size: calc(var(--base-size) * 1.8);
    }

    #mv .mv_textCont .btnCont .btn {
        padding: calc(var(--base-size) * 2) calc(var(--base-size) * 5);
        font-size: calc(var(--base-size) * 2.5);
    }
}


/*============================
#knowhow
============================*/
#knowhow {
    background: -o-linear-gradient(bottom, #FFF4DB 0%, #F4FDDF 51%, #D9F6FF 100%);
    background: -webkit-gradient(linear, left bottom, left top, from(#FFF4DB), color-stop(51%, #F4FDDF), to(#D9F6FF));
    background: linear-gradient(360deg, #FFF4DB 0%, #F4FDDF 51%, #D9F6FF 100%);
    position: relative;
}

#knowhow::before {
    opacity: 0.7;
}

#knowhow .container {
    padding-bottom: 0;
    z-index: 5;
}

#knowhow .barCont {
    background: #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: calc(var(--base-size) * 4);
    padding-left: calc(var(--base-size) * 8);
    border-radius: 500px;
    max-width: 900px;
    width: 100%;
    margin: auto;
    position: relative;
}

#knowhow .barCont img {
    position: absolute;
    width: 23%;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

#knowhow .barCont p {
    font-weight: bold;
    font-size: calc(var(--base-size) * 3);
    width: 74%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-left: 26%;
    word-break: auto-phrase;
}

#knowhow .barCont p span {}

#knowhow .problem_list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    row-gap: var(--base-size);
    max-width: 768px;
    width: 100%;
    margin: auto;
    margin-top: calc(var(--base-size) * 8);
    position: relative;
    margin-bottom: calc(var(--base-size) * 15);
}

#knowhow .problem_list li {
    background: var(--sub-color);
    color: #fff;
    font-weight: bold;
    padding: calc(var(--base-size) * 1.5);
    width: 40%;
    text-align: center;
    border-radius: 100px;
    word-break: auto-phrase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#knowhow .problem_list::before,
#knowhow .problem_list::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
}

#knowhow .problem_list::before {
    background-image: url("img/knowhow_problem.svg");
    aspect-ratio: 44/45;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 22%;
}

#knowhow .problem_list::after {
    background-image: url("img/knowhow_arrow.svg");
    aspect-ratio: 4 / 7;
    width: calc(var(--base-size) * 4);
    bottom: calc((var(--base-size) * -15) + 5px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

#knowhow .problem_list li:nth-child(1) {
    border-bottom-right-radius: 0;
}

#knowhow .problem_list li:nth-child(2) {
    border-bottom-left-radius: 0;
}

#knowhow .problem_list li:nth-child(3) {
    border-top-right-radius: 0;
}

#knowhow .problem_list li:nth-child(4) {
    border-top-left-radius: 0;
}

#knowhow .copy {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#knowhow .copy img {
    max-width: 300px;
    width: calc(95% - 400px);
}

#knowhow .copy h2 {
    width: 50%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    font-size: calc(var(--base-size) * 3);
    line-height: 1.3;
    margin-top: -3%;
}

#knowhow .copy h2 span {
    font-size: calc(var(--base-size) * 5);
}


@media (max-width: 979px) {
    #knowhow .barCont p {
        font-size: calc(var(--base-size) * 2.5);
    }

    #knowhow .copy h2 {
        font-size: calc(var(--base-size) * 2.5);
    }

    #knowhow .copy h2 span {
        font-size: calc(var(--base-size) * 4);
    }
}


@media (max-width: 767px) {
    #knowhow .copy img {
        max-width: 250px;
        width: calc(95% - 350px);
    }

}


@media (max-width: 560px) {
    #knowhow .barCont {
        padding: calc(var(--base-size) * 2);
        padding-left: calc(var(--base-size) * 20);
    }

    #knowhow .barCont img {
        width: calc(var(--base-size) * 15);
    }

    #knowhow .barCont p {
        font-size: calc(var(--base-size) * 2);
        width: 100%;
        margin-left: 0;
    }

    #knowhow .problem_list {
        margin-top: calc(var(--base-size) * 4);
        margin-bottom: calc(var(--base-size) * 4);
    }

    #knowhow .problem_list::before {
        position: relative;
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
        left: unset;
        aspect-ratio: 112 / 39;
        width: 86%;
        max-height: 115px;
        background-image: url(img/knowhow_problem_sp.svg);
        background-size: contain;
        margin: var(--base-size) 7% 0;
    }

    #knowhow .problem_list::after {
        position: relative;
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
        margin: var(--base-size) auto 0;
        left: unset;
        bottom: unset;
    }

    #knowhow .problem_list li {
        width: 49%;
        border-radius: calc(var(--base-size) * 2);
    }

    #knowhow .problem_list li:nth-child(3) {
        border-top-right-radius: calc(var(--base-size) * 2);
        border-bottom-right-radius: 0;
    }

    #knowhow .problem_list li:nth-child(4) {
        border-top-left-radius: calc(var(--base-size) * 2);
        border-bottom-left-radius: 0;
    }

    #knowhow .copy {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: calc(var(--base-size) * 4);
    }

    #knowhow .copy h2 {
        width: 100%;
        text-align: center;
    }

    #knowhow .copy img {
        max-width: 200px;
        width: 90%;
        margin: auto;
    }
}


/*============================
#about
============================*/
#about {
    overflow: hidden;
}

#about .container {
    padding-bottom: 0;
}

#about .sec_ttl {}

#about .sec_ttl .sec_subttl {}

#about .sec_ttl span {}

#about h3+p {
    text-align: center;
    margin-bottom: calc(var(--base-size) * 5);
}

#about .step_list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    counter-reset: number;
}

#about .step_list .step_list_item {
    width: 23%;
}

#about .step_list .step_list_item figure {
    background: #EDEDED;
    padding: 5px;
    border-radius: 5px;
    position: relative;
}

#about .step_list .step_list_item figure::before {
    content: "";
    position: absolute;
    right: -9%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: block;
    aspect-ratio: 5/8;
    width: 6%;
    background: #E8AF67;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

#about .step_list .step_list_item:last-child figure::before {
    content: none;
}

#about .step_list .step_list_item figure::after {
    counter-increment: number;
    content: counter(number);
    background: #EDEDED;
    position: absolute;
    left: -5px;
    top: -5px;
    width: calc(var(--base-size) * 3.5);
    aspect-ratio: 1 / 1;
    text-align: center;
    color: var(--main-color);
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    border-radius: 50px;
    border: 1px solid #fff;
}

#about .step_list .step_list_item figure img {}

#about .step_list .step_list_item p {
    font-size: calc(var(--base-size) * 1.75);
    word-break: keep-all;
    text-align: center;
    margin-top: calc(var(--base-size) * 1);
}


@media (max-width: 560px) {
    #about .container:nth-child(1) {
        padding-left: 0;
        padding-right: 0;
    }

    #about .container:nth-child(1)>*:not(.step_list):not(#structure) {
        padding-left: 10px;
        padding-right: 10px;
    }

    #about .step_list .step_list_item {
        padding: var(--base-size) calc(var(--base-size) * 2) 0;
    }

    #about .step_list .step_list_item figure::before {
        content: none;
    }
}

/* slick */
.slick-dots {}

.slick-dots li {
    width: 10px;
    height: 10px;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
}

.slick-dots li button:before {
    font-size: 10px;
    line-height: 10px;
    width: 10px;
    height: 10px;
    opacity: 1;
    color: #EEEEEE;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--main-color);
}

.slick-prev,
.slick-next {
    left: 45px;
    display: inline-block;
    width: 14px;
    height: 24px;
    z-index: 5;
}

.slick-prev::before,
.slick-prev::after,
.slick-next::before,
.slick-next::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    left: 0;
    width: 18px;
    height: 1px;
    border-radius: 9999px;
    background-color: #000000;
    -webkit-transform-origin: 0.5px 50%;
    -ms-transform-origin: 0.5px 50%;
    transform-origin: 0.5px 50%;
}

.slick-prev::before,
.slick-next::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.slick-prev::after,
.slick-next::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.slick-next {
    left: unset;
    right: 50px;
}

.slick-next::before,
.slick-next::after {
    -webkit-transform-origin: calc(100% - 0.5px) 50%;
    -ms-transform-origin: calc(100% - 0.5px) 50%;
    transform-origin: calc(100% - 0.5px) 50%;
}

.slick-disabled {
    display: none !important;
}

/*============================
#structure
============================*/

#structure {
    margin-top: calc(var(--base-size) * 12.5);
    padding-top: calc(var(--base-size) * 7.5);
}

#structure .borderCont_ttl {
    color: var(--main-color);
}

#structure .borderCont_ttl .font_en {
    font-size: calc(var(--base-size) * 2.5);
}

#structure .structure_list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 22% 4% 22% 4% 22% 4% 22%;
    grid-template-columns: 22% 4% 22% 4% 22% 4% 22%;
}

/*============================
.structure_item
============================*/
#structure .structure_itemCont {
    background: #EEEEEE;
    border-radius: 10px;
    padding: calc(var(--base-size) * 2) 10px;
    gap: var(--base-size);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#structure .structure_itemCont h5 {
    font-size: calc(var(--base-size) * 2);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: calc(var(--base-size) * 3) 5px 1fr;
    grid-template-columns: calc(var(--base-size) * 3) 1fr;
    gap: 5px;
}

#structure .structure_itemCont h5 .num {
    background: var(--sub-color);
    text-align: center;
    width: calc(var(--base-size) * 3);
    aspect-ratio: 1 / 1;
    text-align: center;
    display: inline-block;
    color: #fff;
    border-radius: 50px;
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

#structure .structure_itemCont .start_txt {}

#structure .structure_itemCont p {
    font-size: calc(var(--base-size) * 1.75);
    line-height: 1.3;
    text-align: center;
}

#structure .structure_itemCont picture,
#structure .structure_itemCont>img {
    width: 75%;
    margin: 0 auto;
    display: block;
    text-align: center;
}

#structure .structure_itemCont .overseas {
    color: var(--sub-color);
}

#structure .structure_itemCont .japan {}

#structure .structure_itemCont .font_big {
    font-size: calc(var(--base-size) * 3.5);
}



/*============================
#structure_item1-o
============================*/
#structure_item1-o {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    position: relative;
}

.structure_item .balloon {
    background: var(--main-color);
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.3;
    padding: var(--base-size) calc(var(--base-size) * 2);
    border-radius: 5px;
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    display: block;
    margin: auto;
    position: absolute;
    top: calc(var(--base-size) * -5);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 5;
}

.structure_item .balloon::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: var(--main-color) transparent transparent;
    translate: -50% 100%;
}

#structure_item1-o .structure_itemCont {
    border-radius: 10px 10px 0 0;
}

#structure_item1-o .structure_itemCont h5 {}

#structure_item1-o .structure_itemCont h5 .num {}

.structure_itemCont .start_txt {
    font-size: calc(var(--base-size) *2.5);
    font-weight: bold;
    width: 100%;
    aspect-ratio: 2/1;
    margin: auto;
    background-size: auto 80%;
    background-position: center;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
}

.structure_itemCont .overseas {
    background-image: url("img/structure_bg_overseas.svg");
}

.structure_itemCont .japan {
    background-image: url(img/structure_bg_japan.svg);
}

#structure_item1-o .structure_itemCont .overseas .font_big {}


/*============================
#structure_item1-j
============================*/
#structure_item1-j {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 2;
    grid-row-start: 2;
}

#structure_item1-j .structure_itemCont {
    border-radius: 0 0 10px 10px;
}

#structure_item1-j .structure_itemCont img {}

#structure_item1-j .structure_itemCont p {}



#structure_item1-j .structure_itemCont .japan .font_big {}

/*============================
#structure_item2
============================*/
#structure_item2 {
    -ms-grid-column: 3;
    grid-column-start: 3;
    -ms-grid-row: 1;
    grid-row-start: 1;
}

#structure_item2 .structure_itemCont {}

#structure_item2 .structure_itemCont h5 {}

#structure_item2 .structure_itemCont h5 .num {}

#structure_item2 .structure_itemCont img {
    width: 65%;
}

#structure_item2 .structure_itemCont p {}

/*============================
#structure_item3-o
============================*/
#structure_item3-o {
    -ms-grid-column: 5;
    grid-column-start: 5;
    -ms-grid-row: 1;
    grid-row-start: 1;
}

#structure_item3-o .structure_itemCont {}

#structure_item3-o .structure_itemCont h5 {}

#structure_item3-o .structure_itemCont h5 .num {}

#structure_item3-o .structure_itemCont:nth-child(1) picture {
    width: 100%;
}

#structure_item3-o .structure_itemCont p {}

#structure_item3-o .structure_itemCont p .font_small {
    font-size: calc(var(--base-size) * 1.25);
    display: block;
}

/*============================
#structure_item3-j
============================*/
#structure_item3-j {
    -ms-grid-column: 5;
    grid-column-start: 5;
    -ms-grid-row: 2;
    grid-row-start: 2;
}

#structure_item3-j .structure_itemCont.noBg {
    background: unset !important;
}

#structure_item3-j .structure_itemCont.noBg h5 {}

#structure_item3-j .structure_itemCont.noBg h5 .num {}

#structure_item3-j .structure_itemCont.noBg img {}

#structure_item3-j .structure_itemCont.noBg p {
    margin: 0 auto;
}

/*============================
#structure_item4
============================*/
#structure_item4 {
    -ms-grid-column: 7;
    grid-column-start: 7;
    -ms-grid-row: 1;
    grid-row-start: 1;
}

#structure_item4 .structure_itemCont {}

#structure_item4 .structure_itemCont h5 {}

#structure_item4 .structure_itemCont h5 .num {}

#structure_item4 .structure_itemCont img {
    width: 90%;
}

#structure_item4 .structure_itemCont p {}

/*============================
.structure_arrow
============================*/
.structure_arrow {
    position: relative;
}

.structure_arrow .arrow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: inline-block;
    width: calc(100% - var(--base-size) * 2);
    height: 5px;
    margin: calc(var(--base-size) * 2) 0;
    border-radius: 9999px;
    background-color: var(--sub-color);
}

.structure_arrow .arrow::before,
.structure_arrow .arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 2.5px);
    right: 0;
    width: calc(var(--base-size) * 2.5);
    height: 5px;
    border-radius: 9999px;
    background-color: var(--sub-color);
    -webkit-transform-origin: calc(100% - 2.5px) 50%;
    -ms-transform-origin: calc(100% - 2.5px) 50%;
    transform-origin: calc(100% - 2.5px) 50%;
}

.structure_arrow .arrow::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.structure_arrow .arrow::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.structure_arrow.japan {}

.structure_arrow.japan .arrow,
.structure_arrow.japan .arrow::before,
.structure_arrow.japan .arrow::after {
    background-color: #CCCCCC;
}


/*============================
#structure_arrow_1to2
============================*/
#structure_arrow_1to2 {
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
}

#structure_arrow_1to2 .arrow {}

/*============================
#structure_arrow_2to3
============================*/
#structure_arrow_2to3 {
    -ms-grid-column: 4;
    grid-column-start: 4;
    -ms-grid-row: 1;
    grid-row-start: 1;
}

#structure_arrow_2to3 .arrow {}

/*============================
#structure_arrow_3to4
============================*/
#structure_arrow_3to4 {
    -ms-grid-column: 6;
    grid-column-start: 6;
    -ms-grid-row: 1;
    grid-row-start: 1;
}

#structure_arrow_3to4 .arrow {}

/*============================
#structure_arrow_1to3
============================*/
#structure_arrow_1to3 {
    -ms-grid-column-span: 3;
    grid-column: span 3 / span 3;
    -ms-grid-column: 2;
    grid-column-start: 2;
}

#structure_arrow_1to3 .arrow {}


@media (max-width: 979px) {
    #structure .structure_list {
        -ms-grid-columns: (50%)[2];
        grid-template-columns: repeat(2, 50%);
        -ms-grid-rows: (auto)[7];
        grid-template-rows: repeat(7, auto);
    }

    #structure .structure_list>*:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    #structure .structure_list>*:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }

    #structure .structure_list>*:nth-child(3) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }

    #structure .structure_list>*:nth-child(4) {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }

    #structure .structure_list>*:nth-child(5) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    #structure .structure_list>*:nth-child(6) {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }

    #structure .structure_list>*:nth-child(7) {
        -ms-grid-row: 4;
        -ms-grid-column: 1;
    }

    #structure .structure_list>*:nth-child(8) {
        -ms-grid-row: 4;
        -ms-grid-column: 2;
    }

    #structure .structure_list>*:nth-child(9) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }

    #structure .structure_list>*:nth-child(10) {
        -ms-grid-row: 5;
        -ms-grid-column: 2;
    }

    #structure .structure_list>*:nth-child(11) {
        -ms-grid-row: 6;
        -ms-grid-column: 1;
    }

    #structure .structure_list>*:nth-child(12) {
        -ms-grid-row: 6;
        -ms-grid-column: 2;
    }

    #structure .structure_list>*:nth-child(13) {
        -ms-grid-row: 7;
        -ms-grid-column: 1;
    }

    #structure .structure_list>*:nth-child(14) {
        -ms-grid-row: 7;
        -ms-grid-column: 2;
    }

    #structure .structure_itemCont {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: calc(var(--base-size) * 1.5);
    }

    #structure .structure_itemCont p {
        text-align: left;
    }

    #structure .structure_itemCont p br {
        display: none;
    }

    #structure .structure_itemCont .start_txt {
        background-size: contain;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        aspect-ratio: unset;
        padding: calc(var(--base-size) * 3);
    }

    #structure .structure_itemCont .overseas {
        background-size: cover;
    }


    #structure .structure_itemCont picture {
        /* aspect-ratio: 1 / 1; */
        overflow: hidden;
        width: 60%;
    }

    #structure .structure_itemCont picture img {
        -o-object-fit: contain;
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    #structure_item1 {
        -ms-grid-column-span: 2;
        grid-column: span 2 / span 2;
        position: relative;
    }

    #structure_item1-o {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row: 2;
        grid-row-start: 2;
    }

    #structure_item1-o .structure_itemCont {
        border-radius: 10px 0 0 10px;
        background: unset;
    }

    #structure_item1-j {
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-row: 2;
        grid-row-start: 2;
    }

    #structure_item1-j .structure_itemCont {
        border-radius: 0 10px 10px 0;
        background: unset;
    }

    .structure_itemCont .overseas {
        background-image: url(img/structure_bg_overseas_sp.svg);
    }

    .structure_itemCont .japan {
        background-image: url(img/structure_bg_japan_sp.svg);
    }

    #structure_item2 {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row: 4;
        grid-row-start: 4;
    }

    #structure_item3-o {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row: 6;
        grid-row-start: 6;
    }

    #structure_item3-j {
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-row: 6;
        grid-row-start: 6;
    }

    #structure_item4 {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row: 8;
        grid-row-start: 8;
    }

    .structure_arrow {
        height: 50px;
    }

    .structure_arrow .arrow {
        position: absolute;
        width: 5px;
        height: calc(100% - var(--base-size) * 2);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        margin: 0;
    }

    .structure_arrow .arrow::before,
    .structure_arrow .arrow::after {
        content: "";
        position: absolute;
        bottom: 0;
        top: unset;
        width: 5px;
        height: calc(var(--base-size) * 2.5);
        -webkit-transform-origin: 50% calc(100% - 2px);
        -ms-transform-origin: 50% calc(100% - 2px);
        transform-origin: 50% calc(100% - 2px);
    }

    .structure_arrow .arrow::before {}

    .structure_arrow .arrow::after {}


    #structure_arrow_1to2 {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row: 3;
        grid-row-start: 3;
    }

    #structure_arrow_2to3 {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row: 5;
        grid-row-start: 5;
    }

    #structure_arrow_3to4 {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-row: 7;
        grid-row-start: 7;
    }

    #structure_arrow_1to3 {
        -ms-grid-row-span: 3;
        grid-row: span 3 / span 3;
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-row: 3;
        grid-row-start: 3;
        height: auto;
    }
}


@media (max-width: 767px) {
    .structure_item .balloon {
        top: calc(var(--base-size) * -4);
    }

    #structure .structure_itemCont {
        padding: calc(var(--base-size) * 1.5);
    }
}


@media (max-width: 560px) {
    #structure {
        padding-top: calc(var(--base-size) * 8);
        margin-left: var(--base-size);
        margin-right: var(--base-size);
    }

    #structure .structure_itemCont {
        padding: 10px;
    }

    #structure .structure_itemCont .start_txt {
        padding: calc(var(--base-size) * 1);
    }

    #structure .structure_itemCont picture {
        aspect-ratio: 1 / 1;
        width: 100%;
    }

    .structure_arrow .arrow {
        width: 3px;
    }

    .structure_arrow .arrow::before, .structure_arrow .arrow::after {
        width: 3px;
    }
}


/*============================
.omakase
============================*/
#about .container:has(.omakase) {
    max-width: unset;
    padding-top: calc(var(--base-size) * 7);
}

#about .omakase {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: calc(var(--base-size) * 6);
    position: relative;
    z-index: -1;
}

#about .omakase::before,
#about .omakase::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    height: 180%;
    aspect-ratio: 1 / 1;
    background-size: contain;
    display: block;
    z-index: -1;
}

#about .omakase::before {
    background-image: url("img/omakase_bg_l.png");
    left: -20px;
    top: -100%;
    background-position: left top;
}

#about .omakase::after {
    background-image: url("img/omakase_bg_r.png");
    right: -20px;
    bottom: 0;
    background-position: right bottom;
}

#about .omakase figure {
    max-width: calc(25% - calc(var(--base-size) * 3));
    margin-bottom: 0;
    margin-top: auto;
}

#about .omakase figure img {}

#about .omakase .txtCont {
    max-width: calc(75% - calc(var(--base-size) * 3));
    margin-bottom: calc(var(--base-size) * 7);
}

#about .omakase p {
    font-weight: bold;
    font-size: calc(var(--base-size) * 3);
}

#about .omakase p .marker {}

#about .omakase p .font_en {
    font-size: calc(var(--base-size) * 5);
}

@media (max-width: 767px) {
    #about .omakase {
        gap: calc(var(--base-size) * 4);
    }

    #about .omakase figure {
        max-width: calc(25% - calc(var(--base-size) * 2));
    }

    #about .omakase .txtCont {
        max-width: calc(75% - calc(var(--base-size) * 2));
    }

    #about .omakase p:nth-child(2) {
        line-height: 1.3;
        margin-top: calc(var(--base-size) * 1);
    }

    #about .omakase p .font_en {
        font-size: calc(var(--base-size) * 4.5);
    }
}

@media (max-width: 560px) {
    #about .container:has(.omakase) {
        padding-top: 0;
    }

    #about .omakase {
        position: relative;
    }

    #about .omakase::before, #about .omakase::after {
        height: 120%;

    }

    #about .omakase::before {
        top: -20%;
    }

    #about .omakase::after {
        bottom: 0;
    }

    #about .omakase figure {
        position: absolute;
        bottom: 0;
        right: 10px;
        max-width: 25%;
    }

    #about .omakase .txtCont {
        width: 100%;
        max-width: calc(100% - calc(var(--base-size) * 4));
        margin: calc(var(--base-size) * 8) auto calc(var(--base-size) * 10);
    }

    #about .omakase p {
        font-size: calc(var(--base-size) * 2.5);
    }

    #about .omakase p:nth-child(2) {
        padding-right: 25%;
        margin-top: calc(var(--base-size) * 2);
        line-height: 1.5;
    }

    #about .omakase p .font_en {
        font-size: calc(var(--base-size) * 4);
        line-height: 1.2;
    }
}

/*============================
.cta
============================*/
.cta {
    background: -o-linear-gradient(352deg, #01A4D8 0%, #2D69B2 100%);
    background: linear-gradient(98deg, #01A4D8 0%, #2D69B2 100%);
}

.cta::before {
    opacity: 0.5;
}

.cta .container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: calc(var(--base-size) * 5);
}

.cta p {
    font-size: calc(var(--base-size) * 3);
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.cta .btnCont {}

.cta .btnCont .btn {}

@media (max-width: 767px) {
    .cta_bg::before {
        background-size: contain;
    }
}

@media (max-width: 560px) {
    .cta_bg::before {
        background-size: 50%;
    }

    .cta .container {
        padding: calc(var(--base-size) * 7) 10px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: calc(var(--base-size) * 3);
    }
}


/*============================
#benefits
============================*/
#benefits {}

#benefits .sec_ttl {}

#benefits .sec_ttl .sec_subttl {}

#benefits .sec_ttl .font_en {}

#benefits .benefit_list {
    row-gap: calc(var(--base-size) * 3);
    counter-reset: benefit_list;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#benefits .benefit_list li {
    border-radius: 10px;
    border: 2px solid #D9F6FF;
    width: 49%;
}

#benefits .benefit_list li .ttlCont {
    background: #D9F6FF;
    padding: calc(var(--base-size) * 3);
    padding-left: calc(var(--base-size) * 10);
    padding-bottom: calc(var(--base-size) * 2);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

#benefits .benefit_list li .ttlCont p {
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: var(--main-color);
    text-align: center;
    position: absolute;
    top: calc(var(--base-size) * -2);
    left: calc(var(--base-size) * 3);
}

#benefits .benefit_list li .ttlCont p span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#benefits .benefit_list li .ttlCont p span::after {
    counter-increment: benefit_list;
    content: counter(benefit_list);
    font-size: calc(var(--base-size) * 8);
    line-height: 1;
}

#benefits .benefit_list li .ttlCont h4 {
    font-size: calc(var(--base-size) * 3);
    margin-bottom: var(--base-size);
    width: 100%;
    overflow-wrap: unset;
}

#benefits .benefit_list li .txtCont {
    padding: calc(var(--base-size) * 3);
}

#benefits .benefit_list li .txtCont .font_small {
    font-size: calc(var(--base-size) * 1.75);
}


@media (max-width: 979px) {
    #benefits .benefit_list li .ttlCont p {
        left: calc(var(--base-size) * 2);
    }

    #benefits .benefit_list li .ttlCont {
        padding: calc(var(--base-size) * 2.5);
        padding-left: calc(var(--base-size) * 8);
        padding-bottom: calc(var(--base-size) * 1.5);
        -ms-grid-columns: calc(var(--base-size) * 4) calc(var(--base-size) * 3) 1fr;
        grid-template-columns: calc(var(--base-size) * 4) 1fr;
    }

    #benefits .benefit_list li .ttlCont p span::after {
        font-size: calc(var(--base-size) * 6);
    }

    #benefits .benefit_list li .ttlCont h4 {
        font-size: calc(var(--base-size) * 2.5);
    }

    #benefits .benefit_list li .ttlCont p span::after {
        font-size: calc(var(--base-size) * 5);
    }

    #benefits .benefit_list li .txtCont {
        padding: calc(var(--base-size) * 2.5);
    }
}


@media (max-width: 767px) {}


@media (max-width: 560px) {
    #about h3+p {
        text-align: left;
    }

    #benefits .benefit_list {
        row-gap: calc(var(--base-size) * 2);
    }

    #benefits .benefit_list li {
        width: 100%;
    }

    #benefits .benefit_list li .ttlCont h4 {
        font-size: calc(var(--base-size) * 2.25);
    }

    #benefits .benefit_list li .ttlCont {
        padding: calc(var(--base-size) * 2);
        padding-left: calc(var(--base-size) * 7);
        padding-bottom: calc(var(--base-size) * 1.25);
    }

    #benefits .benefit_list li .ttlCont p {
        left: calc(var(--base-size) * 1);
        top: calc(var(--base-size) * -1.75);
    }

    #benefits .benefit_list li .txtCont {
        padding: calc(var(--base-size) * 2);
    }
}


/*============================
#getstarted
============================*/
#getstarted {}

#getstarted .container {
    /* padding-top: 0; */
    margin-top: calc(var(--base-size) * -10);
}

#getstarted .sec_ttl {}

#getstarted .sec_ttl .sec_subttl {}

#getstarted .getstarted_list {
    overflow: hidden;
    border-radius: 10px;
    counter-reset: getstarted;
}

#getstarted .getstarted_list li {
    width: 20%;
    background: #49A2D1;
    color: #fff;
    text-align: center;
    padding: calc(var(--base-size) * 3);
    display: -ms-grid;
    display: grid;
    gap: calc(var(--base-size) * 1.5);
    position: relative;
}

#getstarted .getstarted_list li::after {
    /* content: ""; */
    position: absolute;
    top: 50%;
    /* right: 0; */
    border-style: solid;
    border-width: calc(var(--base-size) * 2) 0 calc(var(--base-size) * 2) calc(var(--base-size) * 2);
    border-color: transparent transparent transparent #49A2D1;
    translate: 100% -50%;
    z-index: 5;
}

#getstarted .getstarted_list li:nth-child(1) {
    background: #18409D;
}

#getstarted .getstarted_list li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    border-style: solid;
    border-width: calc(var(--base-size) * 2) 0 calc(var(--base-size) * 2) calc(var(--base-size) * 2);
    border-color: transparent transparent transparent #49A2D1;
    translate: 100% -50%;
    z-index: 5;
}

#getstarted .getstarted_list li:nth-child(1) {
    background: #18409D;
}

#getstarted .getstarted_list li:nth-child(1)::after {
    border-color: transparent transparent transparent #18409D;
}

#getstarted .getstarted_list li:nth-child(2) {
    background: #245AB0;
}

#getstarted .getstarted_list li:nth-child(2)::after {
    border-color: transparent transparent transparent #245AB0;
}

#getstarted .getstarted_list li:nth-child(3) {
    background: #3171BE;
}

#getstarted .getstarted_list li:nth-child(3)::after {
    border-color: transparent transparent transparent #3171BE;
}

#getstarted .getstarted_list li:nth-child(4) {
    background: #3E8AC9;
}

#getstarted .getstarted_list li:nth-child(4)::after {
    border-color: transparent transparent transparent #3E8AC9;
}

#getstarted .getstarted_list li figure {
    aspect-ratio: 1/1;
    width: 90%;
    margin: auto;
}

#getstarted .getstarted_list li figure img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

#getstarted .getstarted_list li .txtCont {}

#getstarted .getstarted_list li .txtCont p {
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

#getstarted .getstarted_list li .txtCont p span {}

#getstarted .getstarted_list li .txtCont p span::after {
    counter-increment: getstarted;
    content: " "counter(getstarted);
    font-size: calc(var(--base-size) * 3);
}

#getstarted .getstarted_list li .txtCont h4 {
    font-size: calc(var(--base-size) * 2.5);
}


@media (max-width: 979px) {
    #getstarted .container {
        margin-top: calc(var(--base-size) * -8);
    }

    #getstarted .getstarted_list li .txtCont h4 {
        font-size: calc(var(--base-size) * 2);
    }
}


@media (max-width: 767px) {
    #getstarted .container {
        margin-top: calc(var(--base-size) * -7);
    }
}


@media (max-width: 560px) {
    #getstarted .container {
        margin-top: calc(var(--base-size) * -5);
    }

    #getstarted .getstarted_list li {
        width: 100%;
        -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: calc(var(--base-size) * 2);
    }

    #getstarted .getstarted_list li figure {
        aspect-ratio: 2 / 1;
    }

    #getstarted .getstarted_list li:nth-child(3) figure {
        padding: 10%;
    }

    #getstarted .getstarted_list li .txtCont {
        text-align: left;
    }

    #getstarted .getstarted_list li::after {
        top: unset;
        bottom: -13px;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        border-width: 13px 10px 0;
        translate: unset;
    }

    #getstarted .getstarted_list li:nth-child(1)::after {
        border-color: #18409D transparent transparent;
    }

    #getstarted .getstarted_list li:nth-child(2)::after {
        border-color: #245AB0 transparent transparent;
    }

    #getstarted .getstarted_list li:nth-child(3)::after {
        border-color: #3171BE transparent transparent;
    }

    #getstarted .getstarted_list li:nth-child(4)::after {
        border-color: #3E8AC9 transparent transparent;
    }

    #getstarted .getstarted_list li .txtCont p span::after {
        font-size: calc(var(--base-size) * 2.5);
    }

    #getstarted .getstarted_list li .txtCont h4 {
        font-size: calc(var(--base-size) * 2.2);
    }
}


/*============================
#tag
============================*/
#tag {
    margin-top: calc(var(--base-size) * 7);
    padding-bottom: 0;
    padding-top: calc(var(--base-size) * 5);
}

#tag .borderCont_ttl {}

#tag .borderCont_ttl span {}

#tag p {
    text-align: center;
}

#tag .tag_imgCont {
    gap: calc(var(--base-size) * 3);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: calc(var(--base-size) * 3);
}

#tag .tag_imgCont img {
    max-width: 516px;
    width: calc(100% - 280px);
}

#tag .tag_imgCont figcaption {
    position: relative;
    display: inline-block;
    padding: var(--base-size) calc(var(--base-size) * 2);
    border-radius: 4px;
    background-color: var(--main-color);
    font-weight: bold;
    color: #fff;
}

#tag .tag_imgCont figcaption::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent var(--main-color) transparent transparent;
    translate: -100% -50%;
}

@media (max-width: 560px) {
    #tag {
        margin-top: calc(var(--base-size) * 8);
    }

    #tag .borderCont_ttl {
        top: -1.5em;
    }

    #tag p {
        text-align: left;
    }

    #tag .tag_imgCont {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: calc(var(--base-size) * 2);
    }

    #tag .tag_imgCont img {
        max-width: unset;
        width: 100%;
    }

    #tag .tag_imgCont figcaption {}

    #tag .tag_imgCont figcaption::after {
        width: 10px;
        height: 5px;
        background: var(--main-color);
        -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
        clip-path: polygon(0 0, 100% 0%, 50% 100%);
        border: unset;
        top: unset;
        bottom: -7px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }
}

/*============================
#why
============================*/
#why {
    --y-0: 80%;
    --x-0: 85%;
    --c-0: hsla(150.8823529411765, 52%, 83%, 1);
    --y-1: 24%;
    --c-1: hsla(219.99999999999997, 100%, 82%, 1);
    --x-1: 60%;
    --x-2: 13%;
    --y-2: 82%;
    --c-2: hsla(297.7941176470588, 100%, 65%, 0.49);
    --c-3: hsla(182, 72%, 68%, 1);
    --y-3: 7%;
    --x-3: 24%;
    background-color: hsla(358.0000000000001, 0%, 100%, 1);
    background-image: -o-radial-gradient(var(--x-0) var(--y-0), circle, var(--c-0) var(--s-start-0), transparent var(--s-end-0)),
        -o-radial-gradient(var(--x-1) var(--y-1), circle, var(--c-1) var(--s-start-1), transparent var(--s-end-1)),
        -o-radial-gradient(var(--x-2) var(--y-2), circle, var(--c-2) var(--s-start-2), transparent var(--s-end-2)),
        -o-radial-gradient(var(--x-3) var(--y-3), circle, var(--c-3) var(--s-start-3), transparent var(--s-end-3));
    background-image: radial-gradient(circle at var(--x-0) var(--y-0), var(--c-0) var(--s-start-0), transparent var(--s-end-0)),
        radial-gradient(circle at var(--x-1) var(--y-1), var(--c-1) var(--s-start-1), transparent var(--s-end-1)),
        radial-gradient(circle at var(--x-2) var(--y-2), var(--c-2) var(--s-start-2), transparent var(--s-end-2)),
        radial-gradient(circle at var(--x-3) var(--y-3), var(--c-3) var(--s-start-3), transparent var(--s-end-3));
    -webkit-animation: hero-gradient-animation 10s linear infinite alternate;
    animation: hero-gradient-animation 10s linear infinite alternate;
    background-blend-mode: normal, normal, normal, normal;
    position: relative;
}

@-webkit-keyframes hero-gradient-animation {
    0% {
        —y-0: 80%;
        —x-0: 85%;
        —c-0: hsla(150.8823529411765, 52%, 83%, 1);
        —s-start-0: 9%;
        —s-end-0: 55%;
        —y-1: 24%;
        —c-1: hsla(219.99999999999997, 100%, 82%, 1);
        —x-1: 60%;
        —s-start-1: 5%;
        —s-end-1: 72%;
        —x-2: 13%;
        —y-2: 82%;
        —s-start-2: 5%;
        —s-end-2: 52%;
        —c-2: hsla(297.7941176470588, 100%, 65%, 0.49);
        —c-3: hsla(182, 72%, 68%, 1);
        —s-start-3: 13%;
        —s-end-3: 68%;
        —y-3: 7%;
        —x-3: 24%;
    }

    100% {
        —y-0: 94%;
        —x-0: 31%;
        —c-0: hsla(150.8823529411765, 52%, 83%, 1);
        —s-start-0: 9%;
        —s-end-0: 55%;
        —y-1: 25%;
        —c-1: hsla(220, 82%, 95%, 1);
        --x-1: 2%;
        --s-start-1: 5%;
        --s-end-1: 72%;
        --x-2: 98%;
        --y-2: 20%;
        --s-start-2: 5%;
        --s-end-2: 52%;
        --c-2: hsla(297.7941176470588, 100%, 65%, 0.49);
        --c-3: hsla(182, 72%, 68%, 1);
        --s-start-3: 13%;
        --s-end-3: 68%;
        --y-3: 92%;
        --x-3: 95%;
    }
}

@keyframes hero-gradient-animation {
    0% {
        —y-0: 80%;
        —x-0: 85%;
        —c-0: hsla(150.8823529411765, 52%, 83%, 1);
        —s-start-0: 9%;
        —s-end-0: 55%;
        —y-1: 24%;
        —c-1: hsla(219.99999999999997, 100%, 82%, 1);
        —x-1: 60%;
        —s-start-1: 5%;
        —s-end-1: 72%;
        —x-2: 13%;
        —y-2: 82%;
        —s-start-2: 5%;
        —s-end-2: 52%;
        —c-2: hsla(297.7941176470588, 100%, 65%, 0.49);
        —c-3: hsla(182, 72%, 68%, 1);
        —s-start-3: 13%;
        —s-end-3: 68%;
        —y-3: 7%;
        —x-3: 24%;
    }

    100% {
        —y-0: 94%;
        —x-0: 31%;
        —c-0: hsla(150.8823529411765, 52%, 83%, 1);
        —s-start-0: 9%;
        —s-end-0: 55%;
        —y-1: 25%;
        —c-1: hsla(220, 82%, 95%, 1);
        --x-1: 2%;
        --s-start-1: 5%;
        --s-end-1: 72%;
        --x-2: 98%;
        --y-2: 20%;
        --s-start-2: 5%;
        --s-end-2: 52%;
        --c-2: hsla(297.7941176470588, 100%, 65%, 0.49);
        --c-3: hsla(182, 72%, 68%, 1);
        --s-start-3: 13%;
        --s-end-3: 68%;
        --y-3: 92%;
        --x-3: 95%;
    }
}

@property --y-0 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 80%
}

@property --x-0 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 85%
}

@property --c-0 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(150.8823529411765, 52%, 83%, 1)
}

@property --s-start-0 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 9%
}

@property --s-end-0 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 55%
}

@property --y-1 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 24%
}

@property --c-1 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(219.99999999999997, 100%, 82%, 1)
}

@property --x-1 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 60%
}

@property --s-start-1 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 5%
}

@property --s-end-1 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 72%
}

@property --x-2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 13%
}

@property --y-2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 82%
}

@property --s-start-2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 5%
}

@property --s-end-2 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 52%
}

@property --c-2 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(297.7941176470588, 100%, 65%, 0.49)
}

@property --c-3 {
    syntax: '<color>';
    inherits: false;
    initial-value: hsla(182, 72%, 68%, 1)
}

@property --s-start-3 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 13%
}

@property --s-end-3 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 68%
}

@property --y-3 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 7%
}

@property --x-3 {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 24%
}

#why::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    opacity: .7;
}

#why .container {
    z-index: 5;
    position: relative;
}

#why .sec_ttl {}

#why .sec_ttl .sec_subttl {}

#why .sec_ttl .font_en {}

#why .why_list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr calc(var(--base-size) * 3) 1fr calc(var(--base-size) * 3) 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 900px;
    margin: auto;
    gap: calc(var(--base-size) * 3);
    margin-bottom: calc(var(--base-size) * 5);
}

#why .why_list li {
    text-align: center;
    background-image: url("img/why_ emblem_l.svg"), url("img/why_ emblem_r.svg");
    background-repeat: no-repeat;
    background-position: left center, right center;
    background-size: contain;
}

#why .why_list li p {
    font-size: calc(var(--base-size) * 3);
    font-weight: bold;
    line-height: 1;
    margin-bottom: var(--base-size);
}

#why .why_list li h4 {
    color: var(--main-color);
    font-size: calc(var(--base-size) * 5);
    line-height: 1;
}

#why .why_list li span {}

#why .why_list li .font_big {
    font-size: calc(var(--base-size) * 7);
}

#why .why_list li .font_small {
    font-size: calc(var(--base-size) * 4);
}

#why .why_list li:nth-child(3) .font_big {
    font-size: calc(var(--base-size) * 6);
}


#why .why_txt {
    text-align: center;
    font-size: calc(var(--base-size) * 2.25);
    line-height: 2.25;
}

#why .why_txt span {
    font-size: calc(var(--base-size) * 3);
    margin: 0 3px;
}


@media (max-width: 979px) {
    #why .why_list li p {
        font-size: calc(var(--base-size) * 2.5);
    }

    #why .why_list li h4 {
        font-size: calc(var(--base-size) * 4);
    }

    #why .why_list li .font_big {
        font-size: calc(var(--base-size) * 6);
    }

    #why .why_list li .font_small {
        font-size: calc(var(--base-size) * 3);
    }

    #why .why_txt {
        font-size: calc(var(--base-size) * 2);
        line-height: 2.2;
    }
}


@media (max-width: 767px) {}


@media (max-width: 560px) {
    #why .why_list {
        -ms-grid-columns: 1fr calc(var(--base-size) * 2) 1fr;
        grid-template-columns: repeat(2, 1fr);
        -ms-grid-rows: 1fr calc(var(--base-size) * 3) 1fr;
        grid-template-rows: repeat(2, 1fr);
        -webkit-column-gap: calc(var(--base-size) * 2);
        -moz-column-gap: calc(var(--base-size) * 2);
        column-gap: calc(var(--base-size) * 2);
        row-gap: calc(var(--base-size) * 3);
        margin-bottom: calc(var(--base-size) * 3);
    }

    #why .why_list>*:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    #why .why_list>*:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }

    #why .why_list>*:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    #why .why_list>*:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }

    #why .why_list li:nth-child(1) {
        -ms-grid-column-span: 2;
        grid-column: span 2 / span 2;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        min-width: 50%;
        padding: 0 calc(var(--base-size) * 5);
        margin: auto;
    }

    #why .why_list li:nth-child(2) {
        -ms-grid-row: 2;
        grid-row-start: 2;
    }

    #why .why_list li:nth-child(3) {
        -ms-grid-row: 2;
        grid-row-start: 2;
    }

    #why .why_list li p {
        font-size: calc(var(--base-size) * 2);
    }

    #why .why_list li:nth-child(3) .font_big {
        font-size: calc(var(--base-size) * 5);
    }

    #why .why_txt {
        text-align: left;
        line-height: 2;
    }

    #why .why_txt span {
        font-size: calc(var(--base-size) * 2.5);
    }
}


/*============================
#page-top
============================*/
#page-top {
    position: fixed;
    right: 20px;
    width: 50px;
    aspect-ratio: 1 / 1;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    z-index: 500;
}

#page-top.UpMove {
    opacity: 1;
}

#page-top a {
    background: #ffffff80;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 100%;
    color: var(--main-color);
    font-weight: bold;
    font-size: 12px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border-radius: 6px;
    line-height: 1;
}

#page-top a:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    background: #ffffff;
    opacity: 1;
}

#page-top a svg {
    width: calc(var(--base-size) * 1.5);
    fill: var(--main-color);
}

/*============================
#site-footer
============================*/
footer {
    text-align: center;
}

footer .home_link {
    font-weight: bold;
    font-size: calc(var(--base-size) * 2.25);
    margin-bottom: calc(var(--base-size) * 5);
    display: block;
}

footer .home_link svg {
    width: calc(var(--base-size) * 1.5);
    fill: var(--sub-color);
    margin-left: calc(var(--base-size) * 1);
}


footer .sns_list {
    margin-bottom: calc(var(--base-size) * 8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: calc(var(--base-size) * 5);
    font-size: calc(var(--base-size) * 3);
}

footer .sns_list li {}

footer .sns_list li a {
    color: var(--base-color);
}

footer .sns_list li a:hover {
    color: var(--sub-color);
    opacity: 1;
}

footer .sns_list li a i {}

footer .corpLink_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: calc(var(--base-size) * 2);
}

footer .corpLink_list li {}

footer .corpLink_list li::after {
    content: "/";
    margin: 0 calc(var(--base-size) * 2);
}

footer .corpLink_list li:last-child::after {
    content: none;
}

footer .corpLink_list li a {
    text-decoration: underline;
}

footer small {}

@media (max-width: 560px) {
    footer .home_link {
        margin-bottom: calc(var(--base-size) * 3);
    }

    footer .sns_list {
        margin-bottom: calc(var(--base-size) * 5);
    }

    footer .corpLink_list {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    }

    footer .corpLink_list li {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }

    footer .corpLink_list li:nth-child(even)::after {
        content: none;
        margin: 0;
    }
}