@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@400;500;600;700;900&family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap');


.noto-serif {
    font-family: "Noto Serif JP", serif;
    font-weight: ;
    font-style: normal;
}

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

.shippori-mincho {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

body {
    font-family: 'Noto Sans JP', "Meiryo", sans-serif;
    line-height: 1.6;
    background: #fff;
    width: 100%;
    font-size: 16px;
    overflow-x: hidden;
}

.wrapper {
    position: relative;
}

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

img {
    max-width: 100%;
    vertical-align: middle;
    object-fit: contain;
    font-family: 'object-fit: contain;';
}

a {
    text-decoration: none;
    cursor: pointer;
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -312px;
    width: 312px;
    height: 100vh;
    /*ナビの高さ*/
    background: #A6845C;
    /*動き*/
    transition: all 0.6s;
    padding: 20px 18px;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    right: 0;
}


/*========= ボタンのためのCSS ===============*/

.openbtn {
    background: #F1CA00;
    border-radius: 50%;
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 72px;
    height: 72px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 25%;
    right: 25%;
    height: 3px;
    background: #fff;
    width: 50%;
}

.openbtn:hover {
    transition: ease-in 0.5s;
    background: #fff;
}

.openbtn:hover span {
    background: #F6BD01;
}

.openbtn span:nth-of-type(1) {
    top: 26px;
}

.openbtn span:nth-of-type(2) {
    bottom: 26px;
}

.openbtn.active {
    width: 54px;
    height: 54px;
    top: 29px;
    right: 29px;
}

.openbtn.active span:nth-of-type(1) {
    top: 16.5px;
    transform: translateY(9px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
    bottom: 16.5px;
    transform: translateY(-9px) rotate(45deg);
}


#g-nav-list img.logo {
    width: 60px;
    margin: 10px 15px 20px;
}

#g-nav-list .menu {
    width: 294px;
    border-top: 1px solid #fff;
    margin: 0 0 0 auto;
}

#g-nav-list .menu ul {
    width: 95%;
    margin: 5% auto;
}

#g-nav-list .menu ul li {
    line-height: 2;
    margin: 2% auto;
    color: #fff;
}

#g-nav-list .menu ul li::before {
    display: inline-block;
    content: "";
    background-image: url(../images/menu_arrow.png);
    width: 34px;
    height: 34px;
    vertical-align: top;
}

#g-nav-list .menu ul > li > a {
    display: inline-block;
    color: #fff;
    line-height: 1.5;
}

#g-nav-list .menu ul li p {
    display: inline-block;
    color: #fff;
    line-height: 1.5;
}

#g-nav-list .menu ul li ul li::before {
    background-image: none;
}

@media screen and (max-width: 480px) {

    .openbtn {
        top: 15px;
        right: 15px;
        width: 54px;
        height: 54px;
    }

    .openbtn span:nth-of-type(1) {
        top: 20px;
    }

    .openbtn span:nth-of-type(2) {
        bottom: 20px;
    }

    .openbtn.active {
        width: 54px;
        height: 54px;
        top: 15px;
        right: 15px;
    }

    #g-nav-list img.logo {
        width: 60px;
        margin: 0 15px 15px;
    }

}




/* header */

header {
    position: fixed;
    width: 100%;
    height: 112px;
    padding: 15px 20px;
    z-index: 999;
}

header .logo {
    margin: 13px 0;
}

header .logo img.sp {
    display: none;
}

header .logo img {
    max-width: 276px;
}

header.is-hidden,
header.hidden{
    display: none;
}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 480px) {
    header {
        height: 80px;
        padding: 10px 15px;
    }

    header .logo {
        margin: 8px 0;
    }

    header .logo img.pc {
        display: none;
    }

    header .logo img.sp {
        display: block;
    }

    header .logo img {
        max-width: 168px;
    }

    header.is-hidden {
        display: none;
    }

}


/* footer */

footer {
    position: relative;
    z-index: 9;
}

footer .flex {
    display: flex;
}

footer .flex .logo {
    width: 46.785%;
    background: #fff;
    text-align: center;
    padding: 8% 0;
}

footer .flex .logo > div {
    max-width: 210px;
    margin: 0 25% 0 auto;
}

footer .flex .logo img {
    width: 100%;
    max-width: 185px;
}

footer .flex .logo p {
    color: #a6845c;
    font-weight: 700;
    margin: 10% auto 0;
}

footer .flex .menu {
    width: 53.215%;
    background: #a6845c;
    position: relative;
    padding: 4% 5%;
}

footer .flex .menu ul li {
    line-height: 2;
    color: #fff;
    font-weight: 700;
}

footer .flex .menu ul li.sp {
    display: none;
}

footer .flex .menu ul li br {
    display: none;
}

footer .flex .menu ul li a {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
}

footer .flex .menu ul li.cl_y a {
    color: #F1CA00;
}

footer .flex .menu ul li li {
    font-weight: 400;
    padding-left: 1em;
    font-weight: 700;
}

