@charset "utf-8";
:root {
    --BgColor: #fff;
    --fs-pc-12: clamp(8px,0.625vw,12px);
    --fs-pc-12_8: clamp(8px,0.667vw,12.8px);
    --fs-pc-14: clamp(9px,0.729vw,14px);
    --fs-pc-14_4: clamp(9px,0.750vw,14.4px);
    --fs-pc-14_784: clamp(9px,0.770vw,14.784px);
    --fs-pc-15: clamp(9px,0.781vw,15px);
    --fs-pc-16: clamp(10px,0.833vw,16px);
    --fs-pc-18: clamp(10px,0.938vw,18px);
    --fs-pc-18_4: clamp(10px,0.958vw,18.4px);
    --fs-pc-19: clamp(11px,0.990vw,19px);
    --fs-pc-19_2: clamp(11px,1.000vw,19.2px);
    --fs-pc-20: clamp(11px,1.042vw,20px);
    --fs-pc-21_252: clamp(11px,1.107vw,21.252px);
    --fs-pc-23: clamp(12px,1.198vw,23px);
    --fs-pc-24: clamp(12px,1.250vw,24px);
    --fs-pc-25: clamp(13px,1.302vw,25px);
    --fs-pc-28: clamp(14px,1.458vw,28px);
    --fs-pc-29: clamp(14px,1.510vw,29px);
    --fs-pc-30: clamp(15px,1.5625vw,30px);
    --fs-pc-32: clamp(16px,1.667vw,32px);
    --fs-pc-40: clamp(20px,2.083vw,40px);
    --fs-pc-42: clamp(21px,2.1875vw,42px);

    --fs-sp-12: clamp(8px,3.20vw,24px);
    --fs-sp-12_8: clamp(8px,3.41vw,25.6px);
    --fs-sp-13: clamp(8px,3.46vw,26px);
    --fs-sp-14: clamp(9px,3.73vw,28px);
    --fs-sp-14_4: clamp(9px,3.84vw,28.8px);
    --fs-sp-14_784: clamp(9px,3.94vw,29.568px);
    --fs-sp-15: clamp(9px,4.00vw,30px);
    --fs-sp-16: clamp(10px,4.27vw,32px);
    --fs-sp-18: clamp(10px,4.80vw,36px);
    --fs-sp-18_4: clamp(10px,4.91vw,36.8px);
    --fs-sp-19: clamp(11px,5.07vw,38px);
    --fs-sp-19_2: clamp(11px,5.12vw,38.4px);
    --fs-sp-20: clamp(11px,5.33vw,40px);
    --fs-sp-21_252: clamp(11px,5.67vw,42.504px);
    --fs-sp-22_5: clamp(12px,6.00vw,45px);
    --fs-sp-23: clamp(12px,6.13vw,46px);
    --fs-sp-24: clamp(12px,6.40vw,48px);
    --fs-sp-25: clamp(13px,6.67vw,50px);
    --fs-sp-28: clamp(14px,7.47vw,56px);
    --fs-sp-29: clamp(14px,7.73vw,58px);
    --fs-sp-32: clamp(16px,8.53vw,64px);
    --fs-sp-40: clamp(20px,10.67vw,80px);
}

.br-sp {
    display: none;
}

@media (min-width: 767px) {
    .br-sp {
        display: block;
    }
}
html {
    /* scroll-behavior: smooth; */
}
body {
    background: var(--BgColor);
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #595959;
}

hr.line1{
  width: 100%;
  border: none;
  border-top: 1px dotted #999;
  margin: 15px 0 ;
}

.underline{
    border-bottom: 1.5px solid #595959;
      display: inline-block;
      padding-bottom: -20px;
}

.menuinsta{
    display:flex;
    justify-content: center;
    align-items: center;
}

/***** Display PC SP Togle *****/
.gen-disp_non {
    display: none !important;
}
.gen-disp_sp, .gen-disp_sp_inline {
      display: none;
}
@media screen and (max-width: 1920px) {
}
@media screen and (max-width:767px) {
    .gen-disp_pc {
        display: none !important;
    }
    .gen-disp_sp {
        display: block;
    }
    .gen-disp_sp_inline {
        display: inline;
    }
}

button:hover {
    opacity: .7;
    transition: .3s;
}
a:hover {
    opacity: .7;
    transition: .3s;
}

#wrapper {
    position: relative;
    width: 100%;
    /* max-width: 1920px; */
    margin: 0 auto;
}
@media screen and (max-width: 1920px) {
    #wrapper {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    #wrapper {
        width: 100%;
    }
}

