@charset "utf-8";

body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 17.3px;
    position: relative;
}

body:has(#navArea.open) {
    overflow: hidden;
}

@media screen and (max-width:767.98px) {
    body {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* common */
header {
    display: flex;
    width: 100%;
}

@media screen and (max-width:767.98px) {
    header {
        padding: 0 30px;
    }

    header .inner h1 {
        display: flex;
        height: 100%;
        align-items: center;
        max-width: 170px;
    }

    header .inner h1 a {
        display: flex;
        align-items: center;
    }
}

/*============
nav
=============*/
#navArea nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
}

#navArea.open nav {
    left: 0;
    opacity: 1;
}

#navArea nav .inner {
    padding: 25px;
    width: 50%;
}

#navArea nav .inner>ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #000;
}

#navArea nav .inner ul li {
    position: relative;
    margin: 0;
    border-top: 1px solid #000;
}

#navArea nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
    padding-right: 65px;
    position: relative;
}

#navArea nav .inner ul li:not(:has(ul)) a:after {
    content: "➤";
    position: absolute;
    right: 10px;
    top: auto;
    bottom: auto;
    margin: auto;
    transform: scale(0.5, 1);
}

#navArea nav .inner li ul li {
    border-top: 1px dotted #000;
}

#navArea nav .inner li ul li a {
    padding-left: 30px;
}

@media screen and (max-width:767.98px) {
    #navArea nav {
        display: block;
        top: 60px;
    }

    #navArea nav .inner {
        /* top: 45px; */
        position: relative;
        width: 100%;
    }

    #navArea nav .inner ul li a {
        display: block;
        color: #333;
        font-size: 12px;
        font-weight: bold;
        padding: 1em;
        text-decoration: none;
        transition-duration: 0.2s;
    }
}

/*============
  .toggle_btn
  =============*/
.toggle_btn {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 30px;
    width: 54px;
    height: 38px;
    transition: all .5s;
    cursor: pointer;
    z-index: 4;
}

.toggle_btn p {
    font-size: 10px;
    text-align: center;
}

.open .toggle_btn p {
    display: none;
}

.toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 54px;
    height: 1px;
    background-color: #333;
    border-radius: 4px;
    transition: all .5s;
}

.toggle_btn span:nth-child(2) {
    top: 24px;
}

.toggle_btn span:nth-child(3) {
    top: 31px;
}

.toggle_btn span:nth-child(4) {
    top: 38px;
}

.open .toggle_btn span {
    background-color: #333;
}

.open .toggle_btn span:nth-child(2) {
    -webkit-transform: translateY(7px) rotate(-315deg);
    transform: translateX(7px) translateY(7px) rotate(-315deg);
    width: 40px;
}

.open .toggle_btn span:nth-child(3) {
    opacity: 0;
}

.open .toggle_btn span:nth-child(4) {
    -webkit-transform: translateY(-7px) rotate(315deg);
    transform: translatex(5px) translateY(-7px) rotate(315deg);
    width: 40px;
}


@media screen and (max-width:767.98px) {
    .toggle_btn {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        right: 0;
        width: 40px;
        height: 38px;
        transition: all .5s;
        cursor: pointer;
        z-index: 4;
    }

    .toggle_btn p {
        font-size: 10px;
        text-align: center;
    }

    .toggle_btn span {
        display: block;
        position: absolute;
        left: 0;
        width: 40px;
        height: 1px;
        background-color: #333;
        border-radius: 4px;
        transition: all .5s;
    }

    .toggle_btn span:nth-child(2) {
        top: 16px;
    }

    .toggle_btn span:nth-child(3) {
        top: 20px;
    }

    .toggle_btn span:nth-child(4) {
        top: 24px;
    }

    .open .toggle_btn span {
        background-color: #333;
    }

    .open .toggle_btn span:nth-child(2) {
        -webkit-transform: translateY(7px) rotate(-315deg);
        transform: translateX(5px) translateY(7px) rotate(-315deg);
        width: 29.6px;
    }

    .open .toggle_btn span:nth-child(4) {
        -webkit-transform: translateY(-7px) rotate(315deg);
        transform: translatex(5px) translateY(-1px) rotate(315deg);
        width: 29.6px;
    }
}

/*============
  #mask
  =============*/
#mask {
    display: none;
    transition: all .5s;
}

.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

header>.inner {
    display: flex;
    align-items: center;
    width: 1000px;
    position: relative;
    height: 100px;
}

