@charset "UTF-8";

:root {
  --width-contents: calc(164 / 192 * 100%);
  --line-height: 1.85;
}

html {
  font-size: 62.5%;
}

@media (max-width: 1680px) {
  html {
    font-size: 54.6%;
  }
}

@media screen and (max-width: 1600px) {
  html {
    font-size: 49.6%;
  }
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 47%;
  }
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 44%;
  }
}

@media screen and (max-width: 1280px) {
  html {
    font-size: 41.3%;
  }
}

/*@media screen and (max-width: 1024px) {
  html {
    font-size: 33.1%;
  }
}*/

@media (max-width: 1024px) {
  html {
    font-size: 62.5%;
    overscroll-behavior: none;
  }
}

* {
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

div,
pre,
p,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
figure,
figcaption,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

p {
  line-height: var(--line-height);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: 0;
}

a {
  text-decoration: none;
  color: #000;
}

#header {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-top: solid 1px #BFBFBF;
  position: fixed;
  top: 0;
  height: 11rem;
  transition: 1s;
  z-index: 10;
}

#header.hide {
  transform: translateY(calc(-11rem - 1px));
}

@media (max-width: 1130px) {
  #header {
    height: 8rem;
  }
}

#header .header-inner {
  width: 86.0892388451%;
  max-width: 1640px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  height: 100%;
}

@media (min-width: 1131px) {
  #header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 1130px) {
  #header .header-inner {
    width: 100%;
  }
}

.header-l {
  width: 19.1463414634%;
}

@media (max-width: 1130px) {
  .header-l {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
  }

  .header-l img {
    width: auto;
    height: 5.0rem;
    margin-top: -2rem;
  }
}

.header-l a {
  display: inline-block;
  font-size: 0;
  padding-top: 2rem;
}

@media (min-width: 1131px) {
  .header-r {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 1130px) {
  .header-r {
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (min-width: 1131px) {
  .header-r .inner-l {
    flex: 1;
  }
}

.header-r .inner-r {
  width: 17.9488%;
}

@media (max-width: 1130px) {
  .header-r .inner-r {
    display: none;
  }
}

#nav-container {
  width: 100%;
}

@media (max-width: 1130px) {
  #nav-container {
    position: fixed;
    height: 100vh;
    pointer-events: none;
  }
}

#nav-container * {
  visibility: visible;
}

@media (max-width: 1130px) {
  .button {
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 11;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    border-radius: 0;
    height: 5rem;
    width: 30px;
    cursor: pointer;
    pointer-events: auto;
    margin-left: auto;
    margin-right: 10px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .icon-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #555;
    transition: 0.3s;
  }

  .icon-bar+.icon-bar {
    margin-top: 8px;
  }

  #nav-container:focus-within .button {
    pointer-events: none;
  }

  #nav-container:focus-within .icon-bar:nth-of-type(1) {
    transform: translate3d(0, 11px, 0) rotate(45deg);
  }

  #nav-container:focus-within .icon-bar:nth-of-type(2) {
    opacity: 0;
  }

  #nav-container:focus-within .icon-bar:nth-of-type(3) {
    transform: translate3d(0, -11px, 0) rotate(-45deg);
  }
}

@media (max-width: 1130px) {
  #nav-container:focus-within #nav-content {
    transform: none;
  }
}

#nav-content {
  height: 100%;
  contain: paint;
}

@media (max-width: 1130px) {
  #nav-content {
    margin-top: calc(7rem - 1px);
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: #fff;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateX(100%);
    transition: transform 0.3s;
    will-change: transform;
  }
}

#nav-content ul {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 1.9rem;
  font-family: "Noto Serif JP", serif;
}

@media (min-width: 1131px) {
  #nav-content ul {
    justify-content: center;
    align-items: center;
    gap: 5rem;
    padding-top: 1.8rem;
  }
}

@media (max-width: 1130px) {
  #nav-content ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 40px;
    font-size: 1.6rem;
  }
}

#nav-content ul li {
  line-height: 1;
}

@media (min-width: 1131px) {
  #nav-content ul li {
    min-width: 6rem;
  }
}

@media (max-width: 1130px) {
  #nav-content ul li {
    width: 28rem;
  }
}

#nav-content ul li a {
  display: block;
  text-decoration: none;
}

