@charset "utf-8";

body {
    font-family: "Noto Sans JP", sans-serif;
    sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #1A1311;
    line-height: 2;
    letter-spacing: 0.03em;
    font-feature-settings: "palt";
}

@media (max-width: 599px) {
    body {
        padding: 0 0 10em;
    }
}

p,
li,
a {
    font-size: clamp(0.875rem, 0.851rem + 0.12vw, 1rem)
        /*14-16*/
    ;
    color: #1A1311;
    font-weight: 400;
    letter-spacing: .1em;
}

p {
    font-weight: 400;
    letter-spacing: .1em;
}

.noto-sans-jp-<uniquifier> {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

.f_noto {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.kiwi-maru-light {
    font-family: "Kiwi Maru", serif;
    font-weight: 300;
    font-style: normal;
}

.font_kiwi {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
}

.kiwi-maru-medium {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
}

.content {
    margin: 50px 0 0;
}

.wrap_900 {
    max-width: 900px;
    margin: 0 auto;
}

/*600px以上*/
@media (min-width: 600px) {
    .content {
        margin: 60px 0 0;
    }
}

/*900px以上*/
@media (min-width: 900px) {
    .content {
        margin: 80px 0 0;
    }
}


img {
    vertical-align: top;
    display: inline;
}

@font-face {
    font-family: "FAsolid";
    src: url("./fa-solid-900.woff") format("woff");
}

@font-face {
    font-family: "FAregular";
    src: url("./fa-regular-400.woff") format("woff");
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.dbl {
    display: block;
}

.dib {
    display: inline-block;
}

.din {
    display: inline;
}

.dtb {
    display: table;
}

.right,
.right p {
    text-align: right;
}

.center,
.center p {
    text-align: center;
}

.under {
    text-decoration: underline;
}

.bold {
    font-weight: bold;
}

.small {
    font-size: 90%;
}

.small2 {
    font-size: 80%;
}

a[target="_blank"]::after {
    /* font-family: "FAsolid";
    font-weight: 900;
    content: "\f35d";
    display: inline-block;
    margin: 0 0 0 3px;
    color: #fff;
    font-size: 11px;*/
}

a.blank[target="_blank"]::after {
    font-family: "FAsolid";
    font-weight: 900;
    content: "\f35d";
    display: inline-block;
    margin: 0 0 0 3px;
}

a.pdf, a.excel {
    position: relative;
    padding-right: 1.3em;
}

a.pdf[target="_blank"]::after, a.excel[target="_blank"]::after{
    font-family: "FAsolid";
    font-weight: 900;
    content: "\f1c1";
    color: #c00;
    position: absolute;
    right: 0;
}

a.pdf[target="_blank"]::after{content: "\f1c1";}
a.excel[target="_blank"]::after{content: "\f1c3";color: #00B23B;}

a.no_icon[target="_blank"]::after, .btn_03 a.no_icon[target="_blank"]::after {
    display: none;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.img_left {
    display: block;
    float: left;
    margin: 0 30px 30px 0;
}

.img_right {
    display: inline-block;
    float: right;
    margin: 0 0 30px 30px;
}

.img_top {
    margin-bottom: 30px;
}

.clear {
    clear: both;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.flex {
    display: flex;
    flex-flow: row wrap;
}

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

.flex_center {
    justify-content: center;
}

.flex_around {
    justify-content: space-around;
}

.flex_a_center {
    align-items: center;
}

.indent {
    padding-left: 1em;
    text-indent: -1em;
}

.lineclamp2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.lineclamp3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/*基本スタイル
==================================================================================================================*/
/*基本文字サイズ&文字色*/
html {
    font-size: 16px;
}


/*下部に余白*/
.cap01 {
    font-size: 85%;
    display: block;
    line-height: 1.2;
}

/*リンク文字色*/
a {
    text-decoration: none;
    color: #111;
}

a:hover {
    opacity: 0.8;
}



/*off*/

/*テーブル*/
table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 1rem 0;
    width: 100%;
}

caption {
    text-align: left;
    font-weight: bold;
    color: #993300;
}

th,
td {
    border: #ccc 1px solid;
    padding: 10px 20px;
    font-size: 1rem;
    vertical-align: top;
}

thead th,
tfoot th {
    background-color: #fff;
    color: #111;
}

thead td,
tfoot td {
    background-color: #fff;
    color: #111;
}

tbody th {
    background-color: #EFEBFF;
    padding: 0.5em;
    color: #111;
}

tbody td {
    background-color: #fff;
}



/*レイアウト共通*/
#container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.inner {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
}

.inner_section {
    padding: clamp( .5rem, 3vw, 2rem ) 5%;
}

.contents_btm01 {
    margin-bottom: 100px;
}

.contents_btm02 {
    margin-bottom: 80px;
}

.contents_btm03 {
    margin-bottom: 60px;
}

.contents_btm04 {
    margin-bottom: 40px;
}

.contents_btm05 {
    margin-bottom: 20px;
}

.contents_btm0 {
    margin-bottom: 0;
}

.p0 {
    padding: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.content section {
    position: relative;
    width: 100%
}

section .padd_hight {
    padding: 2rem 0;
}

/*グローバルナビゲーション
==================================================================================================================*/
/*ヘッダー*/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    z-index: 999;
    padding: 0;
    background-color: #fff;
}

.header_logo {
    width: 60%;
    height: 100%;
    margin: 0 0 0 10px;
    padding: 5px;
    display: flex;
    justify-content: left;
    align-items: center;
}

.header_logo h1 { height: 100%;}

.header_logo h1 a {
    display: block;
    height: 100%;
}

.header_logo h1 img { height: 100%;}

/*600px以上*/
@media (min-width: 600px) {
    .header_logo {
        width: 33%;
    }
}


.copy {
    font-size: clamp( 8px, 1.5vw, 12px );
    color: #fff;
    text-align: center;
    padding: 1em 0 0;
    padding: 6px 0;
    background-color: #A799DB;

}

/*グローバルメニュー*/
#gnav_wrap {
    justify-content: space-between;
    width: 100%;
    height: 100vh;
}



#gnav_wrap {
    display: block;
    transition: .0s ease-in-out;
    float: none;
    margin: 50px 0 0;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    right: -100vw;
    z-index: 1000;
    overflow: auto;
    background-color: #F7F5FF;
}

/*600px以上*/
@media (min-width: 600px) {
    #gnav_wrap {
        margin: 60px 0 0;
    }
}

/*900px以上*/
@media (min-width: 900px) {}




.menu-is-open #gnav_wrap {
    position: fixed;
    z-index: 8888;
    right: 0;
}

