@charset "utf-8";
/* =================================
common
================================= */

:root {
    --primary-white: #FDFDFD;
    --primary-cream: #FFFEE9;
    --primary-brown: #4D4D2D;
    --primary-black: #3B3B3B;
    --primary-green: #BCE2AD;
    --primary-beige: #C5C5A2;
    --primary-lightgreen: #a7efb1;
    --primary-yellowgreen: #9CF12A;
    --primary-yellowgreen2: #6ADF26;
    --primary-darkGreen: #386C5F;
    --primary-darkGreen2: #6C8748;
    --primary-red: #8A2900;
    --primary-orange: #d66800;
    --primary-lightGray: #C8D1D1;
    /* 横幅　343/375=91.4% */
    --contentWidth: 91.4%;
    /* 余白　16/375=4.2% */
    --contentPadding: 4.2%;
}

html {
    font-size: 62.5%;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


body {
    font-family:
    "Zen Maru Gothic",
    "Noto Sans JP",
    sans-serif;
    font-style: normal;
    color: var(--primary-brown);
    background: url(../images/bg.PNG), rgb(255 221 2 / 14%);
    background-position: center;
    background-blend-mode:lighten;
    position: relative;
    line-height: 1.5;
    letter-spacing: 1.2px;
    overflow-x: hidden;

    justify-content: center;
    align-items: center;
}


img {
    /* 画像が持っているサイズ分目一杯広がる */
    max-width: 100%;
    height: auto;
}

a:hover {
    opacity: 0.5;
}

/* 最後のページ（MV）は固定で消えない） */
.page.mv {
  transform: none !important;
  opacity: 1 !important;
  z-index: 1;
  height: auto;
  width: 100vw;
}

/* スクロール禁止用 */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.container {
    display: block;
    overflow: visible;
}

.topic {
    color: var(--primary-brown, #4D4D2D);
    text-align: center;
    font-weight: 700;
    font-size: 1.8rem;
    font-style: normal;
    line-height: 2.1rem;
    /* margin: 0 auto; */
    padding: 20px 0;
    margin: 20px 20%;
    border-top: 0.5px var(--primary-brown) dotted;
    border-bottom: 0.5px var(--primary-brown) dotted;
}


.btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1em 2em;
  width: 200px;
  color: var(--primary-white);
  font-size: 1.8rem;
  font-weight: 600;
  /* background-color: rgba(23, 140, 0, 0.7); */
  background-image: url(../images/bg4.png);
  border-radius: 50vh;
  transition: 0.3s;
}

.btn a::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid var(--primary-yellowgreen2);
  border-radius: 50vh;
  transition: 0.2s;
}

.btn a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid var(--primary-white);
  border-right: 3px solid var(--primary-white);
  transform: rotate(45deg);
}

.btn a:hover::before {
  top: 0;
  left: 0;
}

.btn a:hover {
  text-decoration: none;
  background-color: var(--primary-lightgreen);
}

.btn--another a {
    background-image: url(../images/bg7.png);
    color: var(--primary-cream);
    justify-content: space-around;
    font-weight: 500;
}

.btn--another a::before {
    border: 2px solid #ffe341;
}

.btn--another a::after {
    display: none;
}

.btn--another a:hover {
  background-color: #f55e00;
}

.pcBr {
    display: none;
}



/* common PC */

@media screen and (min-width: 769px) {
    body {
    background-image: url(../images/bg.png);
    background-size: auto;
    }

    .topic {
        font-size: 3.6rem;
        line-height: 1;
        padding: 30px 0;
        width: -webkit-fill-available;
    }

    .topic::after {
        margin: 32px auto 0;
    }

    .btn {
        width: 343px;
        height: 56px;
        font-size: 2.2rem;
    }

    .btn a {
        width: 285px;
        height: 76px;
        letter-spacing: 0.5rem;
        font-size: 2rem;
    }

    .spBr {
        display: none;
    }

    .pcBr {
        display: block;
    }

}

/* pc 769px */

/* =================================
loading
================================= */

#book-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fffef2; /* パステルイエロー */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.book {
  position: relative;
  width: 60px;
  height: 40px;
  background: #d6f8b8; /* 淡い黄緑の表紙 */
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* ページ部分 */
.book .book-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 40px;
  background: #fff;
  border-radius: 2px;
  animation: flip 1.2s ease-in-out infinite;
  transform-origin: left center;
}