footer .flex .menu ul li.pc {
    line-height: 2;
}

footer .flex .menu .totop img.sp {
    display: none;
}

footer .flex .menu .totop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 11.8%;
    max-width: 80px;
    text-align: center;
}

footer .flex .menu .totop a {
    display: inline-block;
    background: #f1ca00;
    width: 100%;
    height: 100%;
}

footer .flex .menu .totop a:hover {
    background: #f7d85a;
}

footer .flex .menu .totop img {
    position: absolute;
    text-align: center;
    width: 100%;
    max-width: 34px;
    left: 50%;
    bottom: 50px;
    transform: translate(-50%, 0);
}

footer .copyright {
    background: #acacae;
    text-align: center;
    padding: 1.8% 0;
}

footer .copyright p {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}

footer .copyright p br {
    display: none;
}

@media screen and (max-width: 768px) {

    footer .flex {
        flex-wrap: wrap;
    }

    footer .flex .logo {
        width: 100%;
    }

    footer .flex .logo > div {
        margin: 0 auto;
    }

    footer .flex .logo img {
        width: 100%;
        max-width: 185px;
    }

    footer .flex .logo p {
        color: #a6845c;
        font-weight: 700;
        margin: 10% auto 0;
    }

    footer .flex .menu {
        width: 100%;
        padding: 5% 25% 150px;
    }

    footer .flex .menu .totop img.pc {
        display: none;
    }

    footer .flex .menu .totop img.sp {
        display: block;
    }

    footer .flex .menu .totop {
        width: 100%;
        max-width: 100%;
        height: 90px;
        top: auto;
        bottom: 0;
    }

    footer .flex .menu .totop img {
        max-width: 122.5px;
        top: 50%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 480px) {

    footer .flex {
        flex-wrap: wrap;
    }

    footer .flex .logo {
        width: 100%;
        padding: 20% 0;
    }

    footer .flex .logo > div {
        margin: 0 auto;
    }

    footer .flex .menu {
        width: 100%;
        padding: 10% 12% 150px;
    }

    footer .flex .menu ul li {
        line-height: 2.2;
    }

    footer .flex .menu ul li.pc {
        display: none;
    }

    footer .flex .menu ul li.sp {
        display: block;
        line-height: 1.5;
    }

    footer .flex .menu ul li br {
        display: block;
    }

    footer .flex .menu .totop img.pc {
        display: none;
    }

    footer .flex .menu .totop img.sp {
        display: block;
    }

    footer .flex .menu .totop {
        width: 100%;
        max-width: 100%;
        height: 90px;
        top: auto;
        bottom: 0;
    }

    footer .flex .menu .totop img {
        max-width: 122.5px;
        top: 50%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
    }

    footer .copyright p br {
        display: block;
    }

}





.mainvisual {
    position: fixed;
    width: 100vw;
    min-height: 672px;
    height: 100vh;
    overflow: hidden;
    background-image: url(../images/main_visual.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -2;
}



#video-area {
    position: absolute;
    z-index: 0;
    /*最背面に設定*/
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    background: #fff;
    opacity: 0.5;
    width: 100%;
    height: 100%;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    /*縦横幅指定*/
    width: 177.77777778vh;
    /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw;
    /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100vh;
    min-width: 100vw;
}

.ttl {
    position: fixed;
    width: 100vw;
    min-height: 672px;
    height: 100vh;
    z-index: 1;
}

.ttl img {
    position: absolute;
    width: 50%;
    max-width: 241px;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slogan {
    position: relative;
    text-align: center;
    width: 100vw;
    min-height: 672px;
    height: 100vh;
}

.slogan img {
    position: absolute;
    width: 90%;
    max-width: 468px;
    top: 63.5%;
    left: 50.5%;
    transform: translate(-50%, -50%);
}


.slogan p {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: -2.5px;
    font-size: 32px;
    width: 100%;
    color: #fff;
    position: absolute;
    top: 78%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slogan p br {
    display: none;
}

#history .mainvisual {
    background-image: url(../images/bg_05.png);

}

#history .cover {
    position: fixed;
    width: 100vw;
    min-height: 672px;
    height: 100vh;
    z-index: 1;
    background-color: #ACACAE;
    opacity: 0.8;
}


#history .ttl {
    position: relative;
    text-align: center;
    width: 100vw;
    min-height: 416px;
    height: 416px;
    z-index: 1;
}

#history .ttl img {
    position: absolute;
    width: 45%;
    max-width: 568px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#history .ttl p {
    font-weight: 700;
    font-style: normal;
    letter-spacing: ;
    font-size: 38px;
    width: 100%;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
}


#message .mainvisual {
    position: relative;
    width: 100vw;
    min-height: auto;
    height: 288px;
    overflow: visible;
    background-image: url(../images/bg_04.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

#message .mainvisual .inner {
    position: relative;
    width: 96%;
    max-width: 1024px;
    height: 100%;
    margin: 0 auto;
}