/* --------------------------------
header
----------------------------------- */
#header {
    position: fixed;
    width: 100%;
    height: 120px;
    background: #fff;
    z-index: 999;
}
.drawer-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    padding: 0 5% 0;
}
#header .pc {
    display: block;
}
#header .sp {
    display: none;
}
header a {
    text-decoration: none;
    color: #595959;
}
.header-logo {
    width: 212px;
}
.header-logo img {
    display: block;
    width: 100%;
    height: auto;
}
.drawer-navbar-header {
    width: 450px;
}
.nav {
    width: 100%;
}
.nav ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    list-style-type: none;
    margin: 0 auto;
    text-align: center;
}
.nav ul a {
    letter-spacing: 0.16em;
    font-size: var(--fs-pc-18);
    font-weight: bold;
    font-weight: 700;
}
.nav ul a:hover {
    opacity: .7;
    transition: .3s;
}

.nav img {
    display: block;
    }

.drawer-menu-item {
    color: #595959;
    margin: 0 auto;
    text-align: center;
    align-items: center;
}
@media screen and (max-width: 1920px) {
    #header {
        height: 6.25vw;
    }
    .header-logo {
        width: 11vw;
    }
}
@media screen and (max-width: 1023px) {
    #header {
        position: fixed;
        overflow: hidden;
        height: 16vw;
        max-height: 100px;
        padding: 0;
        font-size: var(--fs-sp-16);
        overflow: hidden;
        background: #FFF;
    }
    #header .pc {
        display: none;
    }
    #header .sp {
        display: block;
    }
    .drawer-nav {
        overflow: auto;
    }
    .drawer-navbar-header {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        background: #fff;
    }
    .drawer-navbar .drawer-brand {
        width: 46vw;
        max-width: 312px;
        height: auto;
        margin-left: 3%;
    }
    .drawer-hamburger {
        /* position: absolute; */
        width: 8vw;
        max-width: 50px;
        padding: 0.2em 0.2em 0.2em;
        font-size: var(--fs-sp-16);
        right: 2% !important;
        top: 3vw !important;
    }
    .drawer-hamburger img {
        width: 100%;
    }
    .drawer-container {
        /* position: absolute; */
        /* margin: 0; */
    }
    .drawer-nav {
        /* width: 100vw; */
        /* margin: 0; */
        /* padding: 0; */
        /* background: rgba(255, 255, 255, .75); */
    }
    .swiper {
        /* width: 100%; */
        /* height: 100vh; */
    }
    .nav ul {
        flex-direction: column;
        width: 100%;
        margin: 100px 0 100px;
    }
    .nav ul li {
        width: 100%;
        margin: 0 0 1em;
        text-align: center ;
    }
    .nav ul li a {
        width: 100%;
        font-size: var(--fs-sp-18);
    }
}
@media screen and (max-width: 767px) {
    .drawer-hamburger {
        padding: 0.2em 0.2em 0.2em;
        right: 2% !important;
        top: 4vw !important;
    }
}

/* --------------------------------
main
----------------------------------- */
#main {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 0 0;
}
@media screen and (max-width: 1920px) {
    #main {
        padding: 6.25vw 0 0;
    }
}
@media screen and (max-width: 767px) {
    #main {
        padding: 0;
    }
}

/* --------------------------------
main visual
----------------------------------- */
.swiper {
    width: 100%;
    height: auto;
}

.mv {
    position: relative;
}
.mv picture {
    display: block;
    width: 100%;
}
.mv picture img {
    display: block;
    width: 100%;
}
.mv .topics {
    position: absolute;
    bottom: 6%;
    right: 0;
    z-index: 2;
}
.mv .topics a {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 1em 4em 1em 1.5em;
    background: #fff;
    border-radius: 10vw 0 0 10vw;
    text-decoration: none;
    font-size: var(--fs-pc-18);
    font-weight: bold;
    font-weight: 700;
    color: #595959;
}
.mv .topics .title {
    position: relative;
    top: -0.2em;
    width: 4.5em;
    margin: 0 1.75em 0 0;
    padding: 0 0 0.375em;
    letter-spacing: .1em;
}
.mv .topics .title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 4.25em;
    height: .285em;
    border-top: .285em solid #fbce00;
    border-radius: .285em;
}
.mv .topics .item {
    display: flex;
}
.mv .topics .date {
    margin: 0 1.2em 0 0;
    letter-spacing: .1em;
    transform: scaleX(1.2);
}
@media screen and (min-width: 1920px) {
    .mv .topics a {
        border-radius: 2em 0 0 2em;
    }
}
@media screen and (max-width: 767px) {
    .mv .topics {
        bottom: 7%;
    }
    .mv .topics a {
        align-items: center;
        padding: 0.25em 2em 0.75em 1.5em;
        font-size: var(--fs-sp-13);
    }
    .mv .topics .title {
        top: 0;
        margin: 0 1.25em 0 0.25em;
    }
    .mv .topics .item {
        flex-direction: column;
    }
    .mv .topics .date {
        margin: 0 0 0 0;
        transform: scaleX(1);
    }
    .mv .topics .text {
        line-height: 1.25;
    }
}