/* ページのアニメーションずらし */
.book .book-page:nth-child(2) { animation-delay: 0.2s; }
.book .book-page:nth-child(3) { animation-delay: 0.4s; }

@keyframes flip {
  0%, 100% { transform: rotateY(0deg); }
  50% { transform: rotateY(-180deg); }
}

/* テキスト */
#book-loader p {
  margin-top: 12px;
  font-family: 'Zen Maru Gothic';
  color: #9a8753;
  font-size: 1rem;
}

/* 非表示状態 */
#book-loader.hide {
  opacity: 0;
  visibility: hidden;
}


/* ページ全体フェードイン（段階的） */

/* 初期状態：すべて非表示 */
body.loading header,
body.loading main,
body.loading footer {
  opacity: 0;
  transform: translateY(10px); /* 少し下からふわっと出す */
  transition: opacity 1.4s ease, transform 1.4s ease;
  will-change: opacity, transform;
}

/* ローディング完了で順にフェードイン */
body.loaded header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s; /* すぐに表示 */
}

body.loaded main {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s; /* ヘッダーより0.6秒遅く */
}

body.loaded footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s; /* メインより0.6秒遅く */
}

/* article_copy の pタグごとの段階フェードイン */

/* 初期状態：右から少しずらして非表示 */
.article_copy p {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}

/* body.loaded で順番にフェードイン */
body.loaded .copy_right p:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1s;
}

body.loaded .copy_right p:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 2s;
}

body.loaded .copy_left p:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 3s;
}

body.loaded .copy_left p:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 4s;
}



@media screen and (min-width: 769px) {
    .book {
        width: 120px;
        height: 80px;
    }

    .book .book-page {
        width: 120px;
        height: 80px;
    }
}


/* =================================
header
================================= */

header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999 !important; /* 強制的に最前面 */
  pointer-events: auto;
}

.container,
.main,
.article__header,
.mainVisual {
  z-index: 1;
}


.header {
    /* background-color: rgba(250, 245, 227, 0.69); */
    padding: 0 20px;
    /* 16px/375=0.042 */
    display: flex;
    /* 横並びにする */
    align-items: center;
    /* 水平中央（display: flex使用時のみ使える） */
    justify-content: space-between;
    /* 両サイド画面いっぱい広げる */
    position: fixed;         /* ← sticky から fixed に変更 */
    top: 0;                  /* 1px ではなく 0 に */
    left: 0;
    width: 100%;
    height: 67px;
    z-index: 2000;           /* 他の要素より前面に */
    backdrop-filter: blur(4px); /* optional: 背景ぼかし */
    pointer-events: none;
}

.header__topic a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__topic {
    width: 50px;
    height: auto;
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-overlay__pc {
    display: none;
}

/* ハンバーガーメニュー */

.header__right {
    display: flex;
    position: relative;
    align-items: center;
    width: 83px;
}

.hamburger-overlay {
  display: flex;
  z-index: 1000;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  width: 28px;
  height: 45px;
  align-items: center;
  margin: 0 0 0 auto;
}

.hamburger-overlay__line {
  position: absolute;
  left: 2px;
  width: 26px;
  height: 2px;
  background-color: var(--primary-brown);
  transition: all .6s;
  display: block;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: var(--primary-brown);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}


/* ハンバーガーメニューボタンEND */

.nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(234 255 166 / 87%);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

/* .nav active表示 */
.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: left;
  padding-left: 13%;
}

.nav-overlay__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-overlay__item {
    color: var(--primary-white);
    font-size: 1.4rem;
    line-height: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s;
    align-items: center;
    display: flex;
    position: relative;
}

.nav-overlay__item:before {
    content: '';
    /* ↑擬似要素の時は必須 */
    display: block;
    border: 0.01px var(--primary-brown) solid;
    position: absolute;
    bottom: 50%;
    left: 65px;
    transform: translateX(-50%);
    width: 21%;    
}

.nav-overlay__link {
  padding: 26px;
  color: var(--primary-brown);
  font-size: 1.6rem;
  text-decoration: none;
  transition: color .3s;
  margin-left: 29%;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: 0.5s; }


.nav-overlay__item:last-of-type {
    display: none;
}




.newwindow {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 5px;
}


.header__insta {
    display: flex;
    align-items: center;
    width: 64px;
    height: 64px;
    position: absolute;
}

.instagram {
    display: block;
    width: 30px;
    height: auto;
}