#message .mainvisual h2 {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    line-height: 1.5;
    color: #fff;
    position: absolute;
    width: auto;
    top: 45%;
    left: 14%;
}

#message .mainvisual img {
    width: 40%;
    max-width: 326px;
    position: absolute;
    z-index: 2;
    bottom: -10px;
    right: 5%;
}


#univ .mainvisual {
    position: relative;
    width: 100vw;
    min-height: auto;
    height: 288px;
    overflow: visible;
    background-image: url(../images/bg_04.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

#univ .mainvisual .inner {
    position: relative;
    width: 96%;
    max-width: 1024px;
    height: 100%;
    margin: 0 auto;
}

#univ .mainvisual h2 {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    line-height: 1.5;
    color: #fff;
    position: absolute;
    width: auto;
    top: 45%;
    left: 14%;
}

#univ .mainvisual h2 br {
    display: none;
}


@media screen and (max-width: 768px) {}

@media screen and (max-width: 480px) {
    .ttl img {
        width: 47%;
    }

    .slogan img {
        width: 88%;
        top: 57%;
    }

    .slogan p {
        font-size: 30px;
        width: 88%;
        text-align: left;
        top: 73%;
        line-height: 1.5;
    }

    .slogan p br {
        display: block;
    }

    #history .ttl {
        min-height: 529px;
        height: 529px;
    }

    #history .ttl img {
        width: 89%;
        top: 45%;
    }

    #history .ttl p {
        top: 55%;
        font-size: 24px;
    }

    #message .mainvisual {
        height: 272px;
        background-image: url(../images/bg_04_sp.png);
        z-index: 0;
    }

    #message .mainvisual h2 {
        position: absolute;
        font-size: 28px;
        top: 70%;
        left: 8%;
    }

    #message .mainvisual img {
        width: 60%;
        top: 30%;
        bottom: auto;
        right: 4%;
    }

    #univ .mainvisual {
        height: 272px;
        background-image: url(../images/bg_04_sp.png);
        z-index: 0;
    }

    #univ .mainvisual h2 {
        position: absolute;
        font-size: 28px;
        top: 55%;
        left: 8%;
    }

    #univ .mainvisual h2 br {
        display: block;
    }


}




main {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
    margin: 45vh auto 0;
}

.scroll {
    position: absolute;
    width: 93%;
    max-width: 1024px;
    margin: 0 auto;
    height: 100vh;
    top: 80vh;
    left: 0;
    right: 0;
}

.scroll p {
    height: 100%;
    writing-mode: vertical-rl;
    border-left: 2px solid #fff;
    color: #fff;
}

.bg_01 {
    position: relative;
    text-align: center;
    margin: 0 auto;

}

.bg_01 img.bg.sp {
    display: none;
}

.bg_01 img.bg {
    position: relative;
    width: 1920px;
    height: 2487px;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}

.message {
    position: relative;
    width: 93%;
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 130px;
    margin-top: -665px;
    z-index: 2;
}

.message .img_area_01.sp,
.message .img_area_02.sp {
    display: none;
}

.message .img_area_01 {
    position: absolute;
    width: 38%;
    max-width: 387px;
    height: calc(100vw * 0.38 * 1.44);
    max-height: 565px;
    top: -10px;
    left: 0;
    z-index: 2;
}

.message img.img_01 {
    position: absolute;
    width: 75.7%;
    max-width: 293px;
    top: 0;
    right: 0;
}

.message img.img_02 {
    position: absolute;
    width: 49.9%;
    max-width: 193px;
    top: 40%;
    left: 0;
}

.message img.img_03 {
    position: absolute;
    width: 41.3%;
    max-width: 160px;
    bottom: 0;
    left: 10%;
}

.message .img_area_02 {
    position: absolute;
    width: 26.9%;
    max-width: 275px;
    height: calc(100vw * 0.269 * 1.71);
    max-height: 470px;
    bottom: 9%;
    right: 1.5%;
    z-index: 2;
}

.message img.img_04 {
    position: absolute;
    width: 76%;
    max-width: 209px;
    top: 0;
    right: 0;
}

.message img.img_05 {
    position: absolute;
    width: 62.1%;
    max-width: 171px;
    top: 42%;
    left: 0;
}

.message img.img_06 {
    position: absolute;
    width: 52.7%;
    max-width: 145px;
    bottom: 0;
    right: 12%;
}

.message .bg_white {
    position: relative;
    background: #fff;
    width: 73%;
    max-width: 750px;
    margin: 0 auto;
    padding: 20% 13% 10%;
    text-align: left;
}

.message .message_ttl {
    position: absolute;
    width: 52%;
    max-width: 390px;
    top: -30px;
    left: 48%;
    right: 0;
}

.message h2 {
    position: relative;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 46px;
    letter-spacing: 0.2em;
    margin-bottom: 5%;
}

.message p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8%;
    line-height: 2;
}

.message p.cl_yellow {
    color: #F1CA00;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 15%;
}

