body {
  width: 100%;
}

#globalheader,
#g-bottomarea-wrap,
#globalfooter {
  z-index: 10;
  position: relative;
}

#g-bottomarea-wrap {
  background-color: #fff;
}

#contents {
  max-width: 100%;
}

/*============================
mixin
============================*/
body {
  /* Noto Sans JP */
  --add-font-notosans: 'Noto Sans JP', sans-serif;
  /* Noto Sans JP */
  --add-font-notoserif: 'Noto Serif JP', serif;
  /* 白 */
  --color-white-01: #fff;
  /* 黒 */
  --color-black-01: #222222;
  /* 青 */
  --color-blue-01: #001f5e;
  --color-blue-02: #21366e;
  /* 黄 */
  --color-yellow-01: #816e2e;
  /* 灰 */
  --color-grey-01: #f5f5f5;
  --color-grey-02: #848484;
  --color-grey-03: #f0f0f0;
  --color-grey-04: #b2b2b2;

  /* 汎用 */
  --color-navy: #3f6ebe;

  /* 青グラデーション */
  --color-gradient-blue-01: #4f75c1, #001236;
  --color-gradient-blue-02: #001f5e, #000613;
  /* 黄色グラデーション */
  --color-gradient-yellow-01: #e2c254, #7b692c;
}

/*============================
common
============================*/
#contents .p-top {
  width: 100%;
}
/* 簡易リセット */
#contents .p-top * {
  font-family: var(--add-font-notosans);
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  padding: 0;
  box-sizing: border-box;
}
#contents img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#contents picture {
  display: block;
  height: 100%;
  line-height: 0;
}
#contents picture img {
  vertical-align: bottom;
}
#contents a {
  opacity: 1;
  transition: opacity 0.3s;
  cursor: pointer;
  text-decoration: none;
  backface-visibility: hidden;
}
#contents a:hover {
  opacity: 0.7;
}
#contents sup {
  vertical-align: super;
}
/*============================
m-color
============================*/
#contents .m-color--blue {
  color: var(--color-blue-02);
}

#contents .m-color--yellow {
  color: var(--color-yellow-01);
}

#contents .m-color--yellowGothic {
  color: var(--color-yellow-01);
}

@media screen and (max-width: 768px) {
  #contents .m-color--blue {
    color: var(--color-blue-02);
    font-weight: bold;
  }

  #contents .m-color--yellow {
    color: var(--color-yellow-01);
    font-weight: 900;
  }

  #contents .m-color--yellowGothic {
    color: var(--color-yellow-01);
    font-weight: 700;
  }
}
/*============================
m-button
============================*/
#contents .m-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 60px;
  border-radius: 30px;
  font-size: 22px;
  color: var(--color-white-01);
  font-weight: bold;
  transition: 0.3s;
  position: relative;
}
#contents .m-button:visited,
#contents .m-button:link {
  color: var(--color-white-01);
}
#contents .m-button:before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: solid 2px var(--color-white-01);
  border-right: solid 2px var(--color-white-01);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: auto;
  right: 14px;
  bottom: 0;
  margin: auto;
}
#contents .m-button--darkblue {
  background: rgb(0, 31, 94);
  background: linear-gradient(
    90deg,
    rgba(0, 31, 94, 1) 0%,
    rgba(0, 6, 19, 1) 100%
  );
}
#contents .m-button--blue {
  background: rgb(37, 128, 191);
  background: linear-gradient(
    90deg,
    rgba(37, 128, 191) 0%,
    rgba(19, 64, 96, 1) 100%
  );
}

@media screen and (max-width: 768px) {
  #contents .m-button * {
    font-size: 20px;
    color: var(--color-white-01);

    font-weight: bold;
  }
}
/*============================
m-hide
============================*/
#contents .m-hide--pc {
  display: none;
}

@media screen and (max-width: 1159px) {
  #contents .m-hide--pc {
    display: block;
  }
  #contents .m-hide--tb {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #contents .m-hide--pc {
    display: block;
  }
  #contents .m-hide--tb {
    display: block;
  }
  #contents .m-hide--sp {
    display: none;
  }
}
/*============================
m-tit
============================*/
#contents .m-tit {
  display: inline-block;
  font-size: 36px;
  font-weight: 900;

  position: relative;
  padding-bottom: 10px;
  color: var(--color-blue-01);
}
#contents .m-tit:before {
  content: '';
  display: block;
  border-bottom: 1px solid var(--color-yellow-01);
  width: 30%;
  max-width: 60px;
  position: absolute;
  top: auto;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
}
#contents .m-tit::after {
  content: '';
  display: block;
  border-bottom: 2px solid var(--color-yellow-01);
  width: 30%;
  max-width: 60px;
  position: absolute;
  top: auto;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #contents .m-tit {
    font-size: 28px;
  }
}
/*============================
m-subtit
============================*/
#contents .m-subtit {
  display: inline-block;
  font-size: 28px;
  font-weight: 900;

  padding-left: 25px;
  position: relative;
  color: var(--color-blue-01);
}
#contents .m-subtit--small {
  font-size: 20px;
}
#contents .m-subtit:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(calc(-50% + 2px));
  display: block;
  width: 16px;
  height: 16px;
  background: linear-gradient(to right, var(--color-gradient-blue-01));
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
@media screen and (max-width: 768px) {
  #contents .m-subtit {
    font-size: 20px;
  }
  #contents .m-subtit--small {
    display: inline-block;
    font-size: 14px;
    font-weight: 900;

    position: relative;
    color: var(--color-blue-01);
  }
  #contents .m-subtit:after {
    transform: translateY(calc(-50% + 2px));
    width: 12px;
    height: 12px;
  }
}
/*============================
m-label
============================*/
#contents .m-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white-01);
  font-size: 16px;
  font-weight: 700;
  padding: 5px 12px;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}