/* header pc */

@media screen and (min-width: 769px) {
    .header {
        height: 70px;
        width: 100%;       /* ← 115% → 100% に修正 */
        padding: 10px 60px; /* ← paddingを少し小さく */
        top: 0;             /* 念のため指定 */
        left: 0;    
    }

    .header__topic {
        font-size: 2.5rem;
    }

    .hamburger-overlay {
        display: none;
    }

    .nav-overlay {
        display: none;
    }

    .nav-overlay__pc {
        display: block;
    }

    .pc-overlay__list {
        margin-top: 0;
        display: flex;
        align-items: center;
    }

    .pc-overlay__item {
        margin: 0 0 0 32px;
        color: var(--primary-brown);
        text-align: center;
        font-size: 1.6rem;
        line-height: 1.3;
        /* 20.8px */
    }

    .pc-overlay__item:hover {
        opacity: 0.3;
    }

    .pc-overlay__item::before {
        display: none;
    }

    .pc-overlay__link {
        display: flex;
        align-items: flex-end;
    }

    .newwindow {
        display: inline-block;
        width: 15px;
        height: 15px;
        margin-left: 5px;
    }

    .header__insta {
        display: none;
    }

    .instagram {
        display: block;
        width: 34px;
    }

    /* 最後から二番目非表示 */

    .nav-overlay__item:last-of-type {
        display: block;
    }

    .header__right {
        display: none;
    }

}

/* pc 769px */

/* =================================
article__header
================================= */

.main {
  padding-top: 70px; /* ヘッダー分の余白を確保 */
}


.article__header {
    height: 440px;
    position: relative;
    /* .article__headerのなかの要素にabsoluteを使うため */
}


.mainVisual {
    margin: 138px auto 0;
    width: 100%;
    position: absolute;
}

.bird_mv {
    display: block;
    width: 50%;
    margin: 55px auto 0;
}

.mvTitle {
    font-size: 2.3rem;
    text-align: center;
    font-weight: 600;
}

.logo {
    background-image: url(../images/green.png);
    background-repeat: no-repeat;
    background-size: 40% 200px;
    background-position: center;
}

.article_copy {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between; /* 左右に配置 */
  writing-mode: vertical-rl;
  padding-left: 8%; /* 左右余白 */
  flex-direction: column;
}

.copy_left {
  align-items: flex-start;
}

.copy_right {
  align-items: flex-end;
}

.article_copy p {
    color: rgb(39 18 0 / 69%);
    margin-top: 16px;
    letter-spacing: 1.2rem;
    /* border-left: 1px #ffffff solid; */
    height: fit-content;
    padding-right: 15px;
    font-weight: 500;
    font-size: 1.4rem;
    background-position: 10px 10px;
    background-repeat: no-repeat;
    background-size: contain;
    line-height: 4rem;
    border-left: 1px var(--primary-brown) solid;
}


.yellow {
    width: 500px;
    height: 500px;
    position: absolute;
    top: 50px;
    left: 34%;
    z-index: -1;
    opacity: 0.6;
}

.article__header.fadeIn {
    transform: translate(0, 0px);
    opacity: 0;
    transition: 0.8s;
}

.article__header.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}


.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}


.bird {
    display: none;
}

/* article_header pc */

/* @media screen and (min-width: 543px) {
} */

@media screen and (min-width: 769px) {
    .article__header {
        height: 600px;
        margin: 0;
    }

    .mainVisual {
        padding: 56px 70px 40px 205px;
        max-width: 933px;
        margin: 52px auto 0;
    }


    .article_copy {
        height: 500px;
        margin: 152px 0 0 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 0;
    }

    .article_copy p {
        margin-top: 43px;
        letter-spacing: 2rem;
        /* padding-right: 14%; */
        font-size: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding-right: 35px;
    }

    .mainVisual {
        padding: 0;
        max-width: none;
    }


    .bird_mv {
        width: 20%;
        max-width: 320px;
        margin-top: 163px;
    }

    .logo {
        background-size: 20% 80%;
        width: 100vw;
        overflow-y: visible;
    }

    .logo p {
        display: block;
        font-size: 4rem;
        font-weight: 600;
        letter-spacing: 0.5rem;
    }

    .copy_left {
        margin-right: 0px;
    }

    .yellow {
        width: 950px;
        height: 950px;
        top: 128px;
        left: 50%;
        z-index: -1;
        opacity: 0.6;
    }

    .yellow img {
        width: 900px;
    }
}