@media screen and (max-width:767.98px) {
    header {
        position: fixed;
        background: #FFF;
        z-index: 99;
        border-bottom: 1px solid #999;
    }

    header>.inner {
        height: 60px;
    }
}



.key-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.slider_box {
    max-width: 1980px;
    margin: 0 auto;
    margin-bottom: 25px;
    display: flex;
    height: 82vh;
}

.slider_box .catchcopy {
    width: 14%;
    writing-mode: vertical-rl;
    padding: 3vw 3vw 3vw 1vw;
    font-size: 2vw;
    letter-spacing: 10px;
}

.slider_box .catchcopyimg {
    width: 30vh;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    aspect-ratio: 1700/790;
    overflow: hidden;
    height: 100%;
}
  
.slider li {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: change-img-anim 90s infinite;
    height: 100%;
}
  
.slider li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
  
.slider li:nth-of-type(1) {
    animation: change-img-anim-first 90s infinite;
    animation-delay: 0s;
}
.slider li:nth-of-type(2) {
    animation-delay: 10s;
}
.slider li:nth-of-type(3) {
    animation-delay: 20s;
}
.slider li:nth-of-type(4) {
    animation-delay: 30s;
}
.slider li:nth-of-type(5) {
    animation-delay: 40s;
}
.slider li:nth-of-type(6) {
    animation-delay: 50s;
}
.slider li:nth-of-type(7) {
    animation-delay: 60s;
}
.slider li:nth-of-type(8) {
    animation-delay: 70s;
}
.slider li:nth-of-type(9) {
    animation-delay: 80s;
}
  
@keyframes change-img-anim-first {
    0%{ opacity: 1;}
    3%{ opacity: 1;}
   12%{ opacity: 1;}
   15%{ opacity: 0;}
  100%{ opacity: 0;}
}
@keyframes change-img-anim {
    0%{ opacity: 0;}
    3%{ opacity: 1;}
   12%{ opacity: 1;}
   15%{ opacity: 0;}
  100%{ opacity: 0;}
}

@media screen and (max-width:767.98px) {
    .slider {
        aspect-ratio: 770/900;
    }
}

.bx-wrapper {
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 20px !important;
}

.bx-viewport .slider li {
    display: block !important;
}

#gnav {
    margin-bottom: 75px;
    width: 100%;
}

@media screen and (max-width:767.98px) {
    .slider_box {
        margin-bottom: 40px;
        position: relative;
        height: auto;
    }
    #gnav {
        display: none;
    }

    .slider_box .catchcopyimg {
        position: absolute;
        height: auto;
        width: 100%;
    }
}

#gnav:not(.top) {
    border-bottom: 1px solid #000;
    margin-bottom: 15px;
}

#gnav.about {
    margin-bottom: 27px;
}

#gnav ul {
    display: flex;
    width: 1000px;
    margin: 0 auto;
    padding: 0;
    justify-content: space-between;
    list-style-type: none;
}

#gnav ul li {
    position: relative;
    padding: 0 0 16px 0;
}

#gnav ul li.current:after {
    content: "▲";
    display: block;
    position: absolute;
    color: #900;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 2;
    bottom: -9px;
}

#gnav ul li a {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

#gnav ul li.current a,
#gnav ul li a:hover {
    color: #900;
}

#gnav ul li ul {
    display: none;
    position: absolute;
    top: 42px;
    background: #fff;
    white-space: nowrap;
    padding-top: 20px;
    margin: 0 -21px;
    max-width: 100vw;
    justify-content: center;
    left: 0;
    right: 0;
    padding: 0 20px;
    border: 1px solid #000;
    box-sizing: content-box;
    z-index: 2;
    width: 165px;
}

#gnav ul li:hover ul {
    display: block;
}
#gnav ul li:hover ul li {
    padding: 0;
    border-bottom: 1px dotted #000;
}
#gnav ul li:hover ul li:last-child {
    border-bottom: 0px;
}
#gnav ul li:hover ul li a {
    display: block;
    padding: 10px 0;
}

.breadcrumb {
    width: 1000px;
    margin: 0 auto 40px;
    display: flex;
    font-size: 13px;
}

@media screen and (max-width:767.98px) {
    .breadcrumb {
        display: none;
    }
}

.breadcrumb li:not(:last-child):after {
    content: "＞";
    margin: 0 15px;
}

nav.sub {
    width: 1000px;
    padding: 20px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-bottom: 27px;
}

nav.sub ul {
    display: flex;
    justify-content: space-around;
}

nav.sub ul a {
    text-decoration: none;
    font-weight: bold;
}

nav.sub ul .active a {
    color: #900;
}

