@charset "UTF-8";
/*! Common settings */
:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: all .6s;
  --transition_gallery: .8s var(--easing);
  --box_shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #FFF;
  --margin_auto: auto;
  --margin_with: 1em auto;
  --margin_with_title: 100px auto;
  --margin_with_double: 2em auto;
  --margin_half_with: 0.6em auto;
  --margin_without: 0 auto;
  --padding_without: 0;
  --padding_title: 100px 0;
  --padding_normal: 0 1em;
  --padding_all_double: 2em;
  --padding_all: 1em;
  --padding_half_all: 0.6em;
  --drop_shadow: drop-shadow(3px 3px 1px rgba(255, 255, 255, .8));
  --linear_gradient: linear-gradient(to right, rgba(0, 0, 0, .4), rgba(0, 0, 0, 0), rgba(0, 0, 0, .4));
  --text_shadow: 2px 2px 3px rgba(0, 0, 0, .8), 0 0 2px rgba(0, 0, 0, .8);
  --text_shadow_glow: 1px -1px 0px #FFF, 1px 1px 0px #FFF, -1px -1px 0px #FFF, -1px 1px 0px #FFF;
  --box_shadow_glow: 0px 0px 10px 6px rgba(255, 255, 255, .8);
}

body {
  font-family: "Noto Sans JP", serif !important;
  position: relative;
  width: 100%;
  height: auto;
  margin: var(--margin_without);
}
body * {
  margin: 0;
  padding: 0;
}
body a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
body a:hover {
  text-decoration: none;
  opacity: 0.5;
}
body ul li {
  list-style-type: none;
}
body table.common-table {
  width: min(96%, 1120px);
  margin: var(--margin_with_double);
  border-spacing: 6px;
  border-collapse: separate;
}
body table.common-table th,
body table.common-table td {
  padding: 10px;
  font-size: 90%;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 1024px) {
  body table.common-table th,
  body table.common-table td {
    display: block;
    width: 100%;
  }
}
body table.common-table th {
  text-align: center;
  background-color: #EFEFEF;
}
body table.common-table td {
  text-align: left;
  background-color: #F8F8F8;
}
body p {
  overflow: hidden;
}
body p img {
  width: 100%;
  height: auto;
}
body p.shop-content-item-btn span {
  text-align: center;
  display: inline-block;
  color: #FFF;
  font-family: "Shippori Mincho", serif;
  min-width: 120px;
}
body p.shop-content-item-btn span a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 20px;
}
body p.button-type-a {
  text-align: right;
}
body p.button-type-a span {
  background-color: #913F43;
  margin: 0 0 0 auto;
  border-radius: 5px;
}
body p.button-type-b {
  text-align: center;
}
body p.button-type-b span {
  background-color: #777;
  margin: var(--margin_without);
  border-radius: 30px;
}
body .trim-image {
  position: relative;
}
body .trim-image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
body .trim-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: var(--margin_auto);
  -o-object-fit: cover;
     object-fit: cover;
}

/*! page-top */
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: auto;
}
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

/*! Global menu */
#global-menu {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../img/common/menu-back.jpg") no-repeat center top;
}
#global-menu-list li,
#global-menu address,
#global-menu p.phone-number {
  color: #FFF;
  font-size: 1.2rem;
}
#global-menu address,
#global-menu p.phone-number {
  text-align: center;
  padding: var(--padding_half_all);
}
#global-menu address {
  font-style: normal;
}
#global-menu-list {
  margin: var(--margin_with);
  padding: 60px 0 10px 0;
}
#global-menu-list li {
  list-style: none;
  text-align: center;
  color: #FFF;
  margin: var(--margin_with);
}
#global-menu-list li span {
  display: block;
}
#global-menu-list li a {
  text-decoration: none;
  display: block;
  color: #FFF;
  transition: var(--transition);
}
#global-menu-list li a:hover {
  text-decoration: none;
  opacity: 0.5;
}
#global-menu.panelactive {
  display: block;
}
#global-menu.panelactive #global-inner {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
}

.menu-open {
  height: 100vh;
  position: fixed;
}

