@charset "UTF-8";
/********************************************************

setting

********************************************************/
:root {
  --margin-block: 200px;
}

@media (min-width: 1101px) and (max-width: 1280px) {
  :root {
    --margin-block: 120px;
  }
}
@media (min-width: 641px) and (max-width: 1100px) {
  :root {
    --margin-block: 90px;
  }
}
@media (max-width: 640px) {
  :root {
    --margin-block: 70px;
  }
}
body {
  overflow-x: visible;
}

.page_townguide .h3_wrap {
  margin-bottom: calc( var(--margin-block) / 2.5 );
}
@media screen and (max-width: 750px) {
  .page_townguide .h3_wrap {
    width: 90%;
    margin: 0 auto calc( var(--margin-block) / 2.5 );
  }
}
.page_townguide .h3_wrap .h3_en {
  font-family: 'Gilda Display', serif;
  font-size: 40px;
  text-align: center;
  color: #8e715e;
  margin: 0 auto;
}
@media screen and (min-width: 750px) {
  .page_townguide .h3_wrap .h3_en {
    font-size: calc(40px + 0.0341880342 * (100vw - 750px));
  }
}
@media screen and (min-width: 1920px) {
  .page_townguide .h3_wrap .h3_en {
    font-size: 80px;
  }
}
@media screen and (max-width: 750px) {
  .page_townguide .h3_wrap .h3_en {
    line-height: 1.0;
    margin-bottom: 20px;
  }
}
.page_townguide .h3_wrap .h3_town-guide {
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  margin: 0 auto calc( var(--margin-block) / 4 );
}
@media screen and (min-width: 750px) {
  .page_townguide .h3_wrap .h3_town-guide {
    font-size: calc(20px + 0.0170940171 * (100vw - 750px));
  }
}
@media screen and (min-width: 1920px) {
  .page_townguide .h3_wrap .h3_town-guide {
    font-size: 40px;
  }
}
@media screen and (max-width: 750px) {
  .page_townguide .h3_wrap .h3_town-guide {
    line-height: 1.6;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .page_townguide .h3_wrap .h3_town-guide {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
  }
}
.page_townguide .h3_wrap .h3_text {
  font-size: 14px;
  text-align: center;
  line-height: 2.2;
}
@media screen and (min-width: 750px) {
  .page_townguide .h3_wrap .h3_text {
    font-size: calc(14px + 0.0034188034 * (100vw - 750px));
  }
}
@media screen and (min-width: 1920px) {
  .page_townguide .h3_wrap .h3_text {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  .page_townguide .h3_wrap .h3_text {
    text-align: left;
  }
}

.page_townguide .line {
  background: #533f32;
  color: #fff;
  overflow: hidden;
  width: 100%;
  padding: 12px 0;
  white-space: nowrap;
  display: flex;
}
.page_townguide .line .line_wrap {
  display: inline-flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0 2rem;
  white-space: nowrap;
  flex-shrink: 0;
  animation: marquee 30s linear infinite;
}
.page_townguide .line .line_wrap li {
  white-space: nowrap;
  font-family: 'Gilda Display', serif;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.sec_mv {
  position: relative;
  width: 100%;
}
.sec_mv .mv_h2 {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(80%, 1025.5px);
  height: fit-content;
  /* これがあると完璧 */
  text-align: center;
  z-index: 2;
}
.sec_mv .mv_bg {
  position: relative;
  height: 631px;
  overflow: hidden;
}
@media screen and (max-width: 1170px) {
  .sec_mv .mv_bg {
    height: 500px;
  }
}
@media screen and (max-width: 750px) {
  .sec_mv .mv_bg {
    height: 400px;
  }
}
@media screen and (max-width: 600px) {
  .sec_mv .mv_bg {
    height: 350px;
  }
}
.sec_mv .mv_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec_mv .mv_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.8);
  z-index: 1;
  pointer-events: none;
}

.sec_culture-zone {
  background: url("../images/townguide/bg_culture-zone.jpg") no-repeat center;
  background-size: cover;
  padding: calc(var(--margin-block)/1.25) 0 var(--margin-block);
}

/* ここから文化ゾーン */
.culture-zone_wrap {
  margin-top: 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* 左カラム：マップ */
.culture-zone_map-wrap {
  flex: 0 0 43%;
  max-width: 43%;
}

.culture-zone_map img {
  display: block;
  width: 100%;
  height: auto;
}

/* 右カラム：リスト */
.culture-zone_list {
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  margin-right: 5%;
}

.culture-zone_btn {
  color: #FFF;
  background: linear-gradient(135deg, #706056 0%, #877a72 100%);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: background 0.3s;
  padding: calc(var(--margin-block)/5) calc(var(--margin-block)/6);
  box-shadow: 2px 2px 3px #bbb4ad;
  position: relative;
}
.culture-zone_btn::after {
  content: "+";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(20px, 2vw, 30px);
  color: #FFF;
}

.culture-zone_title {
  display: flex;
  align-items: center;
  color: #FFF;
}

.culture-zone_title .number {
  width: clamp(30px, 4vw, 54px);
  height: clamp(30px, 4vw, 54px);
  background-color: #533f32;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-family: 'Gilda Display', serif;
  font-size: clamp(16px, 2vw, 30px);
}

.culture-zone_title .name {
  font-size: clamp(16px, 2vw, 30px);
}

/* ------- PC：左だけ固定 ------- */
@media (min-width: 751px) {
  .culture-zone_map-wrap {
    position: sticky;
    top: 80px;
    /* ヘッダーと被るなら数値を調整 */
  }
}
/* ------- SP：上下レイアウト ------- */
@media (max-width: 750px) {
  .culture-zone_wrap {
    display: block;
  }

  .culture-zone_map-wrap,
  .culture-zone_list {
    max-width: 100%;
    flex: none;
    width: min(90%, 760px);
    margin: 20px auto;
  }

  .culture-zone_map-wrap {
    position: static;
    width: 100%;
  }
}
.modal {
  display: flex;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal_content {
  background: #7b6c63;
  padding: 2rem;
  border-radius: 12px;
  width: min(90%, 640px);
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  color: #FFF;
}
@media screen and (max-width: 600px) {
  .modal_content {
    border-radius: 7px;
  }
}
.modal_content .culture-zone_box .culture-zone_title {
  margin-bottom: 20px;
}
.modal_content .culture-zone_box .culture-zone_img img {
  width: 100%;
}
.modal_content .culture-zone_box .culture-zone_text {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 1.0rem;
}
@media screen and (min-width: 750px) {
  .modal_content .culture-zone_box .culture-zone_text {
    font-size: calc(14px + 0.0051282051 * (100vw - 750px));
  }
}
@media screen and (min-width: 1920px) {
  .modal_content .culture-zone_box .culture-zone_text {
    font-size: 20px;
  }
}

.modal_close {
  position: absolute;
  top: -15px;
  right: -40px;
  font-size: 28px;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .modal_close {
    right: 0;
    top: -40px;
  }
}

.sec_interview .bg {
  background: url("../images/townguide/bg_interview.jpg") no-repeat center;
  background-size: cover;
  padding: calc( var(--margin-block) / 1.25 ) 0;
}
.sec_interview .interview {
  width: min(90%, 1240px);
  margin: 0 auto;
  background: #FFF;
  border: 1px solid #d3c9c9;
  padding: calc( var(--margin-block) / 2.5 );
  position: relative;
}
.sec_interview .interview::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid #d3c9c9;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .sec_interview .interview::before {
    top: 7px;
    left: 7px;
    right: 7px;
    bottom: 7px;
  }
}
.sec_interview .interview .interview_shop-info {
  color: #81593f;
}
.sec_interview .interview .interview_shop-info .shop-name {
  font-size: 22px;
}
@media screen and (min-width: 750px) {
  .sec_interview .interview .interview_shop-info .shop-name {
    font-size: calc(22px + 0.0102564103 * (100vw - 750px));
  }
}
@media screen and (min-width: 1920px) {
  .sec_interview .interview .interview_shop-info .shop-name {
    font-size: 34px;
  }
}
.sec_interview .interview .interview_shop-info .shop-info {
  font-size: 12px;
  line-height: 1.8;
  margin: 20px 0;
  border-top: 1px solid #533f32;
  border-bottom: 1px solid #533f32;
  padding: 20px 0;
}
@media screen and (min-width: 750px) {
  .sec_interview .interview .interview_shop-info .shop-info {
    font-size: calc(12px + 0.0008547009 * (100vw - 750px));
  }
}
@media screen and (min-width: 1920px) {
  .sec_interview .interview .interview_shop-info .shop-info {
    font-size: 13px;
  }
}
.sec_interview .interview .interview_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.sec_interview .interview .interview_wrap__text {
  width: min(45.8%, 475px);
}
@media screen and (max-width: 750px) {
  .sec_interview .interview .interview_wrap__text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.sec_interview .interview .interview_wrap__text .main-copy {
  font-size: 18px;
  line-height: 1.6;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 30px;
}
@media screen and (min-width: 750px) {
  .sec_interview .interview .interview_wrap__text .main-copy {
    font-size: calc(18px + 0.0068376068 * (100vw - 750px));
  }
}
@media screen and (min-width: 1920px) {
  .sec_interview .interview .interview_wrap__text .main-copy {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .sec_interview .interview .interview_wrap__text .main-copy {
    margin-bottom: 20px;
  }
}
.sec_interview .interview .interview_wrap__text .notebook {
  font-size: 14px;
  background-color: #fff;
  /* 背景色 */
  background-image: linear-gradient(180deg, #ccc 1px, transparent 1px);
  /* 罫線の色と太さ  */
  background-size: 100% 2.5em;
  /* 行の高さ */
  line-height: 2.5em;
  /* 文字の高さ */
  padding-bottom: 1px;
  /* 最終行の下にも罫線を引く */
}
@media screen and (max-width: 600px) {
  .sec_interview .interview .interview_wrap__text .notebook {
    font-size: 12px;
    line-height: 2.5em;
    background-size: 100% 2.5em;
  }
}
.sec_interview .interview .interview_wrap__text .btn_movie {
  background: #445d8f;
  border-radius: 5px;
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 750px) {
  .sec_interview .interview .interview_wrap__text .btn_movie {
    font-size: calc(14px + 0.0034188034 * (100vw - 750px));
  }
}
@media screen and (min-width: 1920px) {
  .sec_interview .interview .interview_wrap__text .btn_movie {
    font-size: 18px;
  }
}
.sec_interview .interview .interview_wrap__text .btn_movie a {
  padding: 10px;
  color: #FFF;
  display: block;
}
.sec_interview .interview .interview_wrap__text .btn_movie a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.sec_interview .interview .interview_wrap__img {
  width: min(47.2%, 490px);
}
@media screen and (max-width: 750px) {
  .sec_interview .interview .interview_wrap__img {
    width: 100%;
  }
}

.sec_shop {
  background: url("../images/townguide/bg_shop.jpg") no-repeat center;
  background-size: cover;
  padding: calc( var(--margin-block) / 1.5 ) 0 0;
}
.sec_shop .shop_title {
  margin-bottom: calc( var(--margin-block) / 4 );
}
@media screen and (max-width: 750px) {
  .sec_shop .shop_title {
    margin-bottom: 30px;
  }
}
.sec_shop .shop_wrap {
  width: min(90%, 1240px);
  margin: 0 auto;
}
.sec_shop .shop_wrap .shop_item__text .shop-name {
  color: #654129;
  font-size: 22px;
  line-height: 1.2;
}
@media screen and (min-width: 750px) {
  .sec_shop .shop_wrap .shop_item__text .shop-name {
    font-size: calc(22px + 0.0102564103 * (100vw - 750px));
  }
}
@media screen and (min-width: 1920px) {
  .sec_shop .shop_wrap .shop_item__text .shop-name {
    font-size: 34px;
  }
}
.sec_shop .shop_wrap .shop_item__text .shop-name .sub {
  font-size: 12px;
  margin-bottom: 5px;
}
@media screen and (min-width: 750px) {
  .sec_shop .shop_wrap .shop_item__text .shop-name .sub {
    font-size: calc(12px + 0.0034188034 * (100vw - 750px));
  }
}
@media screen and (min-width: 1920px) {
  .sec_shop .shop_wrap .shop_item__text .shop-name .sub {
    font-size: 16px;
  }
}
.sec_shop .shop_wrap .shop_item__text .text {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
}
@media screen and (min-width: 750px) {
  .sec_shop .shop_wrap .shop_item__text .text {
    font-size: calc(14px + 0.0017094017 * (100vw - 750px));
  }
}
@media screen and (min-width: 1920px) {
  .sec_shop .shop_wrap .shop_item__text .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .sec_shop .shop_wrap .shop_item__text .text {
    margin-top: 10px;
  }
}
@media screen and (max-width: 750px) {
  .sec_shop .shop_wrap .shop_item__img.img-photo {
    display: none;
  }
}
.sec_shop .shop_wrap .shop-sub_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .sec_shop .shop_wrap .shop-main_wrap {
    margin-bottom: 40px;
  }
}
.sec_shop .shop_wrap .shop-main_wrap .shop_item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec_shop .shop_wrap .shop-main_wrap .shop_item__text, .sec_shop .shop_wrap .shop-main_wrap .shop_item__img {
  width: 47.9%;
}
@media screen and (max-width: 750px) {
  .sec_shop .shop_wrap .shop-main_wrap .shop_item__text, .sec_shop .shop_wrap .shop-main_wrap .shop_item__img {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .sec_shop .shop_wrap .shop-main_wrap .shop_item__text {
    margin-top: 20px;
  }
}
.sec_shop .shop_wrap .shop-main_wrap .shop_item__text .img {
  margin: calc( var(--margin-block) / 5 ) auto 0;
}
@media screen and (max-width: 750px) {
  .sec_shop .shop_wrap .shop-main_wrap .shop_item__text .img {
    margin-top: 20px;
  }
}
.sec_shop .shop_wrap .shop-sub_wrap .shop_item {
  width: min(31.5%, 390px);
  margin: calc( var(--margin-block) / 2 ) auto 0;
}
@media screen and (max-width: 750px) {
  .sec_shop .shop_wrap .shop-sub_wrap .shop_item {
    width: 100%;
    margin: 40px auto 0;
  }
}
.sec_shop .shop_wrap .shop-sub_wrap .shop_item__img {
  margin-bottom: 20px;
}
.sec_shop .shop_wrap {
  margin-top: calc( var(--margin-block) / 2 );
}
.sec_shop .shop_wrap + .shop_wrap {
  margin-top: calc( var(--margin-block) / 1.5 );
}

.sec_shop .block_area-map {
  padding: calc( var(--margin-block) / 2 ) 0 var(--margin-block);
}
.sec_shop .block_area-map .h3_wrap {
  margin-bottom: calc( var(--margin-block) / 5 );
}
.sec_shop .block_area-map .map {
  width: min(90%, 1240px);
  margin: 0 auto;
}
