@charset "UTF-8";
/*-------------
vars
-------------*/
:root{
    --font-sans-serif: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --font-serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    --font-en: "Montserrat", sans-serif;
    --main-black: #333333;
    --main-blue: #003d57;
    --font-color:#265a70;
    --main-red: #b85454;
    --main-lightblue: #0f79e1;
    --main-darkblue: #00154b;
    --main-blue_grad: linear-gradient(35deg,#00154b,#004da0 77%);
    --main-orange:#f78826;
    --main-gray: #eeeeef;
    --main-gray_border: #e6e6e6;
    --inner-width--pc: 1200px;
    --inner-width--sp: 90.625%;
    --inner-width--sp_vw: 90.625vw;
    --inner-width: var(--inner-width--pc);
    --inner-sidespace--sp: 4.6875%;
    --inner-sidespace--sp_vw: 4.6875vw;
    --trans-ease: .3s ease;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    :root{
        --inner-width: var(--inner-width--sp);
    }
}

/*-------------
base
-------------*/
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    min-width: 1200px;
    background: #f7f7f3;
    color: var(--main-blue);
    font-family: var(--font-sans-serif);
    font-size: 16px;
    font-size: 1.6rem;
    line-height: normal;
    text-align: left;
    word-wrap: break-word;
}
*{
    letter-spacing: .02em;
}
.sp{
    display: none;
}
a[href^="tel:"]{
    pointer-events: none!important;
    text-decoration: none!important;
}
  