/* --------------------------------
section
----------------------------------- */
.section-inner {
    width: 1200px;
    margin-right: auto;
    margin-left: auto;
}
@media screen and (max-width: 1920px) {
    .section-inner {
        width: 62.5vw;
    }
}
@media screen and (max-width: 767px) {
    .section-inner {
        width: 87%;
    }
}

/* --------------------------------
section1
AOU銀座の森について
----------------------------------- */
#section1 {
    margin: 168px 0 250px;
    font-weight: bold;
    font-weight: 700;
}
#section1 .box-container {
    display: flex;
    width: 100%;
}
#section1 .box-center {
    text-align: center;
}
#section1 .box-left {
    width: 45%;
}
#section1 .box-left figure {
    width: 254px;
    height: auto;
    margin: 0 auto;
}
#section1 .box-left figure img {
    display: block;
    width: 100%;
    height: auto;
}
#section1 .box-right {
    width: 55%;
    line-height: 2.45;
    letter-spacing: 0.16em;
    font-size: var(--fs-pc-20);
}
@media screen and (max-width: 1920px) {
    #section1 {
        margin: 8.75vw 0 13vw;
    }
    #section1 .box-left figure {
        width: 13.2vw;
    }
}
@media screen and (max-width: 767px) {
    #section1 {
        margin: 70px 0 70px;
    }
    #section1 .box-left {
        width: 100%;
        margin: 0 0 50px;
    }
    #section1 .box-left figure {
        width: 50%;
    }
    #section1 .box-container {
        flex-direction: column;
    }
    #section1 .box-right {
        width: 100%;
        margin: 0 0 70px;
        text-align: center;
        font-size: var(--fs-sp-12);
    }
}

/*
section1 box2
-------------- */
#section1 .box2 {
    width: 100%;
    margin: 280px 0 0;
    text-align: center;
}
#section1 .text1 {
    margin: 1em 0 1em;
    line-height: 1.95;
    letter-spacing: 0.16em;
    font-size: var(--fs-pc-23);
}
#section1 .text1sp {
    margin: 1em 0 1em;
    line-height: 1.95;
    letter-spacing: 0.16em;
    font-size: var(--fs-sp-22_5);
}
#section1 .text2 {
    margin: 1em 0 1em;
    line-height: 1.48;
    letter-spacing: 0.1em;
    font-size: var(--fs-pc-32);
}
#section1 .text2 span.small {
    letter-spacing: 0.1em;
    font-size: var(--fs-pc-19);
}
#section1 .text2 span.midium {
    letter-spacing: 0.1em;
    font-size: var(--fs-pc-25);
}
#section1 .text2 span.large {
    font-size: var(--fs-pc-42);
}
#section1 .text3 {
    margin: 1.5em 0 1em;
    line-height: 1.66;
    letter-spacing: 0.1em;
    font-size: var(--fs-pc-18);
}
#section1 .text3 .small {
    line-height: 1.66;
    letter-spacing: 0.1em;
    font-size: var(--fs-pc-16);
}
#section1 .info-btn {
    width: 299px;
    font-size: var(--fs-pc-19);
}
#section1 .info-btn img {
    display: block;
    width: 100%;
    height: auto;
}
#section1 .insta-btn {
    width: 320px;
}
#section1 .insta-btn img {
    display: block;
    width: 100%;
    height: auto;
}
#section1 .text4 {
    margin: 1em 0 2em;
    line-height: 2.65;
    letter-spacing: 0.1em;
    font-size: var(--fs-pc-16);
}
#section1 .box2 .img-container {
    margin: 8% auto 3%;
}
#section1 .box2 .img-container img {
    width: 44%;
}
.more-info {
    margin: 1em 0 1em;
}
@media screen and (max-width: 1920px) {
    #section1 .box2 {
        margin: 13vw 0 0;
    }
    #section1 .instamag {
        margin: 1vw 0 0;
    }
    #section1 .info-btn {
        width: 15.57vw;
    }
    
}
@media screen and (max-width: 767px) {
    #section1 .box2 {
        margin: 0 0 0;
    }
    #section1 .text1 {
        font-size: var(--fs-sp-16);
    }
    #section1 .text2 {
        letter-spacing: 0.02em;
        font-size: 1.2rem;
    }
    #section1 .text2 span.small {
        letter-spacing: -0.05em;
        font-size: var(--fs-sp-14);
    }
    #section1 .text2 span.indent {
        display: inline-block;
        margin-left: 4em;
    }
    #section1 .text2 span.large {
        font-size: var(--fs-sp-32);
    }
    #section1 .text3 {
        font-size: var(--fs-sp-14_4);
    }
    #section1 .text3 .small {
        font-size: var(--fs-sp-12_8);
    }
    #section1 .text4 {
        letter-spacing: 0.02em;
        font-size: var(--fs-sp-14);
    }
    #section1 .box2 .img-container {
        margin: 10% auto 10%;
    }
    #section1 .box2 .img-container img {
        width: 55%;
    }
    #section1 .info-btn {
        width: 79.73vw;
    }
    #section1 .info-btn img {
        display: block;
        width: 100%;
    }
    #section1 .insta-btn {
        width: 79.73vw;
    }
    #section1 .insta-btn img {
        display: block;
        width: 100%;
    }
}

