@charset "UTF-8";
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 680px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 679.5px) and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 40px 0 0 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

/*========================
common
========================*/
.pc-bg {
  background: #ffeee5;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .pc-bg {
    display: none;
  }
}

.bg-text {
  font-family: "Avenir", serif;
  font-size: 100px;
  font-weight: 300;
  line-height: 1;
  color: #ffe1d4;
}
.bg-text div:nth-child(2) {
  margin-left: 2.6em;
}
.bg-text div:nth-child(3) {
  margin-left: 3.6em;
}

.wrapper {
  margin-top: 30vh;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-inline: auto;
}

.loop {
  -webkit-animation: loop 30s linear infinite;
          animation: loop 30s linear infinite;
  width: 100%;
}

.loop2 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: loop 30s -15s linear infinite;
          animation: loop 30s -15s linear infinite;
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.main-area {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(188, 136, 117, 0.75);
          box-shadow: 0px 0px 10px 0px rgba(188, 136, 117, 0.75);
  background: white;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .main-area {
    max-width: none;
  }
}

section {
  position: relative;
}

.btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 74.52%;
}

/* ------------------------------------
ボタンの基本スタイル
------------------------------------*/
/* ボタン自体のスタイル */
.shine-button {
  display: block;
  border-radius: 100px;
  overflow: hidden;
}

/* ------------------------------------
    ボタンの外側にボックス作成
    （疑似要素「before」を使う）
    ------------------------------------*/
.shine-button::before {
  content: "";
  /* 文字は表示しないので中身無しを指定 */
  position: absolute;
  /* ボタンの位置を基準に絶対値指定する */
  display: block;
  /* 形式はblock */
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.9)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  /* 背景色は透明から白になるグラデーション */
  width: 50px;
  /* 横幅 */
  height: 50px;
  /* 縦幅 */
  top: -60px;
  /* ボタン左上を基準に上へ60pxの位置 */
  left: -60px;
  /* ボタン左上を基準に左へ60pxの位置 */
  /* アニメーションの動作指定 */
  -webkit-animation-name: shine-run;
          animation-name: shine-run;
  /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  /* アニメーションの動き指定（徐々に早く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  /* アニメーションの無限繰り返しの指定 */
}

/* ------------------------------------
    アニメーションのタイミングとボックスの
    拡大率、角度、透過率の指定
    ------------------------------------*/