/*--- sp ---*/
@media screen and (max-width:768px){
    body{
        min-width: 320px;
        font-size: 1.4rem;
    }
    body.is--min_win-height{
        position: relative;
    }
    body.is--min_win-height .footer{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    body.is--min_win-height .footer .page-top-btn-block{
        display: none;
    }
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
    a[href^="tel:"]{
        pointer-events: auto!important;
        text-decoration: underline!important;
    }
    img{
        width: 100%;
        height: auto;
    }
}
/*-------------
data-effect
-------------*/
*[data-effect^="fade"]{
    opacity: 0;
    transition: transform .8s ease,opacity .8s ease;
}
*[data-effect^="fade-left"]{
    transform: translateX(-50px);
}
*[data-effect^="fade-right"]{
    transform: translateX(50px);
}
*[data-effect^="fade-up"]{
    transform: translateY(50px);
}
*[data-effect^="fade"].effected{
    opacity: 1;
    transform: none;
}
@media screen and (max-width:768px){
    *[data-effect^="fade"]{
        transition: transform .4s ease,opacity .4s ease;
    }
}
/*-------------
common
-------------*/
.clearfix::after,
.cf::after{
    content: "";
    display: block;
    clear: both;
}
.preload *,
.preload *::before,
.preload *::after{
    transition: none!important;
}
.textCenter,
.txt_c{
    text-align: center;
}
.textRight,
.txt_r{
    text-align: right;
}
.textIndent,
.txt_ind {
    text-indent: -1em;
    padding-left: 1em;
}
.textRed,
.txtRed{
    color: var(--text-red);
}
.textNowrap{
    white-space: nowrap;
}
@media screen and (min-width:769px){
    .textLink:not(:hover){
        text-decoration: underline;
    }
}
@media screen and (max-width:768px){
    .textLink:not(:active){
        text-decoration: underline;
    }
}
.textSmall{
    font-size: .7em;
}
.mB5,
.m_b5{
	margin-bottom: 5px!important;
}
.mB10,
.m_b10{
	margin-bottom: 10px!important;
}
.mB15,
.m_b15{
	margin-bottom: 15px!important;
}
.mB20,
.m_b20{
	margin-bottom: 20px!important;
}
.mB30,
.m_b30{
	margin-bottom: 30px!important;
}
.mR10,
.m_r10{
	margin-right: 10px!important;
}
.mR5,
.m_r5{
	margin-right: 5px!important;
}
.floatL,
.l{
    float: left;
}
.floatR,
.r{
    float: right;
}

/*-------------
accordion
-------------*/
.accordion-btn:not(.is--ready){
    pointer-events: none;
}
.accordion-btn.is--ready{
    cursor: pointer;
}
@media screen and (max-width:768px){
    .accordion-btn--sp:not(.is--ready){
        pointer-events: none;
    }
    .accordion-btn--sp.is--ready{
        cursor: pointer;
    }
}
.accordion-btn:not(.accordion--open):not([data-target-class]) + *:not(.accordion-container),
.accordion-content{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
@media screen and (max-width:768px){
    .accordion-btn--sp:not(.accordion--open):not([data-target-class]) + *:not(.accordion-container),
    .accordion-content--sp{
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }
}
.accordion-container{
    overflow: hidden;
    transition: height .3s ease;
}
.accordion-container.is--hit_low{
    transition: height .2s ease;
}
.accordion-container:not(.is--open){
    height: 0!important;
}
@media screen and (min-width:769px){
    .accordion-container.is--limit_sp{
        height: auto!important;
    }
}

/*-------------
header
-------------*/
.header{
    position: relative;
    z-index: 99;
}
body:not(.top) .header{
    border-bottom: solid 1px var(--main-blue);
}
.header-wrapper{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
    min-height: 100px;
    max-width: 1200px;
    margin: 0 auto;
}
.header-logo{
    flex: 0 0 auto;
    margin-right: 10px;
    padding-left: 40px;
}
.header-logo a{
    text-decoration: none;
    font-family: var(--font-en);
    font-size: 2.4rem;
    font-weight: 600;
    color: #333333;
}
.header-nav{
    display: flex;
    align-items: center;
    margin-left: auto;
}
.header-nav-list{
    display: flex;
    height: 100px;
    margin-right: 20px;
}
.header-nav-list-item{
    height: 100%;
    padding: 0 15px;
}
.header-nav-list-item__link{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    padding: 9px 0 12px;
    color: var(--main-black);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(1em + 4px);
    text-align: center;
    word-break: keep-all;
}
@media screen and (min-width:769px){
    /* .header-nav-list-item__link::after{
        opacity: 0;
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--main-blue);
        content: "";
        transition: opacity var(--trans-ease);
    }
    .header-nav-list-item:hover .header-nav-list-item__link::after{
        opacity: 1;
    } */
    .header-nav-list-item a{
        transition: all ease .3s;
    }
    .header-nav-list-item:hover a{
        opacity: 0.8;
        transition: all ease .3s;
    }
    .header-nav-list--middle:not(.is--active){
        display: none;
        z-index: -99;
    }
    .header-nav-list--middle:not(.is--show){
        opacity: 0;
    }
    .header-nav-list--middle{
        display: flex;
        flex-wrap: wrap;
        position: absolute;
        bottom: -1px;
        transform: translateY(100%);
        left: 0;
        width: 100%;
        padding: 40px calc(50% - 520px) 0;
        overflow: hidden;
        box-shadow: 0 5px 10px -10px rgba(0,0,0,.75);
        background: #fff;
        transition: opacity var(--trans-ease);
    }
    .header-nav-list--middle-item{
        flex: 0 0 220px;
        margin: 0 20px 40px;
    }
    .header-nav-list--middle-item__pic{
        width: 100%;
        height: 120px;
        margin-bottom: 7px;
        overflow: hidden;
        border-radius: 5px;
    }
    .header-nav-list--middle-item__pic img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--trans-ease);
    }
    a:hover .header-nav-list--middle-item__pic img{
        transform: scale(1.2);
    }
    .header-nav-list--middle-item__title{
        font-size: 1.4rem;
        line-height: calc(1em + 4px);
        transition: color var(--trans-ease);
    }
    a:hover .header-nav-list--middle-item__title{
        color: var(--main-blue);
    }
}
.header-btn1{
    flex: 0 0 auto;
    min-width: 160px;
    margin: 0 5px;
}
.header-btn1__link{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    padding: 9px 10px 11px;
    border-radius: 25px;
    background: var(--main-blue);
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
}
.header-btn2{
    flex: 0 0 auto;
    min-width: 180px;
    margin: 0 5px;
}
.header-btn2__link{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    padding: 9px 10px 11px;
    border-radius: 25px;
    background: var(--main-orange);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    /* .wrapper.header-menu--open > *:not(.header){
        filter: blur(2px);
    } */
    .header-wrapper{
        display: block;
        min-height: 0;
        border: none;
        max-width: inherit;
    }
    .header-logo{
        display: flex;
        align-items: center;
        position: relative;
        z-index: 1;
        height: 50px;
        margin: 0;
        padding-left: var(--inner-sidespace--sp);
    }
    .header-logo a{
        font-size: 2.0rem;
    }
    .header-menu--open .header-logo a{
        color: #336479;
    }
    .header-nav:not(.is--active),
    .header-nav:not(.is--active) *{
        z-index: -99!important;
        pointer-events: none!important;
    }
    .header-nav:not(.is--show){
        opacity: 0;
    }
    .header-nav{
        flex-direction: column;
        justify-content: stretch;
        align-items: stretch;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100vh - 50px);
        margin: 0;
        padding: 60px 0 0;
        overflow: auto;
        background : rgba(0, 61, 87, 1);
        transition: opacity var(--trans-ease);
    }
    .header-nav:before{
        content: "";
        background: url(../images/menu_bg.png) no-repeat top center;
        background-size: contain;
        width: 76.25%;
        height: auto;
        aspect-ratio: 61 / 64;
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        margin: auto;
    }
    /* WebPに対応していれば上書き */
    @supports (background-image: url("image.webp")) {
        .header-nav:before{
            background-image: url(../images/menu_bg.webp);
        }
    }
    .header-nav-list{
        display: block;
        height: auto;
        margin-bottom: 30px;
        padding: 0 var(--inner-sidespace--sp);
        padding-top: calc(50% - 70px);
    }
    .header-nav-list-item{
        height: auto;
        padding: 0;
    }
    .header-nav-list-item__link{
        font-size: 1.6rem;
        color: #fff;
        display: block;
        padding: 12px 0 12px 24px;
        border-bottom: solid 1px var(--bg-darkblue);
        text-align: left;
        border-bottom: solid 1px rgba(255,255,255,0.2);
    }
    .header-nav-list-item__link::after{
        position: absolute;
        top: calc(50% - 7px);
        left: 0;
        background: url(../images/icon_link1.svg) no-repeat;
        background-size: contain;
        width: 16px;
        height: 16px;
        content: "";
    }
    .header-nav-list-item:last-child .header-nav-list-item__link{
        border-bottom: none;
    }
    .accordion-btn--sp .header-nav-list-item__link{
        pointer-events: none;
    }
    .accordion-btn--sp .header-nav-list-item__link::after{
        content: none;
    }
    .header-nav .accordion-btn--sp{
        display: block;
        position: relative;
    }
    .header-nav .accordion-btn--sp::after{
        position: absolute;
        top: calc(50% - 5px);
        right: 10px;
        width: 10px;
        height: 10px;
        background: linear-gradient(to top,rgba(255,255,255,0) 0 4px,var(--main-blue) 4px 6px,rgba(255,255,255,0) 6px 10px),
        linear-gradient(to right,rgba(255,255,255,0) 0 4px,var(--main-blue) 4px 6px,rgba(255,255,255,0) 6px 10px);
        content: "";
        transition: transform var(--trans-ease);
    }
    .header-nav .accordion-btn--sp.accordion--open::after{
        transform: rotate(90deg);
        background: linear-gradient(to right,rgba(255,255,255,0) 0 4px,var(--main-blue) 4px 6px,rgba(255,255,255,0) 6px 10px);
    }
    .header-nav-list--middle{
        padding: 12px 10px;
        border-bottom: solid 1px var(--bg-darkblue);
    }
    .header-nav-list--middle-item__link{
        display: block;
        position: relative;
        padding: 11px 15px;
    }
    .header-nav-list--middle-item__link::before{
        position: absolute;
        top: calc(.5em + 12px);
        left: -2px;
        transform: rotate(45deg);
        width: 6px;
        height: 6px;
        border-top: solid 2px var(--border-gray);
        border-right: solid 2px var(--border-gray);
        content: '';
    }
    .header-nav-list--middle-item__pic{
        display: none;
    }
    .header-nav-list--middle-item__title{
        font-size: 1.4rem;
        line-height: calc(1em + 4px);
        transition: color var(--trans-ease);
    }
    .header-btn1{
        width: var(--inner-width--sp);
        margin: 0 auto 20px;
    }
    .header-btn1__link{
        background: #fff;
        color: var(--main-blue);
        position: relative;
        height: 50px;
    }
    .header-btn1__link::after {
        position: absolute;
        top: calc(50% - 4px);
        right: 25px;
        transform: rotate(45deg);
        width: 8px;
        height: 8px;
        border-top: solid 2px var(--main-blue);
        border-right: solid 2px var(--main-blue);
        content: "";
    }
    .header-btn2{
        width: var(--inner-width--sp);
        margin: 0 auto 20px;
    }
    .header-tel-bnr{
        width: 100%;
        margin-top: auto;
        border: none;
    }
    .header-tel-bnr__link{
        width: 100%;
        padding-bottom: env(safe-area-inset-bottom);
        border-top: solid 1px var(--bg-darkblue);
    }
    .header-tel-bnr__link img{
        display: block;
        width: 260px;
        margin: 0 auto;
    }
    .header-nav-btn{
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
        width: 50px;
        height: 50px;
        background: linear-gradient(to top,#fff 0px 2px,var(--main-blue) 2px 14px,#fff 14px) no-repeat bottom 17px left 13px / 24px 16px,var(--main-blue);
    }
    .header-nav-btn.menu--open{
        background: var(--main-blue);
    }
    .header-nav-btn::before,
    .header-nav-btn::after{
        position: absolute;
        top: 24px;
        left: 13px;
        width: 24px;
        height: 2px;
        background: #fff;
        content: "";
        transition: transform var(--trans-ease);
    }
    .header-nav-btn.menu--open::before{
        transform: rotate(45deg);
    }
    .header-nav-btn.menu--open::after{
        transform: rotate(-45deg);
    }
}