#contents .m-label--yellow {
  background: linear-gradient(to right, var(--color-gradient-yellow-01));
}
#contents .m-label--blue {
  background: linear-gradient(to right, var(--color-gradient-blue-02));
}

/*============================
m-bold
============================*/
#contents .m-bold {
  font-weight: bold;
}

/*============================
js-fixed
============================*/
#contents .js-fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  display: none;
  z-index: 1000;
}

/*============================
followingbnr
============================*/
#contents .p-top-followingbnr {
  background-color: rgba(132, 132, 132, 0.8);
  width: 100%;
}

#contents .p-top-followingbnr__inner {
  max-width: 1159px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

#contents .p-top-followingbnr__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  #contents .p-top-followingbnr__button {
    gap: 15px;
  }
  #contents .p-top-followingbnr__button .m-button {
    width: 170px;
    height: 50px;
  }
  #contents .p-top-followingbnr__button .m-button__tit {
    font-size: 16px;
  }
}

/*============================
mv
============================*/
#contents .p-top-mv {
}

/*============================
cta
============================*/
#contents .p-top-cta {
  width: 100%;
  background-color: var(--color-grey-03);
  padding: 80px 20px;
}
#contents .p-top-cta__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
#contents .p-top-cta__head {
  display: flex;
  align-items: center;
  flex-grow: 0;
}
#contents .p-top-cta__head::before {
  content: '';
  width: 73.81px;
  height: 72px;
  display: block;
  background-image: url(../img/houjin/cta_img.svg?202509011430);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 23px;
}
#contents .p-top-cta__headContent {
  flex: 1;
}
#contents .p-top-cta__headTit {
  font-size: 32px;
  font-weight: 700;
}
#contents .p-top-cta__headNotes {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 10px;
}
#contents .p-top-cta__body {
  flex-grow: 1;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contents .p-top-cta__bodyItem + .p-top-cta__bodyItem {
  margin-left: 20px;
}
#contents .p-top-cta__btn {
  width: 287px;
  height: 64px;
  font-size: 24px;
  font-weight: 700;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#contents .p-top-cta__btn::after {
  content: '';
  width: 12px;
  height: 12px;
  display: block;
  border-bottom: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  position: absolute;
  top: 50%;
  right: 15px;
  transform: rotate(-45deg) translate(0, -50%);
}
#contents .p-top-cta__btn--register {
  color: var(--color-white-01);
  background-color: var(--color-blue-02);
}
#contents .p-top-cta__btn--register::before {
  content: '';
  width: 32.83px;
  height: 28.92px;
  display: block;
  background-image: url(../img/houjin/cta_btn_icon_register.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8.4px;
  transform: translate(0, 2px);
}
#contents .p-top-cta__btn--login {
  color: var(--color-blue-02);
  background-color: var(--color-white-01);
  border: 2px solid var(--color-blue-02);
}
#contents .p-top-cta__btn--login::before {
  content: '';
  width: 23.21px;
  height: 28.13px;
  display: block;
  background-image: url(../img/houjin/cta_btn_icon_login.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 11.4px;
  transform: translate(0, 2px);
}
@media screen and (max-width: 1199px) {
  #contents .p-top-cta__body {
    padding: 0 20px;
  }
  #contents .p-top-cta__bodyItem + .p-top-cta__bodyItem {
    margin-left: 15px;
  }
  #contents .p-top-cta__btn {
    width: 260px;
  }
}
@media screen and (max-width: 768px) {
  #contents .p-top-cta {
    padding: 40px 20px;
  }
  #contents .p-top-cta__inner {
    display: block;
  }
  #contents .p-top-cta__head {
    width: fit-content;
    margin: 0 auto;
  }
  #contents .p-top-cta__head::before {
    margin-right: 16px;
  }
  #contents .p-top-cta__headTit {
    font-size: 24px;
  }
  #contents .p-top-cta__headNotes {
    line-height: calc(19 / 14);
  }
  #contents .p-top-cta__body {
    padding: 0;
    display: flex;
    flex-direction: column;
    margin-top: 32px;
  }
  #contents .p-top-cta__bodyItem + .p-top-cta__bodyItem {
    margin-left: 0;
    margin-top: 12px;
  }
  #contents .p-top-cta__btn {
    width: 287px;
    height: 50px;
    font-size: 18px;
    border-radius: 25px;
  }
  #contents .p-top-cta__btn::after {
    content: none;
  }
  #contents .p-top-cta__btn--register::before {
    margin-right: 15px;
    transform: translate(0, 1px);
  }
  #contents .p-top-cta__btn--login::before {
    margin-left: 2px;
    margin-right: 20px;
    transform: translate(0, 1px);
  }
}