/* pc 769px */

/* =================================
about
================================= */

.section--about {
    background-size: 200px 100px;
    padding: 0px var(--contentPadding) 40px;
    margin-top: 65px;
    text-align: center;
    background-color: #d4fabe;
    width: 100%;
    height: 700px;
    position: relative;
    z-index: 100;
}

.section--about::before {
    content: "";
    background-image: url(../images/wave.svg);
    background-repeat: no-repeat;
    width: 100%;
    height: 112px;
    position: absolute;
    left: 0;
    top: -112px;
    z-index: 0;
}

.mainCaption {
    width: var(--contentWidth);
    margin: -18px auto 40px;
    font-size: 1.6rem;
    line-height: 1.3;
    /* 20.8px */
}

.mainCaption__txt {
    margin-top: 30px;
    line-height: 2.3;
}

.mainCaption__txt:first-of-type {
    margin-top: 0;
}

.mainCaption__txt span {
    font-weight: 600;
}

.btn--about {
    margin-top: 16px;
}

.btn--about:hover {
    opacity: 0.5;
}


/* about pc */

@media screen and (min-width: 769px) {
    .section--about {
        padding: 64px 0 61px;
        margin-top: 192px;
        height: 753px;
    }

    .mainCaption {
        width: 100%;
        /* 横幅初期か */
        max-width: 958px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        letter-spacing: none;
    }

    .mainCaption__txt {
        font-size: 1.8rem;
        letter-spacing: 0.5rem;
    }

    .mainCaption__txt span {
        font-size: 3.2rem;
        font-weight: 600;
    }

    .mainCaption__txt:first-of-type {
        margin-top: 19px;
    }


    .btn--about {
        margin-top: 52px;
    }

}

/* pc 769px */

/* =================================
Schedule
================================= */

.section--schedule {
    background-size: 200px 100px;
    padding: 0px var(--contentPadding) 40px;
    margin-top: -29px;
    text-align: center;
    background-color: #e4ec9f;
    width: 100%;
    height: 706px;
    position: relative;
    z-index: 100;
}

.section--schedule::before {
    content: "";
    background-image: url(../images/wave2.svg);
    background-repeat: no-repeat;
    width: 100%;
    height: 86px;
    position: absolute;
    left: 0;
    top: -86px;
    z-index: 0;
}


.schedule__content {
    text-align: center;
}

.schedule__date {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 20px 0 0;
    line-height: 1.5;
    letter-spacing: 0.2rem;
}

.schedule__date span {
    font-size: 2rem;
    margin-left: 5px;
}

.schedule__condition {
    margin-bottom: 15px;
}

.schedule__condition span {
    margin-left: 10px;
}

.calender {
    width: 95%;
    max-width: 800px;
    height: 500px;
}


/* Schedule pc */

@media screen and (min-width: 769px) {

    .section--schedule {
        margin-top: 10px;
        height: 771px;
    }

    .section--schedule::before {
        height: 120px;
        top: -120px;
    }

    .schedule__date span {
        font-size: 3rem;
    }

    .schedule__condition {
        margin: 20px auto 20px;
        font-size: 1.6rem;
    }

}

/* pc 769px */

/* =================================
newbooks
================================= */


.section--newbooks {
    padding: 10px 18%;
    background-size: 200px 100px;
    margin-top: 3px;
    background-color: #fefcbd;
    width: 100%;
    height: 860px;
    position: relative;
    z-index: 100;
}

.section--newbooks::before {
    content: "";
    background-image: url(../images/wave3.svg);
    background-repeat: no-repeat;
    width: 100%;
    height: 86px;
    position: absolute;
    left: 0;
    top: -75px;
    z-index: 0;
}

.shiori_orange {
    width: 128%;
    height: 65px;
    position: absolute;
    right: 0;
    z-index: -1;
}    

.section--newbooks.topic {
    color: var(--primary-cream);
    border-top: 2px #ffac00 dotted;
    border-bottom: 2px #ffac00 dotted;
    border-top: 0;
    border-bottom: 0;
    position: absolute;
    width: 100%;
    left: -21%;
    margin: 9px 20%;
}

.month {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-top: 24px;
}

.newbooks_list {
    margin: 0 auto;
    padding-bottom: 30px;
    height: 291px;
    width: 1000px;
}

.newbooks__item {
    margin-top: 20px;
}