@media (min-width: 1131px) {
  #nav-content ul li a.on .pick::before {
    content: "";
    width: 6rem;
    border-bottom: 1px solid #000;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
  }

  #nav-content ul li a .pick {
    display: block;
    padding-bottom: 1.6rem;
    text-align: center;
    position: relative;
  }

  #nav-content ul li a .pick:hover::before {
    content: "";
    width: 6rem;
    border-bottom: 1px solid #000;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
  }
}

@media (max-width: 1130px) {
  #nav-content ul li a {
    position: relative;
    height: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2.5rem;
    border: solid 1px #D9D9D9;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.1s;
  }

  #nav-content ul li a::after {
    content: "";
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    background: url(img/gnavi-arrow.webp) no-repeat center;
    background-size: contain;
  }
}

#nav-content ul li.sp_gnavi-on {
  display: none;
}

@media (max-width: 1130px) {
  #nav-content ul li.sp_gnavi-on {
    display: block;
    padding-top: 30px;
  }

  #nav-content ul li.sp_gnavi-on a {
    height: auto;
    padding: 0;
    border: none;
    justify-content: center;
  }

  #nav-content ul li.sp_gnavi-on a::after {
    display: none;
  }
}

body {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  color: #000;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", Osaka, "Hiragino Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 1024px) {
  body {
    font-size: 2rem;
  }
}

.s2v {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

@media (max-width: 1024px) {
  .s2v {
    bottom: 0;
    right: 0;
  }
}

.s2v a:hover {
  opacity: 0.6;
}

.s2v img {
  width: 17.7rem;
  height: 16.6rem;
}

@media (max-width: 1024px) {
  .s2v img {
    width: 8rem;
    height: 7.5rem;
  }
}

.fadeIn {
  opacity: 0;
  transition-duration: 1.3s;
  transition-property: opacity, transform;
}

.fadeIn-up {
  transform: translate(0, 50px);
}

.scrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

.bg-01 {
  background: url(img/bg-01.webp) no-repeat 0;
  background-size: cover;
  aspect-ratio: 1920/792;
  padding-top: 4rem;
  text-align: center;
  margin-top: 11rem;
  margin-bottom: 12rem;
}

@media (max-width: 1130px) {
  .bg-01 {
    margin-top: 4rem;
    margin-bottom: 4rem;
    background: none;
  }
}

.bg-01 video {
  width: 69.7916666667%;
  max-width: 1340px;
  aspect-ratio: 192/108;
  border-radius: 30px;
}

@media (max-width: 1130px) {
  .bg-01 video {
    width: 100%;
    aspect-ratio: 192/108;
    border-radius: 0px;
  }
}

.bg-02 {
  background: #FCCFCC url(img/bg-02.webp) no-repeat 0 100%;
  padding-top: 4rem;
  padding-bottom: 9.7rem;
  border-radius: 5rem 5rem 0 0;
  background-size: contain;
  aspect-ratio: 1920/747;
  margin-bottom: 9rem;
}

@media (max-width: 1024px) {
  .bg-02 {
    border-radius: 3rem 3rem 0 0;
    padding-bottom: 6rem;
    margin-bottom: 6rem;
  }
}

.bg-03 {
  background: url(img/bg-03.webp) no-repeat center top;
  background-size: cover;
  aspect-ratio: 1640/1093;
  padding-top: 8rem;
  padding-bottom: 4rem;
  text-align: center;
  margin-bottom: 12rem;
}

@media (max-width: 1024px) {
  .bg-03 {
    padding-top: 6rem;
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 4rem;
  }
}

.bg-03 video {
  width: 62.1951219512%;
  max-width: 1640px;
  aspect-ratio: 192/108;
  margin-bottom: 27rem;
  border-radius: 30px;
}

@media (max-width: 1024px) {
  .bg-03 video {
    width: 100%;
    max-width: 52rem;
    margin-bottom: 14rem;
  }
}

.bg-03 .ban-box {
  display: inline-block;
  background-color: #fff;
  width: 40%;
}

@media (max-width: 1024px) {
  .bg-03 .ban-box {
    /*max-width: 52rem;*/
    width: 50%;
  }
}

@media (max-width: 768px) {
  .bg-03 .ban-box {
    /*max-width: 52rem;*/
    width: 80%;
  }
}

.bg-03 .ban-box a:hover {
  opacity: 0.6;
}

.menu {
  width: var(--width-contents);
  max-width: 1640px;
  margin: 0 auto 9rem;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  gap: 4rem;
}

@media (max-width: 1024px) {
  .menu {
    gap: 2rem;
    margin-bottom: 6rem;
  }
}

.menu li {
  width: calc((100% - 12rem) / 4);
}

@media (max-width: 1024px) {
  .menu li {
    width: 100%;
  }
}

.menu li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0.8rem 0.8rem 2.5rem;
  background-color: #fff;
  border: 2px solid #FCCFCC;
  transition: 0.2s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.menu li a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FCCFCC;
  transition: 0.2s;
  transform: translateX(-105%);
  z-index: -1;
}