/*============================
upper
============================*/
#contents .p-top-upper {
  padding: 50px 0 60px;
  background-image: url('../img/houjin/upper_bg_01.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#contents .p-top-upper__inner {
  max-width: 1159px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}
#contents .p-top-upper__tit {
  font-size: 24px;
  color: var(--color-blue-02);
  line-height: 1.7;
}
#contents .p-top-upper__letter {
  margin-top: 32px;
}
#contents .p-top-upper__letterTxt {
  font-size: 18px;
  margin-top: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: var(--color-blue-02);
}

#contents .p-top-upper__letterTxt .m-color--yellow {
  font-size: 24px;
  font-weight: 900;
  margin-top: 24px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #contents .p-top-upper {
    background-image: url('../img/houjin/sp-upper_bg_01.jpg');
    padding: 40px 0;
  }
  #contents .p-top-upper__inner {
    max-width: initial;
  }
  #contents .p-top-upper__tit {
    font-size: 20px;
    font-feature-settings: 'palt';
    letter-spacing: 0.08em;
  }
  #contents .p-top-upper__letter {
    margin-top: 28px;
  }
  #contents .p-top-upper__letterTxt {
    font-size: 16px;
    margin-top: 20px;
  }
  #contents .p-top-upper__letterTxt .m-color--yellow {
    font-size: 22px;
  }
}

/*============================
bnner
============================*/
#contents .p-top-bnner {
  position: relative;
}
#contents .p-top-bnner:before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 16px;
  background-image: url('../img/houjin/bnner_bg_top.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  top: 0;
}
#contents .p-top-bnner:after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 16px;
  background-image: url('../img/houjin/bnner_bg_under.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  top: auto;
  bottom: 0;
}
#contents .p-top-bnner__inner {
  max-width: 1159px;
  padding: 0 20px;
  margin: 0 auto;
}
#contents .p-top-bnner__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 50px 0;
}
#contents .p-top-bnner__letter {
}
#contents .p-top-bnner__letterDoboz {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
#contents .p-top-bnner__letterNote {
  font-weight: bold;
  margin-top: 10px;
}
#contents .p-top-bnner__letterDobozImg {
  width: 64px;
  height: 40px;
}
#contents .p-top-bnner__letterDobozTxt {
  font-size: 40px;

  font-weight: 900;
}

#contents .p-top-bnner__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

@media screen and (max-width: 1159px) {
  #contents .p-top-bnner__inner {
    max-width: initial;
  }
  #contents .p-top-bnner__wrap {
    gap: 30px;
    flex-direction: column;
    padding: 50px 0;
  }
  #contents .p-top-bnner__letterDoboz {
    flex-direction: column;
    gap: 8px;
  }
  #contents .p-top-bnner__letterNote {
    text-align: center;
  }
  #contents .p-top-bnner__letterDobozTxt {
    font-size: 32px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  #contents .p-top-bnner:before {
    background-image: url('../img/houjin/sp-bnner_bg_top.jpg');
  }
  #contents .p-top-bnner:after {
    background-image: url('../img/houjin/sp-bnner_bg_under.jpg');
  }
  #contents .p-top-bnner__inner {
    max-width: initial;
  }
  #contents .p-top-bnner__wrap {
    gap: 30px;
    flex-direction: column;
    height: 420px;
    padding: initial;
  }
  #contents .p-top-bnner__letterDoboz {
    flex-direction: column;
    gap: 8px;
  }
  #contents .p-top-bnner__letterNote {
    text-align: center;
  }
  #contents .p-top-bnner__letterDobozTxt {
    font-size: 32px;
  }
  #contents .p-top-bnner__button {
    flex-direction: column;
    gap: 20px;
  }
}

/*============================
movie 
============================*/
#contents .p-top-movie {
  position: relative;
  z-index: 1;
}

/* #contents .p-top-movie:before {
  content: '';
  display: block;
  height: 50%;
  width: 100%;
  background-color: var(--color-grey-01);
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  z-index: -1;
} */

#contents .p-top-movie__inner {
  max-width: 1159px;
  padding: 60px 20px;
  margin: 0 auto;
  text-align: center;
}

#contents .p-top-movie__video {
  position: relative;
  height: 0;
  overflow: hidden;
  width: 768px;
  height: 432px;
  margin: 0 auto;
}

#contents .p-top-movie__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* #contents .p-top-movie__box {
  width: 768px;
  height: 400px;
  background-color: #e4e4e4;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
} */

