@charset "UTF-8";
/*color*/
/* ブランシエラカラー */
/*font-family*/
/*filler color*/
/*text-shadow*/
/*box-shadow*/
/*media query break point*/
/*mainBP*/
/*gHeader用*/
/*innerの片側はみ出し用*/
/*cubic*/
/* media query */
.obj-red {
  color: #982529;
}

.p-top__mvInfo {
  text-align: center;
  background: linear-gradient(8deg, rgb(180, 163, 121) 0%, rgb(127, 98, 26) 50%, rgb(180, 163, 121) 100%);
  font-size: 34px;
  font-size: 3.4rem;
  color: #fff;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .p-top__mvInfo {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__mvInfo {
    font-size: 2rem;
  }
}

.p-top__mv {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  aspect-ratio: 2420/1080;
}
@media only screen and (max-width: 1080px) {
  .p-top__mv {
    width: 100%;
    height: auto;
    aspect-ratio: 2420/1080;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__mv {
    aspect-ratio: 1080/994;
  }
}

.p-top__videowrap {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: opacity 0.3s ease;
  aspect-ratio: 2420/1080;
}
@media only screen and (max-width: 1350px) {
  .p-top__videowrap {
    aspect-ratio: 2420/1080;
  }
}
@media only screen and (max-width: 1080px) {
  .p-top__videowrap {
    position: absolute;
    width: 100%;
    height: auto;
    aspect-ratio: 2420/1080;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__videowrap {
    aspect-ratio: 1080/994;
  }
}
.p-top__videowrap.transparent {
  opacity: 0;
}
.p-top__videowrap video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-top__videowrap-bg {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
  width: 100vw;
  height: 100%;
  z-index: -2;
}
.p-top__videowrap-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s;
}
.p-top__videowrap-bg video.blur-0 {
  filter: blur(0px);
}

/* コントロールボタンのスタイル */
.video-controls {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 1;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .video-controls {
    flex-direction: column;
    gap: 15px;
    right: 0.5rem;
    bottom: 0.5rem;
  }
}

.control-btn {
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "EB Garamond", "Noto Serif", serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
}

.control-btn:hover {
  transform: scale(1.05);
}

/* PLAYボタン（円形） */
.play-btn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 3px dashed #2c3e50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2c3e50;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .play-btn {
    width: 7rem;
    height: 7rem;
  }
}

.play-btn .play-icon {
  width: 0;
  height: 0;
  border-left: 20px solid #2c3e50;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-bottom: 5px;
  margin-left: 5px;
  margin-inline: auto;
  transform: translateX(5%);
}
@media only screen and (max-width: 767px) {
  .play-btn .play-icon {
    border-left: 11px solid #2c3e50;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    margin-bottom: 2px;
  }
}

.play-btn .play-text {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .play-btn .play-text {
    font-size: 0.8rem;
    letter-spacing: 0;
  }
}

/* SKIPボタン（長方形） */
.skip-btn {
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px dashed #2c3e50;
  color: #2c3e50;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 100px;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .skip-btn {
    padding: 2px 10px;
    font-size: 10px;
  }
}

.skip-btn .skip-icon {
  display: flex;
  gap: 2px;
}

.skip-btn .skip-icon::before,
.skip-btn .skip-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid #2c3e50;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
/* ボタンの表示/非表示制御 */
.control-btn.hidden {
  display: none;
}

/* サムネイル画像スタイル */
.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.video-thumbnail.show {
  opacity: 1;
}

