@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-size: 11px;
  overflow-x: hidden;
  transition: all 1.6s ease 0s;
  background-color: #f7dcb3;
  font-family: "sweet-sans-pro", "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #fff;
}

/* グリッド内の画像がコンテナに収まるように設定 */
.item-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* アスペクト比を維持しつつ、コンテナを埋める */
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

/* .load
===================================================== */
.load {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}

#page-top {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  #page-top {
    right: 3%;
  }
}
#page-top img {
  width: 2.3611111111vw;
}
@media screen and (max-width: 768px) {
  #page-top img {
    width: 7.6vw;
  }
}

#page-top a {
  display: block;
  opacity: 0.9;
  transition: all 0.3s ease;
}

#page-top a:hover {
  opacity: 0.5;
}

/* .fv
===================================================== */
.fv {
  position: relative;
  width: 100%;
  opacity: 0;
}
.fv img {
  width: 100%;
  height: auto;
  display: block;
}
.fv h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: 6.6666666667vw;
  text-shadow: 0 4px 14px rgba(65, 37, 5, 0.65);
}
@media screen and (min-width: 769px) {
  .fv h1 {
    top: 5%;
    left: 5%;
    bottom: auto;
    right: auto;
    transform: none;
    width: auto;
    text-shadow: none;
    text-align: left;
    font-size: 3.75vw;
  }
}
.fv .fv-logo {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 25.641025641vw;
  height: auto;
  filter: drop-shadow(0 0 4px rgba(65, 37, 5, 0.65));
}
@media screen and (min-width: 769px) {
  .fv .fv-logo {
    width: 12.5vw;
    left: auto;
    right: 5%;
    transform: none;
  }
}

/* .item-grid
===================================================== */
.item-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; /* 画像同士の隙間 */
}

.item-grid > li {
  /* アニメーションで中身がはみ出ないように overflow: hidden を設定 */
  overflow: hidden;
}

/* アニメーションのパフォーマンスを向上させ、カクつきを抑えます */
.item-container > a,
.item-grid > li > img {
  will-change: transform;
}

.item-container {
  position: relative;
}
.item-container a {
  display: block;
  color: inherit;
  text-decoration: none;
  overflow: hidden; /* 拡大した画像がはみ出ないようにする */
}
.item-container a img {
  transition: transform 0.4s ease; /* スムーズな拡大アニメーション */
}
.item-container a:hover img {
  transform: scale(1.05); /* 1.05倍に拡大 */
}

.item-name {
  position: absolute;
  inset: auto 10px 10px auto; /* bottom-right */
  transform: none;
  color: white;
  font-size: 3.0769230769vw;
}
@media screen and (min-width: 769px) {
  .item-name {
    font-size: 1.25vw;
  }
}
.item-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

/* 画像トリミング用 */
.image-crop-container {
  aspect-ratio: 280/320;
}
.image-crop-container > a {
  height: 100%;
}
.image-crop-container img {
  object-position: center;
}

/* item-nameは右下に統一 */
/* .title
===================================================== */
.title {
  text-align: center;
  margin: 50px 0 30px;
  font-size: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  .title {
    font-size: 2.1875vw;
  }
}

/* section
===================================================== */
.sec_01,
.sec_02,
.sec_03,
.sec_04,
.sec_05,
.sec_06 {
  margin: 10px 20px;
}
@media screen and (min-width: 769px) {
  .sec_01,
  .sec_02,
  .sec_03,
  .sec_04,
  .sec_05,
  .sec_06 {
    margin: 20px 50px;
  }
}

.sec_01 .item-grid li:nth-child(1),
.sec_02 .item-grid li:nth-child(1),
.sec_03 .item-grid li:nth-child(1),
.sec_04 .item-grid li:nth-child(1),
.sec_05 .item-grid li:nth-child(1),
.sec_06 .item-grid li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.sec_01 .item-grid li:nth-child(2),
.sec_02 .item-grid li:nth-child(2),
.sec_03 .item-grid li:nth-child(2),
.sec_04 .item-grid li:nth-child(2),
.sec_05 .item-grid li:nth-child(2),
.sec_06 .item-grid li:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
}
.sec_01 .item-grid li:nth-child(3),
.sec_02 .item-grid li:nth-child(3),
.sec_03 .item-grid li:nth-child(3),
.sec_04 .item-grid li:nth-child(3),
.sec_05 .item-grid li:nth-child(3),
.sec_06 .item-grid li:nth-child(3) {
  grid-column: 1/span 2;
  grid-row: 3;
}