/* #contents .p-top-movie__boxTit {
  font-weight: 900;
  border-bottom: 1px solid var(--color-blue-01);
  font-size: 34px;
  padding-bottom: 12px;
  box-sizing: border-box;
}

#contents .p-top-movie__boxTxt {
  font-weight: 900;
  font-size: 27px;
  margin-top: 12px;
} */

@media screen and (max-width: 768px) {
  #contents .p-top-movie__inner {
    padding: 50px 20px;
  }
  #contents .p-top-movie__video {
    /* padding-bottom: 56.25%;
    width: auto;
    height: 0; */
    width: auto;
  }
  /* #contents .p-top-movie__box {
    width: 100%;
    height: 180px;
  }
  #contents .p-top-movie__boxTit {
    font-size: 27px;
  }

  #contents .p-top-movie__boxTxt {
    font-size: 21px;
  } */
}

/*============================
event 
============================*/
#contents .p-top-event {
}

#contents .p-top-event__letter {
  text-align: left;
  margin-top: 30px;
  padding: 0 95px;
}

#contents .p-top-event__txt {
  font-weight: 900;
  font-size: 24px;
  margin-top: 24px;
  line-height: 1.5;
  color: var(--color-blue-02);
}

#contents .p-top-event__inner {
  max-width: 1159px;
  padding: 60px 20px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 1159px) {
  #contents .p-top-event__letter {
    padding: 0 0 0 15px;
  }
}

@media screen and (max-width: 768px) {
  #contents .p-top-event__inner {
    padding: 50px 20px;
  }
  #contents .p-top-event__letter {
    padding: 0 0 0 15px;
  }
  #contents .p-top-event__txt {
    font-size: 18px;
    margin-top: 12px;
  }
}

/*
	 point
============================*/
#contents .p-top-event__point {
  margin-top: 80px;
  text-align: left;
  background-color: var(--color-grey-01);
}

#contents .p-top-event__pointDoboz {
  padding: 45px 95px;
}
#contents .p-top-event__pointList {
  width: 100%;
  margin: 40px 0 0 0;
}
#contents .p-top-event__pointItem {
  list-style: none;
  margin-top: 30px;
  /* background-color: var(--color-white-01);
  border: 1px solid var(--color-black-01); */
  /* padding: 40px 38px; */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#contents .p-top-event__pointContent {
  /* width: calc(100% * (576 / 1084)); */
}
#contents .p-top-event__pointLabel {
  position: relative;
  z-index: 1;
  display: flex;
  border-bottom: 1px solid var(--color-yellow-01);
  padding-bottom: 20px;
}
#contents .p-top-event__pointLabelTxt {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-yellow-01);
}
#contents .p-top-event__pointLabelNum {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-yellow-01);
}
#contents .p-top-event__pointWrap {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
#contents .p-top-event__pointImg {
  width: 155px;
  margin-top: 5px;
  margin-right: 24px;
}
#contents .p-top-event__pointLetter {
  flex: 1;
}
#contents .p-top-event__pointTxt {
  font-size: 18px;
  font-weight: 400;
  line-height: calc(40 / 18);
  color: var(--color-blue-02);
  font-weight: 700;
}
#contents .p-top-event__pointTxt--small {
  display: inline-block;
  font-size: 10px;
  transform: translate(0, -7px);
}
#contents .p-top-event__pointNotes {
  font-size: 14px;
  font-weight: 400;
  line-height: calc(24 / 14);
  margin-top: 10px;
}
#contents .p-top-event__pointSwiper {
  width: calc(100% * (466 / 1084));
  padding: 0 36px;
  position: relative;
}
#contents .p-top-event__pointSwiperItem {
  width: 100%;
  aspect-ratio: 395/300;
}
#contents .p-top-event__pointSwiperItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#contents .p-top-event__pointSwiperMain {
  overflow: hidden;
}
#contents .p-top-event__pointSwiperNext {
  width: 21.02px;
  height: 26.31px;
  background-image: url(../img/houjin/point_swiper_arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: scale(-1, 1) translate(0, -50%);
  cursor: pointer;
}
#contents .p-top-event__pointSwiperPrev {
  width: 21.02px;
  height: 26.31px;
  background-image: url(../img/houjin/point_swiper_arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  cursor: pointer;
}
#contents .p-top-event__pointSwiperPagination {
  width: 100%;
  margin-top: 12px;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: -22px;
  left: 0;
  z-index: 1;
}
#contents .p-top-event__pointSwiperPagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--color-grey-04);
  margin: 0 2px !important;
  opacity: 1;
}
#contents .p-top-event__pointSwiperPagination .swiper-pagination-bullet-active {
  background-color: var(--color-blue-02);
}