.nav_box {}


.hamMenu {
    display: block;
    width: 47px;
    height: 47px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2000;
    text-indent: -9999px;
    margin: 0;
    background-color: #342667;
    top: 0;
    right: 0;

}


.hamMenu span {
    display: block;
    position: absolute;
    width: 30px;
    height: 20px;
    background: #fff;
    border-top: 9px solid #342667;
    border-bottom: 9px solid #342667;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamMenu span:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #fff;
    top: -9px;
    right: 0;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.hamMenu span:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #fff;
    bottom: -9px;
    right: 0;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.menu-is-open .hamMenu span {
    background: #1110;
}

.menu-is-open .hamMenu span:before {
    transform: rotate(-135deg);
    top: 0;
    right: 0;
}

.menu-is-open .hamMenu span {
    background: none;
    border-top: 9px solid #1110;
    border-bottom: 9px solid #1110;
}

.menu-is-open .hamMenu span:after {
    transform: rotate(135deg);
    bottom: 0;
    right: 0;
    width: 30px;
}

.nav_menu li {
    position: relative;
}

.nav_menu li a {
    transition-duration: .3s;

}


.nav_menu {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 3vh 0;
    align-items: first baseline;
    width: 100%;
    padding: 1em;
    margin: 0.3rem 7px 0 0;
}

.nav_menu li a {
    display: block;
    overflow: hidden;
    margin: 0 1px 0 0;
    color: #452CA1;
    width: 100%;
    text-align: left;
    font-size: 15px;
}


.nav_menu li {
    width: 100%;
    padding: 0.5em 0;
}

.nav_menu li a {}

.nav_02 {
    padding: 0 0.5em;
}

.nav_02 li {
    border-bottom: solid 1px #452CA1;
}

.nav_02 li a {
    position: relative;
    padding: .2em;
}

.nav_02 li a:after, .nav_02 li a.pdf[target="_blank"]::after {
    position: absolute;
    content: '';
    top: calc( 50% - .5em );
    right: 0;
    display: block;
    width: 1em;
    height: 1em;
    background-image: url(../images/common/icon_nav_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.nav_04 li a.pdf[target="_blank"]::after { display:none;}

.nav_02 li a.pdf[target="_blank"] > span, .nav_04 li a.pdf[target="_blank"] > span {
    position: relative;
    padding-right: 1.2em;
}

.nav_02 li a.pdf[target="_blank"] > span::after, .nav_04 li a.pdf[target="_blank"] > span::after {
    font-family: "FAsolid";
    font-weight: 900;
    content: "\f1c1";
    color: #c00;
    position: absolute;
    right: 0;
    background: none;
}


.menu-is-open .header .overlay {
    display: block;
}

/*600px以上*/
@media (min-width: 600px) {
    .header {
        height: 60px;
    }

}

/*900px以上*/
@media (min-width: 900px) {
    .hamMenu {
        width: 80px;
        height: 80px;
    }



    .nav_menu li {}

    .header {
        height: 80px;
    }

    #gnav_wrap {
        margin: 80px 0 0;
    }
}


/*フッター*/

footer {}

#footer {
    width: 100%;
    padding: 2rem 0;
}

#page_top {
    width: 40px;
    height: 40px;
    position: fixed;
    z-index: 9999;
    display: none;
    right: 2%;
    bottom: 9em;
    background-color: #7a08aecf;
    border-radius: 50%;
}