/* --------------------------------
section2
森で体験できること
----------------------------------- */
#section2 {
    margin: 250px 0 232px;
}
#section2 h2 {
    width: 407px;
    margin: 0 auto;
}
#section2 h2 img {
    display: block;
    width: 100%;
    height: auto;
}
@media screen and (max-width: 1920px) {
    #section2 {
        margin: 13vw 0 1.5625vw;
    }
    #section2 h2 {
        width: 21.2vw;
    }
}
@media screen and (max-width: 767px) {
    #section2 h2 {
        width: 53.33vw;
    }
}

/*
section2 box1
-------------- */
#section2 .box1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin: 90px 0 250px;
}
#section2 .box1 .item {
    width: 25%;
    height: auto;
    margin: 0 25px;
}
#section2 .box1 .item1 {
    width: 19%;
    margin: 0 0 0 5%;
}
#section2 .box1 .item2 {
    width: 19%;
}
#section2 .box1 .item3 {
    width: 25%;
    margin: 0 4% 0 0;
}
#section2 .box1 img {
    display: block;
    width: 100%;
    height: auto;
}
@media screen and (max-width: 1920px) {
    #section2 .box1 {
        width: 57.29vw;
        margin: 4.6875vw auto 13vw;
    }
}
@media screen and (max-width: 767px) {
    #section2 {
        margin: 30% 0 0;
    }
    #section2 .box1 {
        flex-direction: column;
        width: 52vw;
        margin: 20% auto;
    }
    #section2 .box1 .item1 {
        width: 88%;
        margin: 0 auto 30%;
    }
    #section2 .box1 .item2 {
        width: 90%;
        margin: 0 auto 30%;
    }
    #section2 .box1 .item3 {
        width: 98%;
        margin: 0 auto 0;
    }
}

/*
img_full
-------------- */
.img-container_full {
    width: 100%;
    margin: 250px 0 0;
}
.img-container_full img {
    display: block;
    width: 100%;
    height: auto;
}
@media screen and (max-width: 1920px) {
    .img-container_full {
        margin: 13vw 0 0;
    }
}
@media screen and (max-width: 767px) {
    .img-container_full {
        margin: 20vw 0 0;
    }
}

/*
section2 box2
カフェ
-------------- */
#section2 .box2 {
    margin: 100px 0 250px;
}
#section2 .box2 h3 {
    margin: 0 0 .75em;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.1em;
    font-size: var(--fs-pc-40);
    font-weight: bold;
    font-weight: 700;
}
#section2 .box2 p {
    text-align: center;
    line-height: 2.2;
    letter-spacing: 0.15em;
    font-size: var(--fs-pc-20);
    font-weight: bold;
    font-weight: 700;
}
@media screen and (max-width: 1920px) {
    #section2 .box2 {
        margin: 5.2vw 0 13vw;
    }
}
@media screen and (max-width: 767px) {
    #section2 .box2 {
        margin: 5vw 0 0;
    }
    #section2 .box2 h3 {
        margin: 10% 0 5%;
        text-align: center;
        font-size: var(--fs-sp-28);
    }
    #section2 .box2 .box-container {
        flex-direction: column-reverse;
    }
    #section2 .box2 .box-left {
        width: 100%;
    }
    #section2 .box2 .box-right {
        width: 100%;
    }
    #section2 .box2 p {
        line-height: 1.85;
        text-align: justify;
        font-size: var(--fs-sp-14);
    }
}