.menu li a:hover::before {
  left: 0;
  transform: translateX(0);
}

.menu li a .menu-txt {
  display: flex;
  align-items: center;
  gap: 0 2.5rem;
  font-size: 2.667rem;
  position: relative;
}

@media (max-width: 1024px) {
  .menu li a .menu-txt {
    gap: 0 1.25rem;
    font-size: 2rem;
  }
}

.menu li a .menu-txt::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  background: url(img/menu-arrow.webp) no-repeat left center;
  background-size: contain;
}

.menu li a .menu-img {
  width: 10rem;
}

@media (max-width: 1024px) {
  .menu li a .menu-img {
    width: 5rem;
  }
}

main {
  width: 86.0892388451%;
  max-width: 1640px;
  margin: 0 auto;
  overflow: hidden;
}

@media (max-width: 1024px) {
  main {
    width: 100%;
  }
}

section {
  margin-top: -4rem;
  padding-top: 9rem;
  padding-bottom: 4rem;
}

.bg-clr-01 {
  padding-bottom: 8rem;
  background: rgba(252, 207, 204, 0.5);
  border-radius: 0 0 5rem 5rem;
  margin-bottom: 5rem;
}

.bg-clr-01.v2 {
  background: #FFB3B3;
}

@media (max-width: 1024px) {
  .bg-clr-01 {
    padding-bottom: 6rem;
    border-radius: 0 0 3rem 3rem;
    margin-bottom: 3rem;
  }
}

.bg-clr-02 {
  background: #FFB3B3;
  border-radius: 0 0 5rem 5rem;
  margin-bottom: 5rem;
}

.inner-box {
  width: 82.9268292683%;
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 8rem;
}

