@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@import url("https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@900&display=swap");
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 420px) {
  .inner {
    padding: 0 20px;
  }
}

/* HAMBURGER MENU */
#toggle {
  display: none;
}

.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.hamburger div {
  position: relative;
  width: 44px;
  height: 8px;
  border-radius: 10px;
  background-color: #007600;
  margin-top: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger p {
  position: absolute;
  top: 56px;
  color: #007600;
  text-align: center;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 10px;
}

.base-navigation {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(254, 202, 87, 0.95);
  top: -100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.navigation {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 60px;
}

.navigation ul {
  text-align: center;
}

.navigation ul li {
  list-style: none;
}

.navigation ul li:after {
  content: url(../img/tsurigane-fill.svg);
  display: inline-block;
  vertical-align: sub;
  margin-left: 16px;
  opacity: 0;
  -webkit-transition: opacity 600ms;
  transition: opacity 600ms;
}
@media screen and (max-width: 420px) {
  .navigation ul li:after {
    content: "";
    width: 17.56px;
    height: 22.13px;
    background-image: url(../img/tsurigane-fill.svg);
    background-size: contain;
    margin-left: 8px;
  }
}

.navigation ul li:hover:after {
  opacity: 1;
}

.navigation ul li :hover {
  color: #007600;
}

.navigation a {
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 28px;
  line-height: 1.5;
  color: #364036;
  text-decoration: none;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}
@media screen and (max-width: 420px) {
  .navigation a {
    font-size: 20px;
  }
}

.navigation .latest-news {
  color: #007600;
}

#toggle:checked + .hamburger .top-bun {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 24px;
}

#toggle:checked + .hamburger .bottom-bun {
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#toggle:checked + .hamburger .meat {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -7px;
}

#toggle:checked + .hamburger + .base-navigation {
  top: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  background-image: url("../img/modal-1.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 20% 10%;
  border-radius: 4px;
  width: 231px;
  height: 156px;
}
@media screen and (max-width: 420px) {
  .modal-content {
    margin: 50% 10%;
  }
}