.p-top__mv02 {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  aspect-ratio: 2420/1080;
}
@media only screen and (max-width: 1080px) {
  .p-top__mv02 {
    width: 100%;
    height: auto;
    aspect-ratio: 2420/1080;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__mv02 {
    aspect-ratio: 1080/994;
  }
}

.p-top__usp__bg01 {
  background-image: url(../../images/common/usp_bg-pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-top__usp__bg01 {
    background-image: url(../../images/common/usp_bg-sp.jpg);
    padding-top: 1rem;
    padding-bottom: 0;
  }
}

#intro {
width: min(1200px, 100%);
padding: 10px 40px;
margin: 0 0 10px 0;
display: flex;
justify-content: center;
background-color: #fff;
}

@media only screen and (max-width: 767px) {
#intro {
padding: 10px 15px;
margin: 0 0 3px 0;
flex-direction: column;
align-items: start;
gap: 10px;
}
}

#intro article {
display: flex;
align-items: end;
gap: 20px;
}

@media only screen and (max-width: 767px) {
#intro article {
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
margin: auto;
}
}

#chapt_1 {
font-size: 16px;
line-height: 2;
}

#chapt_1 small {
font-size: 14px;
}

#chapt_2 {
font-size: 25px;
line-height: 1;
display: flex;
align-items: end;
gap: 20px;
}

@media only screen and (max-width: 767px) {
#chapt_2 {
font-size: 20px;
flex-direction: column;
}
}

#chapt_2 span {
font-size: 50px;
color: #982529;
}