@media (max-width: 1024px) {
  .inner-box {
    width: 100%;
    padding-top: 6rem;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.inner-box.v1 {
  padding-top: 3rem;
}

.inner-box.v2 {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-bottom: 8rem;
}

.inner-box.v3 {
  padding-top: 4rem;
}

@media (max-width: 1024px) {
  .inner-box.v3 {
    padding-top: 1rem;
  }
}

.inner-box-02 {
  width: 85.2941176471%;
  max-width: 1160px;
  margin: 0 auto 5rem;
}

@media (max-width: 1024px) {
  .inner-box-02 {
    margin-bottom: 3rem;
  }
}

.h2-01 {
  position: relative;
  display: block;
  padding: 2rem;
  background-color: #FEF6F0;
  text-align: center;
  color: #BB1D2A;
  font-size: 4.267rem;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
}

@media (max-width: 1024px) {
  .h2-01 {
    font-size: 2.2rem;
  }
}

.h2-01::after {
  content: "";
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 2rem 1.5rem 0;
  border-color: #FEF6F0 transparent transparent transparent;
}

.h3-01 {
  padding: 2rem;
  background-color: #FEF6F0;
  border-radius: 50px;
  margin-bottom: 4rem;
  text-align: center;
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
}

@media (max-width: 1024px) {
  .h3-01 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}

.col2-01 {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem 8rem;
}

.col2-01.v2 {
  align-items: unset;
}

.col2-01.v3 {
  align-items: unset;
}

@media (max-width: 1024px) {
  .col2-01 {
    flex-wrap: wrap;
    max-width: 52rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.col2-01.rev {
  flex-direction: row-reverse;
}

.col2-01.rev.rev-01 {
  margin-top: 4rem;
  gap: 4rem 10rem;
}

@media (max-width: 1024px) {
  .col2-01.rev.rev-01 {
    gap: 2rem 10rem;
  }
}

.col2-01.rev.rev-02 {
  gap: 4rem;
}

@media (min-width: 1025px) {
  .col2-01 .txt-box {
    flex: 1;
  }
}

@media (max-width: 1024px) {
  .col2-01 .txt-box {
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .col2-01 .txt-box.txt-l-1 {
    padding-left: 10rem;
  }
}

@media (min-width: 1025px) {
  .col2-01 .txt-box.txt-l-2 {
    padding-left: 30rem;
  }
}

.col2-01 .img-box {
  width: 52rem;
}

@media (max-width: 1024px) {
  .col2-01 .img-box {
    width: 100%;
  }
}

.col2-01 .img-box.oblong-1 {
  width: 72.5rem;
}

.col2-01 .img-box.oblong-2 {
  width: 85.2rem;
}

.col2-01.v3 .txt-box {
  padding-top: 1rem;
}

.col2-02 {
  width: 100%;
  display: flex;
  gap: 4rem;
}

@media (max-width: 1024px) {
  .col2-02 {
    flex-direction: column-reverse;
    max-width: 52rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.col2-02 .txt-box-wt {
  color: #fff;
}

.col2-02 .txt-box-wt p:not(:nth-last-child(1)) {
  margin-bottom: 2em;
}

@media (min-width: 1025px) {
  .col2-02 .txt-box-wt {
    flex: 1;
  }
}

@media (max-width: 1024px) {
  .col2-02 .txt-box-wt {
    width: 100%;
  }
}

.col2-02 .img-box-wt {
  width: 58rem;
}

@media (max-width: 1024px) {
  .col2-02 .img-box-wt {
    width: 100%;
  }
}

.col2-03 {
  width: 80rem;
  margin-right: 0;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (max-width: 1024px) {
  .col2-03 {
    width: 100%;
    max-width: 52rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.col2-03 .txt-box {
  padding-left: 4rem;
}

@media (max-width: 1024px) {
  .col2-03 .txt-box {
    padding-left: 0;
  }
}

.day-box {
  position: relative;
  padding-right: 13rem;
  display: inline-block;
}

@media (max-width: 1024px) {
  .day-box {
    padding-right: 6rem;
  }
}

.day-box::after {
  content: "";
  position: absolute;
  top: 60%;
  right: 0;
  display: block;
  width: 13rem;
  height: 2px;
}

@media (max-width: 1024px) {
  .day-box::after {
    width: 6rem;
  }
}

.day-box .txt-ym {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.day-box.wt {
  font-size: 4.8rem;
}

@media (max-width: 1024px) {
  .day-box.wt {
    font-size: 4rem;
  }
}

.day-box.wt::after {
  background-color: #fff;
}

.day-box.wt .txt-ym {
  font-size: 3.2rem;
}

@media (max-width: 1024px) {
  .day-box.wt .txt-ym {
    font-size: 1.6rem;
  }
}

.day-box.red {
  color: #BB1D2A;
  font-size: 4.267rem;
}

@media (max-width: 1024px) {
  .day-box.red {
    font-size: 4rem;
  }
}

.day-box.red .txt-ym {
  font-size: 2.4rem;
}

@media (max-width: 1024px) {
  .day-box.red .txt-ym {
    font-size: 1.6rem;
  }
}

.day-box.red::after {
  background-color: #BB1D2A;
}

.in-txt-box {
  padding-left: 4rem;
}

@media (max-width: 1024px) {
  .in-txt-box {
    padding-left: 0;
  }
}

.f-s {
  font-size: 1.5rem;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #FCCFCC;
  border-bottom: solid 1px #D9D9D9;
  padding: 2rem;
}

@media (min-width: 1025px) {
  .footer {
    height: 15rem;
  }
}

.footer-navi {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  gap: 4rem;
  font-size: 1.9rem;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 1024px) {
  .footer-navi {
    flex-direction: column;
    gap: 2rem;
    font-size: 1.6rem;
  }
}

.footer-navi a {
  color: #fff;
}

@media (max-width: 1024px) {
  .footer-navi a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
  }

  .footer-navi a::before {
    content: "▶";
    font-size: 9px;
  }
}

.footer-navi a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
}

@media (max-width: 1024px) {
  .copyright {
    padding-top: 6rem;
    font-size: 15px;
    text-align: left;
  }
}

/*202603追加*/

@media (max-width:1024px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
  }

  #header.hide {
    transform: translateY(0);
  }
}

.pc-block {
  display: block;
}

@media (max-width:1024px) {
  .pc-block {
    display: none;
  }
}