@charset "utf-8";

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(0.938rem, 0.913rem + 0.12vw, 1.063rem)
        /*15-27*/
    ;
    color: #333;
}

p,
ul,
dl,
table {
    font-size: clamp(0.938rem, 0.913rem + 0.12vw, 1.063rem)
        /*15-27*/
    ;
    font-weight: 500;
}

p {
    line-height: 2.2;
}

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

.content {
    margin: 50px 0 0;
}

.bg_02 {
    background-color: #F8F4E8;
}


section {
    padding: clamp(1.25rem, 0.889rem + 1.81vw, 3.125rem)
        /*20-50*/
        0;
    width: 100%;
}

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

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

    .top_page .content {
        margin: 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: #5b75b4;
    font-size: 11px;*/
}

.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: #333;
}

a:hover {
    opacity: 0.8;
}



/*off*/

/*テーブル*/
table {
    border-collapse: collapse;
    border-spacing: 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: #333;
}

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

tbody th {
    background-color: #e2f7f0;
    color: #333;
}

tbody td {
    background-color: #fff;
}



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

.inner {
    width: 94%;
    margin: 0 auto;
    max-width: 1080px;
}

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

.inner-section {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 50px 0;
}

.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;
}


@media (max-width:1299px) {
    .inner-section {
        padding: 40px 4%;
    }

    .inner {
        padding: 0 4%;
    }


}

@media (max-width:600px) {
    .inner {
        padding: 0 4%;
    }

    .inner.w100 {
        width: 100%;
    }

    .inner-section {
        padding: 30px 4%;
    }


}





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

.header_logo {
    width: 40%;
    height: 100%;
    margin: 0 0 0 2%;
}

.header_logo h1 {}

.header_logo h1 a {
    display: inline-block;
}

.header_logo h1 img {
    object-fit: cover;
    width: 100%;
    height: 50px;
}




.copy {
    font-size: 12px;
    text-align: center;
    padding: 1em 0 0;
}

/*グローバルメニュー*/
#gnav_wrap {
    display: block;
    transition: .5s ease-in-out;
    float: none;
    margin: 70px 0 0;
    width: 100%;
    height: auto;
    top: 0;
    overflow: auto;
    right: -200%;
    position: relative;
}



.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;

}


.hamMenu span {
    display: block;
    position: absolute;
    width: 30px;
    height: 20px;
    background: #e14c8d;
    border-top: 9px solid #fff;
    border-bottom: 9px solid #fff;
    -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: #e14c8d;
    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: 22px;
    height: 2px;
    background: #e14c8d;
    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;
}

#gnav li {
    position: relative;
}




.nav_menu {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 3vh 0;
    align-items: first baseline;
    background-color: #fff;
    padding: 1em 2em;
    border-radius: 3px;
    box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.3);
    margin: 7px auto;
    width: 90%;
}



#gnav li {
    width: 100%;
    border: none;
    position: relative;
    border-bottom: dotted 2px #ccc;
}



#gnav li a {
    padding: 0 0 5px 2rem;
    position: relative;
    transition-duration: .3s;
    display: block;
    overflow: hidden;
    margin: 0 1px 0 0;
    color: #E14C8D;
    width: 100%;
    text-align: left;
    font-weight: 500;
    font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}

.nav_menu li a:before {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    content: '';
    display: block;
    width: 100%;
    height: 1.6rem;
    background-image: url(../images/common/icon_home.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.nav_menu li.about a:before {
    background-image: url(../images/common/icon_about.png);
}

.nav_menu li.architecture a:before {
    background-image: url(../images/common/icon_architecture.png);
}

.nav_menu li.schedule a:before {
    background-image: url(../images/common/icon_schedule.png);
}

.nav_menu li.facility a:before {
    background-image: url(../images/common/icon_facility.png);
}

.nav_menu li.recruit a:before {
    background-image: url(../images/common/icon_recruit.png);
}

.nav_menu li.contact a:before {
    background-image: url(../images/common/icon_contact.png);
}

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

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

    .hamMenu {
        background-color: #fff;
        top: 0.5rem;
        right: 1vw;
    }

    .header_logo h1 img {
        height: 60px;
    }
}

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

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: auto;
        padding: 10px 1%;
        width: 100%;
        background-color: unset;
    }

    .header_logo {
        height: auto;
        padding: 0;
        width: 20%;
        min-width: 200px;
        margin: 0;
    }

    .header_logo h1 img {
        height: 90px;
    }

    .hamMenu {
        display: none;
    }

    #gnav_wrap {
        position: unset;
        margin: 0;
        width: 80%;
        display: unset;
    }

    #gnav li {
        width: fit-content;
        border: none;
        margin: 0 2px;
        border-bottom: unset;
    }

    .nav_box {
        width: unset;
        display: flex;
        justify-content: center;
    }

    .nav_menu {
        position: unset;
        display: flex;
        flex-direction: unset;
        gap: 10px 1.6em;
        align-items: center;
        box-shadow: unset;
        margin: 0;
        justify-content: start;
        width: fit-content;
        padding: 10px 2%;
        border-radius: 4rem;
        border: solid 1px #e45e98
    }
}


