@charset "UTF-8";
/*======================================
    Font / Color
======================================*/
/*======================================
    common
======================================*/
html {
  font-size: 62.5%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #231815;
}

body {
  background-color: #fff;
  position: relative;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.is-nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  span.is-sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  br.is-pc {
    display: none;
  }
}

br.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  br.is-sp {
    display: block;
  }
}

/*======================================
    header
======================================*/
.header__logo {
  position: fixed;
  top: 68px;
  left: 79px;
  z-index: 300;
  width: min(94 / 1440 * 100vw, 94px);
}
@media screen and (max-width: 1439px) {
  .header__logo {
    top: calc(68 / 1440 * 100vw);
    left: calc(79 / 1440 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    position: absolute;
    top: 26px;
    left: 50%;
    -webkit-transform: translateX(-42%);
            transform: translateX(-42%);
    width: 97px;
  }
}

.header__online {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 300;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .header__online {
    left: 4px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header__online a {
  display: block;
  background-color: #B28146;
  text-align: center;
  padding: 30px 47px 29px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__online a {
    background-color: unset;
    padding: 24px 20px;
  }
}
.header__online a:hover {
  opacity: 0.8;
}
.header__online a span {
  display: inline-block;
  width: 170px;
}
@media screen and (max-width: 768px) {
  .header__online a span {
    width: 115px;
  }
}

.drawer-icon {
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 400;
}
.drawer-icon.is-active .drawer-icon-bar.-bar1 {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.drawer-icon.is-active .drawer-icon-bar.-bar2 {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  opacity: 0;
}
.drawer-icon.is-active .drawer-icon-bar.-bar3 {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .drawer-icon {
    top: 26px;
    right: 25px;
  }
}

.drawer-icon-bars {
  position: relative;
  width: 66px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .drawer-icon-bars {
    width: 36px;
    height: 33px;
  }
}

.drawer-icon-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 30px;
  background-color: #666666;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.drawer-icon-bar.-bar2 {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.drawer-icon-bar.-bar3 {
  top: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.drawer-content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 399;
  width: 100%;
  height: 100%;
  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-direction: column;
          flex-direction: column;
  display: none;
  padding-top: 140px;
  overflow: scroll;
}
.drawer-content.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fadeInContent 0.5s ease;
          animation: fadeInContent 0.5s ease;
}

@-webkit-keyframes fadeInContent {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: -webkit-box;
    display: flex;
    opacity: 0;
  }
  100% {
    display: -webkit-box;
    display: flex;
    opacity: 1;
  }
}

@keyframes fadeInContent {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
  }
  100% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
  }
}
.drawer__container {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 154px auto;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .drawer__container {
    gap: 40px;
  }
}

.drawer-content-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}