.close-modal {
  position: absolute;
  top: -16px;
  right: -16px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.close-modal:hover,
.close-modal:focus,
.close-modal:active {
  cursor: pointer;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

/* HOME */
.home {
  width: auto;
  background-color: #ffffff;
  background-image: url(../img/map.svg);
  background-repeat: no-repeat;
  background-position: 82% 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 90px 0 100px 0;
}

.home-group {
  width: 490px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.title {
  width: 396px;
  height: auto;
  margin-bottom: -75px;
}

.home-miyagi-shiroishi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.miyagi-shiroishi {
  width: 339px;
  height: auto;
}

.shiroishi-city {
  width: 160px;
  height: auto;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.scroll {
  width: 10px;
  height: auto;
}

.home-illustrations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}

.uguisu {
  width: 143px;
  height: auto;
}

.tsurigane {
  width: 195px;
  height: auto;
}

.home-illustrations .ishi-2 {
  width: 48px;
  height: auto;
}

.home-illustrations .ishi-1 {
  width: 46px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .title {
    width: 283px;
    height: auto;
    margin-bottom: -50px;
  }
  .home-miyagi-shiroishi {
    gap: 6px;
  }
  .miyagi-shiroishi {
    width: 242px;
    height: auto;
  }
  .shiroishi-city {
    width: 114px;
    height: auto;
  }
  .scroll {
    width: 7px;
    height: auto;
  }
  .home-illustrations {
    gap: 8px;
  }
  .uguisu {
    width: 102px;
    height: auto;
  }
  .tsurigane {
    width: 139px;
    height: auto;
  }
  .home-illustrations .ishi-2 {
    width: 34px;
    height: auto;
  }
  .home-illustrations .ishi-1 {
    width: 33px;
    height: auto;
  }
}
@media screen and (max-width: 420px) {
  .title {
    width: 226px;
    height: auto;
    margin-bottom: -50px;
  }
  .home-miyagi-shiroishi {
    gap: 5px;
  }
  .miyagi-shiroishi {
    width: 194px;
    height: auto;
  }
  .shiroishi-city {
    width: 91px;
    height: auto;
  }
  .scroll {
    width: 6px;
    height: auto;
  }
  .home-illustrations {
    gap: 6px;
  }
  .uguisu {
    width: 82px;
    height: auto;
  }
  .tsurigane {
    width: 111px;
    height: auto;
  }
  .home-illustrations .ishi-2 {
    width: 27px;
    height: auto;
  }
  .home-illustrations .ishi-1 {
    width: 26px;
    height: auto;
  }
}
@media screen and (max-width: 420px) {
  .home {
    background-position: 82% 90px;
  }
}
/* FLOATING BANNER */
.floating-banner {
  display: block;
  position: fixed; /* 追従 */
  z-index: 99999; /* 他の要素の下に隠れないように */
  bottom: 0;
  right: 0;
}

.floating-banner img {
  width: 320px;
  height: auto;
}

.floating-banner.bannerClose {
  display: none;
}

.floating-banner:hover {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

.fade_off {
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fade_on {
  opacity: 1;
}

/* PRESENTATION */
.presentation {
  width: auto;
  background-image: url(../img/photo-shiroishi.webp);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 84px 0;
}

.about-shiroishi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 51px;
}

.about-shiroishi p {
  color: #ffffff;
  text-align: center;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(0.875rem, 0.792rem + 0.42vw, 1.125rem);
  font-weight: 700;
  line-height: 25px;
  word-break: keep-all;
}

.about-shiroishi h1 {
  color: #ffffff;
  text-align: center;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.75rem, 1.458rem + 1.46vw, 2.625rem);
  font-weight: 400;
  line-height: 36px;
  word-break: keep-all;
}

.about-shiroishi span {
  letter-spacing: -16.8px;
}
@media screen and (max-width: 420px) {
  .about-shiroishi span {
    letter-spacing: -13px;
  }
}

/* COVER ATTRACTIONS */
.cover-attractions {
  width: auto;
  padding: 100px 0 0;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* KEYFRAME ANIMATION START */
.bubble-msg {
  position: absolute;
  width: 200px;
  height: 122px;
  top: -220%;
  left: 2%;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .bubble-msg {
    top: -150%;
    left: 12%;
    width: 140px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .bubble-msg {
    top: -100%;
    left: 40%;
    width: 120px;
    height: auto;
  }
}
@media screen and (max-width: 420px) {
  .bubble-msg {
    top: -100%;
    left: 30%;
    width: 120px;
    height: auto;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes pop {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  70% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pop {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  70% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fadeIn {
  -webkit-animation: fadeIn 1s ease-in-out forwards, pop 1s ease-in-out;
          animation: fadeIn 1s ease-in-out forwards, pop 1s ease-in-out;
}

/* KEYFRAME ANIMATION END */
.attractions {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}

.omoshiroishi-miryoku {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.omoshiroishi {
  width: 457.213px;
  height: 104.148px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .omoshiroishi {
    width: 380px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .omoshiroishi {
    width: 340px;
    height: auto;
  }
}
@media screen and (max-width: 420px) {
  .omoshiroishi {
    width: 280px;
    height: auto;
  }
}

.miryoku {
  width: 224.054px;
  height: 43.827px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .miryoku {
    width: 186px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .miryoku {
    width: 166px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .miryoku {
    width: 137px;
    height: auto;
  }
}

.koishi-no-retsu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 42px;
  margin-bottom: 66px;
  position: relative;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .koishi-no-retsu {
    gap: 35px;
  }
}

.koishi-no-retsu li:nth-child(even) {
  margin-top: 16px;
}

.koishi-no-retsu li:nth-child(odd) {
  margin-bottom: 16px;
}

.koishi-1 {
  width: 45px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .koishi-1 {
    display: none;
  }
}

.koishi-2 {
  width: 33.849px;
  height: 27.472px;
}
@media screen and (max-width: 767px) {
  .koishi-2 {
    display: none;
  }
}

.koishi-3 {
  width: 45.685px;
  height: 45.421px;
}
@media screen and (max-width: 767px) {
  .koishi-3 {
    display: none;
  }
}

.koishi-4 {
  width: 49.209px;
  height: 50.065px;
}
@media screen and (max-width: 767px) {
  .koishi-4 {
    display: none;
  }
}

.koishi-5 {
  width: 42px;
  height: 36.127px;
}
@media screen and (max-width: 767px) {
  .koishi-5 {
    display: none;
  }
}

.koishi-no-retsu .ishi-1 {
  width: 46.206px;
  height: 46.976px;
  margin-right: -10px;
}
@media screen and (max-width: 767px) {
  .koishi-no-retsu .ishi-1 {
    position: absolute;
    top: 220%;
    left: 68%;
  }
}
@media screen and (max-width: 420px) {
  .koishi-no-retsu .ishi-1 {
    top: 220%;
    left: 56%;
  }
}

.koishi-no-retsu .ishi-2 {
  width: 48.173px;
  height: 49.943px;
  margin-left: -20px;
}
@media screen and (max-width: 767px) {
  .koishi-no-retsu .ishi-2 {
    position: absolute;
    top: 140%;
    left: 84%;
  }
}
@media screen and (max-width: 420px) {
  .koishi-no-retsu .ishi-2 {
    top: 140%;
    left: 72%;
  }
}

.koishi-6 {
  width: 38.888px;
  height: 40.977px;
}
@media screen and (max-width: 767px) {
  .koishi-6 {
    display: none;
  }
}

.koishi-7 {
  width: 27.806px;
  height: 31.202px;
}
@media screen and (max-width: 767px) {
  .koishi-7 {
    display: none;
  }
}

.koishi-8 {
  width: 50.396px;
  height: 44.351px;
}
@media screen and (max-width: 767px) {
  .koishi-8 {
    display: none;
  }
}

.koishi-9 {
  width: 34.344px;
  height: 32.64px;
}
@media screen and (max-width: 767px) {
  .koishi-9 {
    display: none;
  }
}

.koishi-10 {
  width: 36.707px;
  height: 48.991px;
}
@media screen and (max-width: 767px) {
  .koishi-10 {
    display: none;
  }
}

/* / PHOTO SLIDER */
.city-slider {
  width: 100vw;
  height: auto;
}
.city-slider figure {
  position: relative;
}
.city-slider figure:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.city-slider figure:hover figcaption {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
.city-slider figure img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.city-slider figure figcaption {
  position: absolute;
  color: #ffffff;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: clamp(0.938rem, 0.757rem + 0.9vw, 2rem);
  line-height: clamp(1.375rem, 1.042rem + 1.67vw, 2.375rem);
  bottom: 50%;
  left: 55%;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .city-slider figure figcaption {
    bottom: 65%;
    left: 65%;
  }
}
@media screen and (max-width: 420px) {
  .city-slider figure figcaption {
    bottom: 60%;
    left: 65%;
  }
}

/* JOOKAMACHI COVER */
.jookamachi-cover {
  width: auto;
  background-image: url(../img/pattern_pastel_A.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 127px 0;
}

.jookamachi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(6.25rem, 5.833rem + 2.08vw, 7.5rem);
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .jookamachi {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .jookamachi {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 420px) {
  .jookamachi {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.jookamachi-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.jookamachi-text .jookamachi-title {
  color: #ffffff;
  font-family: "M PLUS 1p", sans-serif;
  font-size: clamp(3.5rem, 2.682rem + 4.09vw, 5.75rem);
  font-weight: 950;
}
.jookamachi-text .note {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(0.75rem, 0.625rem + 0.63vw, 1.125rem);
  font-weight: 700;
  color: #5e3819;
  width: 27ch;
  overflow: hidden;
  white-space: nowrap;
  -webkit-animation: typing 2s steps(21) infinite alternate;
          animation: typing 2s steps(21) infinite alternate;
}
@-webkit-keyframes typing {
  from {
    width: 0ch;
  }
}
@keyframes typing {
  from {
    width: 0ch;
  }
}

.oshiro {
  width: 448px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .oshiro {
    width: 375px;
  }
}
@media screen and (max-width: 420px) {
  .oshiro {
    width: 278px;
  }
}

/* JOOKAMACHI CONTENTS */
.jookamachi-contents {
  width: auto;
  background-image: url(../img/photo-shiroishijoo.webp);
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 120px 0;
  /* サイズに関わらず画面いっぱいに表示される。 */
  background-size: cover;
}

.jookamachi-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 240px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .jookamachi-description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 200px;
  }
}
@media screen and (max-width: 767px) {
  .jookamachi-description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 220px;
  }
}

.jookamachi-explanation {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #ffffff;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 160px;
  word-break: auto-phrase;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .jookamachi-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .jookamachi-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 420px) {
  .jookamachi-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}

.shiroishi-file01 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .shiroishi-file01 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .shiroishi-file01 {
    text-align: center;
  }
}

.file01 {
  color: #ffffff;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
}

.file01-subject {
  color: #ffffff;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.375rem, 1.307rem + 0.34vw, 1.563rem);
  font-weight: 400;
  line-height: 1.35;
}

.shiroishi-file01 h1 {
  color: #ffffff;
  text-align: center;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.125rem, 1.057rem + 0.34vw, 1.313rem);
  font-weight: 400;
  line-height: 36px; /* 163.636% */
}

.shiroishi-file01 span {
  letter-spacing: -8.8px;
}
@media screen and (max-width: 420px) {
  .shiroishi-file01 span {
    letter-spacing: -6px;
  }
}

/* SHIROISHIGAWA COVER */
.shiroishigawa-cover {
  width: auto;
  background-image: url(../img/pattern_pastel_B.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 133px 0;
}

.shiroishigawa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(6.25rem, 5.833rem + 2.08vw, 7.5rem);
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .shiroishigawa {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .shiroishigawa {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 420px) {
  .shiroishigawa {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.shiroishigawa-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.shiroishigawa-text .shiroishigawa-title {
  color: #ffffff;
  font-family: "M PLUS 1p", sans-serif;
  font-size: clamp(3.5rem, 2.682rem + 4.09vw, 5.75rem);
  font-weight: 950;
}
.shiroishigawa-text .note {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(0.75rem, 0.625rem + 0.63vw, 1.125rem);
  font-weight: 700;
  color: #5e3819;
  width: 27ch;
  overflow: hidden;
  white-space: nowrap;
  -webkit-animation: typing 2s steps(21) infinite alternate;
          animation: typing 2s steps(21) infinite alternate;
}
@keyframes typing {
  from {
    width: 0ch;
  }
}

.kawa {
  width: 448px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .kawa {
    width: 375px;
  }
}
@media screen and (max-width: 420px) {
  .kawa {
    width: 278px;
  }
}

/* SHIROISHIGAWA CONTENTS */
.shiroishigawa-contents {
  width: auto;
  background-image: url(../img/photo-kawa.webp);
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  padding: 125px 0;
}
@media screen and (max-width: 767px) {
  .shiroishigawa-contents {
    background-image: url(../img/photo-kawa_sp-mini.webp);
  }
}
@media screen and (max-width: 420px) {
  .shiroishigawa-contents {
    background-image: url(../img/photo-kawa_sp-mini.webp);
  }
}

.shiroishigawa-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 240px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .shiroishigawa-description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 200px;
  }
}
@media screen and (max-width: 767px) {
  .shiroishigawa-description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 222px;
  }
}

.shiroishigawa-explanation {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #ffffff;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 120px;
  word-break: auto-phrase;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .shiroishigawa-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .shiroishigawa-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 420px) {
  .shiroishigawa-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}

.shiroishi-file02 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .shiroishi-file02 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .shiroishi-file02 {
    text-align: center;
  }
}

.file02 {
  color: #ffffff;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
}

.file02-subject {
  color: #ffffff;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.375rem, 1.307rem + 0.34vw, 1.563rem);
  font-weight: 400;
  line-height: 1.35;
}

.shiroishi-file02 h1 {
  color: #ffffff;
  text-align: center;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.125rem, 1.057rem + 0.34vw, 1.313rem);
  font-weight: 400;
  line-height: 36px; /* 163.636% */
}

.shiroishi-file02 span {
  letter-spacing: -8.8px;
}
@media screen and (max-width: 420px) {
  .shiroishi-file02 span {
    letter-spacing: -6px;
  }
}

/* DENTOKOGEI COVER */
.dentokogei-cover {
  width: auto;
  background-image: url(../img/pattern_pastel_C.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 129px 0;
}

.dentokogei {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(6.25rem, 5.833rem + 2.08vw, 7.5rem);
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .dentokogei {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .dentokogei {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 420px) {
  .dentokogei {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.dentokogei-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.dentokogei-text .dentokogei-title {
  color: #ffffff;
  font-family: "M PLUS 1p", sans-serif;
  font-size: clamp(3.5rem, 2.682rem + 4.09vw, 5.75rem);
  font-weight: 950;
}
.dentokogei-text .note {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(0.75rem, 0.625rem + 0.63vw, 1.125rem);
  font-weight: 700;
  color: #5e3819;
  width: 27ch;
  overflow: hidden;
  white-space: nowrap;
  -webkit-animation: typing 2s steps(21) infinite alternate;
          animation: typing 2s steps(21) infinite alternate;
}
@keyframes typing {
  from {
    width: 0ch;
  }
}

.kokeshi {
  width: auto;
  height: 422px;
}

/* DENTOKOGEI CONTENTS */
.dentokogei-contents {
  width: auto;
  background-image: url(../img/photo-kokeshi.webp);
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  padding: 125px 0;
}

.dentokogei-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 140px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .dentokogei-description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 200px;
  }
}
@media screen and (max-width: 767px) {
  .dentokogei-description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 220px;
  }
}

.dentokogei-explanation {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #ffffff;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
  font-weight: 700;
  line-height: 1.5;
  word-break: auto-phrase;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .dentokogei-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .dentokogei-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 420px) {
  .dentokogei-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}

.shiroishi-file03 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .shiroishi-file03 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .shiroishi-file03 {
    text-align: center;
  }
}

.file03 {
  color: #ffffff;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
}

.file03-subject {
  color: #ffffff;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.375rem, 1.307rem + 0.34vw, 1.563rem);
  font-weight: 400;
  line-height: 1.35;
}

.shiroishi-file03 h1 {
  color: #ffffff;
  text-align: center;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.125rem, 1.057rem + 0.34vw, 1.313rem);
  font-weight: 400;
  line-height: 36px; /* 163.636% */
}

.shiroishi-file03 span {
  letter-spacing: -8.8px;
}
@media screen and (max-width: 420px) {
  .shiroishi-file03 span {
    letter-spacing: -6px;
  }
}

/* IYASHI COVER */
.iyashi-cover {
  width: auto;
  background-image: url(../img/pattern_pastel_D.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 164px 0;
}

.iyashi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(6.25rem, 5.833rem + 2.08vw, 7.5rem);
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .iyashi {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .iyashi {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 420px) {
  .iyashi {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.iyashi-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.iyashi-text .iyashi-title {
  color: #ffffff;
  font-family: "M PLUS 1p", sans-serif;
  font-size: clamp(3.5rem, 2.682rem + 4.09vw, 5.75rem);
  font-weight: 950;
}
.iyashi-text .note {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(0.75rem, 0.625rem + 0.63vw, 1.125rem);
  font-weight: 700;
  color: #5e3819;
  width: 27ch;
  overflow: hidden;
  white-space: nowrap;
  -webkit-animation: typing 2s steps(21) infinite alternate;
          animation: typing 2s steps(21) infinite alternate;
}
@keyframes typing {
  from {
    width: 0ch;
  }
}

.onsen {
  width: 448px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .onsen {
    width: 375px;
  }
}
@media screen and (max-width: 420px) {
  .onsen {
    width: 278px;
  }
}

/* IYASHI CONTENTS */
.iyashi-contents {
  width: auto;
  background-image: url(../img/photo-onsen.webp);
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  padding: 120px 0;
}

.iyashi-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 225px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .iyashi-description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 200px;
  }
}
@media screen and (max-width: 767px) {
  .iyashi-description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 220px;
  }
}

.iyashi-explanation {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #ffffff;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 40px;
  word-break: auto-phrase;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .iyashi-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .iyashi-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 420px) {
  .iyashi-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}

.shiroishi-file04 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .shiroishi-file04 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .shiroishi-file04 {
    text-align: center;
  }
}

.file04 {
  color: #ffffff;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
}

.file04-subject {
  color: #ffffff;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.375rem, 1.307rem + 0.34vw, 1.563rem);
  font-weight: 400;
  line-height: 1.35;
}

.shiroishi-file04 h1 {
  color: #ffffff;
  text-align: center;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.125rem, 1.057rem + 0.34vw, 1.313rem);
  font-weight: 400;
  line-height: 36px; /* 163.636% */
}

.shiroishi-file04 span {
  letter-spacing: -8.8px;
}
@media screen and (max-width: 420px) {
  .shiroishi-file04 span {
    letter-spacing: -6px;
  }
}

/* GOURMET COVER */
.gourmet-cover {
  width: auto;
  background-image: url(../img/pattern_pastel_E.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 129px 0;
}

.gourmet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(6.25rem, 5.833rem + 2.08vw, 7.5rem);
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .gourmet {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .gourmet {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 420px) {
  .gourmet {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.gourmet-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.gourmet-text .gourmet-title {
  color: #ffffff;
  font-family: "M PLUS 1p", sans-serif;
  font-size: clamp(3.5rem, 2.682rem + 4.09vw, 5.75rem);
  font-weight: 950;
}
.gourmet-text .note {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(0.75rem, 0.625rem + 0.63vw, 1.125rem);
  font-weight: 700;
  color: #5e3819;
  width: 27ch;
  overflow: hidden;
  white-space: nowrap;
  -webkit-animation: typing 2s steps(21) infinite alternate;
          animation: typing 2s steps(21) infinite alternate;
}
@keyframes typing {
  from {
    width: 0ch;
  }
}

.tokusan {
  width: auto;
  height: 422px;
}
@media screen and (max-width: 767px) {
  .tokusan {
    width: 375px;
  }
}
@media screen and (max-width: 420px) {
  .tokusan {
    width: 278px;
  }
}

/* GOURMET CONTENTS */
.gourmet-contents {
  width: auto;
  background-image: url(../img/photo-umen.webp);
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  padding: 125px 0;
}

.gourmet-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 300px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .gourmet-description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .gourmet-description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 225px;
  }
}

.gourmet-explanation {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #ffffff;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
  font-weight: 700;
  line-height: 1.5;
  word-break: auto-phrase;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .gourmet-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .gourmet-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 420px) {
  .gourmet-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}

.shiroishi-file05 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .shiroishi-file05 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .shiroishi-file05 {
    text-align: center;
  }
}

.file05 {
  color: #ffffff;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
}

.file05-subject {
  color: #ffffff;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.375rem, 1.307rem + 0.34vw, 1.563rem);
  font-weight: 400;
  line-height: 1.35;
}

.shiroishi-file05 h1 {
  color: #ffffff;
  text-align: center;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.125rem, 1.057rem + 0.34vw, 1.313rem);
  font-weight: 400;
  line-height: 36px; /* 163.636% */
}

.shiroishi-file05 span {
  letter-spacing: -8.8px;
}
@media screen and (max-width: 420px) {
  .shiroishi-file05 span {
    letter-spacing: -6px;
  }
}

/* POWERSPOT COVER */
.powerspot-cover {
  width: auto;
  background-image: url(../img/pattern_pastel_F.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 135.5px 0;
}

.powerspot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(6.188rem, 6.167rem + 0.1vw, 6.25rem);
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .powerspot {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .powerspot {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 420px) {
  .powerspot {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.powerspot-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.powerspot-text .powerspot-title {
  color: #ffffff;
  font-family: "M PLUS 1p", sans-serif;
  font-size: clamp(3.5rem, 2.682rem + 4.09vw, 5.75rem);
  font-weight: 950;
}
.powerspot-text .note {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(0.75rem, 0.625rem + 0.63vw, 1.125rem);
  font-weight: 700;
  color: #5e3819;
  width: 27ch;
  overflow: hidden;
  white-space: nowrap;
  -webkit-animation: typing 2s steps(21) infinite alternate;
          animation: typing 2s steps(21) infinite alternate;
}
@keyframes typing {
  from {
    width: 0ch;
  }
}

.torii {
  width: 448px;
  height: auto;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .torii {
    width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .torii {
    width: 375px;
  }
}
@media screen and (max-width: 420px) {
  .torii {
    width: 278px;
  }
}

/* POWERSPOT CONTENTS */
.powerspot-contents {
  width: auto;
  background-image: url(../img/photo-kamiishi.webp);
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  padding: 125px 0;
}

.powerspot-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 210px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .powerspot-description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .powerspot-description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 215px;
  }
}

.powerspot-explanation {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #ffffff;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
  font-weight: 700;
  line-height: 1.5;
  word-break: auto-phrase;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .powerspot-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .powerspot-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 420px) {
  .powerspot-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}

.shiroishi-file06 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .shiroishi-file06 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .shiroishi-file06 {
    text-align: center;
  }
}

.file06 {
  color: #ffffff;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
}

.file06-subject {
  color: #ffffff;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.375rem, 1.307rem + 0.34vw, 1.563rem);
  font-weight: 400;
  line-height: 1.35;
}

.shiroishi-file06 h1 {
  color: #ffffff;
  text-align: center;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.125rem, 1.057rem + 0.34vw, 1.313rem);
  font-weight: 400;
  line-height: 36px; /* 163.636% */
}

.shiroishi-file06 span {
  letter-spacing: -8.8px;
}
@media screen and (max-width: 420px) {
  .shiroishi-file06 span {
    letter-spacing: -6px;
  }
}

/* ZAOZAN COVER */
.zaozan-cover {
  width: auto;
  background-image: url(../img/pattern_pastel_G.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 172.5px 0;
}

.zaozan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(6.25rem, 5.833rem + 2.08vw, 7.5rem);
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .zaozan {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .zaozan {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 420px) {
  .zaozan {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.zaozan-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.zaozan-text .zaozan-title {
  color: #ffffff;
  font-family: "M PLUS 1p", sans-serif;
  font-size: clamp(3.5rem, 2.682rem + 4.09vw, 5.75rem);
  font-weight: 950;
}
.zaozan-text .note {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(0.75rem, 0.625rem + 0.63vw, 1.125rem);
  font-weight: 700;
  color: #5e3819;
  width: 27ch;
  overflow: hidden;
  white-space: nowrap;
  -webkit-animation: typing 2s steps(21) infinite alternate;
          animation: typing 2s steps(21) infinite alternate;
}
@keyframes typing {
  from {
    width: 0ch;
  }
}

.okama {
  width: 448px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .okama {
    width: 375px;
  }
}
@media screen and (max-width: 420px) {
  .okama {
    width: 278px;
  }
}

/* ZAOZAN CONTENTS */
.zaozan-contents {
  width: auto;
  background-image: url(../img/photo-zao.webp);
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  padding: 80px 0;
}

.zaozan-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 240px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .zaozan-description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .zaozan-description {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 220px;
  }
}

.zaozan-explanation {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #ffffff;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
  font-weight: 700;
  line-height: 1.5;
  word-break: auto-phrase;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .zaozan-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .zaozan-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 420px) {
  .zaozan-explanation {
    text-align: center;
    padding-bottom: 0px;
  }
}

.shiroishi-file07 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .shiroishi-file07 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .shiroishi-file07 {
    text-align: center;
  }
}

.file07 {
  color: #ffffff;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.932rem + 0.34vw, 1.188rem);
}

.file07-subject {
  color: #ffffff;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.375rem, 1.307rem + 0.34vw, 1.563rem);
  font-weight: 400;
  line-height: 1.35;
}

.shiroishi-file07 h1 {
  color: #ffffff;
  text-align: center;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.125rem, 1.057rem + 0.34vw, 1.313rem);
  font-weight: 400;
  line-height: 36px; /* 163.636% */
}

.shiroishi-file07 span {
  letter-spacing: -8.8px;
}
@media screen and (max-width: 420px) {
  .shiroishi-file07 span {
    letter-spacing: -6px;
  }
}

/* NEWS */
.hot-news {
  width: auto;
  background-color: #d8e9be;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-list-uguisu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .news-list-uguisu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 82px 0;
}

.news-list h1 {
  display: block;
  text-align: left;
  font-family: "Mochiy Pop One", sans-serif;
  color: #364036;
  font-size: clamp(2rem, 1.833rem + 0.83vw, 2.5rem);
  margin-bottom: 50px;
}
@media screen and (max-width: 420px) {
  .news-list h1 {
    margin: 0 auto 50px;
  }
}

.news-list li a {
  color: #364036;
  text-align: left;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.958rem + 0.21vw, 1.125rem);
  font-weight: 700;
  line-height: 1.5;
}

.news-list .date {
  color: #96ab60;
  font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
  font-weight: 400;
  padding-top: 10px;
  border-top: 1px solid #f5f7f2;
}

.news-list .news-title-main {
  padding-bottom: 10px;
}

.news-list ul li:last-child {
  border-bottom: 1px solid #f5f7f2;
}

.news-list li:hover {
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.news-btn a {
  width: 220px;
  height: 40px;
  line-height: 40px;
  padding: 0 48px;
  border-radius: 48px;
  background-image: linear-gradient(131deg, #ffd340, #ff923c, #ff923c, #ff923c);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: "Mochiy Pop One", sans-serif;
  color: #364036;
  font-size: 20px;
  display: block;
  margin: 0 auto;
  margin-top: 40px;
}

.news-btn:hover {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

.uguisu-illustration {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 256px;
  height: auto;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .uguisu-illustration {
    width: 200px;
    padding-bottom: 70px;
    margin: 0 auto;
  }
}

/* 個別記事のスタイル */
.idv-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 80px 60px 80px;
}
@media screen and (max-width: 767px) {
  .idv-news {
    padding: 80px 60px 60px 60px;
  }
}
@media screen and (max-width: 420px) {
  .idv-news {
    padding: 80px 35px 60px 35px;
  }
}

.idv-news .news-title {
  color: #007600;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.563rem, 1.335rem + 1.14vw, 2.188rem);
  line-height: 1.2;
  margin-bottom: 16px;
  word-break: auto-phrase;
}

.idv-news .date {
  color: #6c806c;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 400;
  margin-bottom: 60px;
}

.idv-news .content {
  color: #364036;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 70px;
  word-break: auto-phrase;
}

/* ↓投稿記事のテキストと画像の間にスペースを入れる。 クラス名はWPのCSSから */
.wp-block-gallery.has-nested-images {
  margin: 20px 0;
}

/* ↓セクションのクラス名でもOK
.idv-news img {
  margin: 20px 0;
} */
/*↓ナビゲーションボタン */
.post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  margin-bottom: 60px;
  gap: 40px;
}
@media screen and (max-width: 420px) {
  .post-navigation {
    gap: 24px;
  }
}

.post-navigation a {
  font-family: LINE Seed JP App_OTF, sans-serif, FontAwesome;
  font-size: 16px;
  font-weight: 700;
  color: #007600;
  margin: 10px;
}
@media screen and (max-width: 420px) {
  .post-navigation a {
    font-size: 14px;
  }
}

.previous-post:hover {
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.next-post:hover {
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.latest-news-btn {
  display: block;
}

.latest-news-btn .back-to-news {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  width: 240px;
  height: 40px; /* 適切な高さを追加 */
  margin: auto; /* 修正 */
  background-color: #007600;
  border-radius: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 追加 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 追加 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 追加 */
}
@media screen and (max-width: 420px) {
  .latest-news-btn .back-to-news {
    font-size: 14px;
    width: 210px;
    height: 35px;
  }
}

.latest-news-btn .back-to-news:hover {
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* お知らせ一覧ページ */
.allnews-list {
  width: auto;
  min-height: 680px;
  background-color: #c6dfa1;
  padding: 40px;
}

.outer-allnews-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .outer-allnews-navi {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.allnews-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.allnews-list h1 {
  display: block;
  text-align: left;
  font-family: "Mochiy Pop One", sans-serif;
  color: #364036;
  font-size: clamp(1.75rem, 1.477rem + 1.36vw, 2.5rem);
  margin-bottom: 60px;
}

.article-box li a {
  color: #364036;
  text-align: left;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.958rem + 0.21vw, 1.125rem);
  font-weight: 700;
  line-height: 1.5;
}

.article-box li a .news-date-list {
  font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
  font-weight: 400;
  color: #81954f;
  padding-top: 10px;
  border-top: 1px solid #f5f7f2;
}

.article-box li .news-title-list {
  padding-bottom: 10px;
}

.article-box ul li:last-child {
  border-bottom: 1px solid #f5f7f2;
}

.article-box li:hover {
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/*↓ナビゲーションボタン */
.navigation-for-allnews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navigation-for-allnews a {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #007600;
}

.navigation-for-allnews span {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #007600;
}

.navigation-for-allnews a:hover {
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navigation-for-allnews span:hover {
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.page-numbers {
  padding: 0 16px;
}

.stones-illustration {
  width: 160px;
  height: auto;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

/* ACCESS */
.access {
  width: auto;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 85px 0;
}

.info-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 84px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .info-map {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .info-map {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 420px) {
  .info-map {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.access-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}

.access-info h1 {
  color: #364036;
  text-align: left;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(2rem, 1.833rem + 0.83vw, 2.5rem);
  font-weight: 400;
}
@media screen and (max-width: 420px) {
  .access-info h1 {
    margin: 0 auto;
  }
}

.ways-of-transport {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
}

.ways-of-transport p {
  color: #516051;
  text-align: left;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.958rem + 0.21vw, 1.125rem);
  font-weight: 700;
  word-break: keep-all;
}

.ways-of-transport p.shinkansen-info::before {
  content: url(../img/shinkansen.svg);
  display: inline-block;
  vertical-align: middle;
}

.ways-of-transport p.car-info::before {
  content: url(../img/car.svg);
  display: inline-block;
  vertical-align: middle;
}

.ways-of-transport p.plane-info::before {
  content: url(../img/plane.svg);
  display: inline-block;
  vertical-align: middle;
}

.shiroishi-city-hall {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.shiroishi-city-hall p {
  color: #364036;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(0.938rem, 0.892rem + 0.23vw, 1.063rem);
  font-weight: 700;
  line-height: 1.7;
  word-break: keep-all;
}

.shiroishi-city-hall span {
  color: #516051;
}

.doomonai img {
  max-width: 162px;
  height: auto;
}
@media screen and (max-width: 420px) {
  .doomonai img {
    width: 100%;
  }
}

.access-map img {
  max-width: 382px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .access-map img {
    width: 100%;
  }
}

/* LINE INSTRUCTION */
.line-instruction {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 0;
  padding: 37px 0 0;
}

.title-mobile-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .title-mobile-images {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.line-title {
  width: 454px;
  height: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .line-title {
    max-width: 454px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 420px) {
  .line-title {
    width: 100%;
    margin: 0 auto;
  }
}

.mobile-images {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .mobile-images {
    gap: 70px;
  }
}

.mobile-images h2 {
  display: block;
  color: #364036;
  text-align: left;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.mobile {
  width: 190px;
  height: auto;
  padding: 16px;
}

.mobile-images p {
  color: #364036;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.qr-code {
  width: 52px;
  height: 52px;
}

.mobile01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-instruction01 {
  position: relative;
}

.mobile-instruction01 img {
  position: absolute;
  width: 60px;
  height: auto;
  top: 44px;
  left: -58px;
}

.mobile-instruction01 p {
  padding: 60px 6px;
}

.mobile02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-instruction02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-instruction02 .option01 {
  padding-top: 80px;
}

.mobile-instruction02 .qr-code {
  margin-top: 12px;
}

.mobile-instruction02 .or {
  padding-top: 20px;
}

.mobile-instruction02 .option02 {
  padding-top: 16px;
}

.mobile03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.explanation {
  color: #364036;
  text-align: left;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.mobile-instruction03 {
  position: relative;
}

.mobile-instruction03 img {
  position: absolute;
  width: 110px;
  height: auto;
  top: 108px;
  left: -112px;
}

.mobile-instruction03 p {
  padding: 140px 6px;
}

.mobile04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-instruction04 {
  position: relative;
}

.mobile-instruction04 img {
  position: absolute;
  width: 90px;
  height: auto;
  top: 180px;
  left: -92px;
}

.mobile-instruction04 p {
  padding: 200px 6px;
}

/* INQUIRY */
.inquiry {
  width: auto;
  background-color: #d8e9be;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.inquiry h1 {
  font-family: "Mochiy Pop One", sans-serif;
  color: #364036;
  font-size: clamp(1.75rem, 1.5rem + 1.25vw, 2.5rem);
  text-align: center;
  margin-top: 80px;
  margin-bottom: 60px;
}

.wpcf7 {
  max-width: 500px;
}

label {
  display: block;
  font-family: LINE Seed JP App_OTF, sans-serif;
  text-align: left;
  color: #364036;
  font-size: clamp(1rem, 0.958rem + 0.21vw, 1.125rem);
  font-weight: 700;
  margin-top: 25px;
}

.wpcf7 input[type=text] {
  width: 100%;
  padding: 8px;
  background-color: #f2f6f8;
  border-radius: 2px;
  border: none;
  -webkit-box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
  margin-top: 4px;
  margin-bottom: 5px;
}

.wpcf7 input[type=email] {
  width: 100%;
  padding: 8px;
  background-color: #f2f6f8;
  border-radius: 2px;
  border: none;
  -webkit-box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
  margin-top: 4px;
  margin-bottom: 8px;
}

.wpcf7 textarea {
  width: 100%;
  height: 250px;
  padding: 8px;
  background-color: #f2f6f8;
  border-radius: 2px;
  border: none;
  -webkit-box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
  margin-top: 4px;
}

.agreement-pp {
  padding-top: 10px;
  padding-left: 18px;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.958rem + 0.21vw, 1.125rem);
}
.agreement-pp a {
  color: #007600;
}
.agreement-pp a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
  font-weight: 700;
}

.wpcf7 input[type=submit] {
  line-height: 40px;
  padding: 0 48px;
  border: 0;
  border-radius: 48px;
  background-image: linear-gradient(131deg, #ffd340, #ff923c, #ff923c, #ff923c);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: "Mochiy Pop One", sans-serif;
  color: #364036;
  font-size: 20px;
  /* 中央に揃えて上のボックスとの間隔を開ける */
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 100px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .wpcf7 input[type=submit] {
    margin-bottom: 150px;
  }
}

.wpcf7 input[type=submit]:hover {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
}

input {
  color: #364036;
  text-align: left;
  font-family: LINE Seed JP App_OTF, sans-serif, FontAwesome;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
}

textarea {
  color: #364036;
  text-align: left;
  font-family: LINE Seed JP App_OTF, sans-serif, FontAwesome;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
}

/* エラーメッセージ */
span .wpcf7-not-valid-tip {
  color: #dc3232;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.wpcf7 form .wpcf7-response-output {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-weight: 700;
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-weight: 700;
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-weight: 700;
  border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-weight: 700;
  border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-weight: 700;
  border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-weight: 700;
  border-color: #ffb900; /* Yellow */
}

.wpcf7 input[type=text] {
  margin-top: 6px;
  margin-bottom: 4px;
}

.wpcf7 input[type=email] {
  margin-top: 6px;
  margin-bottom: 4px;
}

.wpcf7 textarea {
  margin-top: 6px;
  margin-bottom: 4px;
}

.inquiry-illustrations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
  position: absolute;
  right: 20px;
  bottom: -5px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .inquiry-illustrations {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.inquiry-illustrations .uguisu {
  width: clamp(5.5rem, 5.958rem - 2.29vw, 4.125rem);
  height: auto;
}

.inquiry-illustrations .tsurigane {
  width: clamp(5.625rem, 5rem + 3.13vw, 7.5rem);
  height: auto;
}

.inquiry-illustrations .ishi-2 {
  width: clamp(1.438rem, 1.292rem + 0.73vw, 1.875rem);
  height: auto;
}

.inquiry-illustrations .ishi-1 {
  width: clamp(1.313rem, 1.167rem + 0.73vw, 1.75rem);
  height: auto;
}

/* サンクスメッセージ */
.thanks-page {
  width: auto;
  padding: 80px 0;
}

.thanks-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.thanks-text .thanks-title {
  max-width: 530px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .thanks-text .thanks-title {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 420px) {
  .thanks-text .thanks-title {
    width: 100%;
    height: auto;
  }
}

.thanks-text .twins {
  width: clamp(5.625rem, 4.792rem + 4.17vw, 8.125rem);
  margin-top: -65px;
  margin-bottom: 40px;
}
@media screen and (max-width: 420px) {
  .thanks-text .twins {
    margin-top: -40px;
  }
}

.thanks-text p {
  text-align: center;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(1rem, 0.938rem + 0.31vw, 1.188rem);
  color: #364036;
  line-height: 1.4;
  margin-bottom: 50px;
  word-break: auto-phrase;
}

.thanks-btn {
  display: block;
}

.thanks-btn .back-to-inquiry {
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  width: 240px;
  height: 40px; /* 適切な高さを追加 */
  margin: auto; /* 修正 */
  background-color: #007600;
  border-radius: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 追加 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 追加 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 追加 */
}
@media screen and (max-width: 420px) {
  .thanks-btn .back-to-inquiry {
    font-size: 15px;
    width: 225px;
    height: 37.5px; /* 適切な高さを追加 */
  }
}

.thanks-btn .back-to-inquiry:hover {
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* フッター */
footer {
  background: #007600;
  padding-top: 40px;
  position: relative;
}

footer h2 {
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 10px;
}

footer a {
  text-align: left;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  color: white;
  padding-left: 38px;
}

footer a:hover {
  opacity: 0.6;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: center;
        align-content: center;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: center;
        align-content: center;
    gap: 20px;
  }
}

.emblem img {
  width: 28px;
  height: auto;
  margin-right: 4px;
}

.line-official::after {
  content: url(../img/line.svg);
  display: inline-block;
  vertical-align: middle;
}

.instagram-official::after {
  content: url(../img/instagram.svg);
  display: inline-block;
  vertical-align: middle;
}

footer hr {
  border-style: solid;
  border-color: #ffffff;
}

.footer-bottom p {
  text-align: center;
  font-family: LINE Seed JP App_OTF, sans-serif;
  font-size: small;
  font-weight: 700;
  color: #ffffff;
  padding: 20px 0;
}

.privacy-policy {
  padding: 60px 0px;
}
.privacy-policy h1 {
  font-family: LINE Seed JP App_OTF, sans-serif;
  color: #007600;
  font-size: clamp(1.25rem, 0.938rem + 1.56vw, 2.188rem);
  font-weight: 800;
  margin-bottom: 50px;
}
.privacy-policy h2 {
  font-family: LINE Seed JP App_OTF, sans-serif;
  color: #364036;
  font-size: clamp(1.125rem, 1.083rem + 0.21vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.privacy-policy p {
  font-family: LINE Seed JP App_OTF, sans-serif;
  color: #364036;
  font-size: clamp(1rem, 0.958rem + 0.21vw, 1.125rem);
  line-height: 1.5;
}
.privacy-policy span {
  font-family: LINE Seed JP App_OTF, sans-serif;
  color: #364036;
  font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
  line-height: 1.5;
}
.privacy-policy .article {
  margin-bottom: 40px;
}

.conditions {
  margin-top: 0.5em;
}
.conditions li {
  font-family: LINE Seed JP App_OTF, sans-serif;
  color: #364036;
  font-size: 18px;
  line-height: 1.5;
  list-style-type: disc;
  margin-left: 1.5em;
}

.go-to-inquiry {
  font-weight: 700;
  color: #007600;
  opacity: 1;
  -webkit-transition: 400ms;
  transition: 400ms;
}
.go-to-inquiry:hover {
  opacity: 0.6;
}