@media screen and (min-width: 1025px) {
  #global-menu-btn {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  #global-menu-btn {
    position: relative;
    width: 50px;
    height: 50px;
    top: 0;
    right: 20px;
    cursor: pointer;
    position: fixed;
    z-index: 1000;
    display: inline-block;
    transition: all 0.5s;
  }
  #global-menu-btn span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #913F43;
    width: 45%;
  }
  #global-menu-btn span:nth-of-type(1) {
    top: 15px;
  }
  #global-menu-btn span:nth-of-type(2) {
    top: 23px;
  }
  #global-menu-btn span:nth-of-type(3) {
    top: 31px;
  }
  #global-menu-btn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }
  #global-menu-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  #global-menu-btn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
  }
}

/*! common-header */
header#common-header {
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
}
header#common-header p#header-logo {
  width: 250px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  header#common-header nav#head-navi {
    display: none;
  }
}
header#common-header nav#head-navi ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
header#common-header nav#head-navi ul li {
  font-family: "Shippori Mincho", serif;
  padding: 0 1em;
}

/*! topSwiper */
.topSwiper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .topSwiper {
    top: 60px;
  }
}
.topSwiper .swiper-slide {
  color: #FFF;
  width: 100%;
  height: auto;
}
.topSwiper .swiper-slide img {
  width: 100%;
  max-height: 700px;
}
.topSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 0 0 10px;
  background: #FFF;
}
.topSwiper .swiper-button-prev,
.topSwiper .swiper-button-next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  transition: var(--transition);
  color: #FFF;
}
.topSwiper .swiper-button-prev::after,
.topSwiper .swiper-button-next::after {
  content: "";
  font-family: "Material Icons";
  font-size: 180%;
  width: 2rem;
  height: 2rem;
}
.topSwiper .swiper-button-prev::after {
  content: "\e5e0";
}
.topSwiper .swiper-button-next::after {
  content: "\e5e1";
}
.topSwiper .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

/*! home-menu */
nav#home-menu {
  margin: 30px auto 10px auto;
}
@media screen and (max-width: 1024px) {
  nav#home-menu {
    display: none;
  }
}
nav#home-menu ul {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
}
nav#home-menu ul li {
  width: 180px;
  height: 70px;
  text-align: center;
  position: relative;
}
nav#home-menu ul li img {
  width: auto !important;
  max-height: 70px;
}
nav#home-menu ul li::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 50px;
  background-color: #888;
  position: absolute;
  top: 10px;
  right: 0;
}
nav#home-menu ul li a {
  position: relative;
}
nav#home-menu ul li a:hover:before {
  content: "▼";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  color: #8C0000;
}

/*! breadcrumb */
div#breadcrumb {
  width: 100%;
}
div#breadcrumb ul {
  width: min(100%, 1120px);
  height: auto;
  margin: var(--margin_with);
}
@media screen and (min-width: 1025px) {
  div#breadcrumb ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  div#breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
  }
}
div#breadcrumb ul li:not(:first-child):before {
  content: "\e5cc";
  font-family: "Material Icons";
  vertical-align: middle;
  padding: var(--padding_normal);
}

/*! aikyo-gunma */
.aikyo-gunma {
  text-align: center;
  margin: 80px auto;
}
.aikyo-gunma-title {
  display: inline-block;
  color: #FFF;
  font-weight: bold;
  font-size: 130%;
  padding: 6px 20px;
  border-radius: 30px;
  background-color: #4EBC5D;
}
.aikyo-gunma-photo {
  height: auto;
  margin: var(--margin_with);
}
@media screen and (min-width: 1025px) {
  .aikyo-gunma-photo {
    width: 760px;
  }
}
@media screen and (max-width: 1024px) {
  .aikyo-gunma-photo {
    width: 96%;
  }
}