.drawer-content-item:nth-child(1) {
  width: 8.9em;
}
.drawer-content-item:nth-child(2) {
  width: 7.4em;
}
.drawer-content-item:nth-child(3) {
  width: 10em;
}
.drawer-content-item:nth-child(4) {
  width: 12.2em;
}
.drawer-content-item:nth-child(5) {
  width: 11.3em;
}
.drawer-content-item a {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.drawer-content-item a:hover {
  opacity: 0.7;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 398;
  background-color: #F2F2F2;
  display: none;
}
.drawer-background.is-active {
  display: block;
  -webkit-animation: fadeInBg 0.5s ease;
          animation: fadeInBg 0.5s ease;
}

@-webkit-keyframes fadeInBg {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes fadeInBg {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.drawer__onlineshop {
  margin-top: 140px;
}
.drawer__onlineshop a {
  display: block;
  text-align: center;
  background-color: #B28146;
  padding: 30px 47px 29px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.drawer__onlineshop a:hover {
  opacity: 0.7;
}
.drawer__onlineshop a span {
  display: inline-block;
  width: 17em;
}

/*======================================
    mv
======================================*/
.mv {
  margin-top: 113px;
  margin-bottom: min(1036 / 1920 * 100vw, 1036px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 76px;
    margin-bottom: 0;
    padding-bottom: min(1512 / 480 * 100vw, 1850px);
    padding-bottom: clamp(1400px, 1512 / 480 * 100vw, 1850px);
  }
}

.mv__container {
  height: min(1279 / 1920 * 100vw, 1279px);
  padding: 0 10px;
  overflow: hidden;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .mv__container {
    overflow: hidden;
    padding: 0;
    height: 675px;
  }
}
.mv__container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 283px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .mv__container::before {
    height: 172px;
  }
}

.mv__bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 723px;
  height: min(1445 / 1920 * 100vw, 1445px);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mv__bg {
    left: 50%;
    border-radius: 361px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 723px;
    width: 890px;
  }
}
.mv__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 89%;
  background: url(../img/mv.jpg) no-repeat center top/cover;
}
@media screen and (max-width: 768px) {
  .mv__bg::before {
    height: 94%;
  }
}

.mv__text {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: min(180 / 1920 * 100vw, 180px);
  font-size: clamp(1.6rem, 20 / 1920 * 100vw, 2rem);
  line-height: 2.05;
  letter-spacing: 0.15em;
  color: #05448F;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .mv__text {
    font-size: min(18 / 480 * 100vw, 1.8rem);
    position: absolute;
    top: 388px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 2;
    line-height: 1.85;
  }
}
.mv__text p {
  margin: 0 auto;
}