.newbooks__title {
    display: flex;
}

.bookname {
    color: var(--primary-orange);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.7;
}

.writer {
    color: var(--primary-orange);
    margin-left: 27px;
    font-size: 1.4rem;
    font-weight: 400;
}

.newbooks__txt {
    margin-left: 27px;
    font-size: 1.4rem;
}

.newbooks__upload {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-top: 179px;
}

.btn--newbooks img {
    margin-left: 3px;
}

.btn--newbooks {
    margin-top: 18px;
}

.btn--newbooks:hover {
    opacity: 0.3;
}

/* Schedule pc */

@media screen and (min-width: 769px) {

    .section--newbooks {
        display: flex;
        flex-direction: column;
        align-items: center;  
        padding: 25px 5%;
        height: 1030px;
    }

    .shiori_orange {
        width: 80%;
        height: 83px;
    }

    .topic--orange {
        margin: 7px 20%;
    }

    .month {
        margin-top: 26px;
        font-size: 3.5rem;
    }

    .newbooks_list {
        margin: 35px 10% 35px 9%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: row;
        height: auto;
    }

    .newbooks__item {
        margin: 13px;
        padding-left: 20px;
        width: 31%;
    }

    .bookname {
        font-size: 2rem;
        margin-left: 5px;
    }

    .writer {
        margin: 2px 0 0 32px;
    }

    .newbooks__txt {
        margin: 5px 0 0 32px;
    }

    .newbooks__title img {
        width: 24px;
        height: 24px;
        margin-top: 4px;
    }

    .newbooks__upload {
        margin-top: -27px;
    }

    .btn--newbooks {
        margin-top: 30px;
    }

}

/* pc 769px */



/* =================================
Flow
================================= */

.section--flow {
    padding: 10px var(--contentPadding);
    margin-top: 10px;
    background-color: #d7f9db;
    width: 100%;
    height: 1578px;
    position: relative;
    text-align: center;
    z-index: 100;
}

.section--flow::before {
    content: "";
    background-image: url(../images/wave4.svg);
    background-repeat: no-repeat;
    width: 100%;
    height: 86px;
    position: absolute;
    left: 0;
    top: -75px;
    z-index: 0;
}

.flow__title {
    color: #148d41;
    font-size: 1.8rem;
    font-weight: 700;
}

.flow__txt {
    font-size: 1.6rem;
    text-align: left;
    margin: 0 auto;
    width: fit-content;
}

.flow__txt p {
    margin-top: 8px;
}

.flow_list {
    padding: 0 17% 30px;
}

.item__left {
    margin-top: 20px;
    border-radius: 10%;
    padding: 10%;
    max-width: 500px;
    background-color: rgb(255 255 255 / 58%);
}

.dli-chevron-down {
  position: relative;
  display: inline-block;
  width: 62px;
  height: 33px;
  margin-top: 11px;
}

.dli-chevron-down::before,
.dli-chevron-down::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 28px;
  border-radius: 9999px;
  background-color: #009724;
  transform-origin: 50% calc(100% - 2px);
}

.dli-chevron-down::before {
  transform: rotate(45deg);
}

.dli-chevron-down::after {
  transform: rotate(-45deg);
}

.btn--flow {
    margin-top: 15px;
}

.btn--flow:hover {
    opacity: 0.5;
}