.btn_area {
    position: relative;
    background: #f1ca00;
    width: 100%;
    height: 100%;
    margin-top: -15%;
    padding-bottom: 3%;

}

.btn_area .bg_02 {
    position: absolute;
    height: 100%;
    width: 150%;
    max-width: 1920px;
    margin: 0 auto;
    top: 0;
    left: -25%;
    right: -25%;
    bottom: 0;
}

.btn_area .bg_02 img {
    position: absolute;
    height: 100%;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.btn_area .txt_area {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 20%;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.btn_area .txt_area h3 {
    position: relative;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 5%;
    line-height: 2;
}

.btn_area .txt_area h3 span {
    position: absolute;
    bottom: 0;
    left: 48.5%;
    right: 48.5%;
    display: inline-block;
    width: 3%;
    border-bottom: 2px solid #fff;
}

.btn_area .flex {
    display: flex;
    justify-content: space-between;
    width: 98%;
    margin: 5% auto;
}

.btn_area .flex .btn {
    width: 49%;
    max-width: 480px;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.btn_area .flex .btn a {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.btn_area .flex .btn a.link_01 img.base.sp {
    display: none;
}

.btn_area .flex .btn a.link_01 img.base {
    position: relative;
}

.btn_area .flex .btn a.link_01 p {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16% 7%;
}


.btn_area .flex .btn:hover a.link_01 img.base {
    transition: transform ease 1s;
    transform: scale(1.15);
}

.btn_area .flex .btn:hover a.link_01 p {
    background: rgba(0, 0, 0, 0.1);
}

.btn_area .flex .btn a.link_02 {
    display: inline-block;
    color: #000;
    font-weight: 500;
    width: 100%;
    text-align: right;
    padding: 5px;
}

.btn_area .flex .btn img.arrow {
    width: 34px;
}



.anniversary {
    background-image: url(../images/bg_03.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 8% 0;
}

.anniversary .txt_area h3 {
    position: relative;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 2%;
    line-height: 2;
}

.anniversary .txt_area h3 span {
    position: absolute;
    bottom: 0;
    left: 48.5%;
    right: 48.5%;
    display: inline-block;
    width: 3%;
    border-bottom: 2px solid #fff;
}

.anniversary .sp {
    display: none;
}

.anniversary .flex_pc {
    width: 93%;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}

.anniversary .flex_pc a {
    width: 49%;
    max-width: 376px;
    margin: 1.5% 0;
}

.anniversary .memorial{
    text-align: center;
    margin: 50px auto 20px;
}

.anniversary .memorial a{
    background: #eaedef;
    color: #005872;
    font-weight: 600;
    padding: 10px 100px;
    border-radius: 8px;
    font-size: 18px;
}

.anniversary .memorial a:hover{
    background: #005872;
    color: #eaedef;
}

.award {
    background: #fff;
    padding: 5% 0;
}

.award .bdr_box {
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    padding: 4% 0 2%;
}

.award .bdr_box .flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.award .bdr_box img.side {
    width: 11.9%;
    max-width: 69px;
}

.award .bdr_box .txt_area {
    width: 63%;
}

.award .bdr_box .txt_area h3 {
    position: relative;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 3% auto;
    line-height: 2;
}

.award .bdr_box .txt_area p {
    font-weight: 500;
    margin: 5% auto 1%;
}

.award .bdr_box .txt_area h3 span {
    position: absolute;
    bottom: 0;
    left: 47%;
    right: 47%;
    display: inline-block;
    width: 6%;
    border-bottom: 2px solid #000;
}

.award .bdr_box .txt_area a {
    display: inline-block;
    width: 61%;
    max-width: 244px;
    margin: 3% auto;
}

.history {
    background: #f1ca00;
    text-align: center;
    padding: 5% 0;
}

.history a {
    display: inline-block;
    border-radius: 12px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.history a img.sp {
    display: none;
}

@media screen and (max-width: 768px) {

    .bg_01 img.bg {
        width: 1536px;
        height: 1989.6px;
    }

    .message {
        width: 100%;
        margin-top: -532px;
    }

    .message .img_area_02 {
        right: 0;

    }

    .message .bg_white {
        width: 90%;
        padding: 15% 13% 10% 13%;
    }

    .btn_area .bg_02 {
        width: 100%;
        left: 0;
        right: 0;
    }

    .btn_area .bg_02 img {
        left: -25%;
    }

    .btn_area .txt_area {
        width: 96%;
    }

}

@media screen and (max-width: 480px) {
    main {
        margin: 40vh auto 0;
    }

    .scroll {
        top: 85vh;
    }

    .bg_01 img.bg.pc {
        display: none;
    }


    .bg_01 img.bg.sp {
        display: block;
    }

    .bg_01 img.bg {
        width: 1242px;
        height: 1906px;
    }

    .message {
        width: 100%;
        margin-top: -532px;
    }

    .message .img_area_01.pc,
    .message .img_area_02.pc {
        display: none;
    }

    .message .img_area_01.sp,
    .message .img_area_02.sp {
        display: block;
    }

    .message .img_area_01 {
        width: 81.6%;
        top: -140px;
        left: 3%
    }

    .message .img_area_02 {
        width: 77.1%;
        left: 3%;
        bottom: -80px;
    }


    .message .bg_white {
        width: 94%;
        margin-bottom: 50%;
        padding: 20% 6% 20% 6%;
    }

    .message .message_ttl {
        position: relative;
        width: 68%;
        top: 0;
        left: 30%;
    }

    .message h2 {
        font-size: 36px;
        text-align: left;
        margin: 3% auto;
        line-height: 1.5;
    }

    .message p {
        text-align: left;
        width: 84%;
        margin: 0 auto 8%;
        line-height: 1.8;
    }

    .message p.cl_yellow {
        font-size: 16px;
        width: 100%;
    }

    .btn_area {
        margin-top: -100%;
        padding-top: 380px;
        padding-bottom: 5%;
    }

    .btn_area .bg_02 {
        position: absolute;
        height: 534px;
        width: 534px;
        margin: 0 auto;
        top: 49%;
        left: -50%;
        right: 0;
        bottom: 0;
    }

    .btn_area .bg_02 img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        transform: translate(-10%, 0);
    }

    .btn_area .txt_area {
        width: 100%;
    }

    .btn_area .txt_area h3 span {
        left: 45%;
        right: 45%;
        width: 10%;
    }

    .btn_area .flex {
        margin: 5% auto;
        flex-wrap: wrap;
    }

    .btn_area .flex .btn {
        width: 100%;
        margin-bottom: 3%;
    }

    .btn_area .flex .btn a.link_01 img.base.pc {
        display: none;
    }

    .btn_area .flex .btn a.link_01 img.base.sp {
        display: block;
    }


    .btn_area .flex .btn a.link_01 p {
        padding: 20% 7%;
    }

    .btn_area .flex .btn a.link_02 {
        padding: 0;
    }


    .anniversary {
        background-image: url(../images/bg_03_sp.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        padding: 8% 0;
    }

    .anniversary .txt_area h3 {
        position: relative;
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.1em;
        text-align: center;
        margin-bottom: 2%;
        line-height: 2;
    }

    .anniversary .txt_area h3 span {
        position: absolute;
        bottom: 0;
        left: 45%;
        right: 45%;
        display: inline-block;
        width: 10%;
        border-bottom: 2px solid #fff;
    }

    .anniversary .flex_pc {
        display: none;
    }

    .anniversary .sp {
        display: block;
        margin: 10% auto;
    }

    .anniversary .sp a {
        display: block;
        width: 320px;
        margin: 3% auto;
    }


    .award {
        background: #fff;
        padding: 5% 0;
    }

    .award .bdr_box {
        width: 90%;
        max-width: 800px;
        border-radius: 10px;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
        margin: 0 auto;
        padding: 4% 0 2%;

        width: 86.4%;
        padding: 3%;
    }

    .award .bdr_box .flex {
        align-items: ;
    }

    .award .bdr_box img.side {
        width: 13%;
        max-width: 40px;
        margin-top: 20%;
    }

    .award .bdr_box .txt_area {
        position: relative;
        width: 70%;
    }

    .award .bdr_box .txt_area h3 {
        margin: 3% auto;
        line-height: 2;
        letter-spacing: 0;
    }

    .award .bdr_box .txt_area p {
        width: 86%;
        margin: 5% auto 1%;
    }

    .award .bdr_box .txt_area h3 span {
        position: absolute;
        bottom: 0;
        left: 42.5%;
        right: 42.5%;
        display: inline-block;
        width: 15%;
        border-bottom: 2px solid #000;
    }

    .award .bdr_box .txt_area a {
        position: relative;
        margin: 8% auto;
        width: 116%;
        left: -8%;
        right: -8%;
    }

    .history {
        padding: 10% 3%;
    }

    .history a img.pc {
        display: none;
    }

    .history a img.sp {
        display: block;
        max-width: 340px;
        width: 100%;
    }

}



main.greeting {
    position: static;
    width: 100%;
    height: auto;
    z-index: 2;
    margin: 0 auto 0;
}

main.greeting .inner {
    width: 88%;
    max-width: 708px;
    margin: 8% auto;
}

main.greeting h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 5%;
}

main.greeting p {
    font-weight: 500;
    line-height: 2;
    margin-bottom: 5%;
    font-size: 18px;
}

main.greeting .flex {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 10%;
}

main.greeting .flex .txt_area {
    padding: 0 20px;
}

main.greeting .flex p {
    font-weight: 400;
    text-align: right;
    line-height: 1.5;
    margin-bottom: 0%;
}

main.greeting .flex p.name {
    font-weight: 500;
}

main.greeting .flex p.name span {
    font-size: 18px;
}

main.greeting .flex img {
    width: 180px;
}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 480px) {

    main.greeting .inner {
        width: 88%;
        max-width: 708px;
        margin: 10% auto;
    }

    main.greeting h3 {
        margin-bottom: 10%;
    }

    main.greeting p {
        margin-bottom: 10%;
        font-size: 16px
    }

    main.greeting .flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    main.greeting .flex .txt_area {
        padding: 15px 0;
        order: 1;
    }

    main.greeting .flex .img_area {
        width: 195px;
        text-align: right;
    }
}



#history main {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 4;
    margin: 0 auto 0;
}

.start {
    position: absolute;
    width: 93%;
    max-width: 1024px;
    margin: 0 auto;
    height: 100px;
    top: 320px;
    left: 50%;
    right: 0;
    z-index: 3;
}

.start p {
    height: 100%;
    writing-mode: vertical-rl;
    border-left: 2px solid #fff;
    color: #fff;
}

.history_menu {
    position: fixed;
    background-color: #f1ca00;
    /*background-image: url(../images/history_02.png);
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: 0 80%;*/
    border-radius: 15px;
    z-index: 9;
    width: 130px;
    top: 150px;
    left: 5%;
    padding: 1% 0;
    text-align: center;
    display: none;
}

@media screen and (min-width: 1280px) {
    .history_menu {
        left: 10%;
    }
}

.history_menu.is-show {
    display: block;
}

.history_menu.is-hidden {
    display: none;
}

.history_menu ul {
    width: 70px;
    margin: 0 auto;
}

.history_menu a {
    font-weight: 500;
    display: block;
    line-height: 2;
    color: #fff;
    width: 100%;
    text-align: right;
}

.history_menu a:hover {
    color: #a6845c;
}

.history_menu .menu_btn {
    display: none;
    width: 64px;
    position: relative;
}


.list {
    position: relative;
}

.year {
    padding: 4% 0;
}

.year_01 {
    background: #fff;
}

.year_02 {
    background: #eff2f4;
}

.triangle {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
}

.triangle img {
    width: 17.3%;
    max-width: 221px;
    vertical-align: top;
}

.year .inner {
    position: relative;
    width: 94%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 5% 0 15%;
}

.year .nendo {
    position: absolute;
    z-index: 5;
    width: 33%;
    max-width: 333px;
    top: 0;
}

.year .nendo.nendo_01 {
    padding-top: 10px;
}

.year .nendo img.img_01 {
    position: absolute;
    top: 0;
    width: 33.6%;
    max-width: 112px;
    margin-left: 18%;
}

.year .list_data {
    position: relative;
    margin: 0 0 0 12%;
}

.y_bdr {
    position: absolute;
    border-left: 1px solid #a6845c;
    height: 125%;
    top: 10%;
    left: 1.1%;
    z-index: 4;
}

.y_bdr.bdr_02 {
    top: 5%;
    height: 100%;
}


.year .flex {
    display: flex;
    justify-content: space-between;
    padding-top: 4%;
}

@media screen and (min-width: 1281px) {
    .year .flex {
        min-width: 682px;
    }
}

.year .flex .pt19 {
    padding: 19% 0 0;
}

.year .flex p {
    font-size: 18px;
    text-indent: -1em;
    padding-left: 2em;
}

.year .flex p.mt8 {
    margin-top: 8%;
}

.year .flex p.mt30 {
    margin-top: 30%;
}

.year .flex p::before {
    display: inline-block;
    content: "●";
    color: #a6845c;
    margin-right: 1em;
}

.year .flex p.bg_non::before {
    content: "";
}

/*.year .flex .link {
    text-align: right;
    margin: 2%;
}

.year .flex a.modal-open {
    display: inline-block;
    text-align: center;
    width: 75px;
    margin-left: 2em;
}*/

.year .flex .img_area {
    width: 46.5%;
    max-width: 316px;
    border-radius: 15px;
    overflow: hidden;
}

.year .flex .img_area img {
    width: 316px;
    height: 230px;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}

.year .flex img.img_02 {
    width: 341px;
    margin: 3% 0 3% 6em;
}

.year .flex img.img_03.pc {
    width: 482px;
    margin: 3% 0 3% 0em;
}

.year .flex img.img_03.sp {
    display: none;
}

.year .flex img.img_04.pc {
    width: 482px;
    margin: 3% 0 3% 3em;
}

.year .flex img.img_04.sp {
    display: none;
}

.year .flex img.img_05 {
    width: 226px;
    margin: 3% 0 3% 2em;
}

.year .flex img.img_06 {
    width: 95%;
    max-width: 640px;
    margin: 3% 0 3% 2em;
}

.year .flex img.img_07 {
    width: 95%;
    max-width: 650px;
    margin: 3% 0 3% 2em;
}

.year .flex img.img_07.sp {
    display: none;
}

.year .w800 {
    max-width: 800px;
    margin: 0 auto 0;
    padding-top: 14%;
}

.year .w800 img.sp {
    display: none;
}

#y2023 video {
    width: 95%;
    max-width: 800px;
    margin: 3% 0 3% 2em;
}


#y2024 p {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 26px;
    text-align: right;
    margin: 2% auto 8%;
}

#y2024 p br {
    display: none;
}