@media screen and (min-width: 769px) {
  .item-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* PCでもgapを設定 */
  }
  .item-grid li {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0; /* PCではmargin-topをリセット */
    z-index: auto;
  }
  .sec_01 .item-grid li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .sec_01 .item-grid li:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
  }
  .sec_01 .item-grid li:nth-child(3) {
    grid-column: 3/span 2;
    grid-row: 1/span 2;
  }
  .sec_02 .item-grid li:nth-child(1),
  .sec_04 .item-grid li:nth-child(1),
  .sec_06 .item-grid li:nth-child(1) {
    grid-column: 3;
    grid-row: 1;
  }
  .sec_02 .item-grid li:nth-child(2),
  .sec_04 .item-grid li:nth-child(2),
  .sec_06 .item-grid li:nth-child(2) {
    grid-column: 4;
    grid-row: 2;
  }
  .sec_02 .item-grid li:nth-child(3),
  .sec_04 .item-grid li:nth-child(3),
  .sec_06 .item-grid li:nth-child(3) {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  .sec_03 .item-grid li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .sec_03 .item-grid li:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
  }
  .sec_03 .item-grid li:nth-child(3) {
    grid-column: 3/span 2;
    grid-row: 1/span 2;
  }
  .sec_05 .item-grid li:nth-child(1) {
    grid-column: 2; /* 1行目・2列目 */
    grid-row: 1;
  }
  .sec_05 .item-grid li:nth-child(2) {
    grid-column: 1; /* 2行目・1列目 */
    grid-row: 2;
  }
  .sec_05 .item-grid li:nth-child(3) {
    grid-column: 3/span 2;
    grid-row: 1/span 2;
  }
}
/* sec07
===================================================== */
.sec_07 {
  margin: 20px;
  display: block;
  text-align: center;
  color: #000;
  margin: 90px auto;
}
.sec_07 h2 {
  font-weight: 400;
  font-style: normal;
  font-size: 3.3333333333vw;
}
.sec_07 h2 span {
  font-weight: 600;
  font-style: normal;
  font-size: 4.6153846154vw;
}
.sec_07 h3 {
  font-weight: 400;
  font-style: normal;
  font-size: 3.3333333333vw;
  margin-top: 20px;
}
.sec_07 h3 span {
  font-weight: 600;
  font-style: normal;
}
.sec_07 p {
  font-weight: 400;
  font-style: normal;
  font-size: 2.5641025641vw;
  line-height: 1.9;
}
@media screen and (min-width: 769px) {
  .sec_07 {
    margin: 200px auto 100px;
    line-height: 2;
  }
  .sec_07 h2 {
    font-size: 1.0416666667vw;
  }
  .sec_07 h2 span {
    font-size: 1.6666666667vw;
  }
  .sec_07 h3 {
    font-size: 1.25vw;
  }
  .sec_07 p {
    font-size: 1.1111111111vw;
  }
}

.btn {
  font-size: 4vw;
}
.btn a {
  text-align: center;
  display: block;
  padding: 4% 0%;
  color: #fff;
  margin: 0 auto;
  width: 90%;
  background-color: #f2c98c;
}
@media screen and (min-width: 769px) {
  .btn {
    padding: 2% 0;
    width: 40%;
    margin: 0 auto;
    font-size: 1.1111111111vw;
  }
}

.copy {
  padding: 60px 20px 40px;
  text-align: center;
}
.copy div {
  margin-bottom: 20px;
}
.copy img {
  width: 120px;
  height: auto;
}
.copy p {
  color: #000;
  font-size: 10px;
}/*# sourceMappingURL=style.css.map */