@media screen and (max-width: 1159px) {
  #contents .p-top-event__point {
    padding: 30px 15px;
  }
  #contents .p-top-event__pointDoboz {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  #contents .p-top-event__point {
    padding: 30px 15px;
  }
  #contents .p-top-event__point {
    margin-top: 40px;
  }
  #contents .p-top-event__pointList {
    margin-top: 20px;
  }
  #contents .p-top-event__pointItem {
    display: block;
    position: relative;
    margin-top: 20px;
  }
  #contents .p-top-event__pointContent {
    width: 100%;
  }
  #contents .p-top-event__pointLabel {
    position: relative;
    z-index: 1;
  }
  #contents .p-top-event__pointLabelTxt {
    font-size: 18px;
  }
  #contents .p-top-event__pointLabelNum {
    font-size: 18px;
  }
  #contents .p-top-event__pointWrap {
    display: block;
    margin-top: 0;
  }
  #contents .p-top-event__pointWrap:has(.p-top-event__pointImg) {
    margin-top: 75px;
  }
  #contents .p-top-event__pointImg {
    width: 112px;
    margin-top: 0;
    margin-right: 0;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  #contents .p-top-event__pointTxt {
    flex: 1;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 15px;
  }
  #contents .p-top-event__pointTxt--small {
    font-size: 8px;
    transform: translate(0, -5px);
  }
  #contents .p-top-event__pointNotes {
    font-size: 12px;
    line-height: calc(22 / 12);
    margin-top: 5px;
  }
  #contents .p-top-event__pointSwiper {
    width: 100%;
    margin-top: 16px;
    padding: 0 35px;
  }
  #contents .p-top-event__pointSwiperNext {
    width: 13.44px;
    height: 17.76px;
    right: 10px;
  }
  #contents .p-top-event__pointSwiperPrev {
    width: 13.44px;
    height: 17.76px;
    left: 10px;
  }
  #contents .p-top-event__pointSwiperPagination {
    margin-top: 8px;
    bottom: -15px;
  }
  #contents .p-top-event__pointSwiperPagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}

/*
	 recommend
============================*/
#contents .p-top-event__recommend {
  text-align: left;
  margin-top: 40px;
  padding: 0 95px;
}

#contents .p-top-event__recommendList {
  margin: 24px 0 0 0;
}

#contents .p-top-event__recommendItem {
  display: block;
  font-weight: 700;
  font-size: 18px;
  padding-left: 1rem;
  color: var(--color-blue-01);

  line-height: 1.8;
}

#contents .p-top-event__recommendItem:before {
  content: '・';
  margin-left: -1rem;
}

@media screen and (max-width: 1159px) {
  #contents .p-top-event__recommend {
    text-align: left;
    padding: 0 0 0 15px;
  }
}

@media screen and (max-width: 768px) {
  #contents .p-top-event__recommend {
    text-align: left;
    padding: 0 0 0 15px;
    margin-top: 20px;
  }

  #contents .p-top-event__recommendList {
    margin: 12px 0 0 0;
  }

  #contents .p-top-event__recommendItem {
    font-size: 16px;
  }
}

/*
	 profile
============================*/
#contents .p-top-event__profile {
  background-color: var(--color-grey-01);
  padding: 40px 95px;
  text-align: left;
  margin-top: 40px;
}

#contents .p-top-event__profileList {
  display: flex;
  list-style: none;
  margin: 90px 0 0 0;
  flex-wrap: wrap;
  column-gap: 20px;
}

#contents .p-top-event__profileItem {
  background-color: var(--color-white-01);
  position: relative;
  width: calc(100% / 2 - 10px);
  text-align: center;
  margin-top: 20px;
}

#contents .p-top-event__profileItemDoboz {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}

#contents .p-top-event__profileItemImg {
  width: 170px;
  margin: 0 auto;
}

#contents .p-top-event__profileItemLabel {
  transform: translateY(-10px);
}

#contents .p-top-event__profileItemLetter {
  padding: 115px 20px 20px 20px;
}

#contents .p-top-event__profileItemLetterTit {
  font-size: 24px;

  font-weight: 900;
}

#contents .p-top-event__profileItemLetterTit--small {
  font-size: 16px;
}

#contents .p-top-event__profileItemLetterPosition {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 5px;
}

#contents .p-top-event__profileItemLetterTxt {
  text-align: left;
  margin-top: 20px;
  padding-top: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  border-top: 1px solid var(--color-yellow-01);
  letter-spacing: 0.02em;
}

@media screen and (max-width: 1159px) {
  #contents .p-top-event__profile {
    text-align: left;
    padding: 30px 15px;
  }
}

@media screen and (max-width: 768px) {
  #contents .p-top-event__profile {
    padding: 30px 15px;
    margin-top: 30px;
  }
  #contents .p-top-event__profileList {
    flex-direction: column;
  }
  #contents .p-top-event__profileItem {
    width: 100%;
    margin-top: 90px;
  }

  #contents .p-top-event__profileItem:nth-of-type(1) {
    margin-top: 0;
  }

  #contents .p-top-event__profileItemLetterTit--small {
    font-weight: 900;
    font-size: 16px;
  }
}