#history .btn_area {
    background: #f7d85a;
    position: static;
    margin: 0;
    padding: 1% 0 3%;
}

#history .btn_area .inner {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .history_menu {
        position: fixed;
        background-color: #f1ca00;
        background-image: url(../images/history_02.png);
        background-repeat: no-repeat;
        background-size: 25%;
        background-position: 0 75%;
        border-radius: 0;
        z-index: 9;
        width: 142px;
        top: 150px;
        left: -142px;
        padding: 2% 0 0;
        text-align: center;
        transition: all 0.6s;
        display: none;
    }

    .history_menu.is-show {
        display: block;
    }

    .history_menu.is-hidden {
        display: none;
    }

    .history_menu ul {
        width: 80px;
        margin: 0 auto;
    }

    .history_menu .menu_btn {
        background-image: url(../images/year_open.png);
        background-size: contain;
        display: block;
        width: 64px;
        height: 64px;
        position: relative;
        left: 142px;
        bottom: 0;
        transition: all 0.6s;
    }


    .history_menu.active {
        left: 0;
    }

    .history_menu.active .menu_btn {
        background-image: url(../images/year_close.png);
        left: 0;
    }

    .year .inner {
        width: 96%;
        padding: 0 2%;
    }


    .year .flex .img_area {
        width: 44%;
        max-width: 270px;
    }

    .year .flex .img_area img {
        width: 270px;
        height: 200px;
    }

    .year .w800 {
        max-width: 800px;
        margin: 0 auto 0;
        padding-top: 11%;
    }

}