/*
section2 box3
-------------- */
#section2 .box3 {
    margin: 7% 0 0;
}
#section2 .box3 img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 0;
}
#section2 .box3 .note {
    margin: 4em 0 0;
    font-weight: 700;
    font-size: var(--fs-pc-18);
}
@media screen and (max-width: 767px) {
    #section2 .box3 {
        width: 100%;
        height: auto;
        margin: 20% 0 0;
        padding: 0 5%;
    }
    #section2 .box3 img.sp {
        display: block;
        width: 100%;
        height: auto;
    }
    #section2 .box3 .note {
        margin: 2.5em 0 0;
        font-size: var(--fs-sp-13);
    }
}

/*
section2 box4
くつろぐ、働く
-------------- */
#section2 .box4 {
    margin: 100px 0 250px;
}
#section2 .box4 .box-container {
    display: flex;
    justify-content: space-between;
}
#section2 .box4 .box-left {
    width: 52%;
}
#section2 .box4 .box-right {
    width: 44%;
}
#section2 .box4 h3 {
    margin: 0 0 .75em;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.1em;
    font-size: var(--fs-pc-40);
    font-weight: bold;
    font-weight: 700;

}
#section2 .box4 p {
    text-align: center;
    line-height: 2.2;
    letter-spacing: 0.15em;
    font-size: var(--fs-pc-20);
    font-weight: bold;
    font-weight: 700;
}
@media screen and (max-width: 1920px) {
    #section2 .box4 {
        margin: 5vw 0 13vw;
    }
}
@media screen and (max-width: 767px) {
    #section2 .box4 {
        margin: 5% 0 0;
    }
    #section2 .box4 h3 {
        margin: 10% 0 5%;
        text-align: center;
        font-size: var(--fs-sp-28);
    }
    #section2 .box4 p {
        line-height: 1.85;
        letter-spacing: 0.05em;
        text-align: justify;
        font-size: var(--fs-sp-14);
    }
}

/*
section2 box5
AOU with
-------------- */
#section2 .box5img {
    width: 24.84%;
    margin: 0 auto;
}
#section2 .box5 {
    margin: 120px 0 0;
}
#section2 .box5 .box-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 70px;
}
#section2 .box5 .box-left {
    width: 68%;
}
#section2 .box5 .box-right {
    width: 32%;
    margin: 1em 0 0;
}
#section2 .box5 h3 {
    margin: 0 0 .75em;
    line-height: 1.1;
    letter-spacing: 0.1em;
    font-size: var(--fs-pc-40);
    font-weight: bold;
    font-weight: 700;
}
#section2 .box5 p {
    line-height: 2.2;
    letter-spacing: 0.12em;
    font-size: var(--fs-pc-20);
    font-weight: bold;
    font-weight: 700;
}
#section2 .box5 .box-right img {
    display: block;
    width: 100%;
    margin: 0 auto;
}
#section2 .box6 {
    margin: 82px 0 0;
}
#section2 .box6 h4 {
    margin: 0 0 1.25em;
    line-height: 2;
    letter-spacing: 0.16em;
    font-size: var(--fs-pc-24);
    font-weight: bold;
    font-weight: 700;
}
#section2 .box6 ul.with-list {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
}
#section2 li {
    width: 22%;
    margin: 0 4% 2% 0;
}
#section2 li:nth-child(4n) {
    margin-right: 0;
}
#section2 li a {
    text-decoration: none;
    color: #595959;
}
#section2 li figure img {
    display: block;
    width: 100%;
    height: auto;
}
#section2 li figure.dummy {
    width: 100%;
    aspect-ratio: 260 / 168;
}
#section2 li figcaption {
    margin: 1em 0 0;
    text-align: center;
    line-height: 1.35;
    letter-spacing: 0.16em;
    font-size: var(--fs-pc-20);
    font-weight: bold;
    font-weight: 700;
}
@media screen and (max-width: 1920px) {
    #section2 .box5 {
        margin: 6.25vw 0 0;
    }
    #section2 .box5 .box-container {
        margin: 0 auto 3.645vw;
    }
    #section2 .box6 {
        margin: 4.2vw 0 0;
    }
}
@media screen and (max-width: 767px) {
    #section2 .box5 {
        margin: 10vw 0 0;
    }
    #section2 .box5img {
        width: 61.6%;
        margin: 42vw auto 0;
    }
    #section2 .box5 .box-container {
        flex-direction: column;
    }
    #section2 .box6 ul.with-list {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #section2 .box5 .box-left {
        width: 100%;
        margin: 15% auto 0;
    }
    #section2 .box5 p {
        line-height: 1.85;
        letter-spacing: 0.05em;
        text-align: justify;
        font-size: var(--fs-sp-14);
    }
    #section2 .box5 .box-right {
        width: 76%;
        margin: 15% auto 10%;
    }
    #section2 .box5 h3 {
        margin: 0 0 8%;
        text-align: center;
        font-size: var(--fs-sp-28);
    }
    #section2 .box6 h4 {
        text-align: center;
        font-size: var(--fs-sp-19);
    }
    #section2 li figcaption {
        line-height: 1.42;
        letter-spacing: 0.05em;
        font-size: var(--fs-sp-14);
    }
    #section2 .box5 .box-right img {
        margin-left: -1%;
    }
    #section2 li {
        width: 47%;
        margin: 0 0 7%;
    }
    #section2 li figure.dummy {
        height: 0;
    }

}