#page_top.on {
    display: block;
}

#page_top a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    text-decoration: none;
    text-align: center;
    display: flex;
    justify-content: center;
    color: #fff;
    align-content: center;
    line-height: 2.4;
}

#page_top a img {
    width: 50%;
    transform: rotate(-90deg);
}

.footer {
    text-align: center;
}

.footer_logo {}

.footer .add_box {
    display: flex;
    flex-direction: column;
    gap: 0.7em 0;
}

.footer .add_box dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer .add_box dt {}

.footer .add_box dd {}



.footer .sns {
    color: #A799DB;
    letter-spacing: 4.2px;
    font-size: clamp(1.25rem, 1.13rem + 0.6vw, 1.875rem)
        /*20-30*/
    ;
    background-color: #F7F5FF;
    width: 80%;
    margin: 1rem auto;
    padding: 1rem;
}

.footer .sns_list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem auto;
}

.footer .sns_list li {
    width: 50px;
    height: 50px;
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
}

.footer .sns_list a {}

.footer_list {
    display: flex;
    flex-direction: unset;
    gap: 1em 1em;
    justify-content: center;
    margin: 3rem auto;
    flex-wrap: wrap;
    flex-direction: column;
}

.footer_list li {}

.footer_list li a {}

/*600px以上*/
@media (min-width: 600px) {
    .footer_flex {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .right_area {
        width: 40%;
    }

    .left_area {
        width: 50%;
    }

    .footer_list {
        display: flex;
        flex-direction: unset;
        gap: 1em 1em;
        justify-content: center;
    }

    .footer_list li a {
        color: #452CA1;
    }

    .footer_list li:not(:last-child) {
        border-right: 2px solid #452CA1;
        padding: 0 1em 0 0;
    }
}

/*900px以上*/
@media (min-width: 900px) {}

/***動き**********************************/

/*フェード*/
.fadein {
    display: block;
    transition: 2s;
    /*効果時間*/
    transition-timing-function: ease;
    /*開始と完了を滑らかにする*/
    transform: translateY(50px);
    /*下から表示させる*/
    opacity: 0;
    /*不透明度*/
}

.fadein.on {
    transform: none;
    /*active時に拡大解除*/
    opacity: 1;
    /*不透明度を元に戻す*/
}

/********サイト用追加****************************************************************************/
.nav_box {
    width: 100%;
    height: 100vh;
}

.nav_wrap {
    position: relative;
    padding: 0 0 200px 0;
}

.bg_nav {
    position: absolute;
    height: 100vh;
    top: 47px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: -1;
}

.menu-is-open #gnav_wrap .bg_nav { position: fixed;}

.bg_nav img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 0.15;
    position: fixed;
}