.mv__arrow {
  position: absolute;
  top: 68%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  .mv__arrow {
    top: 773px;
    -webkit-transform: translate(-36%, 0);
            transform: translate(-36%, 0);
  }
}
.mv__arrow span {
  display: block;
  width: min(23 / 1920 * 100vw, 23px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv__arrow span {
    width: 29px;
  }
}
.mv__arrow span::before {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  width: 9px;
  height: 68px;
  background: url(../img/mv_arrow.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .mv__arrow span::before {
    top: -47px;
    width: 14px;
    -webkit-transform: translate(-30%, -100%);
            transform: translate(-30%, -100%);
    background: url(../img/mv_arrow-black.png) no-repeat center center/contain;
  }
}

.mv__img1 {
  position: absolute;
  top: 60.5%;
  right: 50%;
  -webkit-transform: translate(129%, 0);
          transform: translate(129%, 0);
  width: min(329 / 1920 * 100vw, 329px);
}
@media screen and (max-width: 768px) {
  .mv__img1 {
    top: 835px;
    width: min(180 / 480 * 100vw, 180px);
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.mv__img2 {
  position: absolute;
  top: 76%;
  left: 50%;
  -webkit-transform: translate(-110%, 0);
          transform: translate(-110%, 0);
  width: min(536 / 1920 * 100vw, 536px);
}
@media screen and (max-width: 768px) {
  .mv__img2 {
    width: min(240 / 480 * 100vw, 240px);
    top: 942px;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.mv__img3 {
  position: absolute;
  top: 96.5%;
  right: 50%;
  -webkit-transform: translate(137%, 0);
          transform: translate(137%, 0);
  width: min(536 / 1920 * 100vw, 536px);
}
@media screen and (max-width: 768px) {
  .mv__img3 {
    width: min(210 / 480 * 100vw, 210px);
    top: 1105px;
    right: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.mv__img4 {
  position: absolute;
  top: 119.5%;
  left: 50%;
  -webkit-transform: translate(-51%, 0);
          transform: translate(-51%, 0);
  width: min(819 / 1920 * 100vw, 819px);
}
@media screen and (max-width: 768px) {
  .mv__img4 {
    width: 100%;
    top: 1443px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.mv__img4--texts {
  position: relative;
  font-size: clamp(1.6rem, 20 / 1920 * 100vw, 2rem);
  line-height: 2.05;
  letter-spacing: 0.176em;
}
@media screen and (max-width: 768px) {
  .mv__img4--texts {
    font-size: min(20 / 480 * 100vw, 2rem);
  }
}

.mv__img4--text__wrap {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  position: absolute;
}
.mv__img4--text__wrap.-text1 {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-45%, -36%);
          transform: translate(-45%, -36%);
}
@media screen and (max-width: 768px) {
  .mv__img4--text__wrap.-text1 {
    -webkit-transform: translate(-48%, -32.5%);
            transform: translate(-48%, -32.5%);
  }
}
.mv__img4--text__wrap.-text2 {
  top: 50%;
  right: 7.5%;
  -webkit-transform: translateY(-59%);
          transform: translateY(-59%);
}
@media screen and (max-width: 768px) {
  .mv__img4--text__wrap.-text2 {
    top: unset;
    bottom: 0;
    -webkit-transform: translate(-91%, 49%);
            transform: translate(-91%, 49%);
  }
}
.mv__img4--text__wrap.-text3 {
  bottom: 0;
  left: 15.5%;
  -webkit-transform: translateY(66%);
          transform: translateY(66%);
}
@media screen and (max-width: 768px) {
  .mv__img4--text__wrap.-text3 {
    -webkit-transform: translate(7%, 113%);
            transform: translate(7%, 113%);
  }
}

/*======================================
    about
======================================*/
.about-top {
  background-color: #E6E6E6;
  padding: 129px 0 96px;
}
@media screen and (max-width: 768px) {
  .about-top {
    padding: 63px 0 0;
  }
}

.section-title {
  font-size: 4.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 4rem;
  }
}

.text {
  font-size: 1.5rem;
  line-height: 2.2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.text.white {
  color: #fff;
}

.about__title {
  width: 2.31em;
}

.about-top__container {
  width: 1400px;
  max-width: 90%;
  margin: 74px auto 0;
  background-color: #fff;
  padding: 60px min(100 / 1920 * 100vw, 100px) 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .about-top__container {
    max-width: 100%;
    display: block;
    margin-top: 84px;
    padding: 26px calc(29 / 480 * 100vw) 38px;
  }
}

.about-top__text {
  padding-left: min(60 / 1920 * 100vw, 60px);
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .about-top__img {
    margin-top: 40px;
  }
}

.about__item {
  padding: 96px 0 94px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about__item {
    padding: 112px 0 92px;
  }
}
.about__item.-about1 {
  background-color: #E6E6E6;
}
.about__item.-about3 {
  background-color: #B28146;
  padding-bottom: 490px;
}
@media screen and (max-width: 768px) {
  .about__item.-about3 {
    padding-bottom: 442px;
  }
}

.about__item--inner {
  width: 1190px;
  max-width: 90%;
  margin: 0 auto;
}

.about__item--contents {
  position: relative;
}

.about__item--img {
  width: min(368 / 1920 * 100vw, 368px);
}

.about-img__sub--container {
  position: relative;
}

.about-img__sub {
  position: absolute;
}
.about-img__sub.-about1 {
  bottom: 0;
  right: 0;
  width: 165.6%;
  -webkit-transform: translate(47%, 50%);
          transform: translate(47%, 50%);
}
.about-img__sub.-about2 {
  bottom: 0;
  right: 0;
  width: 142%;
  -webkit-transform: translate(43%, 77%);
          transform: translate(43%, 77%);
}
.about-img__sub.-about3 {
  bottom: 0;
  right: 0;
  -webkit-transform: translate(40%, 71%);
          transform: translate(40%, 71%);
}

.about__item--img1 {
  width: min(352 / 1920 * 100vw, 352px);
  position: absolute;
  top: 9%;
  left: 2%;
}
@media screen and (max-width: 768px) {
  .about__item--img1 {
    display: none;
  }
}
.about__item--img1.-about3 {
  top: 16%;
  left: -2%;
}
@media screen and (max-width: 1024px) {
  .about__item--img1.-about3 {
    top: 0%;
  }
}

.about__item--img2 {
  position: absolute;
  top: -3%;
  right: -2%;
}
@media screen and (max-width: 768px) {
  .about__item--img2 {
    display: none;
  }
}
.about__item--img2.-about3 {
  top: -4%;
}

.about__item--head {
  margin: 0 auto;
}
.about__item--head.-about1 {
  width: 202px;
}
@media screen and (max-width: 768px) {
  .about__item--head.-about1 {
    width: 140px;
  }
}
.about__item--head.-about2 {
  width: 222px;
}
@media screen and (max-width: 768px) {
  .about__item--head.-about2 {
    width: 157px;
  }
}
.about__item--head.-about3 {
  width: 368px;
}
@media screen and (max-width: 768px) {
  .about__item--head.-about3 {
    width: 258px;
  }
}

.about-img__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .about-img__sp {
    display: block;
    position: relative;
  }
}
.about-img__sp.-about1 {
  width: calc(580 / 480 * 100vw);
  margin: -49px auto -66px;
  -webkit-transform: translateX(-15%);
          transform: translateX(-15%);
}
.about-img__sp.-about2 {
  width: min(400 / 480 * 100vw, 400px);
  margin: 10px auto -38px;
  -webkit-transform: translateX(1%);
          transform: translateX(1%);
}

.about__item--text {
  margin-top: 54px;
  margin-left: auto;
  width: 600px;
}
@media screen and (max-width: 1024px) {
  .about__item--text {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about__item--text {
    padding-left: calc(21 / 480 * 100vw);
  }
  .about__item--text.-about3 {
    margin-top: 44px;
  }
}

.about__item--img3 {
  margin: 64px auto 0;
  width: 431px;
}
@media screen and (max-width: 768px) {
  .about__item--img3 {
    width: 368px;
    max-width: 90%;
    margin-top: 48px;
  }
  .about__item--img3.-about2 {
    margin-top: 30px;
  }
}

.about3__sp--imgs {
  display: none;
}
@media screen and (max-width: 768px) {
  .about3__sp--imgs {
    display: block;
    position: relative;
    margin-top: 119px;
  }
}

.about3__sp--img1 {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(352 / 480 * 100vw, 352px);
  -webkit-transform: translateX(-73%);
          transform: translateX(-73%);
  z-index: 2;
}

.about3__sp--img2 {
  position: absolute;
  top: 0;
  right: 50%;
  width: min(294 / 480 * 100vw, 294px);
  -webkit-transform: translate(103%, -28%);
          transform: translate(103%, -28%);
}

.profile {
  width: 1520px;
  max-width: 90%;
  margin: -284px auto 0;
  background-color: #333333;
  padding: 100px 0 68px;
}
@media screen and (max-width: 768px) {
  .profile {
    margin-top: 0;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 58px;
  }
}

.profile__title {
  width: 2.13em;
}

.profile__container {
  width: 1260px;
  max-width: 95%;
  margin: 66px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.25%;
}
@media screen and (max-width: 768px) {
  .profile__container {
    display: block;
    max-width: 100%;
    margin-top: 44px;
  }
}

@media screen and (max-width: 768px) {
  .profile__img {
    width: 125%;
    -webkit-transform: translateX(-9%);
            transform: translateX(-9%);
  }
}

.profile__text {
  padding-left: 14px;
}
@media screen and (max-width: 768px) {
  .profile__text {
    padding: 0 calc(45 / 480 * 100vw);
    margin-top: 40px;
  }
}
.profile__text span.lg {
  display: block;
  font-size: 1.2em;
  margin-bottom: 1.65em;
}
.profile__text span.sm {
  display: block;
  font-size: 0.93em;
  line-height: 1.7857142857;
  margin-top: 2.85em;
  margin-left: -0.5em;
}

.profile__link--text {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.26em;
  color: #fff;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .profile__link--text {
    margin-top: 79px;
  }
}

.profile__sns--links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 147px;
  margin: 17px auto 0;
}

.profile__sns--link a {
  display: block;
  width: 30px;
}

/*======================================
    news
======================================*/
.top-news {
  padding: 108px 0 160px;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding: 55px 0 86px;
  }
}

.top-news__inner {
  width: 1080px;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-news__inner {
    max-width: 82.3%;
  }
}

.top-news__title {
  width: 1.844em;
}

.news-lists {
  margin-top: 22px;
  border-top: 1px solid #C8C8C8;
}
.news-lists.-archive {
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .news-lists {
    margin-top: 29px;
  }
}

.news-list {
  border-bottom: 1px solid #C8C8C8;
}

.news-list__link {
  display: grid;
  grid-template-columns: 5em auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  font-size: 1.5rem;
  padding: 29px 60px 26px 18px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-list__link {
    grid-template-columns: 1fr;
    grid-row-gap: 2px;
    padding: 22px 46px 28px 22px;
  }
}
.news-list__link::before {
  content: ">";
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
.news-list__link:hover::before {
  right: 13px;
}
.news-list__link:hover .news-list__title {
  opacity: 0.7;
}

.news-list__date {
  color: #808080;
}

.news-list__title {
  font-size: 1.067em;
  letter-spacing: 0.056em;
  line-height: 1.75;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.top-news__readmore {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .top-news__readmore {
    margin-top: 35px;
  }
}

.readmore {
  display: inline-block;
  text-align: center;
  letter-spacing: 0.036em;
  background-color: #E6E6E6;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 0 1em;
}
.readmore:hover {
  opacity: 0.7;
}

/*======================================
    gallery
======================================*/
.gallery {
  background-color: #666666;
  padding: 138px 0 155px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .gallery {
    padding: 118px 0 60px;
  }
}

.gallery__inner {
  width: 1320px;
  max-width: 95%;
  margin: 0 auto;
}

.gallery__title {
  width: 2.6em;
}

.gallery__title--sub {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 1024px) {
  .gallery__title--sub {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 768px) {
  .gallery__title--sub {
    font-size: min(14 / 480 * 100vw, 1.4rem);
  }
}

.gallery-boxes {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .gallery-boxes {
    margin-top: 24px;
  }
}

.gallery-box {
  background-color: #999999;
  border: 1px solid #fff;
  padding: 30px 0;
}
.gallery-box:nth-child(n+2) {
  margin-top: 58px;
}
.gallery-box:nth-child(even) .gallery-items {
  direction: rtl;
}

.gallery-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 82px;
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .gallery-items {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .gallery-items {
    max-width: 89%;
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
  }
}

.gallery-item {
  text-align: center;
  font-size: 1.4em;
  font-size: 1.7857142857;
}
.gallery-item.-head {
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.85);
  border-right: 1px solid rgba(255, 255, 255, 0.85);
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .gallery-item.-head {
    padding: 0 calc(20 / 1024 * 100vw);
  }
}
.gallery-item.-item {
  margin: 0 20px;
  background-color: #fff;
  padding: 10px 10px 20px;
}
@media screen and (max-width: 1024px) {
  .gallery-item.-item {
    margin: 0 calc(20 / 1024 * 100vw);
  }
}
.gallery-item.-item a {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.gallery-item.-item a:hover {
  opacity: 0.7;
}

.gallery__name {
  font-size: clamp(3rem, 40 / 1920 * 100vw, 4rem);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .gallery__name {
    font-size: 4rem;
    font-size: min(40 / 1024 * 100vw, 4rem);
    font-size: clamp(3rem, 40 / 1024 * 100vw, 4rem);
  }
}
.gallery__name.-title1 {
  width: 2.83em;
}
.gallery__name.-title2 {
  width: 3.2em;
}
.gallery__name.-title3 {
  width: 2.36em;
}

.gallery__name--sub {
  text-align: center;
  margin-top: 1em;
}

.gallery__note {
  margin-top: 60px;
}

.gallery__online {
  margin-top: 46px;
  text-align: center;
}
.gallery__online.-short {
  margin-top: 24px;
}

.gallery__online--link {
  display: inline-block;
  background-color: #fff;
  border-radius: 10px;
  padding: 1.7em 3em 1.6em 2em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .gallery__online--link {
    padding: 1.7em calc(42 / 1024 * 100vw) 1.6em calc(28 / 1024 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .gallery__online--link {
    padding: 1.7em 3em 1.6em 2em;
  }
}
.gallery__online--link:hover {
  opacity: 0.7;
}
.gallery__online--link:hover span::before {
  right: -10px;
}
.gallery__online--link span {
  display: inline-block;
  padding-right: 1.5em;
  position: relative;
}
.gallery__online--link span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.64em;
  height: 10px;
  background: url(../img/btn_arrow.png) no-repeat center center/contain;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}

.gallery__img {
  position: relative;
}
.gallery__img::before {
  content: "";
  display: block;
  padding-top: calc(240 / 340 * 100%);
  background-color: gray;
}
.gallery__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__description {
  margin-top: 1em;
  line-height: 1.5;
  direction: ltr;
}

.gallery__btn--online {
  margin-top: 82px;
}

.gallery__btn {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  font-size: 2rem;
  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: 26em;
  max-width: 95%;
  height: 6em;
  margin: 0 auto;
  background-color: #B28146;
  border-radius: 20px;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .gallery__btn {
    font-size: 1.6rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.gallery__btn:hover {
  opacity: 0.9;
}
.gallery__btn:hover span.gallery__btn--contents::before {
  right: -4px;
}
.gallery__btn span.gallery__btn--contents {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  position: relative;
  padding-right: 2.5em;
}
@media screen and (max-width: 768px) {
  .gallery__btn span.gallery__btn--contents {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.gallery__btn span.gallery__btn--contents::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.85em;
  height: 0.8em;
  background: url(../img/btn_arrow.png) no-repeat center center/contain;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
.gallery__btn span.gallery__btn--head {
  display: block;
  width: 11.85em;
}
.gallery__btn span.gallery__btn--text {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  margin-top: 1em;
}

/*======================================
    shop list
======================================*/
.shop-list {
  padding: 125px 0;
}
@media screen and (max-width: 1024px) {
  .shop-list {
    padding-bottom: 83px;
  }
}

.shoplist__title {
  width: 3.067em;
}

.shop-list__items {
  margin: 45px auto 0;
  width: 977px;
  max-width: 90%;
}
@media screen and (max-width: 1024px) {
  .shop-list__items {
    margin-top: 17px;
    width: 392px;
  }
}

.shop-list__item:nth-child(n+2) {
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .shop-list__item:nth-child(n+2) {
    margin-top: 21px;
  }
}

.shop-list__area {
  padding-bottom: 0.75em;
  border-bottom: 1px solid #C8C8C8;
}

.shop-list__cards {
  margin-left: 110px;
  font-size: 1.067em;
}
@media screen and (max-width: 1024px) {
  .shop-list__cards {
    margin-left: min(91 / 480 * 100vw, 91px);
  }
}

.shop-list__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 97px;
}
@media screen and (max-width: 1024px) {
  .shop-list__card {
    grid-template-columns: 1fr;
    height: unset;
    padding: 23px 0 16px;
    line-height: 1.85;
  }
}
.shop-list__card:nth-child(n+2) {
  border-top: 1px solid #C8C8C8;
}

.shop-list__shop-name {
  border-left: 1px solid #C8C8C8;
  padding-left: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 63px;
}
@media screen and (max-width: 1024px) {
  .shop-list__shop-name {
    height: unset;
  }
}

.shop-list__details {
  border-left: 1px solid #C8C8C8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 63px;
  gap: 40px;
  padding-left: 29px;
}
@media screen and (max-width: 1024px) {
  .shop-list__details {
    display: block;
    height: unset;
    padding-left: min(29 / 480 * 100vw, 29px);
  }
}

@media screen and (max-width: 1024px) {
  .shop-list__tel {
    display: inline-block;
  }
}

@media screen and (max-width: 1024px) {
  .shop-list__map {
    display: inline-block;
    margin-left: calc(30 / 480 * 100vw);
  }
}
.shop-list__map a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.shop-list__map a:hover {
  opacity: 0.7;
}

.shop-list__link a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.shop-list__link a:hover {
  opacity: 0.7;
}

/*======================================
    contact
======================================*/
.contact {
  padding: 62px 0 80px;
  background-color: #E6E6E6;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-bottom: 114px;
  }
}

.contact__inner {
  width: 673px;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    width: calc(392 / 480 * 100vw);
  }
}

.contact__title {
  width: 2.84em;
}

.contact__container {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .contact__container {
    margin-top: 30px;
  }
}

.contact__message {
  text-align: center;
  letter-spacing: 0.036em;
}
@media screen and (max-width: 768px) {
  .contact__message {
    line-height: 1.9333333333;
  }
}

.contact-lists {
  font-size: 1.6rem;
  letter-spacing: 0.036em;
  margin-top: 10px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .contact-lists {
    margin-top: 19px;
  }
}

.contact-list:nth-child(n+2) {
  margin-top: 46px;
}
@media screen and (max-width: 768px) {
  .contact-list:nth-child(n+2) {
    margin-top: 9px;
  }
}

.contact-list__dl {
  display: grid;
  grid-template-columns: 7.6875em auto;
  -webkit-transform: translateX(-3.84375em);
          transform: translateX(-3.84375em);
}
@media screen and (max-width: 1024px) {
  .contact-list__dl {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  .contact-list__dl {
    grid-template-columns: 1fr;
    grid-row-gap: 4px;
  }
}
.contact-list__dl dt {
  line-height: 40px;
}
.contact-list__dl dd input[type=text],
.contact-list__dl dd input[type=email],
.contact-list__dl dd textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #C8C8C8;
  background: #fff;
  padding: 0.4355em 0.5em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
}
.contact-list__dl dd textarea {
  height: 130px;
}

.contact__note {
  font-size: 0.875em;
  line-height: 1.75;
  margin-top: 0.5em;
}

.contact__check {
  margin-top: 60px;
  text-align: center;
  font-size: 1.4rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .contact__check {
    margin-top: 18px;
    font-size: min(14 / 480 * 100vw, 1.4rem);
  }
}
.contact__check input[type=checkbox] {
  display: none;
}
.contact__check input[type=checkbox]:checked + span.wpcf7-list-item-label::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.contact__check .wpcf7-list-item-label {
  display: inline-block;
  padding-left: 2em;
  position: relative;
  white-space: nowrap;
}
.contact__check .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  background-color: #fff;
}
.contact__check .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  width: 1.5em;
  height: 0.5em;
  border-bottom: 2px solid #B28146;
  border-left: 2px solid #B28146;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.wpcf7-spinner {
  display: none;
}

.contact__submit {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__submit {
    margin-top: 30px;
  }
}
.contact__submit input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  font-size: 2rem;
  border: none;
  background: #B28146;
  font-weight: 700;
  color: #fff;
  padding: 15px;
  width: 250px;
  max-width: 100%;
  display: inline-block;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.contact__submit input[type=submit]:hover {
  opacity: 0.7;
}

/*======================================
    footer
======================================*/
.footer {
  padding: 74px 0 100px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 104px 0 100px;
  }
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__top {
  width: 98px;
  margin-bottom: 55px;
}
.footer__top a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__top a:hover {
  opacity: 0.7;
}

/*======================================
    archive
======================================*/
.news__wrap {
  width: 1400px;
  max-width: 95%;
  border: 1px solid #C8C8C8;
  margin: 110px auto 80px;
}

.archive-news {
  padding: 130px 0 117px;
}

.archive__readmore {
  margin-top: 117px;
}

/*======================================
    single
======================================*/
.s-container {
  font-size: 1.2rem;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding: 110px 0 152px;
  width: 1080px;
  max-width: 95%;
  margin: 0 auto;
}

.s-date {
  text-align: center;
  color: #808080;
  font-size: 1.25em;
  letter-spacing: 0.036em;
}

.s-title {
  text-align: center;
  font-size: 2.167em;
  letter-spacing: 0.04em;
  line-height: 1.7307692308;
  border-bottom: 1px solid #C8C8C8;
  padding-bottom: 40px;
  margin-top: 8px;
}

.s-contents__wrap {
  width: 758px;
  max-width: 90%;
  margin: 74px auto 0;
}
@media screen and (max-width: 768px) {
  .s-contents__wrap {
    max-width: 95%;
  }
}

.s-eyecatch {
  position: relative;
}
.s-eyecatch::before {
  content: "";
  display: block;
  padding-top: calc(435 / 758 * 100%);
  background-color: gray;
}
.s-eyecatch img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.s-contents {
  text-align: justify;
  letter-spacing: 0.1em;
  margin-top: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  line-height: 3;
}
.s-contents h2, .s-contents h3, .s-contents h4, .s-contents h5 {
  font-weight: 700;
  margin-bottom: -30px;
}
.s-contents h2 {
  font-size: 1.75em;
}
.s-contents h3 {
  font-size: 1.5em;
}
.s-contents h4 {
  font-size: 1.25em;
}

.field__container {
  margin-top: 85px;
}

.field__img {
  width: 490px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
}
.field__img::before {
  content: "";
  display: block;
  padding-top: calc(296 / 490 * 100%);
  background-color: gray;
}
.field__img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.field__contents {
  width: 758px;
  max-width: 100%;
  margin: 78px auto 0;
  padding: 32px min(56 / 758 * 100vw, 56px) 50px;
  border: 1px solid #C8C8C8;
}

.field__event {
  font-size: 1.5em;
  letter-spacing: 0.056em;
  font-weight: 700;
  line-height: 2.3333333333;
}

.field-lists {
  margin-top: 20px;
  font-size: 1.33em;
}

.field-list:nth-child(n+2) {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .field-list:nth-child(n+2) {
    margin-top: 1.5em;
  }
}

.field__details {
  display: grid;
  grid-template-columns: 5em auto;
  letter-spacing: 0.056em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .field__details {
    grid-template-columns: 1fr;
  }
}
.field__details dt {
  font-weight: 700;
}
.field__details dd {
  font-weight: 700;
}
.field__details dd.field__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
}
@media screen and (max-width: 768px) {
  .field__details dd.field__row {
    display: block;
  }
}

.field__detail {
  font-weight: 700;
}

.field__map {
  white-space: nowrap;
}
.field__map a {
  font-weight: 700;
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.field__map a:hover {
  opacity: 0.7;
}

.s-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 976px;
  max-width: 95%;
  margin: 150px auto 0;
}
@media screen and (max-width: 768px) {
  .s-btns {
    grid-row-gap: 80px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.s-btn {
  display: block;
  font-size: 1.25em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.s-btn:hover {
  opacity: 0.7;
}
.s-btn.-prev, .s-btn.-next {
  position: relative;
}
.s-btn.-prev::before, .s-btn.-next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 53px;
  height: 53px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}
@media screen and (max-width: 1024px) {
  .s-btn.-prev::before, .s-btn.-next::before {
    width: 40px;
    height: 40px;
  }
}
.s-btn.-prev {
  grid-column: 1/2;
  grid-row: 1/2;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .s-btn.-prev {
    margin-left: 2em;
  }
}
.s-btn.-prev:hover::before {
  left: -4px;
}
.s-btn.-prev::before {
  left: 0;
  -webkit-transform: translate(-75%, -50%) rotate(45deg);
          transform: translate(-75%, -50%) rotate(45deg);
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}
.s-btn.-next {
  grid-column: 3/4;
  grid-row: 1/2;
  text-align: right;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .s-btn.-next {
    grid-column: 2/3;
    margin-right: 2em;
  }
}
.s-btn.-next:hover::before {
  right: -4px;
}
.s-btn.-next::before {
  right: 0;
  -webkit-transform: translate(75%, -50%) rotate(-135deg);
          transform: translate(75%, -50%) rotate(-135deg);
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
.s-btn.-all {
  grid-column: 2/3;
  grid-row: 1/2;
  text-align: center;
  letter-spacing: 0.036em;
}
@media screen and (max-width: 768px) {
  .s-btn.-all {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
.s-btn.-all span {
  display: inline-block;
  background-color: #E6E6E6;
  padding: 0 2.5em;
}