@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;700&display=swap");
html, body {
  font-size: 16px;
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

body {
  overflow-x: hidden;
  word-break: break-word;
  background-color: #7DB4BE;
}
body.open {
  overflow: hidden;
}
body:not(.top-page, .course-page, .gourmet-page, .souvenir-page)::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 713px;
  background: -webkit-gradient(linear, left bottom, left top, from(#7db4be), to(#5597b1));
  background: linear-gradient(to top, #7db4be 0%, #5597b1 100%);
  z-index: -2;
}
body:not(.top-page, .course-page, .gourmet-page, .souvenir-page) main {
  position: relative;
  overflow: hidden;
  padding: 3rem 15px;
}
body:not(.top-page, .course-page, .gourmet-page, .souvenir-page) main article {
  max-width: 1320px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  margin: 0 auto;
  padding: 5rem 15px;
}
body:not(.top-page, .course-page, .gourmet-page, .souvenir-page) main article section.extend:has(+ .container-fluid[style="display: none;"]) {
  border-radius: 0 0 25px 25px;
}
body:not(.top-page, .course-page, .gourmet-page, .souvenir-page) main article section.extend:has(> .container-fluid) {
  width: calc(100% + 30px);
  margin-left: -15px;
}
body:not(.top-page, .course-page, .gourmet-page, .souvenir-page) main::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 0;
  display: block;
  width: 100%;
  height: 1288px;
  background-image: url("../img/history_bg.png?20260717");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.21;
  z-index: -1;
}
body:not(.course-page, .gourmet-page, .souvenir-page)::before {
  content: "";
  position: fixed;
  top: -17.625rem;
  display: block;
  width: 100%;
  height: 749px;
  background-image: url("../img/fixed_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  body:not(.top-page, .course-page) main {
    padding-top: 3.875rem;
  }
}
@media screen and (max-width: 575px) {
  body:not(.course-page)::before {
    height: 405px;
    background-size: cover;
    background-position: left;
  }
}

.container-fluid {
  max-width: 1230px; /*　画面幅の上限　*/
  margin-left: auto;
  margin-right: auto;
}
.container-fluid.narrow-width {
  max-width: 950px;
}

a {
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
a:hover, a:active, a:focus {
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}

.cookie_policy {
  display: none;
  position: fixed;
  bottom: 0;
  right: calc(50px + 1rem);
  color: #7DB4BE;
  background-color: #fff;
  border: 1px solid #7DB4BE;
  border-bottom: none;
  padding: 10px;
  z-index: 999;
  cursor: pointer;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.cookie_policy p {
  margin: 0;
}
.cookie_policy:hover {
  color: #fff;
  background-color: #7DB4BE;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.cookie_content {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  max-width: 30em;
  width: 100%;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1.2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 999;
}
.cookie_content .cookie_text {
  color: #fff;
}
.cookie_content .cookie_text a {
  color: dodgerblue;
}
.cookie_content .cookie_btn {
  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;
  gap: 1rem;
  margin-top: 1rem;
}
.cookie_content .cookie_btn span {
  font-weight: 500;
  padding: 0.5em 1.5em;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.cookie_content .cookie_btn span.cookie_agree {
  color: #fff;
  background-color: dodgerblue;
}
.cookie_content .cookie_btn span.cookie_disagree {
  color: rgb(92, 114, 145);
  background-color: #fff;
}
.cookie_content .cookie_btn span:hover {
  cursor: pointer;
  opacity: 0.6;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media screen and (max-width: 575px) {
  .cookie_content {
    bottom: 0;
    left: auto;
    max-width: 100dvw;
    font-size: 0.75rem;
  }
  .cookie_content .cookie_text {
    margin-bottom: 1em;
  }
}

@-webkit-keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.anker {
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .anker {
    margin-top: -4rem;
    padding-top: 4rem;
  }
}

header.global_header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background-color: #1C365A;
  z-index: 100;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
header.global_header nav.global_nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4.1875rem;
  width: 100%;
  height: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
}
header.global_header nav.global_nav h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  margin-left: 1.8125rem;
  margin-right: auto;
  padding: 0;
}
header.global_header nav.global_nav h1 a img {
  max-width: 390px;
  width: 20.5dvw;
  min-width: 150px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
header.global_header nav.global_nav > div.global_menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header.global_header nav.global_nav > div.global_menu ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2.9375rem;
  text-align: right;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu {
  position: relative;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu a {
  position: relative;
  display: block;
  color: #fff;
  font-size: clamp(16px, 2.8125dvw, 18px);
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-decoration: none;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu a:hover::after {
  width: 100%;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu .sub_menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 11px;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu .sub_menu div.inner {
  position: relative;
  padding: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  background-color: rgba(125, 180, 190, 0.5);
  text-align: left;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu .sub_menu div.inner::before {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 100%;
  border-bottom: 11px solid rgba(125, 180, 190, 0.5);
  border-left: 6px solid rgba(125, 180, 190, 0);
  border-right: 6px solid rgba(125, 180, 190, 0);
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu .sub_menu div.inner a {
  white-space: nowrap;
  display: inline-block;
}
header.global_header nav.global_nav > div.global_menu ul li.main_menu .sub_menu div.inner a + a {
  margin-top: 0.5rem;
}
@media screen and (max-width: 991px) {
  header.global_header nav.global_nav > div.global_menu {
    display: none;
  }
}
@media (max-width: 1700px) {
  header.global_header nav.global_nav {
    gap: 2.5rem;
  }
  header.global_header nav.global_nav h1 {
    margin-left: 1.5rem;
  }
  header.global_header nav.global_nav h1 a img {
    max-width: 250px;
  }
  header.global_header nav.global_nav > div.global_menu ul {
    gap: 1.75rem;
  }
  header.global_header nav.global_nav > div.global_menu ul li.main_menu a {
    font-size: clamp(14px, 2.5dvw, 16px);
  }
}
@media (max-width: 1350px) {
  header.global_header nav.global_nav > div.global_menu {
    margin-right: 1.5rem;
  }
  header.global_header nav.global_nav > div.global_menu ul {
    gap: 1.25rem;
  }
  header.global_header nav.global_nav span.navi_link {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  header.global_header {
    position: absolute;
    height: 75px;
  }
  header.global_header nav.global_nav h1 {
    margin-left: 1.0625rem;
  }
  header.global_header nav.global_nav h1 a img {
    max-width: 257px;
    width: 60dvw;
  }
}

body.scrolled header.global_header {
  height: 85px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.scrolled header.global_header nav.global_nav {
  gap: 2.5rem;
}
body.scrolled header.global_header nav.global_nav h1 a img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 70px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.scrolled header.global_header nav.global_nav > div.global_menu ul {
  gap: 1.75rem;
}
body.scrolled header.global_header nav.global_nav span.navi_link {
  height: 85px;
}
body.scrolled header.global_header nav.global_nav span.navi_link a {
  padding: 0.75rem 1.5rem;
}
body.scrolled header.global_header nav.global_nav span.navi_link a img {
  max-height: 35px;
}
@media (max-width: 1350px) {
  body.scrolled header.global_header nav.global_nav h1 a img {
    width: 20.5dvw;
  }
  body.scrolled header.global_header nav.global_nav > div.global_menu ul {
    gap: 1.125rem;
  }
}

span.navi_link {
  display: block;
  height: 110px;
  background-color: #F87C8F;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
span.navi_link a {
  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;
  height: 100%;
  text-decoration: none;
  padding: 1.25rem 2rem;
}
span.navi_link a img {
  max-width: 210px;
}
span.navi_link a p {
  color: #fff;
  font-size: 0.8125rem;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.198em;
  margin: 0;
  padding-left: 2px;
}
span.navi_link:has(a > span) a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.9375rem;
  width: 100%;
  padding: 1.25rem 1rem;
}
span.navi_link:has(a > span) a > div {
  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: 9px;
  height: 100%;
}
span.navi_link:has(a > span) a > span {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  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;
  width: 3.6875rem;
  height: 3.6875rem;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
span.navi_link:has(a > span) a > span::after {
  content: "";
  display: block;
  width: 18px;
  height: 9px;
  background-color: #fff;
  -webkit-mask-image: url("../img/arrow.svg");
          mask-image: url("../img/arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
span.navi_link:hover, span.navi_link:active, span.navi_link:focus {
  opacity: 0.7;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

div.sp_menu {
  position: sticky;
  top: 0.5rem;
  left: 100%;
  display: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 100;
  margin-right: 10px;
}
div.sp_menu label.modal_toggle_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  width: 54px;
  height: 54px;
  line-height: 1;
  background-color: #223B5E;
  border: 1px solid #223B5E;
  border-radius: 50%;
  cursor: pointer;
  margin: 0;
  margin-left: auto;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
  z-index: 99999;
}
div.sp_menu label.modal_toggle_btn span {
  display: block;
  width: 27px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
div.sp_menu label.modal_toggle_btn:hover, div.sp_menu label.modal_toggle_btn:active, div.sp_menu label.modal_toggle_btn:focus {
  background-color: #fff;
}
div.sp_menu label.modal_toggle_btn:hover span, div.sp_menu label.modal_toggle_btn:active span, div.sp_menu label.modal_toggle_btn:focus span {
  background-color: #223B5E;
}
div.sp_menu:has(input:checked) label.modal_toggle_btn {
  position: relative;
  background-color: transparent;
  border-color: transparent;
}
div.sp_menu:has(input:checked) label.modal_toggle_btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  margin: 0;
}
div.sp_menu:has(input:checked) label.modal_toggle_btn span:first-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(-20deg);
          transform: translate(-50%, -50%) rotate(-20deg);
}
div.sp_menu:has(input:checked) label.modal_toggle_btn span:nth-of-type(2) {
  opacity: 0;
}
div.sp_menu:has(input:checked) label.modal_toggle_btn span:last-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(20deg);
          transform: translate(-50%, -50%) rotate(20deg);
}
div.sp_menu:has(input:checked) label.modal_toggle_btn:hover, div.sp_menu:has(input:checked) label.modal_toggle_btn:active, div.sp_menu:has(input:checked) label.modal_toggle_btn:focus {
  background-color: #fff;
}
div.sp_menu:has(input:checked) label.modal_toggle_btn:hover span, div.sp_menu:has(input:checked) label.modal_toggle_btn:active span, div.sp_menu:has(input:checked) label.modal_toggle_btn:focus span {
  background-color: #223B5E;
}
@media screen and (max-width: 991px) {
  div.sp_menu {
    display: block;
  }
}

/******************/
input#modal_menu_flg {
  display: none;
}

div.modal_menu {
  display: block;
  max-width: 430px;
  width: 100%;
  height: 100%;
  background-color: #223B5E;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 998;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
  opacity: 0;
  pointer-events: none;
  overflow-y: scroll;
}
input#modal_menu_flg:checked + div.modal_menu {
  opacity: 1;
  pointer-events: auto;
}
div.modal_menu > div.global_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  min-height: calc(100% - 110px);
  padding: 5rem 3.75rem;
}
div.modal_menu > div.global_menu ul {
  max-width: 767px;
  width: 100%;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
div.modal_menu > div.global_menu ul li {
  margin-bottom: 2.625rem;
}
div.modal_menu > div.global_menu ul li a {
  display: block;
  color: #fff;
  font-size: clamp(16px, 3.125dvw, 20px);
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0;
}
div.modal_menu > div.global_menu ul li a:hover, div.modal_menu > div.global_menu ul li a:active, div.modal_menu > div.global_menu ul li a:focus, div.modal_menu > div.global_menu ul li a[href="javascript:void(0);"] {
  color: #999;
}
div.modal_menu > div.global_menu ul li a[href="javascript:void(0);"] {
  cursor: default;
}
div.modal_menu > div.global_menu ul li div a {
  padding-left: 1.875rem;
}
div.modal_menu > div.global_menu ul li:last-of-type {
  margin-bottom: 0;
}
div.modal_menu label {
  padding: 0.75rem;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  border: none;
  display: block;
  cursor: pointer;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  background-color: #7DB4BE;
}
div.modal_menu label span {
  display: block;
  width: 75%;
  background-color: #ffffff;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
div.modal_menu label span:first-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
div.modal_menu label span:last-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(315deg);
          transform: translate(-50%, -50%) rotate(315deg);
}
@media screen and (max-width: 767px) {
  div.modal_menu {
    max-width: 100%;
  }
}

div.global_footer {
  position: relative;
  z-index: 1;
}
div.global_footer footer {
  color: #fff;
  background-color: #1C365A;
  padding-top: 1.75rem;
  padding-bottom: 3.3125rem;
  position: relative;
}
div.global_footer footer div.footer_contents {
  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;
  gap: 1.625rem;
}
div.global_footer footer div.footer_contents h3 {
  font-size: clamp(18px, 3.125dvw, 20px);
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.9375rem;
}
div.global_footer footer div.footer_contents p {
  color: #fff;
  line-height: 1.6875;
  letter-spacing: 0.05em;
  margin-bottom: 7px;
}
div.global_footer footer div.footer_contents small {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  div.global_footer footer {
    padding-top: 2.125rem;
    padding-bottom: 2rem;
  }
  div.global_footer footer div.footer_contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  div.global_footer footer div.footer_contents .contents_right {
    display: none;
  }
}
div.global_footer .copyright {
  display: none;
}

/* ページトップへ戻るボタン */
#page-top {
  position: fixed;
  bottom: 15px;
  right: 20px;
  z-index: 50;
}
#page-top a {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  text-decoration: none;
  background-color: rgba(61, 61, 61, 0.5);
  border-radius: 50%;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
#page-top a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  max-width: 1rem;
}
#page-top a:hover, #page-top a:active {
  background-color: #3d3d3d;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

body:not(.top-page) main {
  padding-bottom: 3rem;
}
main .rowwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
}
main .rowwrap .primary {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
main .rowwrap .secondary {
  width: 21.6667%;
  margin-left: 4.75%;
}
@media screen and (max-width: 991px) {
  main .rowwrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  main .rowwrap .primary {
    width: 100%;
  }
  main .rowwrap .secondary {
    width: 100%;
    margin-left: 0;
    margin-top: 3rem;
  }
}

/*****************/
/* ページタイトル */
/****************/
main div.page-head {
  height: 336px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  main div.page-head {
    height: 98px;
  }
}
main div.page-title {
  position: relative;
  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;
  gap: clamp(32px, 10dvw, 64px);
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  main div.page-title {
    margin-bottom: 2rem;
  }
}
main div.page-title .title_inner > h2 {
  margin: 0;
}
main div.page-title .title_inner span {
  display: block;
  color: #FFF;
  line-height: 1.2;
  text-align: center;
}
main div.page-title .title_inner span.jp {
  font-size: clamp(36px, 10dvw, 64px);
  font-family: "kinuta-maruminold-stdn";
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
main div.page-title .title_inner span.en {
  font-size: clamp(20px, 4.6875dvw, 30px);
  font-family: "Arial";
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.1em;
}

/***************+*/
/* ぱんくずリスト */
/****************/
nav.breadcrumb-filud {
  margin-bottom: 6.25rem;
  background-color: #EAEEF2;
}
nav.breadcrumb-filud ol.breadcrumb {
  margin: 0 auto;
  background-color: transparent;
  font-size: 0;
  padding: 0.75rem 15px;
  max-width: 1230px;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item {
  font-size: 0.875rem;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item a {
  color: #999999;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item + .breadcrumb-item::before {
  content: "　|　";
  padding-right: 0.25rem;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item.active {
  color: #999999;
}
@media screen and (max-width: 767px) {
  nav.breadcrumb-filud {
    display: none;
    margin-bottom: 3.125rem;
  }
  nav.breadcrumb-filud ol.breadcrumb {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.625rem 5%;
  }
  nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item {
    display: inline;
    font-size: 0.625rem;
  }
}

/****************/
/* サイドメニュー */
/***************/
aside.secondary nav.sidebar-menu {
  margin-bottom: 2rem;
}
aside.secondary nav.sidebar-menu > h3 {
  font-size: 1.125rem;
  color: #ffffff;
  background-color: #7DB4BE;
  margin: 0 auto;
  padding: 1rem 0;
  text-align: center;
  line-height: 1;
  font-weight: normal;
  font-weight: bold;
}
aside.secondary nav.sidebar-menu {
  /* メニュー本体 */
}
aside.secondary nav.sidebar-menu > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
aside.secondary nav.sidebar-menu > ul > li {
  border-bottom: 1px dotted #999999;
  line-height: 1.2;
  padding: 1px 0;
}
aside.secondary nav.sidebar-menu > ul > li > a {
  padding: 20px 15px;
  display: block;
  text-decoration: none;
  color: #000000;
  font-size: 0.875rem;
}
aside.secondary nav.sidebar-menu > ul > li > a::before {
  padding-right: 0.75em;
  color: #7DB4BE;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}
aside.secondary nav.sidebar-menu > ul > li:hover > a, aside.secondary nav.sidebar-menu > ul > li:active > a, aside.secondary nav.sidebar-menu > ul > li.active > a {
  text-decoration: none;
  background-color: #EEEEEE;
}
aside.secondary nav.sidebar-menu + nav.sidebar-menu {
  margin-top: 2rem;
}
aside.secondary ul.banner_list {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
aside.secondary ul.banner_list li {
  margin-bottom: 1rem;
}
aside.secondary ul.banner_list li a {
  display: block;
  text-align: center;
}

@media screen and (max-width: 767px) {
  body:not(.top-page) main > .container-fluid {
    padding: 0;
  }
  body:not(.top-page) main > .container-fluid .rowwrap .primary {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/********/
/*見出し*/
/*******/
.lv1 span {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: clamp(24px, 5.46875dvw, 35px);
  font-family: "kinuta-maruminold-stdn";
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.05em;
  z-index: 0;
}
.lv1 span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  display: block;
  width: calc(100% + 11px);
  height: 21px;
  background-color: #E5DDAC;
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .lv1 span::after {
    max-width: 100%;
  }
}

.lv2 span {
  position: relative;
  display: block;
  color: #333;
  font-size: clamp(20px, 4.6875dvw, 30px);
  font-family: "kinuta-maruminold-stdn";
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .lv2 span {
    line-height: 1.5;
  }
}

.lv3 span {
  position: relative;
  color: #444;
  font-size: clamp(18px, 3.125dvw, 20px);
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding-left: 0.9em;
}
.lv3 span::before, .lv3 span::after {
  position: absolute;
  content: "";
  width: 0.2em;
  height: 50%;
  left: 0;
}
.lv3 span::before {
  top: 0;
  background-color: #7DB4BE;
}
.lv3 span::after {
  bottom: 0;
  background-color: color-mix(in srgb, #7DB4BE, black 20%);
}

.lv4 span {
  color: #444;
  font-size: clamp(16px, 2.8125dvw, 18px);
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.08em;
  margin: 0;
}

/*************/
/*テキストのみ*/
/************/
.text-only {
  margin: 0;
}
.text-only p {
  font-size: clamp(16px, 2.8125dvw, 18px);
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.text-only p a {
  color: #026BB2;
  text-decoration: underline;
}

/************/
/* 写真のみ */
/**********/
.photo-only {
  text-align: center;
  margin: 0;
}
.photo-only a img {
  display: inline-block;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.photo-only a:hover img, .photo-only a:active img, .photo-only a:focus img {
  opacity: 0.7;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.photo-only p.caption {
  font-size: clamp(16px, 2.8125dvw, 18px);
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 0.5em;
  margin-bottom: 0;
}

/*****************/
/* 写真＋テキスト */
/****************/
.photo-and-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8125rem;
  margin: 0;
}
.photo-and-text:where(.photo-left) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
}
.photo-and-text:where(.photo-right) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}
.photo-and-text div.text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.photo-and-text div.text-area > strong {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: clamp(24px, 5.46875dvw, 35px);
  font-family: "kinuta-maruminold-stdn";
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.05em;
  z-index: 0;
  margin-bottom: 1.8125rem;
}
.photo-and-text div.text-area > strong::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  display: block;
  max-width: calc(100dvw - (400px + 2.8125rem + 75px));
  width: 105%;
  height: 21px;
  background-color: #E5DDAC;
  z-index: -1;
}
.photo-and-text div.text-area > strong span {
  font-size: clamp(20px, 3.90625dvw, 25px);
}
.photo-and-text div.text-area p {
  font-size: clamp(16px, 2.8125dvw, 18px);
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.photo-and-text span.photo-area {
  max-width: 400px;
  border-radius: 10px;
}
.photo-and-text span.photo-area img {
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 1199px) {
  .photo-and-text div.text-area strong::after {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .photo-and-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 1.875rem;
  }
  .photo-and-text span.photo-area {
    display: block;
    width: 100% !important;
    max-width: 100%;
    text-align: center;
  }
  .photo-and-text span.photo-area:not(:has(img)) {
    display: none;
  }
  .photo-and-text span.photo-area img {
    margin-bottom: 0;
  }
}

/*********************/
/* 2列写真+キャプション */
/* 3列写真+キャプション */
/* 4列写真+キャプション */
/*********************/
.two-photo,
.three-photo,
.four-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.two-photo .photo_set,
.three-photo .photo_set,
.four-photo .photo_set {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.two-photo .photo_set img,
.three-photo .photo_set img,
.four-photo .photo_set img {
  display: inline-block;
  border-radius: 10px;
}
.two-photo .photo_set .caption-title,
.three-photo .photo_set .caption-title,
.four-photo .photo_set .caption-title {
  font-size: clamp(16px, 2.8125dvw, 18px);
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: left;
  margin-top: 15px;
  margin-bottom: 0;
}
.two-photo .photo_set .caption-text,
.three-photo .photo_set .caption-text,
.four-photo .photo_set .caption-text {
  font-size: clamp(16px, 2.8125dvw, 18px);
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
  margin: 5px 0;
}
.two-photo .photo_set span.photo_even,
.three-photo .photo_set span.photo_even,
.four-photo .photo_set span.photo_even {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1.5;
  position: relative;
  border-radius: 10px;
}
.two-photo .photo_set span.photo_even img,
.three-photo .photo_set span.photo_even img,
.four-photo .photo_set span.photo_even img {
  max-width: 100%;
  height: auto;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}
.two-photo a img,
.three-photo a img,
.four-photo a img {
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #ffffff;
}
.two-photo a:hover img,
.three-photo a:hover img,
.four-photo a:hover img {
  opacity: 0.7;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .two-photo,
  .three-photo,
  .four-photo {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .two-photo.turn_on,
  .three-photo.turn_on,
  .four-photo.turn_on {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .two-photo.turn_on div.photo_set,
  .three-photo.turn_on div.photo_set,
  .four-photo.turn_on div.photo_set {
    width: 100%;
  }
  .two-photo.turn_on div.photo_set span.photo_even,
  .three-photo.turn_on div.photo_set span.photo_even,
  .four-photo.turn_on div.photo_set span.photo_even {
    aspect-ratio: unset !important;
  }
  .two-photo.turn_on div.photo_set span.photo_even img,
  .three-photo.turn_on div.photo_set span.photo_even img,
  .four-photo.turn_on div.photo_set span.photo_even img {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
  .two-photo.turn_on div.photo_set + div.photo_set,
  .three-photo.turn_on div.photo_set + div.photo_set,
  .four-photo.turn_on div.photo_set + div.photo_set {
    margin-top: 2rem;
  }
}

/**********/
/* リスト */
/*********/
ul.dot, ol.dot, ul.none, ol.none {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.dot > li, ol.dot > li, ul.none > li, ol.none > li {
  position: relative;
  font-size: clamp(16px, 2.8125dvw, 18px);
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-left: 2em;
}
ul.dot > li::before, ol.dot > li::before, ul.none > li::before, ol.none > li::before {
  display: inline-block;
  width: 2em;
  position: absolute;
  left: 0;
  color: #7DB4BE;
}

ul.dot > li::before, ol.dot > li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "•";
  text-align: center;
}

ul.counter, ol.counter {
  display: table;
  margin: 0;
  padding: 0;
}
ul.counter li, ol.counter li {
  display: table-row;
  counter-increment: number;
  list-style-type: none;
  font-size: clamp(16px, 2.8125dvw, 18px);
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
}
ul.counter li::before, ol.counter li::before {
  content: counter(number) ".";
  display: table-cell;
  padding-right: 0.4em;
  text-align: right;
  white-space: nowrap;
}
ul.counter li::after, ol.counter li::after {
  content: "";
  display: block;
  margin-bottom: 0.5em;
}
ul.counter li:last-of-type:after, ol.counter li:last-of-type:after {
  margin-bottom: 0;
}

/**********/
/* ボタン */
/*********/
.btn-on {
  margin: 0;
}

.original-btn {
  --btn-font-color: #ffffff;
  --btn-back-color: #7DB4BE;
  --btn-line-color: #7DB4BE;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  text-align: center;
  border: 1px solid var(--btn-line-color);
  background-color: var(--btn-back-color);
  color: var(--btn-font-color);
  padding: 1.5rem;
  font-size: clamp(16px, 2.8125dvw, 18px);
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  min-width: 400px;
  border-radius: 7px;
}
.original-btn:is(:hover, :active, :focus) {
  text-decoration: none;
  background-color: var(--btn-font-color);
  color: var(--btn-back-color);
}
.original-btn.btn-big {
  min-width: 450px;
  padding: 2em;
}
.original-btn.btn-small {
  min-width: 300px;
  font-size: 0.875rem;
  padding: 1.125rem;
}
.original-btn.btn-blue {
  --btn-line-color:#00238C;
  --btn-back-color:#00238C;
}
.original-btn.btn-green {
  --btn-line-color:#006600;
  --btn-back-color:#006600;
}
.original-btn.btn-orange {
  --btn-line-color:#FF8000;
  --btn-back-color:#FF8000;
}
.original-btn.btn-gray {
  --btn-line-color:#999999;
  --btn-back-color:#999999;
}
@media screen and (max-width: 767px) {
  .original-btn {
    padding: 0.625rem 1rem;
  }
  .original-btn.btn-big {
    padding: 0.9375rem 1.125rem;
  }
  .original-btn.btn-small {
    padding: 0.625rem 0.875rem;
  }
}

.hr-on {
  margin: 0;
}

/***********************************************/
/* Youtube GoogleMap 埋め込みタグ レスポンシブ化 */
/***********************************************/
.youtube-box,
.gmap-box {
  position: relative;
  padding-bottom: 55.5%;
  height: 0;
}
.youtube-box iframe,
.gmap-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube-on,
.googlemap-on {
  margin: 0;
}

/************/
/* テーブル */
/***********/
table.table-standard,
table.table-flexible {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
table.table-standard tr,
table.table-flexible tr {
  border-bottom: 1px solid #eee;
}
table.table-standard tr th,
table.table-flexible tr th, table.table-standard tr td,
table.table-flexible tr td {
  font-size: 1rem;
  color: #333;
  border: none;
  padding: 2.03125rem 0;
}
table.table-standard tr th,
table.table-flexible tr th {
  font-weight: 500;
  white-space: nowrap;
  padding-left: 0.25rem;
}

.table-on {
  margin-bottom: 2rem;
}

@media screen and (max-width: 991px) {
  table.table-standard tr th, table.table-standard tr td,
  table.table-flexible tr th,
  table.table-flexible tr td {
    padding: 1.1875rem 0.5rem;
  }
  table.table-standard tr th,
  table.table-flexible tr th {
    font-weight: bold;
  }
}

@media screen and (max-width: 991px) {
  table.table-flexible {
    display: block;
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
  }
  table.table-flexible tbody {
    display: block;
    width: 100%;
  }
  table.table-flexible tbody tr {
    display: block;
    width: 100%;
  }
  table.table-flexible tbody tr th, table.table-flexible tbody tr td {
    display: block;
    width: 100%;
    padding: 0.5em 0;
    word-break: break-all;
  }
  table.table-flexible.tophead tr:first-of-type, table.table-flexible.lefttophead tr:first-of-type {
    display: none;
  }
  table.table-flexible.tophead td::before, table.table-flexible.lefttophead td::before {
    content: attr(data-tophead) "：";
    font-weight: bold;
  }
  table.table-standard {
    margin-bottom: 0;
    border-left: none;
    border-top: none;
  }
  table.table-standard tbody {
    display: block;
  }
  table.table-standard tbody tr th,
  table.table-standard tbody tr td {
    min-width: 10em;
    white-space: nowrap;
  }
}
/********/
/* 全幅 */
/*******/
section.extend {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 2rem 15px;
}
section.extend.extend_fixed {
  background-attachment: fixed;
}
section.extend.none_space {
  padding: 0;
}

@media screen and (max-width: 767px) {
  .view_pc_blocktype {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .view_sp_blocktype {
    display: none !important;
  }
}
section.input_wrap {
  width: 100%;
}
section.input_wrap .input_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
section.input_wrap .input_group:first-of-type {
  border-top: 1px solid #CCCCCC;
}
section.input_wrap .input_group .input_label {
  display: block;
  width: 13em;
  font-size: 1.125rem;
  margin: 0;
  padding: 0;
}
section.input_wrap .input_group .input_label span.required {
  font-size: 1rem;
  color: #FF6A06;
  margin-left: 1em;
}
section.input_wrap .input_group .input_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
section.input_wrap .input_group .input_content.name_set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
section.input_wrap .input_group .input_content.name_set div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
section.input_wrap .input_group .input_content.name_set div:first-of-type {
  padding-right: 1rem;
}
section.input_wrap .input_group .input_content.name_set div:last-of-type {
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  section.input_wrap .input_group .input_content.name_set div:first-of-type {
    padding-right: 0.5rem;
  }
  section.input_wrap .input_group .input_content.name_set div:last-of-type {
    padding-left: 0.5rem;
  }
}
section.input_wrap .input_group .input_content.address_set {
  width: 100%;
}
section.input_wrap .input_group .input_content.address_set div:first-of-type {
  margin-bottom: 1rem;
}
section.input_wrap .input_group .input_content .schedule_set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.input_wrap .input_group .input_content .schedule_set input[name*=date],
section.input_wrap .input_group .input_content .schedule_set input[type=date] {
  width: 9rem;
}
section.input_wrap .input_group .input_content .schedule_set input[name*=time],
section.input_wrap .input_group .input_content .schedule_set input[type=time] {
  width: 7rem;
}
@media screen and (max-width: 575px) {
  section.input_wrap .input_group .input_content .schedule_set {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  section.input_wrap .input_group .input_content .schedule_set span {
    display: block;
    width: calc(100% - 17rem);
  }
  section.input_wrap .input_group .input_content .schedule_set span ~ input[type=date] {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  section.input_wrap .input_group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  section.input_wrap .input_group .input_label {
    width: auto;
    margin-bottom: 1rem;
  }
}
section.input_wrap .input_group.has-error .input_item {
  border-color: #ff5757;
}
section.input_wrap .input_group.has-error span.error_message {
  font-size: 1rem;
  color: #ff5757;
  display: inline-block;
  font-weight: 600;
  margin-top: 0.5em;
}

.submit_area {
  text-align: center;
  margin-top: 4.125rem;
}
.submit_area p {
  width: 100%;
  margin-bottom: 2.625rem;
}
.submit_area .button_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.submit_area .button_wrap .original-btn {
  min-width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.submit_area button + button {
  margin-top: 1rem;
}

.input_item {
  display: block;
  width: 100%;
  height: 3.5em;
  padding: 1em 0.75rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3e3e3e;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #999999;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  outline: none;
}
.input_item::-webkit-input-placeholder {
  color: #AAAAAA;
}
.input_item::-moz-placeholder {
  color: #AAAAAA;
}
.input_item:-ms-input-placeholder {
  color: #AAAAAA;
}
.input_item::-ms-input-placeholder {
  color: #AAAAAA;
}
.input_item::placeholder {
  color: #AAAAAA;
}
.input_item.inline_parts {
  display: inline-block;
  width: auto;
}
@media screen and (max-width: 767px) {
  .input_item {
    height: 2.5em;
    padding: 0.5em;
  }
}
.input_item:active, .input_item:focus {
  border-color: #333333;
  background-color: #fffad7;
}

textarea.input_item {
  height: auto;
}

/*** ラジオボタン ****/
input.input_item[type=radio] {
  display: none;
  border: 0;
  margin: 0;
}
input.input_item[type=radio] + label {
  display: block;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
input.input_item[type=radio] + label:empty {
  min-height: 1em;
}
input.input_item[type=radio] + label:last-of-type {
  margin-bottom: 0;
}
input.input_item[type=radio] + label:before, input.input_item[type=radio] + label:after {
  content: "";
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
input.input_item[type=radio] + label:before {
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  border: 2px solid #999;
  background-color: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
input.input_item[type=radio] + label:after {
  top: 50%;
  left: 0.25em;
  width: 0.5em;
  height: 0.5em;
  background-color: transparent;
  -webkit-transform: scale(0) translateY(-50%);
          transform: scale(0) translateY(-50%);
}
input.input_item[type=radio]:checked + label:after {
  background-color: #7DB4BE;
  -webkit-transform: scale(1) translateY(-50%);
          transform: scale(1) translateY(-50%);
}

input.input_item[type=checkbox] {
  display: none;
  margin: 0;
}
input.input_item[type=checkbox] + label {
  position: relative;
  padding: 10px 0px 10px 35px;
  line-height: 1.4;
  margin-bottom: 0;
}
input.input_item[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background-color: white;
  border: 2px solid #c2ced2;
}
input.input_item[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  left: 13px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #7DB4BE;
  border-bottom: 3px solid #7DB4BE;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/***************************/
/* 一覧表示（TOP・一覧共通） */
/***************************/
#news-list dl.headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3.875rem;
  color: #333;
  font-size: clamp(16px, 2.8125dvw, 18px);
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 1px solid #91ABB8;
  margin-bottom: 0;
  padding: 1.5625rem 10px;
}
#news-list dl.headline:first-of-type {
  border-top: 1px solid #91ABB8;
}
#news-list dl.headline span.new {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 3.1875rem;
  height: 1.5rem;
  color: #fff;
  font-family: "Roboto", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  background-color: #EF6E6E;
  border-radius: 3px;
  padding: 0 0.5rem;
}
#news-list dl.headline dt {
  font-family: "Oswald", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 300;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.90625rem;
}
#news-list dl.headline dt span.new {
  display: none;
}
#news-list dl.headline dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  width: 100%;
  margin: 0;
}
#news-list dl.headline dd a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #333;
  font-size: 1.125rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #news-list dl.headline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 0.8rem;
    padding: 1.125rem 1rem;
  }
  #news-list dl.headline dt {
    font-size: 0.833rem;
    margin-left: 0;
  }
  #news-list dl.headline dt span.new {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 0.833rem;
    font-weight: 400;
    line-height: 1.3;
    padding: 0 0.55rem;
  }
  #news-list dl.headline dd {
    margin-left: 0;
  }
  #news-list dl.headline dd span.new {
    display: none;
  }
  #news-list dl.headline dd a {
    font-size: 1rem;
  }
}
#news-list .news_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.8125rem;
}
#news-list .headline_list:has(.thumbnail_headlines) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
#news-list .headline_list:has(.thumbnail_headlines) .thumbnail_headlines .news_img {
  position: relative;
  margin-bottom: 11px;
}
#news-list .headline_list:has(.thumbnail_headlines) .thumbnail_headlines .news_img a {
  display: block;
  overflow: hidden;
}
#news-list .headline_list:has(.thumbnail_headlines) .thumbnail_headlines .news_img a span {
  display: block;
  width: 100%;
  height: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 66.5%;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
#news-list .headline_list:has(.thumbnail_headlines) .thumbnail_headlines .news_img a:hover span {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
#news-list .headline_list:has(.thumbnail_headlines) .thumbnail_headlines dl {
  margin: 0;
}
#news-list .headline_list:has(.thumbnail_headlines) .thumbnail_headlines dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
#news-list .headline_list:has(.thumbnail_headlines) .thumbnail_headlines dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0;
}
#news-list .headline_list:has(.thumbnail_headlines) .thumbnail_headlines dl dd span.new {
  display: inline-block;
  color: #fff;
  font-family: "Roboto", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  background-color: #ff7272;
  margin-top: 5px;
  padding: 0 0.8125rem;
}
#news-list .headline_list:has(.thumbnail_headlines) .thumbnail_headlines dl dd a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 3.37875rem;
  color: #000;
  font-size: 1.0625rem;
  line-height: 1.59;
  letter-spacing: 0.034em;
}
#news-list .headline_list:has(.thumbnail_headlines) .thumbnail_headlines .category-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
}
#news-list .headline_list:has(.thumbnail_headlines) .thumbnail_headlines:has(dl dd a:hover) .news_img a span {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media screen and (max-width: 991px) {
  #news-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #news-list .news_head {
    -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: 2rem;
  }
  #news-list .news_head p.newslist_btn a {
    margin: 0;
  }
  #news-list .headline_list:has(.thumbnail_headlines) {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  #news-list .news_head p.newslist_btn a {
    font-size: 0.875rem;
  }
  #news-list .headline_list:has(.thumbnail_headlines) .thumbnail_headlines dl dd span.new {
    font-size: 0.833rem;
    line-height: 1.3;
    margin-top: 3px;
    padding: 0 0.55rem;
  }
  #news-list .headline_list:has(.thumbnail_headlines) .thumbnail_headlines dl dd a {
    font-size: 0.875rem;
  }
}

nav.nav_pagination ul.item_wrap {
  --link-color: #303030;
  --link-fond-color: #FAFAFA;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0;
  margin: 5.20625rem 0 0;
}
nav.nav_pagination ul.item_wrap li:where(.arrow, .item) > a,
nav.nav_pagination ul.item_wrap li:where(.arrow, .item) span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1.8em;
  aspect-ratio: 1/1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}
nav.nav_pagination ul.item_wrap li.arrow a {
  border: 2px solid var(--link-color);
  border-radius: 5px;
  background-color: var(--link-fond-color);
}
nav.nav_pagination ul.item_wrap li.arrow a i {
  width: 0.5em;
  aspect-ratio: 10/17;
  display: inline-block;
  background-color: var(--link-color);
}
nav.nav_pagination ul.item_wrap li.arrow a:is(:hover, :focus, :active) {
  --link-color: #FAFAFA;
  --link-fond-color: #808080;
}
nav.nav_pagination ul.item_wrap li.arrow a[href="#"] {
  --link-color: #CCC;
  pointer-events: none;
}
nav.nav_pagination ul.item_wrap li.arrow:first-child {
  margin-right: 2.125rem;
}
nav.nav_pagination ul.item_wrap li.arrow:first-child a i {
  clip-path: polygon(90% 0, 100% 10%, 30% 50%, 100% 90%, 90% 100%, 0 50%);
}
nav.nav_pagination ul.item_wrap li.arrow:last-child {
  margin-left: 2.125rem;
}
nav.nav_pagination ul.item_wrap li.arrow:last-child a i {
  clip-path: polygon(10% 0, 0% 10%, 70% 50%, 0 90%, 10% 100%, 100% 50%);
}
nav.nav_pagination ul.item_wrap li.item a {
  color: #aeaeae;
}
nav.nav_pagination ul.item_wrap li.item.active span {
  color: var(--link-color);
}
@media screen and (max-width: 767px) {
  nav.nav_pagination ul.item_wrap {
    margin-top: 2.5rem;
  }
}

a.icon_newscat {
  --cat-font-color: #7DB4BE;
  --cat-back-color: #fff;
  --cat-line-color: #7DB4BE;
  display: inline-block;
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.625rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  padding: 0 7px;
  color: var(--cat-font-color);
  background-color: var(--cat-back-color);
  border: 1px solid var(--cat-line-color);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a.icon_newscat {
    padding: 0 6px;
  }
}
a.icon_newscat:is(:hover, :focus, :active) {
  color: var(--cat-back-color);
  background-color: var(--cat-font-color);
}

.detailInfo .btnBackList, .detailInfo .mapInfo .mapButtonWrap a, section.search_panel ul.type_list > li .search_submit {
  border: 2px solid #F87C8F;
  background-color: #F87C8F;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  outline: none;
  text-decoration: none;
}
.detailInfo .btnBackList:hover, .detailInfo .mapInfo .mapButtonWrap a:hover, section.search_panel ul.type_list > li .search_submit:hover, .detailInfo .btnBackList:active, .detailInfo .mapInfo .mapButtonWrap a:active, section.search_panel ul.type_list > li .search_submit:active {
  background-color: #ffffff;
  color: #F87C8F;
}

section.search_panel {
  position: relative;
  margin-bottom: 1rem;
}
section.search_panel ul.type_list {
  list-style: none;
  margin: 0 0 clamp(18px, 2.0833333333dvw, 25px);
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  position: relative;
}
section.search_panel ul.type_list > li {
  margin: 0;
  padding: 0;
}
section.search_panel ul.type_list > li input[type=radio][name=select_panel] {
  display: none;
}
section.search_panel ul.type_list > li label.select_panel {
  display: inline-block;
  border: 1px solid #000000;
  background-color: #ffffff;
  font-size: clamp(14px, 1.5dvw, 18px);
  margin: 0;
  width: 100%;
  padding: 1rem;
  padding-right: 3rem;
  border-radius: 5px;
  position: relative;
  width: min(275px, 22.9166666667dvw);
  cursor: pointer;
}
section.search_panel ul.type_list > li label.select_panel::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  font-size: 10px;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
section.search_panel ul.type_list > li div.panel {
  display: none;
  position: absolute;
  width: 100%;
  top: calc(100% + 10px);
  left: 0;
  padding: 2rem;
  background-color: #ffffff;
  z-index: 10;
  font-size: 1.2rem;
  border: thin solid #ccc;
}
section.search_panel ul.type_list > li div.panel input[type=checkbox] {
  display: none;
}
section.search_panel ul.type_list > li div.panel input[type=checkbox] + label {
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 30px;
  padding-right: 10px;
  margin-bottom: 0;
}
section.search_panel ul.type_list > li div.panel input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 50%;
  border: 1px solid;
  border-color: #CCCCCC; /* 枠の色変更 お好きな色を */
  background-color: #FFF; /* 背景の色変更 お好きな色を */
}
section.search_panel ul.type_list > li div.panel input[type=checkbox]:checked + label:before {
  background-color: #F87C8F;
  border-color: #F87C8F;
}
section.search_panel ul.type_list > li div.panel input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 8px;
  margin-top: -7px;
  top: 50%;
  left: 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #ffffff;
}
section.search_panel ul.type_list > li div.panel ul.layer_one {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  section.search_panel ul.type_list > li div.panel ul.layer_one {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
section.search_panel ul.type_list > li div.panel ul.layer_two {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding: 0;
  line-height: 1;
}
section.search_panel ul.type_list > li div.panel ul.layer_two > li {
  width: 100%;
}
section.search_panel ul.type_list > li div.panel ul.layer_two > li label {
  margin-bottom: 0;
  cursor: pointer;
}
section.search_panel ul.type_list > li div.panel ul.layer_two > li > ul {
  padding-left: 2rem;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
section.search_panel ul.type_list > li div.panel ul.layer_two > li > ul li {
  margin-top: 1.5rem;
}
section.search_panel ul.type_list > li div.panel ul.layer_two > li input[type=checkbox]:checked ~ ul li label {
  pointer-events: none;
  opacity: 0.5;
}
section.search_panel ul.type_list > li div.panel ul.layer_two > li input[type=checkbox]:checked ~ ul li label::before {
  background-color: #F87C8F;
  border-color: #F87C8F;
}
section.search_panel ul.type_list > li div.panel ul.layer_two > li input[type=checkbox]:checked ~ ul li label::after {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 8px;
  margin-top: -7px;
  top: 50%;
  left: 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #ffffff;
}
@media screen and (max-width: 767px) {
  section.search_panel ul.type_list > li div.panel ul.layer_two {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap svg.areaMap {
  width: 35%;
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap svg.areaMap use {
  stroke: #fff;
  stroke-width: 2px;
  stroke-linejoin: round;
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap svg.areaMap a[data-index="1"] {
  fill: #FFBF00;
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap svg.areaMap a[data-index="2"] {
  fill: #00D96D;
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap svg.areaMap a[data-index="3"] {
  fill: #FF4000;
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap svg.areaMap a[data-index="4"] {
  fill: #FFBDBD;
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap svg.areaMap a[data-index="5"] {
  fill: #EFBFFF;
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap svg.areaMap a[data-index="6"] {
  fill: #93E4FF;
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap svg.areaMap a[data-index="7"] {
  fill: #C9F56B;
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap svg.areaMap a:not(.select) {
  fill: #ccc;
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap > div {
  margin-left: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap > div ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  width: 100%;
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap > div ul li {
  width: 50%;
  margin-bottom: 0.5em;
}
section.search_panel ul.type_list > li div.panel.area_panel .area_wrap > div ul li p {
  font-size: 0.75rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  section.search_panel ul.type_list > li div.panel.area_panel {
    overflow: visible;
    max-height: none;
  }
  section.search_panel ul.type_list > li div.panel.area_panel .area_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  section.search_panel ul.type_list > li div.panel.area_panel .area_wrap svg.areaMap {
    width: 100%;
    margin-bottom: 2.857rem;
  }
  section.search_panel ul.type_list > li div.panel.area_panel .area_wrap > div {
    margin-left: 0;
  }
  section.search_panel ul.type_list > li div.panel.area_panel .area_wrap > div ul li {
    width: 100%;
    font-size: 1.14285rem;
  }
}
section.search_panel ul.type_list > li input[type=radio][name=select_panel]:checked + label {
  background-color: #F3DDE1;
}
section.search_panel ul.type_list > li input[type=radio][name=select_panel]:checked + label::after {
  content: "\f077";
}
section.search_panel ul.type_list > li input[type=radio][name=select_panel]:checked + label + div.panel {
  display: block;
}
section.search_panel ul.type_list > li {
  /* キーワード入力 */
}
section.search_panel ul.type_list > li .keywords {
  display: block;
  width: min(380px, 31.6666666667dvw);
  height: 3.8333em;
  padding: 1em 0.75rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #000;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  outline: none;
  border-radius: 5px;
}
section.search_panel ul.type_list > li .keywords::-webkit-input-placeholder {
  color: #AAAAAA;
}
section.search_panel ul.type_list > li .keywords::-moz-placeholder {
  color: #AAAAAA;
}
section.search_panel ul.type_list > li .keywords:-ms-input-placeholder {
  color: #AAAAAA;
}
section.search_panel ul.type_list > li .keywords::-ms-input-placeholder {
  color: #AAAAAA;
}
section.search_panel ul.type_list > li .keywords::placeholder {
  color: #AAAAAA;
}
@media screen and (max-width: 767px) {
  section.search_panel ul.type_list > li .keywords {
    height: 2.5em;
    padding: 0.5em;
    width: 100%;
  }
}
section.search_panel ul.type_list > li {
  /**/
}
section.search_panel ul.type_list > li .search_submit {
  font-size: clamp(16px, 1.6666666667dvw, 20px);
  padding: 0.55em;
  border-radius: 5px;
  letter-spacing: 0.127em;
  width: min(150px, 12.5dvw);
}
section.search_panel ul.type_list > li .search_clear {
  font-size: 1.125rem;
  padding: 0.25em 1em;
  background-color: #CCCCCC;
  border: 1px solid #CCCCCC;
  color: #ffffff;
  margin-left: 2rem;
}
section.search_panel ul.type_list > li .button_box {
  bottom: 0;
  background-color: #ffffff;
  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: 4rem;
  padding-bottom: 2rem;
}
section.search_panel ul.type_list > li .button_box .search_submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  section.search_panel ul.type_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  section.search_panel ul.type_list > li {
    width: 100% !important;
  }
  section.search_panel ul.type_list > li:last-of-type {
    text-align: center;
  }
  section.search_panel ul.type_list > li label.select_panel {
    width: 100%;
    text-align: center;
  }
  section.search_panel ul.type_list > li div.panel {
    position: relative;
    top: auto;
    left: 0;
    width: 100%;
    margin-top: 1.25rem;
  }
  section.search_panel ul.type_list > li .search_submit {
    font-size: 1.14285rem;
    width: 100%;
  }
  section.search_panel ul.type_list > li .search_clear {
    font-size: 1rem;
    margin-left: 0;
    margin-top: 1.5rem;
  }
  section.search_panel ul.type_list > li .button_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
section.search_panel dl.setSearchConf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.search_panel dl.setSearchConf dt {
  font-size: clamp(16px, 1.5dvw, 18px);
  font-weight: 700;
  width: 6em;
  text-align: left;
  line-height: 1;
}
section.search_panel dl.setSearchConf dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 0;
}
section.search_panel dl.setSearchConf dd span {
  height: 30px;
  border-radius: 15px;
  background: #ece3d8;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.5em;
  padding-right: 1em;
  gap: 0.5em;
  font-size: clamp(10px, 1.1666666667dvw, 14px);
}
section.search_panel dl.setSearchConf dd span button {
  background: none;
  outline: none;
  border: none;
  padding: 0;
  color: #ABA195;
}
section.search_panel dl.setSearchConf + dl.setSearchConf {
  margin-top: clamp(10px, 1.1666666667dvw, 14px);
}

body.souvenir-page {
  background-color: #fff;
  background-image: none;
  position: relative;
}
body.souvenir-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../souvenir/img/souvenir_bg.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
body.souvenir-page::after {
  content: none;
}
body.souvenir-page main {
  padding: 0;
}
body.souvenir-page main::after {
  content: none;
}
body.souvenir-page main article {
  max-width: none;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}
body.souvenir-page .titleGroupSouvenir {
  text-align: center;
  margin-bottom: clamp(30px, 5.3333333333dvw, 64px);
}
body.souvenir-page .titleGroupSouvenir .title {
  font-family: "kinuta-maruminyoshino-stdn";
  font-weight: normal;
  font-size: clamp(24px, 3.3333333333dvw, 40px);
  letter-spacing: 0.1em;
  color: #000;
}
body.souvenir-page .titleGroupSouvenir .titleSpell {
  font-weight: bold;
  font-size: clamp(12px, 2dvw, 24px);
  letter-spacing: 0.05em;
  text-align: center;
  color: #F87C8F;
}
body.souvenir-page header.gsHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
}
body.souvenir-page header.gsHeader nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body.souvenir-page header.gsHeader nav a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: center;
  text-decoration: none;
  --theme-color: #666;
  --theme-font-color:#fff;
  font-family: "kinuta-maruminyoshino-stdn", "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-weight: normal;
  font-size: clamp(16px, 2dvw, 24px);
  background-color: var(--theme-color);
  color: var(--theme-font-color);
}
body.souvenir-page header.gsHeader nav a:is(:hover, :focus, :active) {
  background-color: var(--theme-font-color);
  color: var(--theme-color);
}
body.souvenir-page header.gsHeader nav a.page_gourmet {
  --theme-color: #FFA63A;
}
body.souvenir-page header.gsHeader nav a.page_souvenir {
  --theme-color: #F87C8F;
}
body.souvenir-page .readmore_button {
  --theme-color: #F87C8F;
  --theme-font-color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(14px, 1.3333333333dvw, 16px);
  width: 100%;
  height: 4em;
  border-radius: 2em;
  text-decoration: none;
  border: 1px solid var(--theme-color);
  line-height: 1;
  gap: 0.5em;
}
body.souvenir-page .readmore_button span.small {
  font-size: 0.75em;
}
body.souvenir-page .readmore_button {
  background-color: var(--theme-color);
  color: var(--theme-font-color);
}
body.souvenir-page .readmore_button:is(:hover, :focus, :active) {
  background-color: var(--theme-font-color);
  color: var(--theme-color);
}

.souvenirTopArea {
  padding-top: clamp(80px, 14.25dvw, 171px);
  padding-bottom: clamp(80px, 10dvw, 120px);
  overflow: hidden;
}
.souvenirTopArea .topMessage {
  margin-bottom: clamp(30px, 5.8333333333dvw, 70px);
  text-align: center;
  font-family: "kinuta-maruminyoshino-stdn", "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  color: #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.souvenirTopArea .topMessage h1 {
  font-size: clamp(32px, 5.3333333333dvw, 64px);
  margin-bottom: clamp(24px, 4.5833333333dvw, 55px);
}
.souvenirTopArea .topMessage h2 {
  font-size: clamp(20px, 2.5dvw, 30px);
  margin-bottom: clamp(20px, 3.4166666667dvw, 41px);
}
.souvenirTopArea .topMessage p {
  font-weight: normal;
  font-size: clamp(14px, 2dvw, 24px);
}
@media screen and (max-width: 767px) {
  .souvenirTopArea .topMessage p {
    text-align: left;
  }
}
.souvenirTopArea .standardMenu {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  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;
  gap: min(36px, 3dvw);
  position: relative;
}
.souvenirTopArea .standardMenu .menuItem {
  width: min(273px, 22.75dvw);
}
.souvenirTopArea .standardMenu .menuItem .thumnail {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 16px;
}
.souvenirTopArea .standardMenu .menuItem .thumnail img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.souvenirTopArea .standardMenu .menuItem .thumnail:is(:hover, :focus, :active) img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.souvenirTopArea .standardMenu .menuItem h3 {
  font-family: "kinuta-maruminyoshino-stdn", "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  margin-bottom: 12px;
  font-size: clamp(18px, 2.0833333333dvw, 25px);
  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;
}
.souvenirTopArea .standardMenu .menuItem .description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: clamp(10px, 2.5dvw, 30px);
  font-size: clamp(12px, 1.3333333333dvw, 16px);
}
.souvenirTopArea .standardMenu img.decoImg01 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-100%, -40%);
          transform: translate(-100%, -40%);
}
.souvenirTopArea .standardMenu img.decoImg02 {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(80%, -50%);
          transform: translate(80%, -50%);
}
@media screen and (min-width: 768px) {
  .souvenirTopArea .standardMenu:has(.menuItem:nth-of-type(5)) {
    max-width: 1000px;
  }
  .souvenirTopArea .standardMenu:has(.menuItem:nth-of-type(7)) {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .souvenirTopArea .standardMenu {
    gap: 3rem 15px;
  }
  .souvenirTopArea .standardMenu .menuItem {
    width: 48%;
  }
  .souvenirTopArea .standardMenu img.decoImg01, .souvenirTopArea .standardMenu img.decoImg02 {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .souvenirTopArea .standardMenu .menuItem {
    width: 80%;
  }
}

.pickupArea {
  background-color: #fff;
  padding-top: 90px;
  padding-bottom: 120px;
}
.pickupArea .pickupInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pickupArea .pickupInner .imgArea {
  width: 42.5%;
  text-align: center;
}
.pickupArea .pickupInner .imgArea img {
  max-width: 100%;
}
.pickupArea .pickupInner .textArea {
  width: 54%;
  color: #000;
}
.pickupArea .pickupInner .textArea .title {
  font-family: "Kinuta Marumin Yoshino StdN", "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-weight: normal;
  font-size: clamp(24px, 2.9166666667dvw, 35px);
  letter-spacing: 0.05em;
  margin-bottom: clamp(12px, 1.5dvw, 18px);
}
.pickupArea .pickupInner .textArea .text {
  font-weight: normal;
  font-size: clamp(12px, 1.3333333333dvw, 16px);
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: left;
}
.pickupArea .pickupInner .textArea .text strong {
  font-weight: 700;
  font-size: clamp(16px, 1.6666666667dvw, 20px);
}
.pickupArea .pickupInner .textArea a.readmore_button {
  max-width: 354px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .pickupArea .pickupInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .pickupArea .pickupInner .imgArea {
    width: 100%;
    margin-bottom: clamp(12px, 1.5dvw, 18px);
  }
  .pickupArea .pickupInner .textArea {
    width: 100%;
  }
}

.storeSearchArea,
.tagMatchStoreList {
  background-color: #F3DDE1;
  padding-top: clamp(60px, 7.5dvw, 90px);
  padding-bottom: clamp(60px, 10dvw, 120px);
  position: relative;
}
.storeSearchArea .searchAnker,
.tagMatchStoreList .searchAnker {
  position: absolute;
  width: 100%;
  height: 110px;
  margin-top: -110px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .storeSearchArea .searchAnker,
  .tagMatchStoreList .searchAnker {
    height: 75px;
    margin-top: -75px;
  }
}

.countRecoard {
  font-size: clamp(15px, 1.4166666667dvw, 17px);
  text-align: right;
}
.countRecoard span {
  font-size: 1.1em;
  font-weight: 700;
}

.resultList {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  width: 100%;
  gap: min(50px, 3dvw);
  position: relative;
}
.resultList .resultItem {
  min-width: 0;
}
.resultList .noneItems {
  grid-column: 1/-1;
  text-align: center;
  font-size: clamp(16px, 1.5dvw, 18px);
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .resultList {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.storeItem a {
  display: block;
  width: 100%;
  color: #000;
  text-decoration: none;
  min-width: 0;
}
.storeItem .thumnail {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 61/50;
  border-radius: 5px;
  margin-bottom: 15px;
}
.storeItem .thumnail img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.storeItem a:is(:hover, :focus, :focus-within) .thumnail img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.storeItem .storeName {
  font-size: clamp(16px, 1.5dvw, 18px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: left;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: clamp(10px, 1dvw, 12px);
  width: 100%;
}
.storeItem .categoryList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
}
.storeItem .categoryList .categoryItem {
  background: #fff;
  border: 1px solid #555;
  font-weight: 500;
  font-size: clamp(10px, 1dvw, 12px);
  text-align: left;
  color: #555;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  height: 2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1em;
  border-radius: 1em;
}
.storeItem .areaName {
  font-weight: 700;
  font-size: clamp(10px, 1dvw, 12px);
  letter-spacing: 0.05em;
  color: #555;
  margin-bottom: 0;
}
.storeItem .areaName i {
  color: #F16565;
}

.standardTop .standardTopInner {
  max-width: 1230px;
  padding-top: clamp(70px, 10.8333333333dvw, 130px);
  padding-bottom: clamp(50px, 7dvw, 84px);
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(124px, 10.3333333333dvw);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.standardTop .standardTopInner .standardTitle {
  margin-bottom: clamp(20px, 3.3333333333dvw, 40px);
}
.standardTop .standardTopInner .standardTitle .title {
  font-family: "kinuta-maruminyoshino-stdn", "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: clamp(32px, 5.8333333333dvw, 70px);
}
.standardTop .standardTopInner .standardTitle .spell {
  font-weight: 500;
  font-size: clamp(16px, 1.6666666667dvw, 20px);
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
  color: #F87C8F;
}
.standardTop .standardTopInner .description {
  font-weight: 500;
  font-size: clamp(16px, 1.6666666667dvw, 20px);
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
  color: #000;
}
.standardTop .standardTopInner .standardTopPhoto {
  width: clamp(375px, 45.4166666667dvw, 545px);
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
}
.standardTop .standardTopInner .standardTopPhoto img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.standardTop .standardTopInner .standardTopText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .standardTop .standardTopInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: clamp(16px, 1.6666666667dvw, 20px);
  }
  .standardTop .standardTopInner .standardTopText {
    display: contents;
  }
  .standardTop .standardTopInner .standardTitle {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: center;
  }
  .standardTop .standardTopInner .description {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .standardTop .standardTopInner .standardTopPhoto {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.detailTop {
  padding-top: clamp(60px, 8.8333333333dvw, 106px);
  padding-bottom: clamp(34px, 5.0833333333dvw, 61px);
}
.detailTop .detailTopInner {
  max-width: 850px;
  margin: 0 auto;
}
.detailTop .detailTopTitle {
  font-family: "kinuta-maruminyoshino-stdn", "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  color: #000;
  font-weight: normal;
  margin-bottom: clamp(16px, 2.5dvw, 30px);
}
.detailTop .detailTopTitle .title {
  font-size: clamp(32px, 4.1666666667dvw, 50px);
}
.detailTop .detailTopTitle .titleKana {
  font-size: clamp(10px, 1.0833333333dvw, 13px);
  margin-bottom: 1em;
}
.detailTop .detailTopTitle .catch {
  font-size: clamp(16px, 2dvw, 24px);
  letter-spacing: 0.4em;
  margin-top: 0.5em;
}
.detailTop .categoryList {
  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;
  font-size: clamp(14px, 1.3333333333dvw, 16px);
  margin-bottom: 1em;
  gap: 0.5rem;
}
.detailTop .categoryList .categoryItem {
  background: #fff;
  border: 1px solid #555;
  font-weight: 500;
  text-align: left;
  color: #555;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  padding: 0 1em;
  border-radius: 1em;
}
.detailTop .areaName {
  text-align: center;
  font-size: clamp(14px, 1.5dvw, 18px);
  margin-bottom: 1.5em;
}
.detailTop .areaName i {
  color: #F16565;
}
.detailTop .detailSlider {
  margin-bottom: clamp(40px, 5.5833333333dvw, 67px);
}
.detailTop .detailSlider .photo {
  width: 100%;
  aspect-ratio: 85/58;
  overflow: hidden;
  border-radius: clamp(10px, 1.6666666667dvw, 20px);
}
.detailTop .detailSlider .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.detailTop .detailSlider ul.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 2.5833333333dvw, 31px);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: -1.6875rem;
  padding: 0 2px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.detailTop .detailSlider ul.slick-dots li {
  width: 13px;
  height: 13px;
  margin: 0;
}
.detailTop .detailSlider ul.slick-dots li button {
  width: 13px;
  height: 13px;
  padding: 0;
  background-color: #ffffff;
  font-size: 0;
  line-height: normal;
  opacity: 1;
  border-radius: 50%;
  border: 1px solid #707070;
}
.detailTop .detailSlider ul.slick-dots li button::before {
  content: none;
}
.detailTop .detailSlider ul.slick-dots li.slick-active button {
  background-color: #F87C8F;
  border-color: #F87C8F;
}
.detailTop .description {
  font-size: clamp(14px, 1.5dvw, 18px);
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: left;
  color: #000;
}

.detailInfo {
  background-color: #F3DDE1;
  padding-top: clamp(50px, 5dvw, 60px);
  padding-bottom: clamp(60px, 6.6666666667dvw, 80px);
}
.detailInfo .infoTableWrap {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}
.detailInfo .infoTableWrap .infoTableInner {
  padding: clamp(20px, 3.75dvw, 45px);
  width: 100%;
}
.detailInfo .infoTableWrap dl.info_table {
  max-width: 850px;
  margin: 0 auto;
}
.detailInfo dl.info_table {
  width: 100%;
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: auto 1fr;
  margin-bottom: 0;
}
.detailInfo dl.info_table + dl.info_table {
  margin-top: 1rem;
}
.detailInfo dl.info_table dt {
  border-bottom: 1px solid #CCCCCC;
  font-weight: 700;
  letter-spacing: 0.127em;
  padding: 0.875rem;
}
.detailInfo dl.info_table dd {
  padding: 0.875rem;
  margin-bottom: 0;
  border-bottom: 1px solid #CCCCCC;
  letter-spacing: 0.127em;
  background-color: #ffffff;
  word-break: break-all;
}
.detailInfo dl.info_table dd ul.link_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.detailInfo dl.info_table dd ul.link_list li a {
  color: #333333;
}
.detailInfo dl.info_table dd a.sns_icon {
  text-decoration: none;
  font-size: 2rem;
  line-height: 1;
}
.detailInfo dl.info_table dd a.sns_icon + a.sns_icon {
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .detailInfo dl.info_table {
    grid-template-columns: 1fr;
  }
  .detailInfo dl.info_table dt {
    font-size: 0.9285rem;
    padding: 0.5rem;
    line-height: 1;
    border-bottom: none;
    background-color: #F3DDE1;
  }
  .detailInfo dl.info_table dd {
    font-size: 0.9285rem;
    padding: 0.7rem;
    border-bottom: none;
    padding-bottom: 1.5em;
  }
}
.detailInfo .mapInfo {
  max-width: 850px;
  margin: 0 auto;
}
.detailInfo .mapInfo .mapButtonWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: clamp(20px, 3.75dvw, 45px);
}
.detailInfo .mapInfo .mapButtonWrap a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: inline-block;
  text-align: center;
  font-size: clamp(14px, 1.5dvw, 18px);
  padding: 1em;
}
@media screen and (max-width: 575px) {
  .detailInfo .mapInfo .mapButtonWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
}
.detailInfo #maparea {
  width: 100%;
  height: 80dvh;
}
@media screen and (max-width: 575px) {
  .detailInfo #maparea {
    height: 50dvh;
  }
}
.detailInfo .btnBackList {
  font-size: clamp(14px, 1.5dvw, 18px);
  margin: 2em auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 500px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #1C365A;
  border-color: #1C365A;
  padding: 1em;
}
.detailInfo .btnBackList::after {
  content: "";
}
.detailInfo .btnBackList:is(:hover, :focus, :active) {
  color: #1C365A;
}/*# sourceMappingURL=souvenir.css.map */