/*! top-feature */
.top-feature {
  text-align: center;
  margin: 80px auto 20px auto;
}
.top-feature h1 {
  display: inline-block;
  color: #FFF;
  font-weight: bold;
  font-size: 130%;
  padding: 6px 20px;
  border-radius: 30px;
  background-color: #DB7D7D;
}
@media screen and (min-width: 1025px) {
  .top-feature ul {
    width: min(100%, 1120px);
    margin: var(--margin_with);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
.top-feature ul li {
  height: auto;
}
@media screen and (min-width: 1025px) {
  .top-feature ul li {
    width: 360px;
  }
}
@media screen and (max-width: 1024px) {
  .top-feature ul li {
    width: 96%;
    margin: var(--margin_with);
  }
}
.top-feature ul li img {
  width: 100%;
  height: auto;
}

/*! top-topics */
.top-topics-inner {
  margin: var(--margin_auto);
}
@media screen and (min-width: 1025px) {
  .top-topics-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    width: min(100%, 1120px);
  }
}
@media screen and (min-width: 1025px) {
  .top-topics-child {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .top-topics-child {
    width: 96%;
    margin: var(--margin_with);
  }
}
.top-topics-child h1 {
  font-size: 160%;
  text-align: center;
  border-bottom: 1px solid #2F2F2F;
  font-family: "Shippori Mincho", serif;
}
.top-topics-child-text {
  text-align: center;
  padding: var(--padding_all_double);
}
.top-topics-child ul,
.top-topics-child p {
  margin: var(--margin_with_double);
}
.top-topics-list {
  width: 90%;
}
.top-topics-list li {
  margin: 0 0 6px 0;
}
.top-topics-list li:before {
  content: "●";
  font-size: 30% !important;
  padding: 0 6px 0 0;
}
.top-topics-banner {
  width: min(100%, 1100px);
  margin: var(--margin_auto);
}
@media screen and (min-width: 1025px) {
  .top-topics-banner {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
  }
}
.top-topics-banner li {
  height: auto;
}
@media screen and (min-width: 1025px) {
  .top-topics-banner li {
    width: 270px;
  }
}
@media screen and (max-width: 1024px) {
  .top-topics-banner li {
    width: 96%;
    margin: var(--margin_with);
  }
}
.top-topics-banner li img {
  width: 100%;
  height: auto;
}

/*! top-content */
.top-content {
  width: min(100%, 1120px);
  margin: var(--margin_auto);
  padding: 60px 0;
}
.top-content-frame {
  width: 100%;
  margin-bottom: 50px;
}
.top-content-frame.box-color-pink {
  background: url("../img/common/box-back/pink.jpg") no-repeat top center;
  background-size: 100% 60px;
  background-color: #DDB5B2;
}
.top-content-frame.box-color-gray {
  background: url("../img/common/box-back/gray.jpg") no-repeat top center;
  background-size: 100% 60px;
  background-color: #E8E8E8;
}
.top-content-frame > .top-content > h1 {
  border-bottom: none;
}
@media screen and (min-width: 1025px) {
  .top-content-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 60px;
    padding: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .top-content-inner-photo {
    width: 450px;
  }
}
@media screen and (max-width: 1024px) {
  .top-content-inner-photo {
    width: 96%;
    max-width: 450px;
    margin: 10px auto;
  }
}
@media screen and (min-width: 1025px) {
  .top-content-inner h2 {
    width: 550px;
  }
}
@media screen and (max-width: 1024px) {
  .top-content-inner h2 {
    padding: var(--padding_all);
  }
}
.top-content h1,
.top-content h2 {
  font-family: "Shippori Mincho", serif;
}
.top-content h1 {
  font-size: 160%;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.top-content h1.title-line {
  border-bottom: 1px solid #2F2F2F;
}
.top-content h1 span {
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 10px 0 0;
  display: inline-block;
  background-color: #AA4A4E;
  border-radius: 50%;
}
.top-content h1 span img {
  width: 50px;
  height: auto;
}
.top-content h2 {
  font-size: 100%;
  text-align: left;
}
.top-content > h2 {
  margin: var(--margin_with_double);
}
.top-content ul {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .top-content ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-content ul li {
    width: 96%;
    max-width: 500px;
    margin: 0 auto 10px auto;
  }
}
.top-content ul li img {
  width: 100%;
  height: auto;
}
.top-content iframe {
  width: 100%;
  height: 300px;
  margin: 20px auto;
}

/*! top-sns */
.top-sns {
  text-align: center;
  margin: var(--margin_with);
}
.top-sns h1 {
  display: inline-block;
  color: #FFF;
  font-weight: bold;
  font-size: 130%;
  padding: 6px 20px;
  border-radius: 16px;
  background-color: #FF9292;
}
.top-sns p {
  display: inline-block;
  color: #FFF;
  font-weight: bold;
  font-size: 130%;
  padding: 6px 20px;
  border-radius: 30px;
  background-color: #61CE88;
}
.top-sns ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 30px;
  margin: 30px auto;
}
.top-sns ul li {
  width: 50px;
  height: 50px;
  border-radius: 4px;
}
.top-sns ul li img {
  width: 100%;
  height: 100%;
}
.top-sns ul li .i-faecbook {
  background-color: #3B5998;
}
.top-sns ul li .i-twitter {
  background-color: #1DA1F2;
}
.top-sns ul li .i-instagram {
  background-color: #262626;
}
.top-sns ul li .i-youtube {
  background-color: #CD201F;
}
.top-sns ul li .i-line {
  background-color: #61CE70;
}

/*! top-offical-banner */
.top-offical-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: min(100%, 1120px);
  margin: var(--margin_with);
}
.top-offical-banner li {
  height: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .top-offical-banner li {
    width: 210px;
  }
}
@media screen and (max-width: 1024px) {
  .top-offical-banner li {
    width: 48%;
  }
}
.top-offical-banner li img {
  width: 100%;
  height: auto;
}

/*! top-foot-banner */
.top-foot-banner {
  width: min(100%, 1130px);
  margin: 20px auto 100px auto;
}
.top-foot-banner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-foot-banner ul li {
  width: 220px;
  height: auto;
  margin-bottom: 10px;
}
.top-foot-banner ul li img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .top-foot-banner-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .top-foot-banner-inner p {
    max-width: 174px;
    margin: 10px auto;
  }
}
.top-foot-banner-inner p img {
  width: 100%;
  height: 100%;
}
.top-foot-banner h1 {
  font-size: 100%;
  font-weight: normal;
  font-family: "Shippori Mincho", serif;
  padding: 0 20px;
  margin-bottom: 10px;
}
.top-foot-banner-btn {
  text-align: right;
}
.top-foot-banner-btn span {
  text-align: center;
  display: inline-block;
  color: #FFF;
  font-family: "Shippori Mincho", serif;
  min-width: 120px;
  background-color: #777;
  margin: var(--margin_without);
  border-radius: 30px;
}
.top-foot-banner-btn span a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 20px;
}

