@charset "utf-8";

:root{
    --color_main:#714990;
    --color_pale:#f5e9ff;
    --color_dark:#4c535b;
    --color_gray:#949494;
    --color_light:#e5e7e9;
    /* --color_light_pale:#e4fafe; */
    /* --color_gray_pale:#fafafa; */
    --color_gray_pale:#f0f0f0;
    /* --color_text:#445EF2; */
    --color_gradient:linear-gradient(60deg, #461e50, #461e50 25%, #714990 103.47%);
    --color_gradient_2:linear-gradient(60deg, #57c1ff, #b092ff 25%, #ff8ded 103.47%);
    --size_gap: 32px;
    --size_gap_half:16px;
    --size_gap_section:128px;
    --size_radius: 10px;
    --size_radius_big: 40px;
    --size_radius_half: 5px;
}

.break{
    display: inline-block;
}
.wfc{
    width: fit-content;
}
.m0auto{
    margin: 0 auto;
}
.mt10{
    margin-top: 10px;
}
.mt20{
    margin-top: 20px;
}
.mb20{
    margin-bottom: 20px;
}
.mt-10{
    margin-top: -10px;
}
.pl0{
    padding-left: 0!important;
}
.text_gradient{
    -webkit-text-fill-color: #0000;
    -webkit-font-feature-settings: "palt" on;
    background: var(--color_gradient);
    -webkit-background-clip: text;
    background-clip: text;

}
.wsn{
    white-space: nowrap;
}


body{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    /* font-family: 'Zen Kaku Gothic New', sans-serif; */
    /* display: grid; */
    /* grid-template: "header" auto,
    "contents" 1fr,"footer" auto/100%; */
    /* min-height: 100vh; */
    overflow-x: hidden;
    overflow-y: hidden;
    color: var(--color_dark);
    height: 100%;
}
@media print {
    body{
        overflow-y: visible;
        overflow-x: visible;
    }
    .main{
        overflow-y: visible;
        overflow-x: visible;
	}

}
.root{
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--color_light);
    position: relative;
}

.global_layout__img{
    text-align: center;
    margin: var(--size_gap_half) 0 var(--size_gap_section);
}
.global_layout__img img{
    width: 1000px;
}
@media screen and (min-width: 1024px) {
    .global_layout__img img{
        width: 80vw;
    }
}
@media screen and (max-width: 820px) {
    .global_layout__img img{
        width: 80vw;
    }
}
@media screen and (max-width: 768px) {
    .global_layout__img img{
        width: 80vw;
    }
}

.global_layout__header{
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    position: fixed;
    /* top: 2rem; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    width: 100vw;
    max-width: 100%;
    /* border-radius: 0.6rem; */
    z-index: 9999;
    border: solid 1px #efefef;
}
.global_layout__header.hidden{
    transform: translateY(-120px);
    transition: all 0.2s;
}

.nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--size_gap_half) var(--size_gap);
}

.nav__left{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__left_logo{
    width: 120px;
}


.nav__right{
    display: flex;
    gap: var(--size_gap_half);
}

.nav_menu__pc{
    width: 100%;
    padding: calc(var(--size_gap_half) /2) 0;
}
.nav_menu__pc ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav_menu__pc ul li{
    padding: 0 var(--size_gap_half);
}
.nav_menu__pc ul li a{
    color: #000;
    font-size: 0.9rem;
    font-weight: 500;
}
.nav_menu__pc ul li a:hover{
    color: var(--color_main);
}

@media screen and (min-width: 1024px) {
    /* .nav_menu_sp{
        display: none;
} */
}
@media screen and (max-width: 820px) {
    /* .nav_menu__pc{
        display: none;
    } */
}
@media screen and (max-width: 768px) {
    /* .nav_menu__pc{
        display: none;
    } */
    .nav__left_logo.im{
    display: none;
}

}

.nav_menu_sp{
    margin-left: 10px;
}
.hamburger{
    width: 40px;
    height: 25px;
    position: relative;
    top: -3px;
}
.hamburger span{
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #000;
    transition: .2s;
}
.hamburger span:first-of-type{/* ハンバーガーメニューの1番目の線 */
    top: 0;
}
.hamburger span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
    top: 50%;
}
.hamburger span:last-of-type{/* ハンバーガーメニューの3番目の線 */
    top: 100%;
}
.hamburger.active span:first-of-type{/* ハンバーガーメニューの1番目の線 */
    top: 50%;
    transform: rotate(45deg);
}
.hamburger.active span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
    opacity: 0;/* 透明にする */
}
.hamburger.active span:last-of-type{/* ハンバーガーメニューの3番目の線 */
    top: 50%;
    transform: rotate(-45deg);
}