/*
	 overview
============================*/
#contents .p-top-event__overview {
  padding: 0px 95px;
  text-align: left;
  margin-top: 40px;
}
#contents .p-top-event__overview table {
  border-collapse: collapse;
  width: 768px;
  margin: 30px auto 0;
}
#contents .p-top-event__overview th {
  color: var(--color-blue-01);
  font-size: 20px;

  font-weight: 900;
  padding: 25px 30px 25px 40px;
  border-bottom: 1px solid var(--color-blue-01);
  width: 23%;
  vertical-align: baseline;
}
#contents .p-top-event__overview td {
  color: var(--color-blue-01);
  font-size: 18px;
  font-weight: 700;
  padding: 25px 40px 25px 30px;
  border-bottom: 1px solid var(--color-blue-01);
  line-height: 1.8;
}

#contents .p-top-event__overviewWrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#contents .p-top-event__overviewWrapTxt {
  color: var(--color-blue-01);
  font-size: 16px;
  font-weight: 700;
  border: 1px solid var(--color-blue-01);
  align-self: flex-end;
  padding: 5px 10px;
}

#contents .p-top-event__overviewImg {
  width: 60px;
  height: 130px;
}

#contents .p-top-event__overviewImg img {
  object-fit: contain;
}

@media screen and (max-width: 1159px) {
  #contents .p-top-event__overview {
    padding: 30px 15px;
  }
}

@media screen and (max-width: 768px) {
  #contents .p-top-event__overview {
    padding: 30px 15px 0;
    margin-top: 0;
  }
  #contents .p-top-event__overview table {
    margin-top: 20px;
    display: block;
    width: 100%;
  }
  #contents .p-top-event__overview tbody {
    display: block;
    width: 100%;
  }
  #contents .p-top-event__overview tr {
    display: block;
    padding-top: 15px;
  }
  #contents .p-top-event__overview tr:nth-of-type(1) {
    padding-top: 0;
  }
  #contents .p-top-event__overview th {
    padding: 0;
    font-size: 20px;
    display: block;
    width: 100%;
    border: initial;
  }
  #contents .p-top-event__overview td {
    padding: 0;
    font-size: 16px;
    display: block;
    width: 100%;
    margin-top: 10px;
    padding-bottom: 15px;
  }

  #contents .p-top-event__overviewWrapTxt {
    font-size: 16px;
    padding: 5px;
    letter-spacing: 0;
  }
}
/*============================
archive 
============================*/
#contents .p-top-archive {
  padding: 50px 0 60px;
  background-image: url('../img/houjin/archive_bg_01.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

#contents .p-top-archive__inner {
  max-width: 1159px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}

#contents .p-top-archive__unitBtn {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#contents .p-top-archive__unitBtnTxt {
  color: var(--color-blue-01);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

#contents .p-top-archive__unitBtnLink {
  width: 450px;
  height: 64px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white-01);
  background-color: #3f6ebe;
  border-radius: 32px;
  padding-right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1;
  margin-top: 10px;
}
#contents .p-top-archive__unitBtnLink::before {
  content: '';
  width: 29.91px;
  height: 29.91px;
  display: block;
  background-image: url(../img/houjin/archive_btn_icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8.3px;
  margin-top: 2px;
}
#contents .p-top-archive__unitBtnLink::after {
  content: '';
  width: 12px;
  height: 12px;
  display: block;
  border-top: 2px solid var(--color-white-01);
  border-right: 2px solid var(--color-white-01);
  position: absolute;
  top: 26px;
  right: 20px;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  #contents .p-top-archive {
    background-image: url('../img/houjin/sp-archive_bg_01.jpg');
  }
  #contents .p-top-archive__unitBtn {
    margin-top: 17px;
  }
  #contents .p-top-archive__unitBtnTxt {
    color: var(--color-blue-01);
    font-size: 14px;
    font-weight: 700;
  }
  #contents .p-top-archive__unitBtnLink {
    width: 100%;
    height: 55px;
    font-size: 16px;
    padding-right: 20px;
  }
  #contents .p-top-archive__unitBtnLink::before {
    width: 25.87px;
    height: 25.87px;
    margin-right: 6px;
  }
  #contents .p-top-archive__unitBtnLink::after {
    width: 9px;
    height: 9px;
    top: 23px;
    right: 15px;
  }
}

/*
	 upper
============================*/
#contents .p-top-archive__upper {
  margin-top: 40px;
}
#contents .p-top-archive__upperTit {
  font-size: 28px;
  color: var(--color-blue-02);
  font-weight: 900;
  line-height: 1.8;
}

#contents .p-top-archive__upperWrap {
  padding: 0 95px;
}
#contents .p-top-archive__upperBox {
  margin: 100px auto 0;
  background-color: var(--color-white-01);
  padding: 80px 95px 40px;
  position: relative;
}

#contents .p-top-archive__upperBoxTxt {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-blue-01);
  line-height: 1.8;
}

#contents .p-top-archive__upperBoxTit {
  background-color: var(--color-yellow-01);
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  padding: 25px 0 20px;
  max-width: 515px;
  width: 100%;
  margin: 0 auto;
}
#contents .p-top-archive__upperBoxTit .m-label {
  position: absolute;
  top: -10px;
}
#contents .p-top-archive__upperBoxTitMain {
  color: var(--color-white-01);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