/*-------------
footer
-------------*/
.footer{
    background: #d6d1bb;
    padding: 45px 0;
    box-sizing: border-box;
}
.footer-inner{
    width: var(--inner-width);
    margin: 0 auto;
    text-align: center;
}
.footer-logo{
    margin-bottom: 20px;
}
.footer-logo a{
    text-decoration: none;
    font-family: var(--font-en);
    font-size: 2.4rem;
    font-weight: 600;
    color: #333333;
}
.footer-link{
    color: var(--main-black);
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 15px;
}
.footer-copy{
    color: var(--main-black);
    font-family: var(--font-en);
    font-size: 1.2rem;
    font-weight: 500;
}
/*-------------
page-header
-------------*/
.page-header{
    padding: 60px 0;
    box-sizing: border-box;
}
.page-header__title{
    font-size: 2.0rem;
    font-weight: bold;
    color: var(--main-blue);
    text-align: center;
}
.page-header__title-inner::before {
    font-family: var(--font-en);
    content: attr(data-pagetitle-en);
    font-size: 5.8rem;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: .04em;
}
/* sp */
@media screen and (max-width:768px){
    .page-header{
        padding: 40px 0 30px;
        box-sizing: border-box;
    }
    .page-header__title{
        font-size: 1.6rem;
    }
    .page-header__title-inner::before {
        font-family: var(--font-en);
        content: attr(data-pagetitle-en);
        font-size: 3.5rem;
        font-weight: 500;
        display: block;
        margin-bottom: 10px;
        line-height: 1;
        letter-spacing: .04em;
    }
}
/*-------------
main-title
-------------*/
.main-title1{
    font-size: 2.0rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
}
.main-title1::before {
    font-family: var(--font-en);
    content: attr(data-pagetitle-en);
    font-size: 5.8rem;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: .04em;
}
@media screen and (max-width: 768px) {
    .main-title1 {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }
    .main-title1::before {
        font-family: var(--font-en);
        content: attr(data-pagetitle-en);
        font-size: 3.5rem;
        font-weight: 500;
        display: block;
        margin-bottom: 10px;
        line-height: 1;
        letter-spacing: .04em;
    }
}
.main-title2{
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
.main-title2:after{
    content: "";
    width: 60px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
/* sp */
@media screen and (max-width:768px){
    .main-title2{
        font-size: 2.1rem;
        margin-bottom: 20px;
    }
    .main-title2:after{
        width: 50px;
    }
}
/*btn1*/
.btn1 {
    width: 240px;
    height: 60px;
}
.btn1-link {
    background: var(--main-blue);
    color: #fff;
    font-family: var(--font-en);
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    border-radius: 30px;
    padding: 0 30px;
}
.btn1-link::after {
    position: absolute;
    top: calc(50% - 4px);
    right: 30px;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
}
/* sp */
@media screen and (max-width:768px){
    .btn1 {
        width: 100%;
        height: 50px;
    }
    .btn1-link {
        font-size: 1.4rem;
        font-weight: 500;
        justify-content: center;
    }
}
/*-------------
top
-------------*/
.top-img{
    width: 100%;
    height: 600px;
    max-height: 600px;
    overflow: hidden;
    margin: 0 auto;
    background: url(../images/top-img.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    container-type: inline-size;
}
/* WebPに対応していれば上書き */
@supports (background-image: url("image.webp")) {
    .top-img {
        background-image: url(../images/top-img.webp);
    }
}
.top-img:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,0) 0 calc(50cqw + 160px), rgba(255,255,255,.4) calc(50cqw + 320px) 100%);
    content: "";
    pointer-events: none;
}
.top-img-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}
.top-img-text{
    width: 1140px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.top-img-text__text{
    font-size: 2.4rem;
    font-weight: 500;
    line-height: calc(1em + 12px);
    color: var(--main-blue);
    margin-bottom: 30px;
    text-shadow:
    0 0 1px rgba(255, 255, 255, 1),
    0 0 2px rgba(255, 255, 255, 1),
    0 0 8px rgba(255, 255, 255, 0.8),
    0 0 8px rgba(255, 255, 255, 0.8);
}
.top-img-text__title{
    margin-bottom: 40px;
}
/* sp */
@media screen and (max-width:768px){
    .top-img{
        width: 100%;
        height: auto;
        max-height: inherit;
        aspect-ratio: 4 / 5;
        overflow: hidden;
        margin: 0 auto;
        background: url(../images/top-img@sp.jpg) no-repeat top;
        background-size: cover;
        position: relative;
        container-type: inherit;
    }
    /* WebPに対応していれば上書き */
    @supports (background-image: url("image.webp")) {
        .top-img {
            background-image: url(../images/top-img@sp.webp);
        }
    }
    .top-img:before{
        content: none;
    }
    .top-img-box{
        display: block;
        width: 92.5%;
        height: auto;
        aspect-ratio: 149 / 194;
    }
    .top-img-text{
        width: 77.5%;
        height: auto;
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .top-img-text__text{
        font-size: 1.4rem;
        font-weight: 500;
        line-height: calc(1em + 7px);
        color: var(--main-blue);
        margin-bottom: 15px;
        text-shadow:0 0 4px rgba(255, 255, 255, 1);
    }
    .top-img-text__title{
        width: 64.51%;
        margin-bottom:20px;
    }
    .top-img-text__info{
        width: 82.26%;
    }
}
/*top-sec1*/
.top-sec1{
    width: 100%;
    position: relative;
    padding: 80px 0 100px;
    box-sizing: border-box;
    position: relative;
}
.top-sec1:after{
    content: "";
    width: 67.362%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0 0 100px 0;
}
.top-sec1-wrapper{
    width: 1160px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-sec1-wrapper:after{
    content: none;
}
.top-sec1-box{
    width: 520px;
}
.top-sec1-box-title{
    font-family: var(--font-en);
    font-size: 2.0rem;
    font-weight: bold;
    color: var(--main-blue);
    margin-bottom: 50px;
    padding-left: 22px;
    position: relative;
}
.top-sec1-box-title:before{
    content: "";
    background: var(--main-red);
    width: 12px;
    height: 12px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
}
.top-sec1-box-text{
    color: var(--main-blue);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: calc(1em + 22px);
    margin-bottom: 40px;
}
/*top-sec1-modal-content*/
.sample-content{
    padding: 60px;
    box-sizing: border-box;
}
.modal-close-btn{
    background: var(--main-red)!important;
    border-radius: 50%!important;
    top: 20px!important;
    right: 20px!important;
}
.top-sec1-modal-content{
    max-width: 800px;
}
.top-sec1-modal-content p{
    color: var(--main-blue);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: calc(1em + 16px);
}
.top-sec1-modal-content p:not(:last-child){
    margin-bottom: 30px;
}
.top-sec1-modal-contenttitle{
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--main-blue);
}
.top-sec1-modal-content-box{
    display: flex;
    gap: 30px;
}
/* sp */
@media screen and (max-width:768px){
    .top-sec1 {
        width: 100%;
        position: relative;
        padding: 40px 0;
        margin-top: 30px;
    }
    .top-sec1-wrapper {
        width: var(--inner-width);
        padding: 0 5.1725%;
        box-sizing: border-box;
        margin: 0 auto;
        display: block;
    }
    .top-sec1-box{
        width: 100%;
    }
    .top-sec1-box-title {
        font-family: var(--font-en);
        font-size: 1.8rem;
        font-weight: bold;
        color: var(--main-blue);
        margin-bottom: 30px;
        padding-left: 22px;
        position: relative;
    }
    .top-sec1-box-text{
        color: var(--main-blue);
        font-size: 1.6rem;
        line-height: calc(1em + 14px);
        margin-bottom: 20px;
    }
    .top-sec1-img{
        margin-bottom: 20px;
    }
    .top-sec1:after {
        content: "";
        width: 95.3125%;
        height: 100%;
        background: #fff;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0 30px 30px 0;
    }
    .sample-content {
        padding: 30px 15px;
        box-sizing: border-box;
    }
    .modal-close-btn {
        top: -45px!important;
        right: 0!important;
    }
    .top-sec1-modal-contenttitle {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }
    .top-sec1-modal-content p:not(:last-child) {
        margin-bottom: 15px;
    }
    .top-sec1-modal-content p {
        font-size: 1.4rem;
        line-height: calc(1em + 12px);
    }
    .top-sec1-modal-content-box{
        display: block;
    }
    .top-sec1-modal-content-box picture{
        display: block;
        margin-bottom: 15px;
    }
}
/*-------------------
top-sec2
---------------------*/
.top-sec2{
    padding: 100px 0;
    box-sizing: border-box;
}
.top-sec2-list{
    counter-reset: item;
}
.top-sec2-list--item{
    padding: 60px 0 100px;
    border-radius: 40px 40px 0 0;
    background: #f7f7f3;
    counter-increment: item;
}
.top-sec2-list--item:not(:first-child){
    margin-top: -40px;
}
.top-sec2-list--item:nth-of-type(odd){
    background: #fff;
}
.top-sec2-list--item:last-of-type{
    padding-bottom: 60px;
}
.top-sec2-list--item-main{
    width: var(--inner-width);
    margin: 0 auto;
    display: flex;
    gap: 50px;
}
.top-sec2-list--item-main picture{
    width: 578px;
}
.top-sec2-list--item-main picture img{
    border: solid 1px #333333;
    border-radius: 12px;
    box-sizing: content-box;
}
.top-sec2-list--item-sub{
    width: var(--inner-width);
    margin: 20px auto 0;
}
.top-sec2-list--item-box-title{
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 26px;
    line-height: calc(1em + 10px);
}
.top-sec2-list--item-box-title::before {
    content: "0" counter(item);
    font-size: 2.0rem;
    font-weight: normal;
    display: block;
    margin-bottom: 4px;
  }
.top-sec2-list--item-box-text{
    color: var(--font-color);
    font-size: 1.6rem;
    line-height: calc(1em + 12px);
}
.top-sec2-list--item-box-btn{
    width: 280px;
    height: 50px;
    margin-top: 20px;
}
.top-sec2-list--item-box-btn .btn1-link{
    font-family: var(--font-sans-serif);
}
.top-sec2-list--item-sub{
    background: #ECEBE7;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 8px;
}
.top-sec2-list--item:nth-of-type(odd) .top-sec2-list--item-sub{
    background: #f4f3f1;
}
.top-sec2-list--item-sub dt{
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 12px;
}
.top-sec2-list--item-sub dd p{
    color: var(--font-color);
    font-size: 1.6rem;
    line-height: calc(1em + 12px);
}
.top-sec2-list--item-sub dd p:not(:last-child){
    margin-bottom: 8px;
}
.top-sec2-list--item-sub-link a{
    color: var(--main-red);
    padding-left: 22px;
    text-decoration: underline;
    font-size: 1.4rem;
    position: relative;
}
.top-sec2-list--item-sub-link a:before{
    content: "";
    background: url(../images/icon_link2.svg) no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 3px;
    left: 0;
}
.btn-center{
    width: 800px;
    height: 80px;
    margin: 0 auto;
}
.btn-center .btn1-link{
    font-size: 2.0rem;
    font-weight: bold;
    justify-content: center;
    border-radius: 40px;
}
/* tb */
@media screen and (max-width:1200px){
    .top-sec2-list--item-main{
        width: 1160px;
    }
    .top-sec2-list--item-sub{
        width: 1160px;
    }
}
/* sp */
@media screen and (max-width:768px){
    .top-sec2 {
        padding: 50px 0;
        box-sizing: border-box;
    }
    .top-sec2-list--item {
        padding: 30px 0 60px;
        border-radius: 20px 20px 0 0;
    }
    .top-sec2-list--item:not(:first-child) {
        margin-top: -30px;
    }
    .top-sec2-list--item:last-of-type{
        padding-bottom: 30px;
    }
    .top-sec2-list--item-box-btn {
        width: 100%;
        height: 50px;
        margin-top: 20px;
    }
    .top-sec2-list--item-main {
        width: var(--inner-width);
        margin: 0 auto;
        display: block;
    }
    .top-sec2-list--item-sub{
        width: var(--inner-width);
    }
    .top-sec2-list--item-main picture{
        width: 100%;
        margin-bottom: 20px;
    }
    .top-sec2-list--item-main picture img {
        border-radius: 10px;
        box-sizing: border-box;
    }
    .btn-center {
        width: var(--inner-width);
        height: 50px;
        margin: 0 auto;
    }
    .btn-center .btn1-link {
        font-size: 1.4rem;
        font-weight: bold;
        justify-content: center;
        border-radius: 25px;
    }
    .top-sec2-list--item-box-title {
        font-size: 2.0rem;
        font-weight: bold;
        margin-bottom: 15px;
        line-height: calc(1em + 10px);
    }
    .top-sec2-list--item-box-title::before {
        font-size: 1.6rem;
    }
    .top-sec2-list--item-box-text {
        font-size: 1.4rem;
        line-height: calc(1em + 11px);
    }
    .top-sec2-list--item-sub {
        background: #ECEBE7;
        padding: 20px 15px;
        box-sizing: border-box;
        border-radius: 10px;
    }
    .top-sec2-list--item-sub dt {
        font-size: 1.6rem;
        font-weight: bold;
        margin-bottom: 12px;
    }
    .top-sec2-list--item-sub dd p {
        font-size: 1.4rem;
        line-height: calc(1em + 11px);
    }
}
/*-------------------
top-sec3
---------------------*/
.top-sec3{
    width: var(--inner-width);
    margin: 0 auto;
    padding: 0 0 100px;
    box-sizing: border-box;
}
.top-sec3-main{
    display: flex;
    gap: 20px;
}
.top-sec3-main-slid{
    width: 720px;
}
.keen-slider--navigation-track{
    border-radius: 12px;
    border: solid 1px var(--main-black);
    overflow: hidden;
}
.top-sec3 .main-title1{
    margin-bottom: 30px;
}
.top-sec3-main-info{
    border-top: solid 1px #d9d7cf;
}
.top-sec3-main-info-item{
    padding: 15px 10px;
    box-sizing: border-box;
    border-bottom: solid 1px #d9d7cf;
}
.top-sec3-main-info-item__title{
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 5px;
}
.top-sec3-main-info-item__text{
    color: var(--font-color);
    font-size: 1.6rem;
    line-height: calc(1em + 8px);
}
.top-sec3-main-info-item__text a{
    text-decoration: underline;
}
@media screen and (max-width:1200px){
    .top-sec3{
        width: 1160px;
    }
}
@media screen and (max-width:768px){
    .top-sec3{
        width: var(--inner-width);
        padding-bottom: 50px;
    }
    .top-sec3-main{
        display: block;
    }
    .top-sec3 .main-title1{
        margin-bottom: 24px;
    }
    .top-sec3-main-slid{
        width: 100%;
        margin-bottom: 20px;
    }
    .top-sec3-main-info-item{
        padding: 10px 5px;
    }
    .top-sec3-main-info-item__title{
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 5px;
    }
    .top-sec3-main-info-item__title{
        font-size: 1.4rem;
    }
    .top-sec3-main-info-item__text{
        font-size: 1.4rem;
    }
}
/*-------------------
top-sec4
---------------------*/
.top-sec4{
    background: #fff;
    margin: 0 auto;
    padding: 90px 0;
    box-sizing: border-box;
}
.top-sec4-wrapper{
    width: 1000px;
    margin: 0 auto;
}
.top-sec4 .main-title1{
    margin-bottom: 30px;
}
.top-sec4-main{
    display: flex;
    justify-content: flex-start;
    column-gap: 40px;
    flex-flow: row wrap;
}
.top-sec4-main-item{
    width: 480px;
    padding: 15px 10px;
    box-sizing: border-box;
    border-bottom: solid 1px #d9d7cf;
}
.top-sec4-main-item:nth-last-child(-n+2){
    border-bottom: none;
}
.top-sec4-main-item__title{
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 5px;
}
.top-sec4-main-item__text{
    color: var(--font-color);
    font-size: 1.6rem;
    line-height: calc(1em + 8px);
}
.top-sec4-main-item__text a{
    text-decoration: underline;
}
@media screen and (max-width:768px){
    .top-sec4{
        padding: 40px 0;
    }
    .top-sec4-wrapper{
        width: var(--inner-width);
    }
    .top-sec4-main{
        display: block;
    }
    .top-sec4 .main-title1{
        margin-bottom: 24px;
    }
    .top-sec4-main-item{
        width: 100%;
        padding: 10px 5px;
    }
    .top-sec4-main-item__title{
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 5px;
    }
    .top-sec4-main-item__title{
        font-size: 1.4rem;
    }
    .top-sec4-main-item__text{
        font-size: 1.4rem;
    }
    .top-sec4-main-item:nth-last-child(-n+2){
        border-bottom: solid 1px #d9d7cf;
    }
    .top-sec4-main-item:last-child{
        border-bottom: none;
    }
}
/*-------------
contact
-------------*/
.contact-wrapper{
    background: var(--main-lightgray);
    padding: 0 0 120px;
}
.contact-main{
    width: 1000px;
    margin: 0 auto;
    background: #fff;
    box-shadow : 0px 4px 4px rgba(0, 0, 0, 0.2);
    padding: 60px 100px;
    box-sizing: border-box;
    border-radius: 20px;
}
.contact-main--text{
    color: var(--font-color);
    margin-bottom: 20px;
    line-height: calc(1em + 10px);
    padding-bottom: 30px;
    border-bottom: solid 1px #ebebeb;
}
.contact-table{
    width: 680px;
    margin: 0 auto 30px;
}
.contact-table tr th {
    color: var(--main-blue);
    font-size: 1.4rem;
    width: 170px;
    padding: 20px 0;
    box-sizing: border-box;
    position: relative;
}
.contact-table tr th.required:after {
    content: "必須";
    align-items: center;
    background: #cc1414;
    border-radius: 3px;
    color: #fff;
    display: flex;
    font-size: 1.2rem;
    font-weight: 700;
    height: 20px;
    justify-content: center;
    line-height: 1;
    margin-left: auto;
    padding-bottom: 2px;
    width: 36px;
    position: absolute;
    top: 20px;
    right: 10px;
}
.contact-table tr th:before {
    content: "";
    background: #fff;
    width: 10px;
    height: 1px;
    position: absolute;
    top: -1px;
    right: 0;
}
.contact-table tr td {
    color: var(--font-color);
    padding: 10px 0;
    box-sizing: border-box;
    line-height: calc(1em + 10px);
}
.contact-table.confirm tr td{
    padding: 15px 10px;
}
.contact-table .inquery-radio-flex {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}
.contact-table .inquery-radio-flex li {
    flex: 0 1 200px;
}
.contact-table input[type=text],
.contact-table input[type=tel],
.contact-table input[type=email]{
    background: #f7f7f5;
    border-radius: 5px;
    height: 42px;
    padding: 5px 10px;
    border: solid 1px #e1dfd9;
    box-sizing: border-box;
    width: 100%;
}
.contact-table input.wid{
    width: 300px;
}
.contact-table input.wid200{
    width: 200px;
}
.contact-table textarea{
    background: #f7f7f5;
    border-radius: 5px;
    width: 100%;
    height: 125px;
    padding: 5px 10px;
    border: solid 1px #e1dfd9;
    box-sizing: border-box;
}
.contact-table input[type=radio] {
    display: none;
}
.contact-table input[type=radio] + label.radio-btn {
    background: #f2f2f2;
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px 10px 40px;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 1.5rem;
    line-height: calc(1em + 10px);
    cursor: pointer;
    flex-flow: row wrap;
    position: relative;
    border-radius: 5px;
}
.contact-table input[type=radio]:checked + label.radio-btn {
    background: var(--main-color-bg--light);
}
.contact-table input[type=radio] + label.radio-btn .alt_radio {
    display: block;
    font-weight: bold;
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border: solid 1px #E6E6E6;
    border-radius: 50%;
    box-sizing: border-box;
    background: #fff;
    position: absolute;
    top: 0;
    left: 12px;
    bottom: 0;
    margin: auto;
}
.contact-table input[type=radio]:checked + label.radio-btn .alt_radio:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: var(--main-color);
    content: "";
}
.contact-table .address{
    margin-top: 10px;
}
.contact-main__btn {
    width: 300px;
    height: 60px;
    margin: 0 auto;
}
.contact-main__btn a {
    background: var(--main-blue);
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 30px;
}
.contact-main__btn a::after {
    position: absolute;
    top: calc(50% - 4px);
    right: 30px;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
}
.contact-main__backbtn {
    position: absolute;
    width: 180px;
    height: 40px;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}
.contact-main__btn-list{
    position: relative;
}
.contact-main__backbtn  a {
    width: 100%;
    height: 100%;
    font-size: 1.4rem;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-blue);
    border: solid 1px var(--main-blue);
    position: relative;
}
.contact-main__backbtn  a:before {
    border-right: 1px solid var(--main-blue);
    border-top: 1px solid var(--main-blue);
    content: "";
    height: 5px;
    left: 15px;
    margin: auto;
    position: absolute;
    top: 2px;
    bottom: 0;
    transform: rotate(-135deg);
    width: 5px;
}
.complete-text{
    text-align: center;
    line-height: calc(1em + 10px);
    margin-bottom: 30px;
}
.errNull{
    text-align: center;
}
.errNull-ttl{
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 15px;
}
.errNull-ttl::before{
    content: '！';
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 30px;
    text-align: center;
    color: #FFF;
    display: inline-block;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    margin-right: 5px;
    border-radius: 15px;
    background: #ed1c24;
}
.errNull-txt{
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.7;
}
.txtRed{
    color: #ed1c24;
}
/* sp */
@media screen and (max-width:768px){
    .contact-wrapper{
        padding: 0 0 80px;
    }
    .contact-main{
        width: var(--inner-width--sp);
        box-shadow : 0px 9px 9px rgba(0, 0, 0, 0.1);
        padding: 25px 4.597%;
        border-radius: 7px;
    }
    .contact-main--text{
        margin-bottom: 0;
        padding-bottom: 15px;
    }
    .contact-table{
        width: 100%;
        margin-bottom: 10px;
    }
    .contact-table tr th {
        width: 100%;
        border-bottom: none;
        padding: 20px 0 5px;
        display: block;
    }
    .contact-table tr th.required:after {
        content: "必須";
        align-items: center;
        background: #cc1414;
        color: #fff;
        display: inline-block;
        height: auto;
        width: 36px;
        padding: 3px 5px;
        margin-left: 5px;
        position: static;
    }
    .contact-table tr th:before {
        content: none;
    }
    .contact-table tr td {
        padding: 5px 0 5px;
        display: block;
    }
    .contact-table.confirm tr td{
        padding: 5px 0 5px;
    }
    .contact-table .inquery-radio-flex {
        display: block;
    }
    .contact-table .inquery-radio-flex li:not(:last-child){
        margin-bottom: 10px;
    }
    .contact-table input.wid{
        width: 100%;
    }
    .contact-table textarea{
        height: 145px;
    }
    .contact-table input[type=radio] + label.radio-btn {
        font-size: 1.4rem;
        padding: 10px 12px 10px 32px;
    }
    .contact-table input[type=radio] + label.radio-btn .alt_radio {
        width: 16px;
        height: 16px;
        left: 12px;
    }
    .contact-table input[type=radio]:checked + label.radio-btn .alt_radio:after {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
    }
    .contact-main__backbtn {
        position: static;
        width: 80%;
        height: 40px;
        top: 0;
        left: 0;
        bottom: 0;
        margin: 15px auto auto;
    }
}
/*-------------
privacy
-------------*/
.privacy-wrapper{
    background: var(--main-lightgray);
    padding: 0 0 120px;
}
.privacy-main{
    width: 1000px;
    margin: 0 auto;
    background: #fff;
    box-shadow : 0px 4px 4px rgba(0, 0, 0, 0.2);
    padding: 30px;
    box-sizing: border-box;
    border-radius: 30px;
}
.privacy-main a{
    color: var(--main-red);
    text-decoration: underline;
}
.privacy-main p{
    color: var(--font-color);
    line-height: calc(1em + 12px);
}
.privacy-main-text{
    margin-bottom: 40px;
}
.privacy-sec:not(:last-child){
    margin-bottom: 40px;
}
.privacy-main-title1{
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.privacy-list{
    margin-top: 15px;
    line-height: calc(1em + 15px);
}
/* sp */
@media screen and (max-width:768px){
    .privacy-wrapper{
        padding: 0 0 80px;
    }
    .privacy-main{
        width: var(--inner-width--sp);
        box-shadow : 0px 9px 9px rgba(0, 0, 0, 0.1);
        padding: 25px 4.597%;
        border-radius: 7px;
    }
    .privacy-main p{
        line-height: calc(1em + 11px);
    }
    .privacy-main-text{
        margin-bottom: 30px;
    }
    .privacy-sec:not(:last-child){
        margin-bottom: 30px;
    }
    .privacy-main-title1{
        font-size: 1.6rem;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .privacy-list{
        margin-top: 15px;
    }
}