@media screen and (max-width: 480px) {
    .start {
        height: 250px;
        top: 330px;
        left: 50%;
    }

    .year {
        padding: 8% 0;
    }

    .triangle img {
        width: 35.5%;
        max-width: 133px;
    }

    .year .inner {
        width: 100%;
        padding: 0 5% 0 2%;
    }

    .year .nendo {
        width: 50%;
    }

    .year .nendo.nendo_01 {
        padding-top: 10px;
    }

    .year .nendo img.img_01 {
        width: 54%;
        margin-left: 11%;
    }

    .year .list_data {
        position: relative;
        margin: 0 0 0 12%;
    }

    .y_bdr {
        position: absolute;
        border-left: 1px solid #a6845c;
        height: 125%;
        top: 5%;
        left: 2.8%;
        z-index: 4;
    }

    .y_bdr.bdr_02 {
        height: 98%;
    }


    .year .flex {
        display: flex;
        justify-content: space-between;
        padding-top: 4%;

        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .year .flex .txt_area {
        width: 100%;
        padding: 5% 0 0 0;

    }

    .year .flex .pt19 {
        padding: 23% 0 0;
    }

    .year .flex p {
        font-size: 16px;
        margin-bottom: 5%;
    }

    .year .flex p br {
        display: none;
    }

    .year .flex p.mt30 {
        margin-top: 30%;
    }

    .year .flex .img_area {
        width: 90%;
        text-align: center;
        margin: 0 0 0 10%;
    }

    .year .flex .img_area img {
        width: 270px;
        height: 200px;
    }

    .year .flex img.img_02 {
        width: 90%;
        margin: 3% 0 3% 2em;
    }

    .year .flex img.img_03.pc {
        display: none;
    }

    .year .flex img.img_03.sp {
        display: block;
        width: 90%;
        max-width: 258px;
        margin: 3% 0 3% 2em;
    }

    .year .flex img.img_04.pc {
        display: none;
    }

    .year .flex img.img_04.sp {
        display: block;
        width: 90%;
        max-width: 226px;
        margin: 3% 0 3% 2em;
    }

    .year .flex img.img_05 {
        width: 226px;
        margin: 3% 0 3% 2em;
    }

    .year .flex img.img_06 {
        width: 90%;
        max-width: 640px;
        margin: 3% 0 3% 2em;
    }

    .year .flex img.img_07.sp {
        display: block;
        width: 90%;
        max-width: 450px;
        margin: 3% 0 3% 2em;
    }

    .year .flex img.img_07.pc {
        display: none;
    }


    .year .w800 {
        padding-top: 17%;
    }

    .year .w800 img.pc {
        display: none;
    }

    .year .w800 img.sp {
        display: block;
        width: 100%;
        max-width: 348px;
        margin: 0 auto;
    }

    #y2024 .inner {
        padding: 0;
    }

    #y2024 .nendo {
        margin-left: 4%;
    }

    #y2024 p {
        text-align: left;
        max-width: 348px;
        margin: 3% auto;
    }

    #y2024 p br {
        display: block;
    }

    #history .btn_area {
        padding: 5% 0;
    }

}