#contents .p-top-archive__upperBoxTitMain--small {
  font-size: 18px;
}

#contents .p-top-archive__upperImg {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 40px;
}

#contents .p-top-archive__upperImg iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1159px) {
  #contents .p-top-archive__upperWrap {
    padding: 0 15px;
  }
  #contents .p-top-archive__upperLink {
    display: block;
    width: 768px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  #contents .p-top-archive__upper {
    margin-top: 30px;
  }
  #contents .p-top-archive__upperTit {
    font-size: 18px;
  }

  #contents .p-top-archive__upperWrap {
    padding: 0;
  }
  #contents .p-top-archive__upperLink {
    width: auto;
  }
  #contents .p-top-archive__upperBox {
    padding: 40px 15px 20px;
  }
  #contents .p-top-archive__upperBoxTxt {
    font-size: 16px;
  }
  #contents .p-top-archive__upperBoxTit {
    padding: 20px 0 15px;
    max-width: initial;
    width: 90%;
  }
  #contents .p-top-archive__upperBoxTit .m-label {
    position: absolute;
    top: -10px;
  }
  #contents .p-top-archive__upperBoxTitMain {
    font-size: 18px;
  }
  #contents .p-top-archive__upperBoxTitMain--small {
    color: var(--color-white-01);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
  }
  #contents .p-top-archive__upperImg {
    margin-top: 25px;
  }
}

/*
	 under
============================*/

#contents .p-top-archive__under {
  margin-top: 50px;
}
#contents .p-top-archive__underTit {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-blue-01);
  line-height: 1.8;
}

#contents .p-top-archive__underList {
  margin: 30px 0 0 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  list-style: none;
}
#contents .p-top-archive__underItem {
  text-align: left;
}
#contents .p-top-archive__underItemLink {
  display: block;
  width: 768px;
  margin: 0 auto;
}
#contents .p-top-archive__underItemImg {
}
#contents .p-top-archive__underItemUpper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
#contents .p-top-archive__underItemUpperNew {
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}
#contents .p-top-archive__underItemTxt {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-blue-01);
  margin-top: 10px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  #contents .p-top-archive__under {
    margin-top: 30px;
  }
  #contents .p-top-archive__underTit {
    font-size: 16px;
  }
  #contents .p-top-archive__underList {
    gap: 30px;
    flex-direction: column;
  }

  #contents .p-top-archive__underItemLink {
    width: 100%;
  }
}

/*
	 slide
============================*/

#contents .p-top-archive__underSlide {
  position: relative;
  margin-top: 20px;
}

#contents .p-top-archive__underSlideDoboz {
  position: relative;
}

#contents .p-top-archive__underSlide .swiper-container {
  position: relative;
  overflow: hidden;
}

#contents .p-top-archive__underSlide .swiper-wrap {
  overflow: hidden;
}

#contents .p-top-archive__underSlide .swiper-parts {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}

#contents .swiper-pagination__01 {
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
  bottom: -30px;
}
#contents .swiper-pagination__01 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--color-grey-04);
  margin: 0 4px !important;
  opacity: 1;
}
#contents .swiper-pagination__01 .swiper-pagination-bullet-active {
  background-color: var(--color-blue-02);
}

#contents .m-swiper-button {
  width: 13.44px;
  height: 17.76px;
  right: 10px;
  z-index: 100;
}

#contents .m-swiper-button.m-swiper-button--next {
  width: 21.02px;
  height: 26.31px;
  background-image: url(../img/houjin/archive_swiper_arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: scale(-1, 1) translate(0, -50%);
  cursor: pointer;
}
#contents .m-swiper-button.m-swiper-button--prev {
  width: 21.02px;
  height: 26.31px;
  background-image: url(../img/houjin/archive_swiper_arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #contents .p-top-archive__underSlide .swiper-parts {
  }

  #contents .p-top-archive__underSlide .swiper-container {
    padding: 0 20px;
  }

  #contents .m-swiper-button.m-swiper-button--next {
    width: 13.44px;
    height: 17.76px;
    background-image: url(../img/houjin/sp-archive_swiper_arrow.svg);
  }
  #contents .m-swiper-button.m-swiper-button--prev {
    width: 13.44px;
    height: 17.76px;
    background-image: url(../img/houjin/sp-archive_swiper_arrow.svg);
  }
}

/*============================
rent
============================*/
#contents .p-top-rent {
  background-color: var(--color-grey-01);
  padding: 60px 0;
  text-align: left;
}

#contents .p-top-rent__inner {
  max-width: 1159px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}

#contents .p-top-rent__tit {
  font-size: 28px;

  font-weight: 900;
  line-height: 1.8;
  margin-top: 40px;
  color: var(--color-blue-01);
}
#contents .p-top-rent__box {
  background-color: var(--color-white-01);
  padding: 40px 95px;
  margin-top: 40px;
}
#contents .p-top-rent__boxTit {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