@media screen and (min-width: 1600px) {

    .section--flow {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 839px;
        margin-top: -105px;
    }

    .section--flow::before {
        height: 179px;
        top: -159px;
    }

    .flow_list {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .flow__item {
        display: flex;
        align-items: center;
    }

    .item__left {
       width: fit-content;
       height: 366px;
       padding: 34px;
    }

    .dli-chevron-down {
        rotate: -90deg;
    }

    .flow__txt {
        width: 406px;
        margin: 36px auto 0;
    }

    .flow_txt--return {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flow__txt p {
        font-size: 1.8rem;
    }

    .btn--flow {
        margin-top: 30px;
    }
}

@media screen and  (min-width:770px) and (max-width:1599px) {

    .section--flow {
        margin-top: -112px;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 868px;
    }

    .flow__title {
        font-size: 2.2rem;
    }

    .btn--flow {
        margin-top: 30px;
    }

    .section--flow {
        padding: 10px var(--contentPadding);
        margin-top: -7px;
        width: 100%;
        height: 1700px;
        position: relative;
        text-align: center;
    }

    .section--flow::before {
        content: "";
        width: 100%;
        height: 86px;
        position: absolute;
        left: 0;
        top: -75px;
    }
}




/* =================================
Access
================================= */

.section--access {
    padding: 10px var(--contentPadding);
    margin-top: -7px;
    background-color: #d3fea2;
    width: 100%;
    height: 555px;
    position: relative;
    text-align: center;
    z-index: 100;
}

.section--access::before {
    content: "";
    background-image: url(../images/wave5.svg);
    background-repeat: no-repeat;
    width: 100%;
    height: 86px;
    position: absolute;
    left: 0;
    top: -75px;
    z-index: 0;
}

.map {
    width: 80%;
    height: 300px;
    margin: 0 auto;
    display: block;
}

.address_place {
    font-size: 1.8rem;
}

.address__txt p {
    text-align: center;
    line-height: 1.5;
}

.address_walk {
    margin: 10px;
    font-size: 1.6rem;
}


@media screen and (min-width: 769px) {
    .section--access {
        padding: 13px 23%;
        height: 950px;
        margin-top: 34px;
    }

    .section--access::before {
        height: 226px;
        top: -220px;
    }

    .address__txt{
        margin: 32px 0;
    }


    .address_place {
        font-size: 2rem;
    }

    .address_walk {
        font-size: 1.8rem;
    }

    .map {
        height: 600px;
    }
}


/* =================================
Footer
================================= */

.footer {
    /* background-color: #9fc4007a; */
    padding-top: 48px;
    background-image: url(../images/bg.PNG);
}

.footerTitle {
    font-size: 1.6rem;
    text-align: center;
    font-family: 'Avenir Next';
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.footerNav {
    margin-top: 32px;
}

.footerNav__list {
    display: flex;
    flex-wrap: nowrap;
    /* display:flex使った時に使用可能 */
    flex-direction: row-reverse;
    padding: 10px 0;
    justify-content: center;
    max-width: 268px;
    margin: 0 auto;
}

.footerNav__item {
   writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
}

.footerNav__item a {
    display: flex;
    /* aタグはインライン要素 */
    color: var(--primary-brown);
    font-size: 1.6rem;
    line-height: 3.6;
    /* 文字サイズの2.6倍　41.6px */
    align-items: center;
    border-left: 1px var(--primary-brown) solid;
}


.newwindow--footer {
    width: 18px;
    height: auto;
    margin-left: 5px;
}

.contact {
    width: var(--contentWidth);
    margin: 0 auto;
    padding-top: 30px;
    gap: 20px;
}

.contact__address {
    font-size: 1.4rem;
    line-height: 1.5;
    /* 21px */
    width: fit-content;
    margin: 0 auto;
}

.contact__address a {
    color: var(--primary-brown);
    font-size: 1.4rem;
    text-decoration: underline;
}


.address_mail img {
    width: 15px;
    height: auto;
}

.footer__insta {
    display: block;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copy {
    text-align: center;
    padding: 8px 0;
    margin-top: 48px;
}

.copy small {
    color: var(--primary-brown);
    font-size: 1.2rem;
    line-height: 1.5;
    /* 18px */
}

/* Footer pc */

@media screen and (min-width: 769px) {

    .footer {
        padding-top: 62px;
        display: block;
        flex-direction: column;
        align-items: center;
    }

    .footer__group {
        display: block;
        max-width: none;
        margin: 0;
        justify-content: space-evenly;
        padding: 0 18%;
    }

    .footer_bird {
        margin: 0;
        width: 128px;
    }

    .footerTitle {
        font-size: 1.6rem;
                text-align: justify;
    }

    .footer__content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between; /* ★ 追加：両端揃え */
        width: 100%;
        max-width: 1200px;              /* 中央寄せにしたい場合は任意 */
        margin: 0 auto;                 /* ★ 中央配置（任意） */
    }

    .footer__left {
        margin-right: 61px;
    }

    .footer__insta {
        width: 27px;
        margin-top: 20px;
    }

    .contact__address a {
        font-size: 1.6rem;
        margin-left: 10px;
    }

    .address_mail {
        margin: 20px 0 0 0;
        display: flex;
    }

    .address_mail img {
        width: 24px;
        height: auto;
    }

    
    .footerNav {
        margin-top: 16px;
    }

    .footerNav__list {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 0 7%;
        /* display:flex使った時に使用可能 */
        max-width: none;
    }

    .footerNav__item {
        width: auto;
        /* デフォルトに戻す */
    }

    .footerNav__item:hover {
        opacity: 0.5;
    }

    .footerNav__item a {
        line-height: 3.3;
        margin-top: 0;
    }

    .contact {
        display: block;
        padding: 0;
        gap: 0;
    }

    .copy {
        padding: 30px 0;
        margin-top: 64px;
    }
}

/* pc 769px */

/* -------------------------------- 
about
-------------------------------- */

.yellow_about {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
}

.yellow_about img {
    max-width: none;
    width: 1000px;
}

.about {
    background-color: #d4fabe;
}

.aboutTitle {
    padding: 50px 0;
    margin-top: 50px;
}

/* =================================
subaco.lgc とは？
================================= */

.section--introduction {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    font-size: 1.6rem;
    align-items: center;
    line-height: 4rem;
}

.description p {
    margin-top: 20px;
}

.btn--machilibrary {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.btn--machilibrary a {
    font-size: 1.6rem;
    width: 287px;
}

.newwindow--about {
    width: 20px;
}

/* =================================
gallery
================================= */

.section--gallery {
    margin-top: 50px;
}

.gallery {
    display: flex;
    flex-direction: column;
}

.photo_right {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.photo_left {
    margin-top: 20px;
}




/* =================================
gallery
================================= */

.lightgreen_about {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: -1;
}

.lightgreen_about img {
    max-width: none;
    width: 1000px;
}

.section--greetings {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20%;
}

.bird_ojigi {
    width: 100px;
}

.greetingsTitle {
    width: 100%;
}

.description {
    font-size: 1.6rem;
    padding: 0 0 42px;
}

.description p {
    margin-top: 30px;
}

@media screen and (min-width: 769px) {
    .description_intro {
        padding: 0 0 33px;
        font-size: 2rem;
        display: flex;
        flex-direction: column;
    }

    .description_intro p {
        margin-top: 30px;
    }

    .btn--machilibrary a {
        width: 330px;
    }

    .section--gallery {
        height: 600px;
    }

    .gallery {
        display: grid;
        grid-template-columns: 30% 30% 30%;
        grid-template-rows: 30% 30%;
        gap: 10px;
        grid-template-areas:
        "A A B"
        "C D D";
        height: 890px;
        max-width: 800px;
        margin: 0 auto;
    }

    .gallery .photoA {
        grid-area: A;
    }

    .gallery .photoB {
        grid-area: B;
    }

    .gallery .photoC {
        grid-area: C;
    }

    .gallery .photoD {
        grid-area: D;
    }

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

    .section--greetings {
        height: 902px;
    }

    .bird_ojigi {
        width: 149px;
        margin-top: 30px;
    }


    .description {
        font-size: 1.8rem;
        padding: 0 0 80px;
        display: flex;
        flex-direction: column;
        margin-top: 40px;
    }

    .description p {
        margin-top: 67px;
        width: fit-content;
    }

}


/* -------------------------------- 
rule
-------------------------------- */

.rule {
    background-color: #bdffc5b3;
}

.ruleTitle {
    padding: 50px 0;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.section--rule {
    padding: 0 14%;
    text-align: center;
}

.nolimited {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 45px;
}

/* =================================
cautions
================================= */

.green_rule {
    position: absolute;
    top: 0;
    z-index: -1;
    right: -178px;
}

.section--cautions {
    padding: 0 10%;
    margin: 30px 0 102px;
}

.cautions_item {
    display: flex;
    margin-top: 25px;
}

.cautions_item img {
    width: 41px;
    height: 35px;
    margin-right: 10px;
}

.cautions_item p {
    font-size: 1.6rem;
}

.welcome {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-top: 71px;
}

.orange_rule {
    position: absolute;
    top: 304px;
    left: -136px;
    z-index: -1;
    opacity: 0.7;
    width: 100%;
}

@media screen and (min-width: 769px) {
    .description_rule {
        text-align: center;
        font-size: 1.8rem;
    }
    
    .nolimited {
        font-size: 2.2rem;
        margin-top: 81px;
    }

    .afterread {
        margin-top: 18px;
    }

    .cautions_item {
        margin-top: 45px;
    }

    .section--cautions {
        margin: 0 auto;
        padding: 77px 20% 200px;
    }

    .welcome {
        margin-top: 96px;
        font-size: 2.5rem;
    }
}