/*モーダルを開くボタン*/
.modal-open {}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 50%);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    z-index: 999;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
    opacity: 1;
    visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 840px;
    width: 90%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 3%;
    right: 4%;
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: #707070;
    cursor: pointer;
}

.modal-close.close_02 {
    position: relative;
    background: #acacae;
    border-radius: 220px;
    color: #fff;
    width: 75px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    margin: 5% auto;
}

.modal-close.close_02:hover {
    background: #a6845c;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
    background: #fff;
    border-radius: 15px;
    text-align: left;
    padding: 6% 5% 4%;
    text-align: center;
    font-size: 1em;
}

.modal-content h3 {
    background: #f1ca00;
    color: #fff;
    padding: 2px 10px;
    font-size: 20px;
    text-align: left
}

.modal-content .flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 2% auto;
}

.modal-content .flex .img_area {
    width: 42%;
    max-width: 316px;
    border-radius: 15px;
    overflow: hidden
}

.modal-content .flex .img_area img {
    width: 316px;
    height: 230px;
    object-fit: cover;
    font-family: 'object-fit: cover;';

}

.modal-content .flex .txt {
    width: 58%;
    padding: 0 3% 0 4%;
    text-align: left;
}

.modal-content p {
    margin-bottom: 3%;
    font-size: 14px;
    font-weight: 500;
}