#contents .p-top-rent__boxList {
  list-style: none;
  margin: 20px 0 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 20px;
}
#contents .p-top-rent__boxItem {
  width: calc(100% / 3 - 34px);

  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--color-yellow-01);
  margin-right: 25px;
  padding-right: 25px;
}
#contents .p-top-rent__boxItem:nth-of-type(3) {
  border: initial;
  margin-right: 0;
  padding-right: 0;
}
#contents .p-top-rent__boxItem:last-of-type {
  border: initial;
  margin-right: 0;
  padding-right: 0;
}
#contents .p-top-rent__boxItemNum {
  font-size: 44px;

  font-weight: 900;
  color: var(--color-yellow-01);
}
#contents .p-top-rent__boxItemTit {
  font-size: 24px;

  font-weight: 900;
  color: var(--color-yellow-01);
  margin-top: 10px;
}
#contents .p-top-rent__boxItemImg {
  margin-top: 16px;
}
#contents .p-top-rent__boxItemTxt {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  text-align: left;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  #contents .p-top-rent {
    padding: 40px 0;
  }
  #contents .p-top-rent__tit {
    font-size: 18px;

    color: var(--color-blue-01);
    font-weight: 900;
    line-height: 1.8;
    margin-top: 30px;
  }
  #contents .p-top-rent__box {
    padding: 30px 15px;
    margin-top: 30px;
  }
  #contents .p-top-rent__boxTit {
    font-size: 16px;
  }
  #contents .p-top-rent__boxList {
    row-gap: 16px;
    flex-wrap: nowrap;
    flex-direction: column;
  }
  #contents .p-top-rent__boxItem {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    border-right: initial;
    border-bottom: 1px solid var(--color-yellow-01);
    padding-bottom: 16px;
  }
  #contents .p-top-rent__boxItem:nth-of-type(3) {
    border-bottom: 1px solid var(--color-yellow-01);
  }
  #contents .p-top-rent__boxItemImg {
    width: 100%;
  }
  #contents .p-top-rent__boxItem:last-of-type {
    border: initial;
  }
}

/*============================
lineup
============================*/
#contents .p-top-lineup {
  padding: 60px 0;
  text-align: left;
}

#contents .p-top-lineup__inner {
  max-width: 1159px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}

#contents .p-top-lineup__wrap {
  padding: 0 95px;
}

#contents .p-top-lineup__list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 64px;
  list-style: none;
  margin: 50px 0 0 0;
  box-sizing: border-box;
}
#contents .p-top-lineup__item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 2 - 32px);
}
#contents .p-top-lineup__boxItemImg {
  height: auto;
}
#contents .p-top-lineup__itemTit {
  border-left: 4px solid var(--color-yellow-01);
  margin-top: 20px;
}
#contents .p-top-lineup__itemTitImg {
  padding-left: 20px;
  height: 30px;
}
#contents .p-top-lineup__itemTitImg img {
  object-fit: contain;
  object-position: left;
}
#contents .p-top-lineup__itemTxt {
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  text-align: left;
  line-height: 1.8;
}
#contents .p-top-lineup__itemLabel {
  display: inline-block;
  border: 1px solid var(--color-blue-01);
  font-weight: 700;
  align-self: flex-start;
  padding: 5px 10px;
  margin-top: 16px;
}
#contents .p-top-lineup__box {
  background-color: var(--color-grey-01);
  padding: 30px;
  position: relative;
  max-width: 570px;
  margin: 90px auto 0;
}
#contents .p-top-lineup__box .m-label {
  font-size: 20px;
  padding: 10px 30px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
#contents .p-top-lineup__boxLink {
  font-size: 22px;
  font-weight: 700;
  margin-top: 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-blue-01);
  color: var(--color-blue-01);
}
#contents .p-top-lineup__boxLink:hover,
#contents .p-top-lineup__boxLink:visited {
  color: var(--color-blue-01);
}

@media screen and (max-width: 768px) {
  #contents .p-top-lineup {
    padding: 40px 0;
  }
  #contents .p-top-lineup__wrap {
    padding: 0;
  }

  #contents .p-top-lineup__list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 30px;
    margin-top: 30px;
  }
  #contents .p-top-lineup__item {
    width: 100%;
  }
  #contents .p-top-lineup__boxItemImg {
    height: auto;
  }
  #contents .p-top-lineup__itemTitImg {
    padding-left: 20px;
    height: 24px;
  }
  #contents .p-top-lineup__itemTxt {
    font-size: 16px;
  }
  #contents .p-top-lineup__itemLabel {
    margin-top: 12px;
  }
  #contents .p-top-lineup__box {
    max-width: initial;
    margin: 60px auto 0;
    padding: 30px 15px;
  }
  #contents .p-top-lineup__box .m-label {
    font-size: 16px;
    top: -20px;
  }
  #contents .p-top-lineup__boxLink {
    font-size: 15px;
  }
}