.p-top__usp__fast {
  display: grid;
  grid-template-columns: 15% 1fr 1fr 1fr;
  grid-template-rows: min-content min-content;
  gap: 1rem 1rem;
  grid-template-areas: "p-top__usp__fast__item-01 p-top__usp__fast__item-02 p-top__usp__fast__item-03 p-top__usp__fast__item-04" "p-top__usp__fast__item-05 p-top__usp__fast__item-05 p-top__usp__fast__item-05 p-top__usp__fast__item-05";
}
@media only screen and (max-width: 767px) {
  .p-top__usp__fast {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "p-top__usp__fast__item-01 p-top__usp__fast__item-04" "p-top__usp__fast__item-02 p-top__usp__fast__item-03" "p-top__usp__fast__item-05 p-top__usp__fast__item-05";
    gap: 0.25rem 0.25rem;
    padding-bottom: 1rem;
  }
}
.p-top__usp__fast__item {
  align-content: center;
  font-size: min(1.7vw, 2.4rem);
  line-height: 1.2;
  text-align: center;
  padding: 0.7rem 0.7rem;
  background: #fff;
}
.p-top__usp__fast__item-01 {
  grid-area: p-top__usp__fast__item-01;
}
.p-top__usp__fast__item-02 {
  grid-area: p-top__usp__fast__item-02;
}
.p-top__usp__fast__item-03 {
  grid-area: p-top__usp__fast__item-03;
}
.p-top__usp__fast__item-04 {
  grid-area: p-top__usp__fast__item-04;
}
.p-top__usp__fast__item-05 {
  grid-area: p-top__usp__fast__item-05;
}
@media only screen and (max-width: 767px) {
  .p-top__usp__fast__item .p-top__usp__fast__item-01 {
    grid-area: p-top__usp__fast__item-01;
  }
  .p-top__usp__fast__item .p-top__usp__fast__item-02 {
    grid-area: p-top__usp__fast__item-02;
  }
  .p-top__usp__fast__item .p-top__usp__fast__item-03 {
    grid-area: p-top__usp__fast__item-03;
  }
  .p-top__usp__fast__item .p-top__usp__fast__item-04 {
    grid-area: p-top__usp__fast__item-04;
  }
  .p-top__usp__fast__item .p-top__usp__fast__item-05 {
    grid-area: p-top__usp__fast__item-05;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__usp__fast__item {
    font-size: min(3.3vw, 1.3rem);
    padding: 0.5rem 0.5rem;
    letter-spacing: 0;
  }
}
.p-top__usp__fast__item-01 {
  font-size: 1.5em;
}
.p-top__usp__fast__item-01 em {
  color: #982529;
  font-size: 2.5em;
  font-family: "Libre Caslon Text", "Noto Serif", serif;
  font-weight: 500;
  font-style: normal !important;
  line-height: 1;
}
.p-top__usp__fast__item-02 em {
  color: #001d50;
  font-size: 2em;
  font-family: "Libre Caslon Text", "Noto Serif", serif;
  font-weight: 500;
  font-style: normal !important;
}
.p-top__usp__fast__item-02 em.obj-red {
  color: #982529;
}
.p-top__usp__fast__item-02 b {
  color: #001d50;
  font-size: 1.25em;
  font-family: "Libre Caslon Text", "Noto Serif", serif;
  font-weight: 700;
  font-style: normal !important;
}
.p-top__usp__fast__item-03 {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-top__usp__fast__item-03 {
    line-height: 1.3;
    letter-spacing: -0.05em;
    font-size: 1.02em;
  }
}
.p-top__usp__fast__item-03 small {
  font-size: 0.8em;
}
.p-top__usp__fast__item-03 b {
  color: #001d50;
  font-size: 1.45em;
  font-family: "Libre Caslon Text", "Noto Serif", serif;
  font-weight: 700;
  font-style: normal !important;
}
@media only screen and (max-width: 767px) {
  .p-top__usp__fast__item-03 b {
    font-size: 1.45em;
  }
}
.p-top__usp__fast__item-03 b small {
  font-size: 0.8em;
  color: #231815;
  font-weight: normal;
}
.p-top__usp__fast__item-04 {
  padding: 0;
}
.p-top__usp__fast__item-04 b {
  color: #001d50;
  font-size: 1.25em;
  font-family: "Libre Caslon Text", "Noto Serif", serif;
  font-weight: 700;
  font-style: normal !important;
}
.p-top__usp__fast__item-04 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top__usp__fast__item-05 span:first-of-type {
  margin-right: 1.5rem;
}
.p-top__usp__fast__item-05 em {
  color: #fff;
  background: #982529;
  padding: 0 1rem;
}
.p-top__usp__fast__item-05 b {
  color: #001d50;
  font-size: 2em;
  font-weight: 400;
  font-family: "Libre Caslon Text", "Noto Serif", serif;
  font-style: normal !important;
}
.p-top__usp__second {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: #fff;
  position: relative;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-top__usp__second {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1rem;
  }
}
.p-top__usp__second::before, .p-top__usp__second::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 100%;
  background: #fff;
  opacity: 0.5;
}
@media only screen and (max-width: 767px) {
  .p-top__usp__second::before, .p-top__usp__second::after {
    display: none;
  }
}
.p-top__usp__second::after {
  content: "";
  width: 100%;
  height: 1px;
}
.p-top__usp__second__item {
  text-align: center;
  align-content: center;
  padding: 2rem 0;
  font-size: min(1.1vw, 1.6rem);
}
@media only screen and (max-width: 767px) {
  .p-top__usp__second__item {
    padding: 1.5rem 0;
    font-size: max(2.4vw, 1.3rem);
    border-bottom: #fff 1px solid;
  }
  .p-top__usp__second__item:last-of-type {
    border-bottom: none;
  }
}
.p-top__usp__second__item span {
  font-size: 1.2em;
}
.p-top__usp__second__item em {
  display: inline-block;
  background: #982529;
  padding: 0.25rem 0.5em;
  border-radius: 3rem;
  margin-right: 0.25em;
  font-size: 1.1em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .p-top__usp__second__item em {
    margin-right: 0.2em;
    padding: 0.25rem 0.5em;
  }
}
.p-top__usp__second__item b {
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}
.p-top__usp__second__item b.kana {
  letter-spacing: -0.08em;
}
.p-top__usp__second__item b.num {
  font-size: 2em;
  line-height: 1;
}
.p-top__usp__second__item b small {
  font-size: 0.75em;
}
.p-top__ent {
  padding-block: 2rem;
  text-align: center;
  color: #fff;
  width: 100%;
}
.p-top__ent__intr {
  padding-block: 4rem;
  background-image: url(../../images/common/bg_gold.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 800px;
  border-radius: 0.5rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__intr {
    padding-block: 2rem;
  }
}
.p-top__ent__intrBtn {
  color: #fff;
  margin-top: 2rem;
  display: block;
  width: 90%;
  max-width: 40rem;
  margin-inline: auto;
  padding-block: 0.5rem;
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__intrBtn {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__ent__intrBtn {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__ent__intrBtn {
    margin-top: 1rem;
  }
}
.p-top__ent__intrBtn::after {
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  content: "";
  line-height: 1;
  background: linear-gradient(0deg, rgb(117, 92, 27) 0%, rgb(162, 143, 95) 50%, rgb(117, 92, 27) 100%);
  transition: 0.3s;
}
.p-top__ent__intrBtn .u-arw-cont {
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  position: absolute;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-top__ent__intrBtn:hover {
    color: #837043;
  }
  .p-top__ent__intrBtn:hover::after {
    opacity: 0;
  }
  .p-top__ent__intrBtn:hover .u-arw-cont {
    background: #837043;
    right: 1.25em;
  }
}
.p-top__ent__ttl {
  font-size: 24px;
  font-size: 2.4rem;
  position: relative;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 2;
  padding: 0.25em 0;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__ttl {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__ent__ttl {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__ent__ttl {
    margin-bottom: 1rem;
  }
}
.p-top__ent__ttl::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: #837043;
  mix-blend-mode: multiply;
}
.p-top__ent__ttl span {
  position: relative;
  z-index: 1;
}
.p-top__ent__txt {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__txt {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__ent__txt {
    font-size: 1.3rem;
  }
}
.p-top__ent__limi__inner {
  padding-top: 3rem;
  padding-bottom: 4rem;
  border-radius: 1rem;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__inner {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
  }
}
.p-top__ent__limi__ttl {
  color: #231815;
  font-size: 16px;
  font-size: 1.6rem;
  border-bottom: #231815 solid 1px;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__ttl {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__ttl {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__ttl {
    margin-bottom: 2rem;
  }
}
.p-top__ent__limi__txt {
  color: #231815;
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__txt {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__txt {
    font-size: 1.4rem;
  }
}
.p-top__ent__limi__login {
  color: #001d50;
}
.p-top__ent__limi__login__inner {
  margin-inline: auto;
  padding: 2rem;
  background: #fff;
  border: #001d50 2px solid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__login__inner {
    padding: 1rem;
    gap: 0.5rem;
  }
}
.p-top__ent__limi__login__r {
  display: grid;
  place-content: center;
}
.p-top__ent__limi__login__txt {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__login__txt {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__login__txt {
    font-size: 1.1rem;
  }
}
.p-top__ent__limi__login__btn a {
  text-align: center;
  color: #fff;
  background: #001d50;
  font-size: 20px;
  font-size: 2rem;
  border: solid 1px #001d50;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__login__btn a {
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__login__btn a {
    font-size: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top__ent__limi__login__btn a:hover {
    color: #001d50 !important;
    background: #fff;
  }
  .p-top__ent__limi__login__btn a:hover i {
    border-color: #001d50 !important;
  }
}
.p-top__ent__limi__frow {
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__frow {
    max-width: 600px;
  }
}
.p-top__ent__limi__frow__ttl {
  color: #001d50;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__frow__ttl {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__frow__ttl {
    font-size: 1.6rem;
  }
}
.p-top__ent__limi__frow__list {
  display: grid;
  grid-template-columns: 1fr min-content 1fr min-content 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  gap: 0.25rem;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__frow__list {
    gap: 0rem;
    grid-template-columns: 1fr;
    grid-template-rows: min-content min-content min-content min-content min-content;
  }
}
.p-top__ent__limi__frow__list__item {
  background: #fff;
  border: solid 2px #001d50;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-top__ent__limi__frow__list__item__in {
  padding: 1rem 1rem;
}
.p-top__ent__limi__frow__list__item__ttl {
  text-align: left;
  color: #001d50;
  border-bottom: 1px solid #001d50;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__frow__list__item__ttl {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__frow__list__item__ttl {
    font-size: 1.6rem;
  }
}
.p-top__ent__limi__frow__list__item__ttl em {
  font-size: 2em;
  line-height: 1;
}
.p-top__ent__limi__frow__list__item__txt {
  text-align: left;
  color: #231815;
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__frow__list__item__txt {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__frow__list__item__txt {
    font-size: 1.3rem;
  }
}
.p-top__ent__limi__frow__list__item__txt em {
  font-size: 1.5em;
}
.p-top__ent__limi__frow__list__item__btn a {
  text-align: center;
  color: #fff;
  background: #001d50;
  border: #001d50;
  border-top: solid 2px #001d50;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .p-top__ent__limi__frow__list__item__btn a:hover {
    color: #001d50 !important;
    background: #fff;
  }
  .p-top__ent__limi__frow__list__item__btn a:hover i {
    border-color: #001d50 !important;
  }
}
.p-top__ent__limi__frow__list__arw i {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1rem solid #001d50; /* 三角形の色 */
  transform: rotate(-90deg);
}
@media only screen and (max-width: 767px) {
  .p-top__ent__limi__frow__list__arw i {
    transform: rotate(0deg);
  }
}

.p-top__info {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-top__info {
    padding-top: 1px;
  }
}
.p-top__info__coming {
  font-size: 45px;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-top__info__coming {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__info__coming {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__info__coming {
    margin-bottom: 5rem;
  }
}
.p-top__info__coming span {
  color: #982529;
}
.p-top__info__coming-line {
  background: #231815;
  width: 100%;
  height: 1px;
  display: block;
  border-radius: 50%;
  max-width: 600px;
  margin: 0 auto;
}
.p-top__info__coming i {
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-top__info__coming i {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__info__coming i {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__info__coming {
    margin-top: 3rem;
  }
}
.p-top__info__ttl {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  border-bottom: 1px solid #231815;
  padding-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .p-top__info__ttl {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__info__ttl {
    font-size: 1.6rem;
  }
}
.p-top__info__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 3rem 1rem 2rem;
  width: 100%;
  height: 100%;
  max-height: 20rem;
  overflow-y: scroll;
}
@media only screen and (max-width: 767px) {
  .p-top__info__list {
    padding: 1rem 0.5rem 1rem;
  }
}
.p-top__info__list::-webkit-scrollbar {
  width: 3px;
}
.p-top__info__list::-webkit-scrollbar-track {
  background: transparent;
}
.p-top__info__list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}
.p-top__info__item {
  display: grid;
  grid-template-columns: min-content 1fr;
  gap: 2rem;
}
.p-top__info__day {
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .p-top__info__day {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__info__day {
    font-size: 1.4rem;
  }
}
.p-top__info__txt {
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .p-top__info__txt {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__info__txt {
    font-size: 1.4rem;
  }
}

.p-top__tate {
  overflow: hidden;
  padding-bottom: 8rem;
}
@media only screen and (max-width: 767px) {
  .p-top__tate {
    padding-bottom: 4rem;
  }
}
.p-top__tate__inner {
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.p-top__tate__inner::after, .p-top__tate__inner::before {
  content: "";
  display: block;
  background: #f4f1eb;
  width: 75%;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .p-top__tate__inner::after, .p-top__tate__inner::before {
    width: 125%;
  }
}
.p-top__tate__inner::after {
  background: #e9e3d7;
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .p-top__tate__inner::after {
    width: 115%;
  }
}
.p-top__tate__img {
  margin-inline: auto;
  max-width: 600px;
}
.p-top__tate__ttl {
  font-size: 50px;
  font-size: 5rem;
  text-align: center;
  color: #001d50;
  line-height: 1.2;
  margin-bottom: 3rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 767px) {
  .p-top__tate__ttl {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__tate__ttl {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__tate__ttl {
    margin-bottom: 1.5rem;
  }
}
.p-top__tate__ttl em {
  font-weight: 500;
  font-style: italic;
  font-family: "EB Garamond", "Noto Serif", serif;
  display: block;
  letter-spacing: 0.1em;
}
.p-top__tate__txt {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .p-top__tate__txt {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__tate__txt {
    font-size: 1.6rem;
  }
}
.p-top__tate__video {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-top__tate__video__ttl {
  border-bottom: 2px solid #001d50;
  font-family: "EB Garamond", "Noto Serif", serif;
  font-style: italic;
  margin-bottom: 3rem;
  color: #001d50;
  font-size: 24px;
  font-size: 2.4rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-top__tate__video__ttl {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__tate__video__ttl {
    font-size: 1.5rem;
  }
}
.p-top__tate__video__ttl::after {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-left: 1.25rem solid transparent;
  border-right: 1.25rem solid transparent;
  border-top: 1.25rem solid black;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 100%);
  position: absolute;
}
.p-top__tate__video video {
  cursor: pointer;
  width: 100%;
  height: auto;
  transition: 0.3s;
}

.p-top__cont__b {
  background: linear-gradient(90deg, rgba(0, 37, 65, 0.8) 0%, rgba(0, 81, 120, 0.8) 100%);
}
.p-top__cont__g {
  background: linear-gradient(90deg, rgba(127, 116, 85, 0.8) 0%, rgba(70, 61, 41, 0.8) 100%);
}
.p-top__cont__list {
  display: grid;
  grid-template-columns: 1fr;
}
.p-top__cont__list__item {
  padding: 4.5rem 0;
}
@media only screen and (max-width: 767px) {
  .p-top__cont__list__item {
    padding: 0 0 3rem;
  }
}
.p-top__cont__list__item__inner {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10rem;
}
@media only screen and (max-width: 767px) {
  .p-top__cont__list__item__inner {
    flex-direction: column;
    gap: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__cont__list__item__inner-rev {
    flex-direction: column-reverse;
    gap: 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top__cont__list__item__inner:hover .p-top__cont__list__txtbox {
    opacity: 0.8 !important;
  }
  .p-top__cont__list__item__inner:hover .p-top__cont__list__frame__img {
    transform: scale(1.05);
  }
  .p-top__cont__list__item__inner:hover .u-arw-cont {
    transform: translateX(0.5rem);
  }
  .p-top__cont__list__item__inner:hover .p-top__cont__list__txtbox__btn::after {
    width: 100%;
    height: 3px;
  }
}
.p-top__cont__list__frame {
  width: 90vw;
  height: -moz-max-content;
  height: max-content;
  transition: 0.5s;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}
.p-top__cont__list__frame-r {
  margin-left: unset;
  margin-right: calc(-50vw + 50%);
}
.p-top__cont__list__frame__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.p-top__cont__list__txtbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-top__cont__list__txtbox {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-top__cont__list__txtbox__ttl {
  font-size: 5.8rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
  letter-spacing: 0.1em;
  font-family: "EB Garamond", "Noto Serif", serif;
}
@media only screen and (max-width: 767px) {
  .p-top__cont__list__txtbox__ttl {
    margin-bottom: 1rem;
    flex-direction: row;
    gap: 1rem;
    font-size: 3.5rem;
  }
}
.p-top__cont__list__txtbox__ttl span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-top__cont__list__txtbox__ttl small {
  font-size: 0.5em;
  text-align: center;
}
.p-top__cont__list__txtbox__ttl img {
  display: block;
  width: 27rem;
}
@media only screen and (max-width: 767px) {
  .p-top__cont__list__txtbox__ttl img {
    width: 10rem;
  }
}
.p-top__cont__list__txtbox__txt {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .p-top__cont__list__txtbox__txt {
    margin-bottom: 2rem;
    font-size: 1.4rem;
  }
}
.p-top__cont__list__txtbox__btn {
  font-size: 20px;
  font-size: 2rem;
  font-family: YakuHanMP, "Noto Serif", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  background: #B4A379;
  color: #fff;
  display: block;
  width: 90%;
  max-width: 600px;
  margin-top: 5rem;
  margin-inline: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 1.5em;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-top__cont__list__txtbox__btn {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__cont__list__txtbox__btn {
    font-size: 1.7rem;
  }
}
.p-top__cont__list__txtbox__btn.md-blue {
  background: #001d50;
}
.p-top__cont__list__txtbox__btn.md-blue::after {
  border-left: 1.25em solid #001d50;
}
.p-top__cont__list__txtbox__btn small {
  font-size: 0.5em;
}
.p-top__cont__list__txtbox__btn::after {
  content: "";
  top: 50%;
  left: 100%;
  transform: translate(0%, -50%);
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 1.35em solid transparent;
  border-bottom: 1.35em solid transparent;
  border-left: 1.25em solid #B4A379;
  border-right: 0;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-top__cont__list__txtbox__btn {
    margin-top: 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top__cont__list__txtbox__btn:hover {
    background: #fff;
    color: #B4A379;
  }
  .p-top__cont__list__txtbox__btn:hover::after {
    border-left: 1.25em solid #fff;
  }
}

.p-top__phase15 {
  background: linear-gradient(90deg, rgba(0, 37, 65, 0.8) 0%, rgba(0, 81, 120, 0.8) 100%);
  color: #fff;
  padding-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .p-top__phase15 {
    padding-bottom: 5rem;
  }
}
.p-top__phase15__ttl {
  font-size: 32px;
  font-size: 3.2rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-top__phase15__ttl {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__phase15__ttl {
    font-size: 2.4rem;
  }
}
.p-top__phase15__video {
  display: block;
  width: 100%;
  height: auto;
  max-width: 800px;
  margin-top: 3rem;
  margin-inline: auto;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .p-top__phase15__video {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top__phase15__video:hover {
    opacity: 0.8;
  }
}
.p-top__phase15__txt {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  line-height: 2.5;
  letter-spacing: 0.1em;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-top__phase15__txt {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__phase15__txt {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__phase15__txt {
    margin-top: 3rem;
    letter-spacing: 0.05em;
  }
}
.p-top__phase15__btn {
  font-size: 20px;
  font-size: 2rem;
  background: #B4A379;
  color: #fff;
  display: block;
  width: 90%;
  max-width: 600px;
  margin-top: 5rem;
  margin-inline: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 1.5em;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-top__phase15__btn {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__phase15__btn {
    font-size: 1.7rem;
  }
}
.p-top__phase15__btn small {
  font-size: 0.5em;
}
.p-top__phase15__btn::after {
  content: "";
  top: 50%;
  left: 100%;
  transform: translate(0%, -50%);
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 1.35em solid transparent;
  border-bottom: 1.35em solid transparent;
  border-left: 1.25em solid #B4A379;
  border-right: 0;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-top__phase15__btn {
    margin-top: 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top__phase15__btn:hover {
    background: #fff;
    color: #B4A379;
  }
  .p-top__phase15__btn:hover::after {
    border-left: 1.25em solid #fff;
  }
}
.p-top__phase15__coming {
  font-size: 40px;
  font-size: 4rem;
  text-align: center;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-top__phase15__coming {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__phase15__coming {
    font-size: 3rem;
  }
}
.p-top__phase15__coming-line {
  background: #fff;
  width: 100%;
  height: 1px;
  display: block;
  border-radius: 50%;
  max-width: 600px;
  margin: 0 auto;
}
.p-top__phase15__coming i {
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-top__phase15__coming i {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__phase15__coming i {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top__phase15__coming {
    margin-top: 3rem;
  }
}
/*# sourceMappingURL=../../map/top/style.css.map */