.nav_box {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
}

/*600px以上*/
@media (min-width: 600px) {
  .bg_nav { top: 60px;}
}
/*900px以上*/
@media (min-width: 900px) {
  .bg_nav { top: 80px;}
}


/*====================================================================
.accordion_one
====================================================================*/
#gnav_wrap a {
    color: #452CA1;
    display: block;
        font-size: 12px;
}

.primary_link {
    border-bottom: solid 2px #452CA1;
    padding: 0.6em 0;
}

.primary_link a {
    color: #452CA1;
}

.primary_link a:before {
    content: "■";
    color: #452CA1;
}

.accordion_one {
    position: relative;
}

.accordion_one .accordion_header {
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
    text-align: left;
    padding: 1em;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
}



.accordion_one .accordion_header:hover {
    opacity: .8;
}

.accordion_one .accordion_header .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
}

.accordion_one .accordion_header.stay .i_box {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.accordion_one .accordion_header .i_box .one_i {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
}

.accordion_one .accordion_header.stay .i_box .one_i {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.accordion_one .accordion_header.stay.open .i_box .one_i {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.accordion_one .accordion_header.open .i_box {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.accordion_one .accordion_header.stay.open .i_box {
    -webkit-transform: rotate(315eg);
    transform: rotate(315deg);
}

.accordion_one .accordion_header .i_box .one_i:before,
.accordion_one .accordion_header .i_box .one_i:after {
    display: flex;
    content: '';
    background-color: #452CA1;
    border-radius: 10px;
    width: 18px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
}

.accordion_one .accordion_header .i_box .one_i:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
}

.accordion_one .accordion_header.stay .i_box .one_i:before {
    content: none;
}

.accordion_one .accordion_header.open .i_box .one_i:before {
    content: none;
}

.accordion_one .accordion_header.stay.open .i_box .one_i:before {
    content: "";
}

.accordion_one .accordion_header.open .i_box .one_i:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.accordion_one .accordion_header.stay.open .i_box .one_i:after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.accordion_one .accordion_inner {
    display: none;

}

.accordion_one .accordion_inner.stay {
    display: block;
}

. .accordion_one .accordion_inner .box_one {
    height: 300px;
}

.accordion_one .accordion_inner p.txt_a_ac {
    margin: 0;
}

.nav_03 {
    display: flex;
    flex-wrap: wrap;
    padding: 1em;
}

.nav_03 li {
    width: calc(100% / 2);
    text-align: center;
    padding: 1em;
}

.nav_03 li:nth-child(1),
.nav_03 li:nth-child(2) {
    border-bottom: solid 1px #452CA1;
}

.nav_03 li:nth-child(1),
.nav_03 li:nth-child(3) {
    border-right: solid 1px #452CA1;
}

.nav_03 li a {}

.nav_03 img {
    width: 1.5em;
    height: 2em;
    margin: 0 0 7px 0;
}

.nav_04 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    flex-direction: column;
    text-align: center;
    width: 90%;
    margin: 0 auto 2rem;
}

.nav_04 li {
    border: solid 1px #452CA1;
}

.nav_04 a {

    display: block;
    padding: 1em 0;
}

.nav_sns {
    display: flex;
    flex-wrap: wrap;
    gap: 1em 0;
    flex-direction: column;
    text-align: center;
    width: 90%;
    margin: 0 auto 2rem;
}

.nav_sns li {}

.nav_sns a {
    background-color: #fff;
    display: flex;
    padding: 0.75em;
    justify-content: center;
    align-items: center;
    border-radius: 3em;
    border: solid 1px;
}

.nav_sns a img {
    width: 2em;
    height: auto;
    margin: 0 0 0 10px;
}

/*600px以上*/
@media (min-width: 600px) {
    .nav_04 {
        flex-direction: unset;
        width: 90%;
        margin: 0 auto 2rem;
        align-items: stretch;
        justify-content: space-between;
    }

    .nav_04 li {
        width: 48%;
    }

    .nav_03 {
        position: fixed;
        top: 0;
        right: 40px;
        max-width: calc(100% - 60px - 200px);
        padding: 5px 0 0;
        width: 24em;
    }

    .nav_03 li:nth-child(1),
    .nav_03 li:nth-child(3) {
        border-right: unset;
    }

    .nav_03 li:nth-child(1),
    .nav_03 li:nth-child(2) {
        border-bottom: unset;
    }

    .nav_03 li {
        width: calc(100% / 3);
        text-align: center;
        padding: 0 10px;
        border-left: solid 1px;
    }

    .nav_03 img {
        width: 1.3em;
        height: 1.6em;
        margin: 0 0 3px 0;
    }

    .nav_03 li.tel {
        display: none;
    }

    .nav_sns {
        flex-direction: unset;
        text-align: center;
        width: 90%;
        margin: 0 auto 2rem;
        justify-content: space-between;
    }

    .nav_sns li {
        width: 32%;
    }
}

/*900px以上*/
@media (min-width: 900px) {
    #gnav_wrap a {
        font-size: 15px;
    }

    .nav_03 {
        right: 80px;
        padding: 10px 0 0;
    }

    .nav_wrap {
        position: relative;
        padding: 0 5% 100px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: clamp( 1rem, 3vw, 2rem);
        margin: 0 0 5rem;
    }

    .nav_menu {
        width: calc(100% - 250px - 3rem);
        max-width: 1200px;
        flex-direction: unset;
        gap: clamp( 1rem, 3vw, 2rem);
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 0;
    }

    .nav_menu li.accordion_one {
        width: calc( 50% - clamp( .5rem, 1.5vw, 1rem) );
    }

    .accordion_one .accordion_inner {
        display: block;
    }

    .nav_menu li {
        padding: 0.9em 0;
    }

    .nav_02 {
        padding: 0;
    }

    .accordion_one .accordion_header.stay .i_box .one_i,
    .accordion_one .accordion_header .i_box .one_i {

        display: none;
    }

    .pc_right {
        width: 250px;
    }

    .nav_04 {
        flex-direction: unset;
        width: 100%;
        margin: 4rem 0;
        align-items: stretch;
        justify-content: space-between;
        flex-direction: column;
    }

    .nav_04 li {
        width: 100%;
    }

    .nav_sns {
        flex-direction: column;
        width: 100%;
        margin: 3rem 0;
    }

    .nav_sns li {
        width: 100%;
    }
}

/*1200px以上*/
@media (min-width: 1200px) {
    .nav_menu li.accordion_one {
        width: calc( ( 100% - clamp( 2rem, 6vw, 4rem) ) / 3 );
    }
}

/***************/
.bg_gray01 {
    background-color: #E9E9E9;
    padding: 2rem 0;
}

.bg_gray02 {
    background-color: #F5F5F5;
    padding: 2rem 0;
}

.bg_purple {
    background-color: #A799DB;
    padding: 2rem 0;
    color: #fff;
}

.bg_purple_02 {
    background-color: #F7F5FF;
    padding: 2rem 0;
}



.btn_02 {
    text-align: center;
    margin: 2rem auto;
    width: 100%;
    max-width: 800px;
}

.btn_02 a {
    color: #452CA1;
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 1em 2em 1em 1em;
    border: solid 1px;
}

.btn_02 a:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    display: block;
    width: 1em;
    height: 1em;
    background-image: url(../images/common/icon_nav_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

/**********/
.btn_03 {
    text-align: center;
    max-width: 400px;
}

.btn_03.center {
    margin: 10px auto;
}

.btn_03 a {
    background-color: #AED285;
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 1em 2em 1em 1em;
    border: solid 1px;
    color: #fff;
}

.btn_03.gold a {
    background-color: #a5914c;
}

.btn_03 a:before {
    position: absolute;
    content: '';
    top: 50%;
    right: .5em;
    transform: translateY(-50%);
    display: block;
    width: 1em;
    height: 1em;
    background-image: url(../images/common/icon_arrow_wh.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.btn_03 a[target="_blank"]::after {
    font-family: "FAsolid";
    font-weight: 900;
    content: "\f35d";
    display: inline-block;
    margin: 0 0 0 3px;
    color: #fff;
    font-size: 11px;
}



.btn_04 {
    text-align: center;
    max-width: 400px;
    width: 80%;
    margin: 0 auto;
    display: block;
}

.btn_04 a {
    background-color: #fff;
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 1em 2em 1em 1em;
    border: solid 1px;
    color: #452CA1;
}

/**********/


.arrow_01 {
    color: #452CA1;
    position: relative;
}


.arrow_01:after {
    position: absolute;
    content: '';
    top: 50%;
    right: .75em;
    transform: translateY(-50%);
    display: block;
    width: 1em;
    height: 1em;
    background-image: url(../images/common/icon_nav_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.arrow_02 {
    color: #452CA1;
    position: relative;
}


.arrow_02:after {
    position: absolute;
    content: '';
    top: 50%;
    right: .5em;
    transform: translateY(-50%);
    display: block;
    width: 1em;
    height: 1em;
    background-image: url(../images/common/icon_arrow_wh.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

/*************/

.flex_area.reverse {
    flex-direction: row-reverse;
}

/**************/
.bread {
    background-color: #342667;
    display: flex;
    gap: 1em;
    padding: 0.5em 2em;
    font-size: clamp( 10px, 1.5vw, 16px );
    line-height: 1.4;
}

.bread li {
    color: #FFF;
    font-size: inherit;
}

.bread li a {
    color: #FFF;
    font-size: inherit;
}

.bread li:not(:last-of-type) a:after {
    content: ">";
    padding: 0 0 0 1em;
}

.top_nav .bread {
    padding: 0.5em 1em;
}

/*600px以上*/
@media (min-width: 600px) {}

/*900px以上*/
@media (min-width: 900px) {
    .top_nav .bread {
        padding: 0.5em 4em;
    }
}

/************/
.welcome_btn {
    position: fixed;
    margin: 0 auto;
    width: 100%;
    bottom: 50px;
    display: flex;
    justify-content: center;
    z-index: 99999;
    background-image: linear-gradient(0, #0000002b, transparent);
    padding: 0.6em 0;

}

.welcome_btn a {
    color: #fff;
    background: transparent linear-gradient(175deg, #FFA826 0%, #EC3D37 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #FFFFFF;
    border-radius: 40px;
    padding: 0.8em 2em;
    font-family: "Kiwi Maru", serif;
    font-size: 16px;
    display: block;
    etter-spacing: 2.4px;
}

/**********/
.fixed-widget {
    position: fixed;
    z-index: 99999;
    bottom: 50px;
    right: 0;
    width: 100%;
}



.fixed-widget-btn {
    color: #111;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #111;
    aspect-ratio: 1 / 1;
    height: 30px;
    width: 30px;
}

.fixed-widget-btn:hover {
    cursor: pinter;
}

.fixed-widget-btn:active {
    background-color: #fff;
}

.fixed-widget-box {
    border-radius: 50%;
    height: 100%;
}

.fixed-widget-pic {
    height: 20vw;
}

/* close button */
.fixed-widget-closer {
    position: relative;
}

.fixed-widget-closer .fixed-widget-btn {
    position: absolute;
    right: 6px;
    top: -2em;
}

.fixed-widget-closer .fixed-widget-box {
    margin-bottom: 0;
}

.fixed-widget .fixed-widget-checkbox {
    display: none;
}


.fixed-widget .fixed-widget-closer #close:checked~.fixed-widget-btn {
    display: none;
}

.fixed-widget .fixed-widget-closer #close:checked~.fixed-widget-box {
    display: none;
}

.welcome_btn {
    position: unset;
    margin: 0 auto;
    width: 100%;
    bottom: 5px;
}

.fixed-widget-closer .fixed-widget-btn {
    right: calc( 50% + 7.5em );
    top: -1em;
}

/*600px以上*/
@media (min-width: 600px) {
    .fixed-widget {
        left: unset;
        width: 22rem;
        right: 0px;
        bottom: 1rem;
    }

    .fixed-widget-closer .fixed-widget-btn {
        right: calc( 50% + 10em );
    }

    .welcome_btn {
        position: unset;
        margin: 0 auto;
        width: 100%;
        bottom: 5px;
    }

    .welcome_btn a {
        padding: 0.5em 0;
        font-size: clamp(1rem, 0.783rem + 0.58vw, 1.5rem)
            /*16-23*/
        ;
        width: 85%;
        text-align: center;
    }
}

/*900px以上*/
@media (min-width: 900px) {}

/*****sp_otoiawase******************************/
.sp_otoiawase {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 9999;
}

.otoiawase_list {
    display: flex;
    flex-wrap: wrap;
}

.otoiawase_list li {
    background-color: #8EDC60;
    width: 50%;
}

.otoiawase_list li:nth-child(2) {
    background-color: #33D0E2;
}

.otoiawase_list li a {
    font-family: "Kiwi Maru", serif;
    color: #fff;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #ccc;
}


/*600px以上*/
@media (min-width: 600px) {
    .sp_otoiawase {

        display: none;
    }
}

/*900px以上*/
@media (min-width: 900px) {}

.list_num {
    padding: 0 0 0 1.5em;
}

.list_num li {
    list-style: decimal;
    margin: 0 0 1em;
}

/****サブページ**************************/
.sub_page {}

.sub_page h2.title_02 {
    color: #342667;
    font-size: clamp(1.25rem, 1.057rem + 0.96vw, 2.25rem)
        /*20-px*/
    ;
    font-weight: bold;
    margin: 0.7em 0;
    text-align: center;
}

.sub_page h2.title_03 {
    color: #342667;
    font-size: clamp(1.25rem, 1.057rem + 0.96vw, 2.25rem)
        /*20-px*/
    ;
    font-weight: bold;
    margin: 0.7em 0;
    text-align: center;
    border-bottom: solid 6px #e3ddfb;
    padding: 0 0 7px;
}

.sub_page .sub_tit_02 {
    color: #342667;
    font-size: clamp( 12px, 1.5vw, 21px );
    text-align: center;
    margin: 0 0 1em 0;
}


/***main_h1*******************************/
.sub_main_h1 {
    position: relative;
    padding: 0 0 5rem;
    background: linear-gradient(180deg, #fff 0%, #fff 50%, #EFEBFF 50%, #EFEBFF 100%);
}

.sub_main_h1 .main_img {}

.sub_main_h1 .main_img img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

.wrap_h1 {
    width: 100%;
    z-index: 99;
    display: inline-block;
    position: absolute;
    bottom: 0;
    margin: 0 auto 1rem;
}


.sub_main_h1 h1 {
    background-color: #452CA199;
    color: #fff;
    padding: 2em 1em;
    font-size: clamp(1.5rem, 1.066rem + 2.17vw, 3.75rem);
    width: 90%;
    margin: 0 auto;
}

/*600px以上*/
@media (min-width: 600px) {
    .sub_main_h1 {
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .sub_main_h1 .main_img {
        width: 50%;
        height: 100%;
    }

    .wrap_h1 {
        width: 50%;
        position: unset;

    }

    .sub_main_h1 h1 {
        font-size: clamp(1.25rem, 0.889rem + 1.81vw, 3.125rem)
            /*20-50*/
        ;
    }
}

/*900px以上*/
@media (min-width: 900px) {
    .sub_main_h1 .main_img img {
        aspect-ratio: 5 / 3;
    }

    .sub_main_h1 {
        height: 30vw;
    }
}

/***********************************/
.course_info {
    margin: 0 auto;
}

.course_info h2 {
    font-size: clamp(1.25rem, 1.057rem + 0.96vw, 2.25rem)
        /*20px*/
    ;
    font-weight: bold;
    margin: 0 0 1em;
    text-align: center;
}

.contents_list {
    width: 90%;
    margin: clamp( .1rem, 2vw, 3rem ) auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2%;
    align-items: flex-start;
    justify-content: center;
}

.contents_list li {
    width: 100%;
    max-width: 400px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.35);
    background-color: #AED285;
}

.contents_list li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    color: #fff;
}

.contents_list li .img {
    width: 100%
}

.contents_list li .img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
}

.contents_list li .text_area {
    width: 100%;
    padding: 10px 30px 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    color: #fff;

}

.contents_list li:nth-child(2n) {
    background-color: #A799DB;
}

.contents_list li p {
    font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.938rem)/*12-15*/;
}

.contents_list li h3 {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.sub_nav_bottom {
    max-width: 1550px;
    margin: 0 auto;
}

.sub_nav_bottom .contents_list li h3 {
    font-size: clamp(1rem, 0.952rem + 0.24vw, 1.25rem)
        /*16-20*/
    ;
    line-height: 1.4;
}

.sub_nav_bottom .contents_list li {
    max-width: 300px;
}

.sub_nav_bottom .contents_list li p {
    display: none;
}

/*600px以上*/
@media (min-width: 600px) {
    .sub_nav_bottom .contents_list li {
        width: 30%;
        min-width: 200px;
    }
}

/*900px以上*/
@media (min-width: 900px) {
    .contents_list {
        margin: 7rem auto;
        gap: 2rem 2%;
    }

    .contents_list li {
        max-width: unset;
        width: 30%;
    }

    .sub_nav_bottom .contents_list li {
        width: 17%;
    }
}

/****吹き出し*********/

.fukidasyi_01 {
    position: relative;
    display: flex;
    margin: 1.5em 15px 1.5em 0;
    width: 90px;
    height: 90px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    background: #AED285;
    border-radius: 50%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.813rem, 0.535rem + 1.39vw, 2.25rem);
    aspect-ratio: 1 / 1;
    padding: 14px;
    letter-spacing: -0.72px;
}

.fukidasyi_01:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -25px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 15px solid #AED285;
    z-index: 0;
}

.fukidashi_02 {
    position: relative;
    display: inline-block;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #fff;
    background: #A799DB;
    border-radius: 2em;
    letter-spacing: 3px;
    text-align: center;
}

.fukidashi_02:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -37px;
    border: 6px solid transparent;
    border-top: 9px solid #A799DB;
}

/*****slick**********/
.slick-dots li button:before {
    font-size: 8px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
}

.slick-dots li.slick-active button:before {
    opacity: .8;
    color: #AED285;
}

.slick-dots li {
    margin: 0 0;
}

/***********************************/
.last_img {
    width: 100%;
    height: 150px;
}

.last_img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/*600px以上*/
@media (min-width: 600px) {}

/*900px以上*/
@media (min-width: 900px) {}

/***********************************/
/*600px以上*/
@media (min-width: 600px) {}

/*900px以上*/
@media (min-width: 900px) {}


/* YouTube動画埋め込み */
.ytBox{max-width: 800px;margin:4% auto;}
.ytBox > div{position: relative; padding-bottom: 56.25%;}
.ytBox iframe {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