.slidemenu{
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 64px;
    width: 100%;
    left: 0;
    transform:  scaleY(0);
    transition: .2s;
    transform-origin:top;
    border-radius: 0.6rem;
    border: solid 1px #efefef;
}
.slidemenu.active{
    transform:  scaleY(100%);
}
.slidemenu li{
    color: #000;
    line-height: 400%;
    text-align: left;
    padding-left: var(--size_gap_half);
}
.slidemenu.hidden{
    transform: translateX(100%);
}




/* .contents{
    display: grid;
    gap: var(--size_gap_section);
    place-items: center;
    width: 100%;
    position: relative;
} */

@media screen and (max-width: 1024px) {
/* .contents{
    gap: 0;
} */
}



/* contact */
.contact{
    padding: var(--size_gap_section) 0;
    width: 100%;
    background: var(--color_gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--size_gap);
}
.contact_list{
    padding: var(--size_gap_section);
    background-color: #fff;
    border-radius: 50px;
    width: 80vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.contact_item{

}
.contact__cap{
    font-size: 1.2rem;
    color: var(--color_main);
    /* padding-bottom: var(--size_gap); */
    letter-spacing: 0.09em;
}
.contact__text{
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.08em;
    padding: var(--size_gap) 0;
    font-size: 1.5rem;
}
.contact__div{
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.08em;
    padding-bottom: var(--size_gap);
    font-size: 1.4rem;
}
.contact__tel{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 500;
    padding-bottom: var(--size_gap);
}
.contact__tel > img{
    width: 35px;
    height: auto;
    margin-right: 10px;
}
.contact_item_inquiry{
    display: flex;
    gap: var(--size_gap);
}
@media screen and (max-width: 1024px) {
    .contact_list{
        flex-direction: column;
        padding: 80px var(--size_gap);
    }
    .contact_img img{
        max-width: 90vw;
    }
    .contact_title_catch{
        font-size: 1.6rem;
        text-align: center;
    }
    .contact_title img{
        max-width: 90vw;
    }
    .contact_title_btn{
        flex-direction: column;
        align-items: center;
    }
    .contact_item_inquiry{
        flex-direction: column;
        align-items: center;
    }
}

/* footer */
.footer__logo{
    padding: var(--size_gap_half);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__logo a{
    display: block;
    width: fit-content;
}
.footer__logo img.logo_a{
    width: 120px;
}
.footer__logo img.logo_b{
    width: 400px;
}
.footer__link{
    background-color: #333;
    padding: var(--size_gap_half) var(--size_gap);
    color: #fff;
}
.footer__link_wrap{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.footer__link_list{
    display: flex;
    gap: var(--size_gap_half);
    font-size: 0.7rem;
}
.footer__link_copy{
    font-size: 0.7rem;
}

@media screen and (max-width: 1024px) {
    .footer__link_wrap{
        flex-direction: column;
        align-items: center;
    }
    .footer__link_list{
        align-items: center;
        gap: 10px;
        margin-bottom: var(--size_gap_half);
        flex-direction: column;
    }
    .footer__link_copy{
        text-align: center;
    }
}




h2{
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 0.05rem;
    /* line-height: 3; */
    width: 80vw;
    max-width: 1200px;
    position: relative;
    }
/* h2::before{
    content: "";
    width: 2rem;
    height: 2rem;
    background: var(--color_main);
    position: absolute;
    top: 0rem;
    left: -4rem;
}
h2::after{
    content: "";
    width: 1rem;
    height: 1rem;
    background: var(--color_main);
    position: absolute;
    top: 2rem;
    left: -2rem;
} */

h3{
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.05rem;
    /* width: 80vw; */
    }

h4{
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    color: var(--color_main);
}


@media screen and (max-width: 1024px) {
    h2{
        font-size: 1.6rem;
        line-height: 1.5;
    }
}
@media screen and (max-width: 768px) {
    h2{
        font-size: 2rem;
        line-height: 1.5;
    }
}



/* layout_btn */
.layout__btn{
    background: #fff;
    background: var(--color_main);
    border: solid 2px var(--color_main);
    position: relative;
    width: fit-content;
    max-width: 500px;
    max-height: 96px;
    padding: 0 24px;
    border-radius: 6px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--size_gap_half);
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    white-space: nowrap;
}
.layout__btn:hover {
    transition: 0.3s;
    cursor: pointer;
    background: none;
    background: #fff;
    border: solid 2px var(--color_main);
    color:var(--color_main) ;
    font-weight: 800;
}
.btn_header{
    height: 42px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.08rem;
}
.btn_main_visual{
    height: 64px;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.08rem;
}
@media screen and (max-width: 1024px) {
    .nav{
        padding: var(--size_gap_half);
    }
    .nav__left_logo{
        width: 100px;
    }
    .nav__left{
        gap: 10px;
    }
    .nav__right{
        gap: 4px;
    }
    .btn_header{
        padding: 0 6px;
        font-size: 0.8rem;
    }
}
@media screen and (max-width: 820px) {
    .btn_header.dl{
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .btn_header.dl{
        display: none;
    }
}




/*ページトップボタン*/
.pageTopButton{
    position: fixed;
    right: 40px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background-color: #aaa;
    border-radius: 30px;
    transition: all 0.2s;
}
.pageTopButton:hover{
    background-color: #666;
}
.pageTopButton > a{
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
}
.pageTopButton > a::before{
    content:' ';
    width: 15px;
    height: 15px;
    transform: rotate(-45deg);
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
    position: absolute;
    left: 22px;
    top: 25px;
}

.pageTopButtonDisp{
    opacity: 0.7;
    transition: all 0.2s;
    z-index: 2147483647;
}
.pageTopButtonNotDisp{
    opacity: 0;
    transition: all 0.2s;
    /* z-index: -999; */
}

.tac{
    text-align: center;
}

.color_main{
    color: var(--color_main);
}
.heading{
    /* margin: 0 auto; */
    padding-bottom: 50px;
    /* max-width: 1000px; */
}
.heading__read{
    font-size: 1rem;
    padding-top: 1.5em;
    letter-spacing: 1px;
    line-height: 1.5;
}
.heading__read_sub{
    font-size: 1rem;
    padding-top: 1.5em;
    letter-spacing: 1px;
    line-height: 1.5;
}
.contents{
    /* margin: 0 auto; */
    padding-bottom: 80px;
    /* max-width: 1000px; */
}
.contents__read{
    font-size: .9rem;
    padding-top: 1.5em;
    letter-spacing: 1px;
    line-height: 1.5;
}
.contents__read_sub{
    font-size: 0.95rem;
    padding-top: 1.5em;
    letter-spacing: 1px;
    line-height: 1.5;
}

.imgA{
    width: 1000px;
    margin: 0 auto;
    border-radius: var(--size_radius);
    display: flex;
}
.imgB{
    width: 700px;
    /* margin: 0 auto; */
    border-radius: var(--size_radius);
    display: flex;
}
.imgC{
    width: 1000px;
    /* margin: 0 auto; */
    border-radius: var(--size_radius);
    display: flex;
}
.imgD{
    width: 850px;
    /* margin: 0 auto; */
    border-radius: var(--size_radius);
    display: flex;
}
.imgE{
    width: 700px;
    margin: 0 auto;
    border-radius: var(--size_radius);
    display: flex;
}

@media screen and (max-width: 1024px) {
.imgA{
    width: 100%;
}
.imgB{
    width: 100%;
}
.imgC{
    width: 100%;
}
.imgD{
    width: 100%;
}
}


.listA{}

.listA > li{
    position: relative;
    font-size: 1rem;
    padding: 10px;
    padding-left: 20px;
}

.listA > li::before{
    content: "";
    width: 10px;
    height: 10px;
    background: var(--color_main);
    border-radius: 1rem;
    position: absolute;
    top: 15px;
    left: 0px;
}

.listB{}

.listB > li{
    position: relative;
    font-size: 1.2rem;
    padding: 1rem;
    background-color: #fff;
    margin-bottom: 10px;
}

.listB > li::after{
    content: "";
    width: 100%;
    height: 4px;
    background: var(--color_gradient);
    /* border-radius: 1rem; */
    position: absolute;
    top: 54px;
    left: 0px;
}

@media screen and (max-width: 1024px) {
    .listB > li{
        white-space: nowrap;
        font-size: 1rem;
    }
}




.tableA{
    border:solid 2px var(--color_dark);
    width: 80vw;
    max-width: 1200px;
}
.tableA > tbody > tr:nth-child(2n){
}
.tableA > tbody > tr{
    /* border-bottom: solid 2px var(--color_dark); */
}

.tableA > tbody > tr > th{
    border: solid 2px var(--color_dark);
    background-color: var(--color_pale);
    font-size: 1.1rem;
    font-weight: 700;
    text-align:center;
    padding: .6rem;
}

.tableA > tbody > tr > td{
    border: solid 2px var(--color_dark);
    background-color: var(--color_gray_pale);
    font-size: .9rem;
    text-align:center;
    padding: .6rem;
    vertical-align: middle;
}
.tableA > tbody > tr > td.strng{
    font-weight: 700;
    font-size: 1.1rem;
}
.table_caption_low{
    margin-top: .6rem;
    text-align: left;
    width: 80vw;
    max-width: 1200px;
}

@media screen and (max-width: 1024px) {
    .table_wrap{
        width: 100%;
        overflow-x: auto;
    }
}