@-webkit-keyframes shine-run {
  0% {
    -webkit-transform: scale(0) rotate(50deg);
            transform: scale(0) rotate(50deg);
    /* アニメ開始時は大きさ0、50度の傾き */
    opacity: 0;
    /* アニメ開始時は全透過 */
  }
  40% {
    -webkit-transform: scale(1) rotate(50deg);
            transform: scale(1) rotate(50deg);
    /* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
    opacity: 1;
    /* 透過しない（しっかり表示される）ように1を設定 */
  }
  100% {
    -webkit-transform: scale(250) rotate(50deg);
            transform: scale(250) rotate(50deg);
    /* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
    opacity: 0;
    /* 全透過になるようにして、徐々に消えるような変化を付ける */
  }
}
@keyframes shine-run {
  0% {
    -webkit-transform: scale(0) rotate(50deg);
            transform: scale(0) rotate(50deg);
    /* アニメ開始時は大きさ0、50度の傾き */
    opacity: 0;
    /* アニメ開始時は全透過 */
  }
  40% {
    -webkit-transform: scale(1) rotate(50deg);
            transform: scale(1) rotate(50deg);
    /* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
    opacity: 1;
    /* 透過しない（しっかり表示される）ように1を設定 */
  }
  100% {
    -webkit-transform: scale(250) rotate(50deg);
            transform: scale(250) rotate(50deg);
    /* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
    opacity: 0;
    /* 全透過になるようにして、徐々に消えるような変化を付ける */
  }
}
.fadeinup {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.fadeinup.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*========================
section1
========================*/
.section1 .btn {
  top: 26.8%;
}

/*========================
section2
========================*/
.section2 .pic {
  position: absolute;
  top: 30.2%;
  left: 52%;
  -webkit-transform: translateY(20px) translateX(-50%);
          transform: translateY(20px) translateX(-50%);
  width: 93.15068%;
}
.section2 .pic.active {
  -webkit-transform: translateY(0) translateX(-50%);
          transform: translateY(0) translateX(-50%);
}

/*========================
section3
========================*/
.section3 .btn {
  bottom: 23.7%;
}

/*========================
section5
========================*/
.section5 .btn {
  bottom: 0.95%;
}
.section5 .popup-btn-wrap {
  position: absolute;
  bottom: 28.9%;
  padding-left: 2%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.section5 .popup-btn-wrap .popup-btn {
  width: 42.46575%;
  border-radius: 30%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section5 .popup-btn-wrap .popup-btn:hover {
  opacity: 0.7;
}
.section5 .popup {
  z-index: 1000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #A5A5A5;
}
.section5 .popup-content {
  padding: 0 10%;
  height: 100svh;
  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;
}
.section5 .popup-content__box {
  max-width: 400px;
  position: relative;
}
.section5 .close-btn {
  width: 10%;
  position: absolute;
  top: -10%;
  right: 0;
  cursor: pointer;
}
.section5 .swiper,
.section5 .swiper-wrapper,
.section5 .swiper-slide {
  width: 100% !important;
}
.section5 .swiper-pagination {
  bottom: -60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7%;
}
@media screen and (max-width: 767px) {
  .section5 .swiper-pagination {
    bottom: -7%;
  }
}
.section5 .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 0 !important;
  background: #7A7A7A;
  opacity: 0.48;
}
@media screen and (max-width: 767px) {
  .section5 .swiper-pagination-bullet {
    width: 3vw;
    height: 3vw;
  }
}
.section5 .swiper-pagination-bullet-active {
  background: #E0967C;
  opacity: 1;
}
.section5 .swiper-button-next,
.section5 .swiper-button-prev {
  color: #7A7A7A;
}
.section5 .swiper-button-next {
  right: -40px;
}
@media screen and (max-width: 767px) {
  .section5 .swiper-button-next {
    right: -11%;
  }
}
.section5 .swiper-button-prev {
  left: -40px;
}
@media screen and (max-width: 767px) {
  .section5 .swiper-button-prev {
    left: -11%;
  }
}

/*========================
section6
========================*/
.img-loop {
  position: absolute;
  top: 8.5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
  width: 100%;
}
.img-loop .wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 1.563%;
}
.img-loop .img-slide {
  width: 66.6vw;
  max-width: 452px;
}
@media screen and (max-width: 767px) {
  .img-loop .img-slide {
    max-width: none;
  }
}

/* スライドアニメーションの設定 */
@-webkit-keyframes horizontal-animation {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
}
@keyframes horizontal-animation {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
}
/* スライダーを表示する親コンテナ */
.slider-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  gap: 5%;
}

/* スライダー本体 */
.slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: horizontal-animation 20s linear infinite;
          animation: horizontal-animation 20s linear infinite;
}

/*========================
section7
========================*/
.section7 .pic-wrap {
  position: absolute;
  left: 0;
  width: 100%;
  top: 9.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section7 .pic-wrap .item:nth-child(odd) {
  margin-right: -4%;
  width: 53.424%;
}
.section7 .pic-wrap .item:nth-child(even) {
  width: 49.863%;
}
.section7 .pic-wrap .item:nth-child(2) {
  margin-top: 14.52%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.section7 .pic-wrap .item:nth-child(3) {
  margin-top: -10.958%;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.section7 .pic-wrap .item:nth-child(4) {
  margin-top: 2.739%;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.section7 .fadeinup-delay {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.section7 .fade-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*========================
section8
========================*/
.ankerpoint {
  position: absolute;
  top: 28.5%;
}
.pc-bg {
  z-index: -1;
}
footer .spdn {
  width: 120px !important;
  height: auto !important;
}

body.top table{
  margin: 0 auto;
}
input,
textarea,
select {
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 16px;
  border-radius: 4px; /* 任意で角丸に */
  box-sizing: border-box;
}