@media screen and (max-width:767.98px) {
    nav.sub {
        display: none;
    }
}

main {
    width: 1000px;
    max-width: 100%;
    margin-bottom: 140px;
    min-height: 400px;
}
main.top {
    width: 100%;
}

@media screen and (max-width:767.98px) {
    main {
        margin-bottom: 70px;
        padding-top: 61px;
    }

    main:not(.top) {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 101px;
    }

    main.top>*:not(.slider_box) {
        padding: 0 15px;
    }
}

main.sub {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

@media screen and (max-width:767.98px) {
    main.sub {
        flex-direction: column;
        padding-top: 90px;
        margin-bottom: 70px;
    }

    main.sub section {
        order: 1;
    }

    main.sub aside {
        order: 0;
    }
}

main>*:last-child {
    margin-bottom: 0;
}

main>section {
    width: 790px;
    margin: 0 auto 110px;
}

@media screen and (max-width:767.98px) {
    main>section {
        width: 100%;
        margin-bottom: 55px;
    }
    main>section:last-of-type {
        margin-bottom: 0;
    }
}

main.sub>section {
    width: 630px;
}

.single {
    width: 850px;
}

.single time {
    display: block;
    margin-bottom: 20px;
}

.single h3.title {
    font-size: 18px;
    margin-bottom: 50px;
}

.single h3.title.qa {
    padding: 15px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.single .content {
    margin-bottom: 60px;
}

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

.single .paging {
    display: flex;
    justify-content: space-between;
}

.single .paging a {
    display: block;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
}

.single .paging a.itiran {
    margin-left: 360px;
    margin-right: 360px;
}
.single .paging a.itiran.news {
    margin: 0 auto;
}

.single .paging a+a.itiran {
    margin-left: 0;
}

.single .paging a.itiran:has(+a) {
    margin-right: 0;
}

.single .paging.qa {
    display: flex;
    justify-content: center;
}

.single .paging.qa a {
    display: block;
    border: 1px solid #000;
    border-radius: 0;
    padding: 10px 20px;
    text-decoration: none;
}

.single .paging.qa a.itiran {
    width: 100%;
    text-align: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media screen and (max-width:767.98px) {
    .single {
        width: 100%;
    }

    .single time {
        display: block;
        margin-bottom: 20px;
    }

    .single h3.title {
        font-size: 18px;
        margin-bottom: 30px;
        text-align: left;
    }

    .single .content {
        margin-bottom: 45px;
    }

    .single .paging {
        display: block;
    }

    .single .paging a {
        text-align: center;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 15px;
    }
}


aside {
    width: 240px;
}

aside .search {
    margin-bottom: 50px;
}

aside .search p {
    text-align: center;
    margin-bottom: 20px;
}

aside .searchbox {
    display: flex;
    justify-content: space-between;
}

aside .searchbox input {
    border-radius: 50px;
    width: 180px;
    height: 33px;
}

aside .searchbox button {
    color: #fff;
    font-size: 13px;
    background-color: #000;
    border-radius: 50px;
    width: 52px;
    height: 33px;
    cursor: pointer;
}

aside .searchbox button:hover {
    background-color: #333;
}

.archive {
    border-bottom: 1px solid #000;
}

.archive>p {
    text-align: center;
    border-top: 1px solid #000;
    padding: 20px 0;
    line-height: 1;
}

.archive ul li {
    display: block;
    line-height: 49px;
    text-align: center;
    border-top: 1px solid #000;
    cursor: pointer;
}

.archive ul li a {
    display: block;
    line-height: 49px;
    text-align: center;
    text-decoration: none;
    padding: 0 10px;
}

.archive ul li.active a {
    background-color: #faf9e5;
}

.archive ul li a:hover {
    background-color: #faf9e5;
}

.archive .year li:not(.open) ul.month {
    height: 0;
    overflow: hidden;
}


.archive ul.year>li {
    position: relative;
}

.archive ul.year>li:after {
    content: "＋";
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
}

.archive ul.year>li.open:after {
    content: "－";
}


@media screen and (max-width:767.98px) {
    aside {
        width: 100%;
    }

    aside .search {
        margin-bottom: 25px;
    }

    aside .searchbox input {
        width: calc(100% - 93px);
    }
    aside .searchbox button {
        width: 70px;
        white-space: nowrap;
    }
    

    .archive>p {
        position: relative;
        border: 1px solid #000;
        padding: 10px 0;
        margin-bottom: 20px;
    }

    .archive>p:after {
        font-family: 'FontAwesome';
        content: "\f107";
        position: absolute;
        right: 15px;
    }

    .archive>p.open:after {
        font-family: 'FontAwesome';
        content: "\f106";
        position: absolute;
        right: 15px;
    }

    .archive p + ul.year {
        height: 0;
        overflow: hidden;
    }

    .archive>p.open+ul.year {
        height: 100%;
    }
}


footer {
    width: 100%;
    background-color: #6e2b1d;
    color: #fff;
    padding: 50px 0;
}

footer .inner {
    display: flex;
    justify-content: space-between;
    width: 1000px;
    margin: 0 auto;
}

footer a,
footer a:hover {
    color: #fff;
}

footer .f-right * {
    text-align: right;
}

@media screen and (max-width:767.98px) {
    footer {
        padding: 25px;
    }

    footer .inner {
        display: block;
        width: 100%;
    }

    footer .f-left {
        margin-bottom: 30px;
    }

    footer .f-right * {
        text-align: center;
    }

}

.sp_qa_category {
    z-index: 98;
}

.qa_list {}

.qa_list div.anchor {
    padding-top: 100px;
    margin-top: -100px;
}

.qa_list div.anchor:not(:first-child) {
    margin-top: -50px;
}

.qa_list li {
    border-bottom: 1px dashed #383838;
    font-size: 16px;
    padding: 25px 0;
}

.qa_list li a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
}

.qa_list li a:after {
    font-family: 'FontAwesome';
    content: "\f105";
}

.qa_list li.category {
    border-bottom-style: solid;
    font-size: 18px;
    font-weight: bold;
    border-top: 1px solid #383838;
    padding: 20px 0;
    color: #6e2b1d;
}

.qa_list2 li {
    border-top: none !important;
    line-height: 1.3em !important;
    text-align-last: left;
    margin-bottom: 25px;
}

.archive ul.qa_list2 li a {
    line-height: 1.3em !important;
    text-decoration: underline !important;
    text-align: left;
}

@media screen and (max-width:767.98px) {
    .archive ul.qa_list2 {
        height: 0;
        overflow: hidden;
    }

    .archive>p.open+ul.qa_list2 {
        height: 100%;
    }
}

.event_title {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
}

.eve_title:before {
    content: "■";
}

.eve_title {
    color: #900;
    margin-bottom: 20px;
}

.eve_content {
    padding-bottom: 35px;
    border-bottom: 2px dashed #c9c9c9;
    margin-bottom: 30px;
}
.eve_content:last-of-type {
    margin-bottom: 0;
}

.sub-box {
    margin: 0 100px 55px;
}

.sub-box:not(:last-of-type) {
    margin-bottom: 55px;
    border-bottom: 2px dashed #888;
}

.sub-box .title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
}

.taisetsu-box {
    padding-bottom: 55px;
}

.taisetsu-box .title {}

.taisetsu-box>div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.taisetsu-box>div img {
    margin-left: 45px;
}

@media screen and (max-width:767.98px) {
    .sub-box {
        margin-bottom: 35px;
        margin: 0 auto 35px;
    }
    .sub-box:not(:last-of-type) {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    div:last-child {
        margin-bottom: 0 !important;
    }

    .sub-box .title {
        font-size: 18px;
    }

    .taisetsu-box {
        padding-bottom: 40px;
    }

    .taisetsu-box:last-of-type {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .taisetsu-box>div {
        display: block;
    }

    .taisetsu-box>div img {
        display: block;
        margin: 30px auto 0 !important;
        width: auto;
    }
}

.kyouwa-box {
    padding-bottom: 0;
}

.kyouwa-box .title {
    font-size: 28px;
}

.kyouwa-box dl {
    margin-bottom: 65px;
}

.kyouwa-box dl dt {
    font-size: 18px;
    font-weight: bold;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 10px 0;
    margin-bottom: 25px;
}

.kyouwa-box dl dd {
    margin-bottom: 20px;
}

.kyouwa-box .caution {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 20px;
}

@media screen and (max-width:767.98px) {
    .kyouwa-box {
        overflow: hidden;
    }
    .kyouwa-box:last-of-type {
        margin-bottom: 0;
    }
    .kyouwa-box dl {
        margin-bottom: 35px;
    }
    .kyouwa-box dl:last-child {
        margin-bottom: 0;
    }

    .kyouwa-box dl dt {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .kyouwa-box dl dd {
        margin-bottom: 5px;
    }
    
    .kyouwa-box .caution {
        font-size: 12px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
}

.katsudou-box {
    padding-bottom: 15px;
}

.katsudou-box>div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.katsudou-box>div strong {
    color: #660000;
    font-weight: bold;
}

.katsudou-box>div>img {
    margin-left: 45px;
    width: 263px;
    height: 174px;
}

.getsurei-list li {
    padding-left: 4.5em;
    text-indent: -4.5em;
}

.kakukai-list {
    display: flex;
    flex-wrap: wrap;
}

.kakukai-list li {
    width: 49%;
    margin-bottom: 40px;
}

@media screen and (max-width:767.98px) {
    .katsudou-box {
        padding-bottom: 5px;
    }
    .katsudou-box:last-of-type {
        margin-bottom: 0;
    }

    .katsudou-box>div {
        display: block;
        margin-bottom: 20px;
    }

    .katsudou-box>div img {
        margin-top: 30px;
        margin-left: auto;
        width: 100%;
        height: 100%;
    }

    .kakukai-list {
        display: block;
    }

    .kakukai-list li {
        width: 100%;
        margin-bottom: 20px;
    }
}

.map-box {
    display: flex;
    justify-content: space-between;
    margin: 0 50px;
    border-bottom: none !important;
}

.map-box iframe {
    aspect-ratio: 577/367;
    height: auto;
}

@media screen and (max-width:767.98px) {
    .map-box {
        display: block;
        justify-content: space-between;
        margin: 0 auto;
        border-bottom: none;
    }

    .map-box p {
        margin-bottom: 40px;
    }
}

.rekishi-box {
    padding-bottom: 55px;
}

.rekishi-box:last-of-type {
    padding-bottom: 0px;
}

.rekishi-box figure {
    float: right;
    min-width: 274px;
    padding-left: 45px;
    background-color: #fff;
    text-align: center;
}
.rekishi-box figure figcaption {
    font-size: 14px;
    margin-bottom: 50px;
    text-align-last: left;
}
.rekishi-box figure figcaption:last-child {
    margin-bottom: 0;
}

.rekishi-box dl {
    display: flex;
    flex-wrap: wrap;
}

.rekishi-box dl dt {
    width: 180px;
    background-color: #fbf3eb;
    padding: 20px 0 20px 20px;
    box-sizing: border-box;
    margin-bottom: 2px;
}

.rekishi-box dl dd {
    width: 620px;
    background-color: #fbf3eb;
    padding: 20px 20px 20px 0;
    box-sizing: border-box;
    margin-bottom: 2px;
}

.rekishi-box div {
    display: flex;
    margin-bottom: 40px;
}

@media screen and (max-width:767.98px) {
    .rekishi-box figure {
        float: none;
        min-width: none;
        padding-left: 0;
    }
    .rekishi-box figure figcaption {
        margin-bottom: 30px;
    }

    .rekishi-box p {
        margin-bottom: 20px;
    }

    .rekishi-box dl {
        display: block;
    }

    .rekishi-box dl dt {
        width: 100%;
        padding: 10px 10px 0;
    }

    .rekishi-box dl dd {
        width: 100%;
        padding: 0 10px 10px;
        margin-bottom: 2px;
    }

    .rekishi-box div {
        display: block;
        margin-bottom: 20px;
    }

    .rekishi-box>div img {
        margin-left: 0;
    }
}


#modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(92, 92, 92, 0.7);
}

#modal p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    color: #fff;
}

.mail p {
    margin-bottom: 50px;
}

.mail form:not(:last-of-type) {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #000;
}

.mail span {
    line-height: 35px;
    margin-right: 25px;
}

.mail input[type="email"] {
    width: 343px;
    height: 35px;
    border-color: #999;
    border-style: solid;
    border-width: 1px;
    margin-right: 25px;
}

.mail button.submit {
    display: inline-flex;
    padding: 0 25px;
    height: 35px;
    color: #fff;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

@media screen and (max-width:767.98px) {
    .mail p {
        margin-bottom: 25px;
    }

    .mail form:not(:last-of-type) {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .mail span {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .mail input[type="email"] {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .mail button.submit {
        display: flex;
        width: 100%;
    }
}

.imgmap {
    margin-bottom: 100px;
}

.map-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.map-list li {
    margin-bottom: 45px;
}

.map-list li img {
    width: 430px;
}

@media screen and (max-width:767.98px) {
    .imgmap {
        margin-bottom: 30px;
    }

    .map-list {
        display: block;
    }

    .map-list li {
        margin-bottom: 30px;
        text-align: center;
    }
}

.select_month {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.select_month a {
    text-decoration: none;
}

li[aria-hidden="true"] img {
    opacity: 0;
}