/* --------------------------------
section3
三信住建の取り組み
----------------------------------- */
#section3 {
    margin: 232px 0 300px;
}
#section3 .img-container {
    width: 1200px;
    margin: 0 auto 100px;
}
#section3 .img-container img {
    display: block;
    width: 100%;
    height: auto;
}
#section3 h2 {
    width: 470px;
}
#section3 h2 img {
    display: block;
    width: 100%;
    height: auto;
}
#section3 .box1 .box-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 70px;
}
#section3 .box1 .box-left {
    width: 50%;
}
#section3 .box1 .box-right {
    width: 44%;
}
#section3 .box1 p {
    margin: 1em 0 1.5em;
    line-height: 2.2;
    letter-spacing: 0.11em;
    font-size: var(--fs-pc-20);
    font-weight: bold;
    font-weight: 700;
}
#section3 .box1 a {
    display: inline-block;
    border-bottom: 1px solid #595959;
    text-decoration: none;
    line-height: 2.2;
    letter-spacing: 0.12em;
    color: #595959;
}
#section3 .box1 .box-right img {
    display: block;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 1920px) {
    #section3 {
        margin: 15.625vw 0 15.625vw;
    }
    #section3 .img-container {
        width: 62.5vw;
        margin: 0 auto 5.2vw;
    }
    #section3 h2 {
        width: 22.48vw;
    }
    #section3 .box1 .box-container {
        margin: 0 auto 3.645vw;
    }
}
@media screen and (max-width: 767px) {
    #section3 {
        margin: 40vw 0 0;
    }
    #section3 .img-container {
        width: 100vw;
        margin: 0 auto 8vw;
    }
    #section3 h2 {
        width: 68.2vw;
        margin: 0 auto 10%;
    }
    #section3 .box1 .box-container {
        flex-direction: column;
    }
    #section3 .box1 .box-left {
        width: 100%;
    }
    #section3 .box1 .box-right {
        width: 100%;
        margin: 5% 0 0;
    }
    #section3 .box1 p {
        line-height: 1.85;
        letter-spacing: 0.05em;
        text-align: justify;
        font-size: var(--fs-sp-14);
    }
}

/* --------------------------------
section4
FAQ
----------------------------------- */
#section4 {
    margin: 300px 0 300px;
}
#section4 h2 {
    width: 78px;
    margin: 0 auto;
}
#section4 h2 img {
    display: block;
    width: 100%;
    height: auto;
}
.faq-container {
    text-align: center;
}
.faq-container a {
    text-decoration: none;
    color: #595959;
}
.faq-item {
}
.question {
    margin: 100px 0 0;
    line-height: 1.375;
    letter-spacing: 0.16em;
    font-size: var(--fs-pc-32);
    font-weight: bold;
    font-weight: 700;
}
.answer {
    margin: 1em 0;
    line-height: 2.2;
    letter-spacing: 0.16em;
    font-size: var(--fs-pc-20);
    font-weight: bold;
    font-weight: 700;
}
@media screen and (max-width: 1920px) {
    #section4 {
        margin: 15.625vw 0 15.625vw;
    }
    #section4 h2 {
        width: 4.0625vw;
    }
    .question {
        margin: 5.2083vw 0 0;
    }
}
@media screen and (max-width: 767px) {
    #section4 {
        margin: 50% 0 0;
    }
    #section4 h2 {
        width: 16.2vw;
    }
    .question {
        margin: 15% 0 0;
        line-height: 1.5;
        font-size: var(--fs-sp-18);
    }
    .question span {
        font-size: var(--fs-sp-25);
    }
    .answer {
        line-height: 1.85;
        letter-spacing: 0.1em;
        text-align: justify;
        font-size: var(--fs-sp-14);
    }
}