.overlay {
    display: none;
}



/*フッター*/

footer {}

.footer {
    width: 100%;
    background-color: #FE6F00;
    padding: 1rem;
    color: #fff;
}

.footer a {
    color: #fff;
}

#page_top {
    width: 60px;
    height: 60px;
    position: fixed;
    z-index: 9999;
    display: none;
    right: 2%;
    bottom: 3em;
    background-color: unset;
    border-radius: 50%;
    text-align: center;
}

/*900px以上*/
@media (min-width: 900px) {
    #page_top {
        width: 90px;
        height: 90px;
    }
}

#page_top.on {
    display: block;
}

#page_top a {
    line-height: 2.4;
    display: block;
}

.footer_logo {
    width: 40%;
    margin: 0 auto;
    max-width: 200px;
}

.footer_logo a {}

.footer_logo img {}

.foot_nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
    padding: 1rem 0;
}

.foot_nav li {}

.foot_nav li a {}

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

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

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

/********サイト用追加****************************************************************************/

/***タイトル*******/
.title_01 {
    position: relative;
    padding: 0 0 2rem;
    width: fit-content;
    margin: 0 auto 2rem;
}

.sub_page .title_01 {
    width: 100%;
}

.title_01:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 72%;
    height: clamp(1.25rem, 1.226rem + 0.12vw, 1.375rem)
        /*20-22*/
    ;
    background-image: url(../images/common/bg_tit_line.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.title_01 .en_tit {
    text-align: center;
    position: relative;
    padding: 1.8em 0 0 0;
    margin: 0 0 1rem 0;
    font-size: clamp(1.25rem, 1.154rem + 0.48vw, 1.75rem)
        /*20-26*/
    ;
}

.title_01 .en_tit:before {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 2em;
    height: 2em;
    background-image: url(../images/common/icon_about.png);
    background-size: contain;
    background-repeat: no-repeat;
}


.architecture .title_01 .en_tit:before {
    background-image: url(../images/common/icon_architecture.png);
}

.schedule .title_01 .en_tit:before {
    background-image: url(../images/common/icon_schedule.png);
}

.facility .title_01 .en_tit:before {
    background-image: url(../images/common/icon_facility.png);
}

.recruit .title_01 .en_tit:before {
    background-image: url(../images/common/icon_recruit.png);
}

.contact .title_01 .en_tit:before {
    background-image: url(../images/common/icon_contact.png);
}

.title_01 h2 {
    text-align: center;
    font-size: clamp(1.313rem, 1.023rem + 1.45vw, 2.813rem)
        /*21-45*/
    ;
    color: #FE6F00;
    font-weight: 600;
}

.c_gry {
    color: #9F9F9F;
}

h3.h3_or {
    color: #FE6F00;
    text-align: center;
    font-weight: 500;
    margin: 0 0 0.5em;
    font-size: clamp(1.125rem, 1.053rem + 0.36vw, 1.5rem)
        /*18-24*/
    ;
}

/****more*********/
.more_btn {
    width: fit-content;
    margin: 1rem auto;
}

.more_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0.5em 2em;
    border-radius: 25px;
    font-size: 1em;
    background-color: #e9618b;
    color: #fff;
}


.more_btn a::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

/*600以下*/
@media (max-width: 599px) {
    .pcbr {
        display: none;
    }
}

.sub_page h1.sub_h1 {
    text-align: center;
    padding: 1em 0.4em;
    background-color: #fddee0;
    font-size: clamp(1.25rem, 1.009rem + 1.2vw, 2.5rem)
        /*20-40*/
    ;
    font-weight: bold;
}

.sub_page h1.sub_h1:first-letter {
    font-size: 150%;
    color: #E14C8D;
}