/*! sub pages */
.maintenance-text {
  width: min(100%, 1120px);
  margin: var(--margin_with);
  text-align: center;
  padding: 100px 0;
}

article.sub-pages {
  /*! sub-contents */
  /*! sub-page-navi */
  /*! shop-list */
}
article.sub-pages .main-visual {
  position: relative;
}
article.sub-pages .main-visual-photo {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1025px) {
  article.sub-pages .main-visual-photo {
    height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  article.sub-pages .main-visual-photo {
    height: 200px;
  }
}
article.sub-pages .main-visual-photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
article.sub-pages .main-visual > h1 {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
  color: #FFF;
  font-family: "Shippori Mincho", serif;
  padding: 10px 20px;
}
article.sub-pages .sub-contents h1 {
  font-size: 120%;
  font-family: "Shippori Mincho", serif;
}
article.sub-pages .sub-page-navi {
  padding: 20px 0;
}
article.sub-pages .sub-page-navi ul {
  width: 100%;
  height: 60px;
  display: flex;
  flex-wrap: nowrap;
}
article.sub-pages .sub-page-navi ul li {
  width: 100%;
  height: 100%;
  line-height: 60px;
  text-align: center;
  background-color: #A74B50;
  font-size: 1.1rem;
  font-weight: bold;
  color: #FFF;
}
article.sub-pages .sub-page-navi ul li.sub-page-navi-active {
  background-color: #F46E7B;
}
article.sub-pages .sub-page-navi ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
article.sub-pages .shop-list {
  width: 100%;
  background: url("../img/common/box-back/light-pink.jpg") no-repeat top center;
  background-size: 100% 60px;
  background-color: #F1E6E6;
  padding: 40px 0;
}
article.sub-pages .shop-list > h1 {
  display: none;
}
article.sub-pages .shop-list-inner {
  width: min(100%, 1120px);
  margin: var(--margin_with);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
article.sub-pages .shop-list-item {
  font-family: "Shippori Mincho", serif;
}
@media screen and (min-width: 1025px) {
  article.sub-pages .shop-list-item {
    width: 31%;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  article.sub-pages .shop-list-item {
    width: 96%;
    margin: var(--margin_with);
  }
}
article.sub-pages .shop-list-item h1 {
  font-size: 120%;
  /*
          min-height: calc(1.6em * 2);
  */
}
article.sub-pages .shop-list-item h1 span {
  display: inline-block;
  font-size: 70%;
  background-color: #DCD7CF;
  padding: 2px 6px;
  border-radius: 10px;
}
article.sub-pages .shop-list-item p img {
  width: 100%;
  height: auto;
  margin: var(--margin_half_with);
}
article.sub-pages dl.shop-details {
  display: flex;
  flex-wrap: wrap;
}
article.sub-pages dl.shop-details dt,
article.sub-pages dl.shop-details dd {
  font-size: 90%;
}
article.sub-pages dl.shop-details dt {
  width: 6em;
  text-align: right;
}
article.sub-pages dl.shop-details dd {
  width: calc(100% - 6em);
}
article.sub-pages .yado-information {
  width: min(100%, 1120px);
  margin: var(--margin_with);
  padding: var(--padding_all_double);
}
article.sub-pages .yado-information h1 {
  font-size: 140%;
  font-weight: bold;
  font-family: "Shippori Mincho", serif;
}
article.sub-pages .yado-information p.yado-site-btn {
  overflow: hidden;
  text-align: right;
}
article.sub-pages .yado-information p.yado-site-btn img {
  width: 100%;
  height: auto;
}
article.sub-pages .yado-information p.yado-site-btn span {
  text-align: center;
  display: inline-block;
  color: #FFF;
  font-family: "Shippori Mincho", serif;
  min-width: 120px;
}
article.sub-pages .yado-information p.yado-site-btn span a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 20px;
  background-color: #A94A4E;
  margin: var(--margin_without);
  border-radius: 30px;
}

div.yado-box {
  width: 1140px;
  margin: 30px auto 60px auto;
  padding: 10px;
  background-color: #F8F8F8;
  border-radius: 3px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

div.yado-details-box {
  width: 100%;
  height: auto;
  margin: 30px auto;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
ul.yado-details-navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.1);
}

ul.yado-details-navi li {
  width: 160px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
}

ul.yado-details-navi li a {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

ul.yado-details-navi li.yado-navi-active a {
  font-kerning: bold;
  border-bottom: 6px solid #004C66;
}

/*! search-frame */
form.search-frame-outer {
  width: 100%;
  padding: var(--padding_all);
}

@media screen and (min-width: 1025px) {
  .search-frame {
    width: min(100%, 1120px);
    margin: var(--margin_with);
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .search-frame {
    display: flex;
    flex-wrap: wrap;
  }
}
.search-frame-item {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .search-frame-item {
    width: 50%;
  }
}
.search-frame-item > div {
  display: inline-block;
  padding: var(--padding_half_all);
}
@media screen and (max-width: 1024px) {
  .search-frame-item:last-of-type {
    width: 100% !important;
  }
}
.search-frame-item label {
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  font-size: 1rem;
}
.search-frame-item input[type=text],
.search-frame-item input[type=number] {
  padding: 0.5em 1em;
  font-size: 110%;
  border-radius: 3px;
  border: 2px solid #ddd;
  box-sizing: border-box;
}
.search-frame-item input[type=text],
.search-frame-item input[type=number] {
  width: 8em !important;
}
.search-frame-item input[type=radio] {
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  margin: var(--margin_auto);
}
.search-frame-btn {
  font-family: "Shippori Mincho", serif;
  background-color: #8C0000;
  color: #FFF;
  min-width: 100px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 120%;
  font-weight: bold;
  padding: 0.5em 1em;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .search-frame-btn {
    width: 96%;
    margin: var(--margin_with);
  }
}

/*! shop-content */
.shop-content {
  font-family: "Shippori Mincho", serif;
}
.shop-content-inner {
  width: min(100%, 1120px);
  margin: var(--margin_with);
}
.shop-content-inner > h2 {
  font-size: 1.1rem;
  padding: var(--padding_all);
}
.shop-content .include-text {
  white-space: pre-line;
}
.shop-content h1,
.shop-content h2 {
  text-align: left;
  font-weight: normal;
}
.shop-content > h1 {
  font-size: 1.8rem;
}
.shop-content .item-flex {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .shop-content .item-flex {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1025px) {
  .shop-content .item-flex-inner {
    width: 50%;
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .shop-content .item-flex-inner {
    width: 100%;
  }
}
.shop-content-item {
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
@media screen and (min-width: 1025px) {
  .shop-content-item {
    margin: var(--margin_with);
  }
}
@media screen and (max-width: 1024px) {
  .shop-content-item {
    width: 96%;
    margin: 10px auto 20px auto;
  }
}
.shop-content-item h1,
.shop-content-item h2 {
  width: 100%;
}
.shop-content-item h1 {
  font-size: 1.5rem;
  order: 2;
  margin: var(--margin_with);
}
@media screen and (max-width: 1024px) {
  .shop-content-item h1 {
    text-align: center;
  }
}
.shop-content-item p {
  order: 1;
}
.shop-content-item h2 {
  font-size: 1.2rem;
  order: 3;
  margin: var(--margin_auto);
}
@media screen and (min-width: 1025px) {
  .shop-content-item h2 {
    padding: var(--padding_half_all);
  }
}
.shop-content-item-btn {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: right;
}
.shop-content-item-btn span {
  text-align: center;
  display: inline-block;
  line-height: 100%;
  color: #FFF;
  background-color: #17678C;
  border-radius: 40px;
}
.shop-content-item-btn span a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
}
.shop-content-list {
  margin: 50px auto 100px auto;
  padding: var(--padding_all);
}
.shop-content-list:nth-child(even) {
  background-color: #F2F0EA;
}
.shop-content-list > h1,
.shop-content-list > h2 {
  width: min(100%, 1120px);
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .shop-content-list > h1,
  .shop-content-list > h2 {
    margin: var(--margin_with);
  }
}
@media screen and (max-width: 1024px) {
  .shop-content-list > h1,
  .shop-content-list > h2 {
    margin: var(--margin_auto);
  }
}
.shop-content-list > h1 {
  font-size: 1.8rem;
}
.shop-content-list-child {
  margin: 20px auto;
}
@media screen and (min-width: 1025px) {
  .shop-content-list-child {
    padding: var(--padding_all);
  }
}
.shop-content-list-child > h1 {
  font-size: 1.5rem;
  text-align: center;
}
.shop-content-list-child h2 {
  font-size: 1.1rem;
}
@media screen and (min-width: 1025px) {
  .shop-content-list-child h2 {
    padding: var(--padding_all);
  }
}
.shop-content-list-child > .item-flex p {
  max-height: 500px;
}
@media screen and (min-width: 1025px) {
  .shop-content-list-child > .item-flex p {
    margin: var(--margin_with_double);
  }
}
.shop-content-list-child-photos {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.shop-content-list-child-photos > p {
  width: 46%;
  height: auto;
  max-height: 300px !important;
}
.shop-content-list-grandchild {
  width: min(100%, 1120px);
  margin: 40px auto;
  padding: var(--padding_all);
  background-color: #FFF;
  box-shadow: 0 0 16px 4px #EEE;
  border-radius: 10px;
  clear: both;
}
.shop-content-list-grandchild h1 {
  font-size: 140%;
}
.shop-content-list-grandchild h2 {
  padding: var(--padding_all);
  font-size: 100%;
  line-height: 160%;
}
.shop-content-list-grandchild.item-flex:nth-of-type(odd) {
  flex-direction: row-reverse;
}
.shop-content-wide {
  padding: 80px 0;
}
.shop-content-wide > h1,
.shop-content-wide > h2,
.shop-content-wide > h3 {
  width: min(100%, 1120px);
  margin: var(--margin_with);
}
.shop-content-wide > h1 {
  text-align: center;
}
.shop-content-wide > h2,
.shop-content-wide > h3 {
  text-align: left;
}
.shop-content-wide-frame {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1025px) {
  .shop-content-wide-item {
    width: 25%;
    margin: 0 auto 30px auto;
  }
}
@media screen and (max-width: 1024px) {
  .shop-content-wide-item {
    width: 50%;
    margin: 0 auto 10px auto;
  }
}
.shop-content-wide-item h1 {
  text-align: center;
  font-size: 1.1rem;
  padding: var(--padding_half_all);
}
.shop-content-wide-item p {
  width: 100%;
  height: auto;
}
.shop-content-wide-child {
  width: min(100%, 1120px);
  margin: 20px auto;
}
.shop-content-wide-child h1 {
  text-align: center;
  margin: var(--margin_with);
}
.shop-content-wide-child h2,
.shop-content-wide-child h3 {
  font-size: 110%;
  margin-bottom: 20px;
}
.shop-content-wide-child h2 {
  padding: 20px !important;
}
.shop-content-wide-child h3 {
  padding: 0 20px !important;
}
.shop-content-wide-child p {
  width: 100%;
  height: auto;
  max-height: 400px;
}
@media screen and (min-width: 1025px) {
  .shop-content-wide-child-items {
    width: 90%;
    display: flex;
    flex-wrap: nowrap;
    margin: var(--margin_with);
  }
}
@media screen and (max-width: 1024px) {
  .shop-content-wide-child-items-title, .shop-content-wide-child-items-content {
    width: 100%;
  }
}
.shop-content-wide-child-items-title {
  padding: 10px;
  text-align: center;
  background-color: #EFEFEF;
}
@media screen and (min-width: 1025px) {
  .shop-content-wide-child-items-title {
    width: 20%;
  }
}
.shop-content-wide-child-items-content {
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .shop-content-wide-child-items-content {
    width: 80%;
    padding: 10px;
    background-color: #F8F8F8;
  }
}
@media screen and (max-width: 1024px) {
  .shop-content-wide-child-items-content {
    padding: 0 10px;
  }
}
.shop-content-wide-child-photo {
  width: 220px;
  margin: 0 20px;
}
.shop-content-wide-child-photo-frame {
  display: flex;
  flex-wrap: nowrap;
  margin: var(--margin_with);
}

/*! gallery-media */
.gallery-media {
  width: min(96%, 900px);
  margin: 100px auto;
  height: auto;
  overflow: visible;
}
.gallery-media .swiper-wrapper {
  width: 100%;
  height: 50%;
  overflow: hidden;
}
.gallery-media .swiper-wrapper .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}
.gallery-media .swiper-wrapper .swiper-slide-active {
  pointer-events: auto;
}
.gallery-media .swiper-wrapper .swiper-slide .slide {
  display: block;
  overflow: hidden;
}
.gallery-media .swiper-wrapper .swiper-slide .slide-media {
  display: block;
  border-radius: 4px;
}
.gallery-media .swiper-wrapper .swiper-slide .slide-media:before {
  content: "";
  display: block;
  padding-top: 50%;
}
.gallery-media .swiper-wrapper .swiper-slide .slide-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.gallery-media .swiper-wrapper .swiper-slide .slide-title {
  font-weight: bold;
  line-height: 1.6;
  padding: 3.2rem 0;
}
.gallery-media .swiper-controller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 56%;
}
.gallery-media .swiper-controller .swiper-button-prev,
.gallery-media .swiper-controller .swiper-button-next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: grid;
  place-content: center;
  width: 5.6rem;
  height: 5.6rem;
  cursor: pointer;
  transition: var(--transition);
  color: #FFF;
}
.gallery-media .swiper-controller .swiper-button-prev::before,
.gallery-media .swiper-controller .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  border-radius: 6px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.4);
  background-color: rgba(221, 221, 221, 0.6);
}
.gallery-media .swiper-controller .swiper-button-prev::after,
.gallery-media .swiper-controller .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border-width: 3px 3px 0 0;
}
.gallery-media .swiper-controller .swiper-button-prev::after,
.gallery-media .swiper-controller .swiper-button-next::after {
  font-size: 3rem;
  display: grid;
  place-content: center;
}
.gallery-media .swiper-controller .swiper-button-prev::after {
  font-family: "Material Icons";
  content: "\f1e6";
}
.gallery-media .swiper-controller .swiper-button-next::after {
  font-family: "Material Icons";
  content: "\f1df";
}
.gallery-media .swiper-controller .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.gallery-media .thumb-wrapper {
  margin: var(--margin_with);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.gallery-media .thumb-wrapper .thumb-media {
  width: auto;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 4px;
}
@media screen and (min-width: 1025px) {
  .gallery-media .thumb-wrapper .thumb-media {
    height: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .gallery-media .thumb-wrapper .thumb-media {
    height: 60px;
  }
}
.gallery-media .thumb-wrapper .thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}
.gallery-media .thumb-wrapper .thumb-media-active {
  transform: scale(0.9);
  opacity: 0.3;
}
.gallery-media .thumb-wrapper .thumb-media-active img {
  transform: scale(1.1);
}

/*! common-footer */
footer#common-footer {
  background-color: #DDB5B2;
  color: #54595F;
  padding: 40px 0;
}
footer#common-footer nav {
  width: min(100%, 1120px);
  margin: var(--margin_with);
}
footer#common-footer nav > ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  footer#common-footer nav > ul {
    align-items: flex-start;
    justify-content: space-around;
  }
}
footer#common-footer nav > ul > li {
  font-weight: bold;
  height: auto;
  font-size: 1rem;
}
@media screen and (min-width: 1025px) {
  footer#common-footer nav > ul > li {
    width: 25%;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1024px) {
  footer#common-footer nav > ul > li {
    width: 48%;
    min-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
  }
}
footer#common-footer nav > ul > li ul {
  padding: var(--padding_half_all);
}
footer#common-footer nav > ul > li ul > li {
  width: 100%;
  font-weight: normal;
}
@media screen and (max-width: 1024px) {
  footer#common-footer nav > ul > li ul > li {
    min-height: 36px;
    border-bottom: 1px solid #EDDADA;
    padding: 6px 0 0 0;
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  footer#common-footer nav > ul > li ul.footer-links {
    padding: 0 !important;
  }
}
footer#common-footer nav > ul > li ul.footer-links li {
  font-size: 100% !important;
  font-weight: bold !important;
}
footer#common-footer address,
footer#common-footer p {
  font-family: "Shippori Mincho", serif;
}
footer#common-footer address {
  width: min(100%, 1120px);
  margin: var(--margin_with);
  text-align: right;
  font-style: normal;
  line-height: 40px;
}
footer#common-footer address span {
  display: block;
  font-weight: bold;
  font-size: 120%;
  color: #2F2F2F;
}
footer#common-footer p#copyright {
  text-align: center;
}

/*
#check-in-widget {
  position: relative;
  background-color: #F4F4F4;
  p {
    text-align: center;
    width: 100%;
    height: auto;
    max-width: 1556px;
    max-height: 2034px;
    margin: var(--margin_auto);
    padding: 30px 0;
  }
}
*/
/* head-link */
ul.reserve-link {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
ul.reserve-link li {
  width: 200px;
  height: 40px;
  line-height: 40px;
  background-color: #FFF;
  border: 1px solid #DDD;
  position: relative;
  margin: 10px 10px 0 10px;
  text-align: center;
}
ul.reserve-link li li span {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  background-color: #8C0000;
  color: #FFF;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 5px;
}
ul.reserve-link li li span a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

#cart-box {
  margin: 20px auto;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: inherit !important;
  background-color: none !important;
  font-kerning: bold !important;
  border-bottom: 6px solid #004C66 !important;
}

.nav-pills .nav-link {
  background: 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.nav-pills .nav-link {
  color: #2F2F2F !important;
}/*# sourceMappingURL=style.css.map */