/* --------------------------------
section5
お知らせ
----------------------------------- */
#section5 {
    margin: 300px 0 300px;
}
#section5 h2 {
    width: 150px;
    margin: 0 auto;
}
#section5 h2 img {
    display: block;
    width: 100%;
    height: auto;
}
#section5 .news-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50vw;
    margin: 80px auto 80px;
    list-style-type: none;
}
#section5 .news-list li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: 1.5em 0;
    line-height: 2;
    letter-spacing: .16em;
    font-size: var(--fs-pc-20);
    font-weight: bold;
    font-weight: 700;
}
#section5 .news-list li a {
    text-decoration: none;
    color: #595959;
}
#section5 .news-list .date {
    /* margin: 0 3em 0 0; */
    width: 20%;
}
#section5 .news-list .text {
    width: 80%;
}
@media screen and (max-width: 1920px) {
    #section5 {
        margin: 15.625vw 0 15.625vw;
    }
    #section5 h2 {
        width: 7.8125vw;
    }
    #section5 .news-list {
        margin: 4.16vw auto;
    }
}
@media screen and (max-width: 767px) {
    #section5 {
        margin: 50% 0 50%;
    }
    #section5 h2 {
        width: 31.2vw;
    }
    #section5 .news-list {
        align-items: center;
        width: 100%;
        text-align: center;
    }
    #section5 .news-list li {
        flex-direction: column;
        line-height: 1.64;
        font-size: var(--fs-sp-14);
    }
    #section5 .news-list .date {
        display: block;
        width: 100%;
        margin: 0;
    }
    #section5 .news-list .text {
        width: 100%;
    }
}

/* --------------------------------
footer
お問い合わせ
----------------------------------- */
footer {
    width: 100%;
    background: #e8e8e8;
    margin-top: 10vw;
}
footer .time {
    font-size: 1.2rem;
    padding-top: 20px;
}
footer .time span {
    font-size: 1rem;
}
footer .inner {
    width: 1200px;
    margin: 0 auto;
    padding: 100px 0 50px;
}
footer a {
    text-decoration: none;
    color: #595959;
}
footer .footer-logo {
    width: 417px;
    margin: 0;
}
footer .footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}
footer .btn.google-map {
    width: 299px;
}
footer .btn.google-map img {
    display: block;
    width: 100%;
    height: auto;
}
footer .box-container {
    display: flex;
    margin: 50px 0 130px;
    letter-spacing: .1em;
    font-size: var(--fs-pc-16);
    font-weight: bold;
    font-weight: 700;
}
footer .box-left {
    width: 50%;
}
footer .box-right {
    width: 50%;
}
footer .access {
    line-height: 2.0625;
    letter-spacing: .1em;
}
footer .event {
    margin: 40px 0 0;
}
footer .event p {
    letter-spacing: .1em;
}
footer .btn.google-map {
    display: block;
    margin: 40px 0 0;
}
footer .btn.google-map:hover {
    opacity: .7;
    transform: .3s;
}
footer .footer-menu {
    margin: -0.5em 0 0 100px;
    list-style-type: none;
}
footer .footer-menu li {
    line-height: 3;
    letter-spacing: .1em;
}
footer .copyright {
    text-align: center;
    letter-spacing: .1em;
    font-size: var(--fs-pc-16);
    font-weight: bold;
    font-weight: 700;
}
@media screen and (max-width: 1920px) {
    footer .inner {
        width: 62.5vw;
        padding: 5.208vw 0 2.604vw;
    }
    footer .footer-logo {
        width: 21.72vw;
    }
    footer .box-container {
        margin: 2.604vw 0 6.77vw;
    }
    footer .event {
        margin: 2.604vw 0;
    }
    footer .btn.google-map {
        margin: 2.083vw 0 0;
        width: 15.57vw;
    }
}
@media screen and (max-width: 767px) {
    footer .inner {
        width: 81.33%;
        padding: 15% 0 5%;
    }
    footer .footer-logo {
        width: 90%;
        margin: 0 auto;
    }
    footer .box-container {
        flex-direction: column;
        margin: 12% 0 0;
    }
    footer .box-left {
        width: 100%;
        padding-left: 1em;
    }
    footer .box-right {
        width: 100%;
        margin: 10% 0 15%;
        text-align: center;
    }
    footer .access {
        line-height: 1.92;
        font-size: var(--fs-sp-14);
    }
    footer .event {
        margin: 7% 0 0;
    }
    footer .event p a {
        font-size: var(--fs-sp-14);
    }
    footer .btn.google-map {
        display: block;
        width: 100%;
        margin: 10% 0;
        text-align: center;
    }
    footer .footer-menu {
        margin: 0 0 0 0;
        line-height: 2.5;
        font-size: var(--fs-sp-16);
    }
    footer .copyright {
        line-height: 1.25;
        font-size: var(--fs-sp-12);
    }
}