/*.modal-content a {
    display: inline-block;
    margin: 2% auto;
    width: 80%;
    max-width: 280px;
    background-color: #142364;
    color: #fff;
    padding: 5px;
    border-radius: 15px;
}*/



main.univ {
    position: static;
    width: 100%;
    height: auto;
    z-index: 2;
    margin: 0 auto 0;
    text-align: center;
}

main.univ .inner {
    width: 88%;
    max-width: 800px;
    margin: 8% auto;
}

main.univ .inner h2 {
    color: #a6845c;
    letter-spacing: 0.2em;
    font-size: 32px;
    margin-bottom: 5%;
}

main.univ .inner h2 br {
    display: none;
}

main.univ h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 5%;
}

main.univ h3 span {
    font-size: 22px;
}

main.univ p {
    font-weight: 500;
    line-height: 2;
    margin-bottom: 5%;
    font-size: 18px;
}

main.univ table {
    width: 80%;
    max-width: 500px;
    margin: 50px auto 30px;
    table-layout: fixed;
    font-size: 18px;
    line-height: 1.8;
}

main.univ table th {
    width: 25%;
    vertical-align: top;
}

main.univ table td {
    width: 75%;
    text-align: left;
}

main.univ .movie {
    width: 100%;
    margin: 80px auto 150px;
    text-align: left;
}

main.univ .movie h4 {
    font-size: 22px;
    color: #a6845c;
}

main.univ .movie p {
    margin-bottom: 2%;
}

main.univ .movie iframe {
    aspect-ratio: 16/9;
    border: 2px solid #000;
}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 480px) {

    main.univ .inner {
        width: 88%;
        max-width: 708px;
        margin: 10% auto;
    }

    main.univ .inner h2 {
        color: #a6845c;
        letter-spacing: 0;
        font-size: 24px;
    }

    main.univ h3 {
        margin-bottom: 10%;
        font-size: 22px;
        letter-spacing: 0;
    }

    main.univ h3 span {
        font-size: 18px;
    }

    main.univ p {
        margin-bottom: 10%;
        font-size: 16px;
    }

    main.univ table {
        width: 100%;
        font-size: 16px;
    }

    main.univ table th {
        width: 20%;
    }

    main.univ table td {
        width: 80%;
    }

    main.univ .movie {
        margin: 50px auto 80px;
    }

    main.univ .movie h4 {
        font-size: 18px;
        margin-bottom: 3%;
    }

    main.univ .movie p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 3%;
    }

    main.univ .movie iframe {
        aspect-ratio: 16/9;
    }
}


main.memorial {
    position: static;
    width: 100%;
    height: auto;
    z-index: 2;
    margin: 0 auto ;
    text-align: center;
}

main.memorial .inner {
    width: 88%;
    max-width: 800px;
    margin: 8% auto 15%;
}

main.memorial .inner h2 {
    color: #a6845c;
    letter-spacing: 0.2em;
    font-size: 32px;
    margin-bottom: 5%;
}

main.memorial .movie02 {
    width: 100%;
    margin: 80px auto 150px;
    text-align: left;
}

main.memorial .movie02 h4 {
    font-size: 22px;
    color: #a6845c;
}

main.memorial video{
    width: 95%;
    max-width: 800px;
    border: 1px solid #dedede;
}

@media screen and (max-width: 480px) {

    main.memorial .inner {
        width: 88%;
        max-width: 708px;
        margin: 10% auto;
    }

    main.memorial .inner h2 {
        color: #a6845c;
        letter-spacing: 0;
        font-size: 24px;
    }

    main.memorial .movie02 {
        margin: 50px auto 80px;
    }

    main.memorial .movie02 h4 {
        font-size: 18px;
        margin-bottom: 3%;
    }

}