/* --------------------------------
popup
----------------------------------- */
.fixed {
    box-sizing: border-box;
    position: fixed;
    width: 100%;
    height: 100%;
  }
  .popup {
    background: rgba(255,255,255,.5);
    height: 100vh;
    left: 0;
    position: fixed;
    opacity: 0;
    top: 0;
    width: 100vw;
    z-index: 999;
  }
  @keyframes popupFadeIn {
  0%   { display: none; opacity: 0; }
  1%   { display: block; opacity: 0; }
  100% { display: block; opacity: 1; }
  }
  @keyframes popupFadeOut {
  0%   { display: block; opacity: 1; }
  99%   { display: block; opacity: 0; }
  100% { display: none; opacity: 0; }
  }
  .popup[aria-hidden="false"] {
    animation: popupFadeIn .3s ease-out 0s forwards;
  }
  .popup[aria-hidden="true"] {
    animation: popupFadeOut .3s ease-out 0s forwards;
  }
.popup_inner {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    border: 5px solid #595959;
    overflow-y: scroll;
}
.popupCloseBtn {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
}
.popupCloseBtn img {
    display: block;
    width: 100%;
    height: auto;
}

/* モーダル内 */
#section1 .popup_inner .box-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1316px;
    margin: 75px auto 100px;
    text-align: center;
}
#section1 .popup_inner .box-container .img-container {
    margin: 0 0 0;
}
#section1 .popup_inner .box-container .img-container img {
    display: block;
    width: 100%;
    height: auto;
}
#section1 .popup_inner .box-left {
    width: 100%;
    max-width: 691px;
    text-align: left;
}
#section1 .popup_inner .box-right {
    width: 100%;
    max-width: 508px;
    margin: 43% 0 0 1%;
}
#section1 .popup_inner .box-right img {
    display: block;
    width: 100%;
    height: auto;
}
#section1 .popup_inner .box {
    margin: 0 0 0;
}
#section1 .popup_inner .box.box1 {
    margin: 0 0 4%;
}
#section1 .popup_inner h2 {
    display: inline-block;
    margin: 0 0 1em;
    padding: 0 0 0.25em;
    border-bottom: 4px solid #595959;
    line-height: 1.5;
    letter-spacing: 0.16em;
    font-size: var(--fs-pc-32);
    font-weight: bold;
    font-weight: 700;
}
#section1 .popup_inner p {
    margin: 0 0 1.875em;
    line-height: 1.44;
    letter-spacing: 0.16em;
    font-size: var(--fs-pc-25);
    font-weight: bold;
    font-weight: 700;
}
#section1 .popup_inner p.arrow {
    position: relative;
    margin: 0 0 0.275em;
    padding: 0 0 1.5em;
}
#section1 .popup_inner p.arrow::after {
    content: "";
    display: block;
    width: 1em;
    height: 1.5em;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin: -0.25em;
    background: url(../img/arrow.svg) no-repeat;
    background-size: auto;
}
@media screen and (max-width: 1920px) {
    #section1 .popup_inner .box-container {
        width: 68.5vw;
        margin: 3.9vw auto 3.9vw;
    }
    #section1 .popup_inner p.arrow::after {
        background-size: contain;
    }
    #section1 .popup_inner .box-right {
        margin: 23vw 0 0 2%;
    }
}
@media screen and (max-width: 767px) {
    .popupCloseBtn {
        top: 20px;
        right: 30px;
        width: 10%;
        height: 10%;
    }
    #section1 .popup_inner .box-container {
        width: 84%;
        margin: 10vw auto 20vw;
    }
    #section1 .popup_inner .box-left {
        width: 100%;
        margin: 0 0 1%;
        text-align: center;
    }
    #section1 .popup_inner .box-right {
        width: 100%;
        margin: 0;
    }
    #section1 .popup_inner h2 {
        font-size: var(--fs-sp-19_2);

    }
    #section1 .popup_inner p {
        font-size: var(--fs-sp-15);

    }
    #section1 .popup_inner p.arrow {
        margin: 0 0 0.275em;
        padding: 0 0 1.75em;
    }
    #section1 .popup_inner p.arrow::after {
        width: 0.85em;
        height: 1.5em;
        bottom: 0;
        left: 50%;
        margin: 0 0 0 -0.5em;
    }
}
