@charset "UTF-8";

/* ==========================================================================
   Foundation
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-width: 1200px;
  margin: 0;
  padding: 0;
  color: #000;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #2075AF;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

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

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

/* Variables */
:root {
  --color-bg-navy: #0B1726;
  --color-bg-header: #0B3D63;
  --color-bg-gold: #DABF73;
  --color-text-blue: #0B3D63;
  --color-main-yellow: #FFF100;
  --color-main-red: #DF0011;
  --width-pc: 1060px;
}

/* Utility */
.u-pc-only {
  display: block;
}

.u-sp-only {
  display: none;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-text-small {
  font-size: 0.6em;
}

@media screen and (max-width: 767px) {
  body {
    min-width: auto;
    overflow-x: hidden;
  }

  .u-pc-only {
    display: none;
  }

  .u-sp-only {
    display: block;
  }
}

/* ==========================================================================
   Layout
   ========================================================================== */

.l-wrapper {
  width: 100%;
  overflow: hidden;
}

.l-container {
  width: 100%;
  max-width: var(--width-pc);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}

.l-section {
  padding: 60px 0 80px;
}

@media screen and (max-width: 767px) {
  .l-section {
    padding: 40px 0 60px;
  }
}

/* Footer Layout */
.l-footer {
  background-color: #fff;
  padding: 0;
  text-align: center;
  margin-top: 0;
  border-top: none;
}

.l-footer__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 64px;
}

.l-footer__copyright {
  font-size: 11px;
  color: #000;
  letter-spacing: 0;
  margin: 0;
  line-height: 1;
  padding-top: 2px;
}

.l-footer__copyright small {
  font-size: 11px;
}

@media screen and (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
    height: 66px;
    padding: 0;
    gap: 0;
  }

  .l-footer__copyright {
    display: block; /* 以前の display: none を上書き */
    font-size: 10px;
    line-height: 1.4;
    padding: 0 16px;
    text-align: center;
  }
}

/* ==========================================================================
   Object - Component
   ========================================================================== */

/* Section Title Base */
.c-section-title,
.c-section-title--line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1008px;
  margin: 0 auto 38px;
}

.c-section-title img,
.c-section-title--line img {
  height: auto;
}

/* 装飾ライン付き */
.c-section-title--line {
  gap: 37px;
}

.c-section-title--line::before,
.c-section-title--line::after {
  content: "";
  display: block;
  width: 225px;
  height: 1px;
  background-color: var(--color-text-blue);
}


/* Button */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 435px;
  height: 65px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  transition: all 0.3s;
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
}

.c-btn:hover {
  opacity: 0.7;
}

.c-btn--blue {
  background-color: #2075AF;
  color: #fff;
  border: 2px solid #0B3D63;
  box-shadow: 0 2px 0 #0B3D63;
}

.c-btn--yellow {
  background-color: var(--color-main-yellow);
  color: #0B3D63;
  border: 2px solid #0B3D63;
}

.c-btn--shadow {
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
}

.c-btn--shadow:active {
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(3px);
}

.c-btn__arrow::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
  margin-left: 20px;
  margin-bottom: 2px;
}


.c-btn--game {
  max-width: 485px;
  padding: 0 58px 0 160px;
}

.c-btn--game::before {
  content: "";
  display: block;
  background: url(../img/pc/icon_mascot_01.png) no-repeat center / contain;
  width: 137px;
  height: 84px;
  position: absolute;
  left: 23px;
  bottom: 0;
}

.c-btn--game::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/pc/icon_link.png) no-repeat center / contain;
  border: none;
  transform: none;

  position: absolute;
  right: 28px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}


.c-btn--kantei {
  position: relative;
  box-shadow: 0 4px 0 #0B3D63;
}


.c-btn--kantei::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  background-image: url(../img/pc/icon_mascot_02.png);
  width: 71px;
  height: 81px;
  left: 27px;
  bottom: 0;
  pointer-events: none;
}


.c-btn--kantei::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
  position: absolute;
  right: 57px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}


.c-tag {
  display: inline-block;
  background-color: var(--color-bg-navy);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  margin-right: 5px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .c-section-title,
  .c-section-title--line {
    margin-bottom: 30px;
    justify-content: space-between;;
    gap: 12px;
    width: auto;
    line-height: 1;
  }

  .c-section-title--line::before,
  .c-section-title--line::after {
    flex-grow: 1;
    width: 25px;
  }

  .c-section-title img,
  .c-section-title--line img {
    width: auto;
    max-width: none;
    height: 27px;
  }

  .c-btn {
    font-size: 14px;
    height: 50px;
    max-width: 100%;
  }

  .c-btn--game {
    padding: 0 34px 0 106px;
  }

  .c-btn--game::before {
    background: url(../img/sp/icon_mascot_01.png) no-repeat center / contain;
    width: 94px;
    height: 58px;
    left: 12px;
  }

  .c-btn--game::after {
    width: 15px;
    height: 15px;
    background: url(../img/sp/icon_link.png) no-repeat center / contain;
    border: none;
    transform: none;
    right: 16px;
  }

  .c-btn--kantei {
    padding: 0 64px 0 108px;
  }

  .c-btn--kantei::before {
    background-image: url(../img/sp/icon_mascot_02.png);
    width: 58px;
    height: 66px;
    left: 26px;
  }

  .c-btn--kantei::after {
    width: 12px;
    height: 12px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    right: 55px;
  }

}

@media screen and (max-width: 374px) {
  .c-section-title img,
  .c-section-title--line img {
    height: 7.2vw;
  }
}


/* ==========================================================================
   Project: MV (PC/SP 完全分離・調整反映版)
   ========================================================================== */

/* --- 全デバイス共通の土台 --- */
.p-mv {
  position: relative;
  width: 100%;
  background-color: #002B51;
  overflow: hidden;
}

.p-mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.p-mv__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.p-mv__container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

.p-mv__item {
  position: absolute;
}

/* --------------------------------------------------------------------------
   PC用設定 (768px以上): 1440px固定レイアウト
   -------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-mv {
    height: 620px;
  }
  .p-mv__bg {
    min-width: 1440px;
    background-image: url(../img/pc/mv_bg.jpg);
  }
  .p-mv__container {
    width: 1440px;
  }
  .p-mv__item--player {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1120px;
    height: 620px;
    z-index: 1;
  }
  .p-mv__item--player img {
    width: 1120px;
    height: 620px;
    object-fit: contain;
    object-position: center top;
  }
  .p-mv__item--logo { top: 85px; left: 595px; z-index: 3; }
  .p-mv__item--logo img { width: 310px; }
  .p-mv__item--title { top: 126px; left: 367px; z-index: 3; }
  .p-mv__item--title img { width: 715px; }
  .p-mv__item--period { top: 408px; left: 494px; z-index: 3; }
  .p-mv__item--period img { width: 530px; }
}

/* --------------------------------------------------------------------------
   SP用設定 (767px以下): 調整版の数値を強制適用
   -------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .p-mv {
    height: 420px; /* 調整版の高さ */
  }
  .p-mv__bg {
    min-width: auto;
    width: 100%;
    background-image: url(../img/sp/mv_bg.jpg);
  }
  .p-mv__container {
    width: 375px;
  }
  /* 選手画像: top: 14px を反映 */
  .p-mv__item--player {
    top: 14px;
    left: 8px;
    width: 360px;
    height: 330px;
    transform: none;
  }
  .p-mv__item--player img {
    width: 360px !important;
    height: 406px !important;
    object-fit: contain;
    object-position: bottom;
  }
  /* ロゴ */
  .p-mv__item--logo {
    top: 11px;
    left: 112px;
  }
  .p-mv__item--logo img {
    width: 152px;
    height: auto;
  }
  /* タイトル: top: 93px を反映 */
  .p-mv__item--title {
    top: 22px;
    left: 49px;
  }
  .p-mv__item--title img {
    width: 300px;
    height: auto;
  }
  /* 期間 */
  .p-mv__item--period {
    top: 321px;
    left: 9px;
  }
  .p-mv__item--period img {
    width: 356px;
    height: auto;
  }
}
/* ==========================================================================
   Project: Campaign Benefits (Fixed Layout)
   ========================================================================== */

.p-campaign {
  background-color: var(--color-bg-gold);
  position: relative;
  background-image: url(../img/pc/img_mascot.png);
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 32px;
  background-size: 210px auto;
  background-position: calc(50% - 284px) bottom;
}

.p-campaign .c-section-title,
.p-campaign .c-section-title--line {
  justify-content: center;
  width: auto;
}

.p-campaign .c-section-title--line {
  gap: 37px;
}

.p-campaign .c-section-title--line::before,
.p-campaign .c-section-title--line::after {
  width: 225px;
}

.p-campaign__wrapper {
  display: flex;
  justify-content: center;
  gap: 7px;
  align-items: stretch;
}

.p-campaign__card {
  width: 500px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.p-campaign__card-head {
  background-color: var(--color-bg-header);
  padding: 15px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 77px;
}

.p-campaign__card-title-img img {
  vertical-align: middle;
}

.p-campaign__card-body {
  background-color: #fff;
  padding: 25px 10px 28px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-campaign__condition {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-bg-header);
  border-bottom: 1px solid var(--color-bg-header);
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 26px;
}


.p-campaign__image {
  margin-top: 10px;
}
.p-campaign__image.p-campaign__image--gift {
  margin-top: 0;
}

.p-campaign__image img {
  display: block;
  height: auto;
}

.p-campaign__board {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-campaign__board-img {
  width: 143px;
  flex-shrink: 0;
  margin: 0 28px 0 24px;
}

.p-campaign__board-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-bg-header);
  position: relative;
}

.p-campaign__board-text::before {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  background-color: #0B3D63;
  position: absolute;
  top: -20px;
  left: -8px;
  transform: rotate(-18deg);
}

.p-campaign__board-text::after {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  background-color: #0B3D63;
  position: absolute;
  bottom: -20px;
  left: -8px;
  transform: rotate(18deg);
}

.p-share {
  margin-top: 52px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.p-share__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 340px;
  height: 70px;
  padding: 10px 30px;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.p-share__label {
  color: #0B3D63;
  font-weight: 700;
  font-size: 16px;
}

.p-share__buttons {
  display: flex;
  gap: 32px;
  margin-left: 30px;
}

.p-share__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  text-decoration: none;
}

.p-share__btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .p-campaign {
    background-image: url(../img/sp/img_mascot.png);
    background-position: center bottom;
    padding-top: 44px;
    padding-bottom: 140px;
  }


  .p-campaign .c-section-title,
  .p-campaign .c-section-title--line {
    margin-bottom: 25px;
  }

  .p-campaign__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .p-campaign__card {
    width: 100%;
    max-width: 343px;
    height: 280px;
  }

  .p-campaign__card-head {
    height: 50px;
  }

  .p-campaign__card-title-img img {
    width: auto;
    height: 23px;
  }

  .p-campaign__card-body {
    padding: 10px 10px 24px;
    padding: 10px 10px 10px;
  }

  .p-campaign__condition {
    font-size: 14px;
    padding-bottom: 2px;
    margin-bottom: 16px;
  }

  .p-campaign__image {
    margin-top: 0;
  }

  .p-campaign__image img {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .p-campaign__image--gift img {
    width: 100%;
  }

  .p-campaign__board {
    margin-top: 8px;
  }

  .p-campaign__board-img {
    width: 93px;
    margin: 0 25px 0 -16px;
  }

  .p-campaign__board-text {
    font-size: 14px;
  }

  .p-campaign__board-text::before,
  .p-campaign__board-text::after {
    width: 30px;
  }

  .p-campaign__board-text::before {
    content: "";
    display: block;
    width: 33px;
    height: 1px;
    background-color: #0B3D63;
    position: absolute;
    top: -11px;
    left: -1px;
    transform: rotate(-20deg);
  }

  .p-campaign__board-text::after {
    content: "";
    display: block;
    width: 33px;
    height: 1px;
    background-color: #0B3D63;
    position: absolute;
    bottom: -11px;
    left: -1px;
    transform: rotate(20deg);
  }

  .p-share {
    margin-top: 16px;
  }

  .p-share__inner {
    width: 194px;
    height: 42px;
    padding: 8px 20px;
  }

  .p-share__label {
    font-size: 10px;
  }

  .p-share__buttons {
    gap: 12px;
    margin-left: 20px;
  }

  .p-share__btn {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 374px) {
  .p-campaign__card {
    height: auto;
  }

  .p-campaign__board-img {
    width: 24.8vw;
    margin: 0 6.666666666666667vw 0 -4.266666666666667vw;
  }

  .p-campaign__board-text {
    font-size: 3.733333333333333vw;
  }
}

/* ==========================================================================
   Project: Requirements
   ========================================================================== */

.p-requirements {
  position: relative;
  z-index: 2;
  padding: 95px 0 38px;
  background: #fff;
}

.p-requirements .c-section-title,
.p-requirements .c-section-title--line {
  margin-bottom: 23px;
}

.p-requirements__lead {
  text-align: center;
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 24px;
}

.p-requirements__box {
  width: 876px;
  margin: 0 auto;
  background-color: #f2f2f2;
  padding: 20px 30px;
}

.p-requirements__text {
  font-size: 18px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .p-requirements {
    padding: 44px 0 40px;
  }

  .p-requirements__lead {
    margin-bottom: 16px;
    font-size: 16px;
    text-align: left;
  }

  .p-requirements__box {
    width: auto;
    padding: 16px 10px;
  }

  .p-requirements__text {
    font-size: 14px;
    line-height: 2.1;
  }
}

/* ==========================================================================
   Project: Games
   ========================================================================== */

.p-games {
  padding: 38px 0 53px;
  background-color: #fff;
  text-align: center;
}

.p-games .c-section-title,
.p-games .c-section-title--line {
  margin-bottom: 32px;

}

.p-games__list {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  background: url(../img/pc/bg_game.png) no-repeat center 106px;
  background-size: 821px auto;
}

.p-games__lead {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 30px;
}

.p-games__item img {
  display: block;
}

.p-games__btn-area {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-games {
    padding: 40px 0 38px;
  }

  .p-games .c-section-title,
  .p-games .c-section-title--line {
    margin-bottom: 24px;

  }

  .p-games__lead {
    text-align: left;
    margin-bottom: 18px;
  }

  .p-games__list {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    padding: 0;
    margin-bottom: 26px;
  }

  .p-games__lead {
    font-size: 16px;
  }

  .p-games__item img {
    width: 100%;
    max-width: 400px;
  }
}

/* ==========================================================================
   Project: Flow
   ========================================================================== */

.p-flow {
  padding: 53px 0 56px;
  background-color: #fff;
}

.p-flow .c-section-title,
.p-flow .c-section-title--line {
  margin-bottom: 52px;
}

.p-flow__steps {
  display: flex;
  justify-content: space-between;
  gap: 33px;
  width: 876px;
  margin: 0 auto 60px;
}

.p-flow__step {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.p-flow__box {
  background-color: #0B3D63;
  color: #fff;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 240px;
  margin-bottom: 15px;
  position: relative;
}

.p-flow__box .p-flow__number {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
}

.p-flow__icon-wrapper {
  margin-bottom: 10px;
}

.p-flow__label-img img {
  height: 25px;
  width: auto;
}

.p-flow__text-area {
  text-align: left;
}

.p-flow__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-blue);
  margin-bottom: 10px;
}

.p-flow__desc {
  font-size: 14px;
  line-height: 1.4;
}

.p-flow__link {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

.p-flow__arrow {
  align-self: center;
  width: 20px;
  height: 20px;
  border-top: 4px solid #0B3D63;
  border-right: 4px solid #0B3D63;
  transform: rotate(45deg);
  margin: 0 10px;
  margin-top: -80px;
}

.p-flow__contract {
  position: relative;
  width: 1009px;
  margin: 208px auto 0;
}

.p-flow__contract-header {
  display: flex;
  align-items: center;
  position: absolute;
  top: -40px;
  z-index: 3;
  width: 100%;
  height: 80px;
  padding: 0 0 0 88px;
  background: #0B3D63;
  border-radius: 50px 0 0 50px;
}

.p-flow__contract-title::before {
  content: "";
  display: block;
  background: url(../img/pc/icon_roulette.png) no-repeat center / contain;
  width: 71px;
  height: 71px;
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.p-flow__contract-body {
  height: 188px;
  background: #DABF73;
  padding: 66px 240px 20px 22px;
}

.p-flow__contract-content {
  flex: 1;
  position: relative;
}

.p-flow__contract::before {
  content: "";
  display: block;
  width: 178px;
  height: 140px;
  background: url(../img/pc/img_mascot_02.png) no-repeat center / contain;
  position: absolute;
  top: -180px;
  right: 66px;
  z-index: 10;
}

.p-flow__contract-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}

.p-flow__contract-img {
  position: absolute;
  top: -40px;
  right: 0;
  z-index: 4;
  width: 228px;
}

@media screen and (max-width: 767px) {
  .p-flow {
    padding: 38px 0 38px;
  }

  .p-flow .c-section-title,
  .p-flow .c-section-title--line {
    margin-bottom: 28px;
  }

  .p-flow__steps {
    flex-direction: column;
    gap: 24px;
    width: auto;
  }

  .p-flow__arrow {
    display: none;
  }

  .p-flow__step {
    width: 100%;
  }

  .p-flow__header {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 10px;
  }

  .p-flow__header .p-flow__title {
    font-weight: 700;
    font-size: 16px;
  }

  .p-flow__box {
    flex-direction: row;
    height: 102px;
    padding: 10px 10px 10px 44px;
    gap: 0;
    justify-content: flex-start;
    margin-bottom: 12px;
  }

  .p-flow__icon-wrapper {
    width: 72px;
    height: 64px;
    margin-bottom: 0;
    margin-right: 74px;
  }

  .p-flow__contract {
    flex-direction: column;
    border-radius: 0;
    margin-top: 40px;
    background: transparent;
    width: auto;
    height: auto;
    margin: 216px -16px 0;
  }

  .p-flow__contract::before {
    width: 178px;
    height: 135px;
    background: url(../img/sp/img_mascot_02.png) no-repeat center / contain;
    position: absolute;
    top: -169px;
    left: calc(50% - 85px);
  }

  .p-flow__contract-header {
    width: 100%;
    height: 68px;
    padding-left: 74px;
    top: -34px;
  }

  .p-flow__contract-title::before {
    content: "";
    display: block;
    background: url(../img/sp/icon_roulette.png) no-repeat center / contain;
    width: 56px;
    height: 56px;
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }

  .p-flow__contract-title img {
    width: 281px;
  }

  .p-flow__contract-body {
    top: 34px;
    height: auto;
    padding: 57px 16px 22px;
  }

  .p-flow__contract-mascot {
    display: block;
    margin: 0 auto 10px;
    width: 60px;
  }

  .p-flow__contract-desc {
    padding-left: 0;
    text-align: left;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.7;;
  }

  .p-flow__desc {
    line-height: 1.3;
  }

  .p-flow__link {
    font-size: 16px;
  }

  .p-flow__contract-img {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 24px;
  }

  .p-flow__contract-img img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 374px) {
  .p-flow__box {
    height: 27.2vw;
    padding: 2.666666666666667vw 2.666666666666667vw 2.666666666666667vw 11.73333333333333vw;
  }

  .p-flow__icon-wrapper {
    width: 19.2vw;
    height: 17.06666666666667vw;
    margin-right: 19.73333333333333vw;
  }
}


/* ==========================================================================
   Project: Notes
   ========================================================================== */

.p-notes {
  padding: 56px 0 90px;
}

.p-notes .c-section-title,
.p-notes .c-section-title--line {
  margin-bottom: 28px;
}

.p-notes__box {
  width: 876px;
  margin: 0 auto;
  padding: 34px 28px 34px 12px;
  background: #F2F2F2;
  font-size: 14px;
  line-height: 2;
}

.p-notes__list {
  padding-left: 0;
  margin: 0;
}

.p-notes__list li {
  margin-bottom: 1px;
  list-style: none;
  text-indent: 0;
}

@media screen and (max-width: 767px) {
  .p-notes {
    padding: 38px 0 32px;
  }

  .p-notes .c-section-title,
  .p-notes .c-section-title--line {
    margin-bottom: 18px;
  }

  .p-notes__box {
    width: auto;
    padding: 14px 12px;
    line-height: 1.8;
  }

  .p-notes__list li {
    margin-bottom: 2px;
  }
}

/* ==========================================================================
   Project: About
   ========================================================================== */

.p-about {
  padding: 60px 0;
  background-color: var(--color-main-yellow);
}
.p-about__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.p-about__titles {
  text-align: left;
}

.p-about__sub-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.p-about__main-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
}

.p-about__points {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: 1008px;
  margin: 0 auto 48px;
}

.p-about__point {
  background: #fff;
  padding: 0;
  width: 328px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.p-about__point-header {
  width: 100%;
  height: 89px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: #0B3D63;
}

.p-about__point-label {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 70px;
  height: 18px;
  padding: 0 8px;
  background-color: var(--color-main-yellow);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: #0B3D63;
}

.p-about__point-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.p-about__point-desc {
  font-size: 16px;
  text-align: center;
  line-height: 1.7;
  padding: 20px 20px 20px;
}

.p-about__btn-area {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-about {
    padding: 32px 0;
  }

  .p-about__header {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    text-align: center;
  }

  .p-about__shield img {
    width: 90px;
  }

  .p-about__titles {
    text-align: center;
  }

  .p-about__titles img {
    width: 240px;
  }

  .p-about__points {
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 24px;
    width: auto;
    margin-bottom: 42px;
  }
}

@media screen and (max-width: 374px) {
  .p-about__point {
    width: 100%;
    flex: auto;
  }

  .p-about__point {
    min-height: 64vw;
  }

  .p-about__point-title {
    font-size: 5.333333333333333vw;
  }

  .p-about__point-desc {
    font-size: 4.266666666666667vw;
  }
}



/* ==========================================================================
   Project: CM
   ========================================================================== */

.p-cm {
  background-color: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 96px 0 44px;
}

.p-cm__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-position: center top;
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  .p-cm__bg {
    background-image: url(../img/pc/bg_cm.jpg);
    background-size: 1440px auto;
  }

  @media screen and (min-width: 1441px) {
    .p-cm__bg {
      background-size: cover;
    }
  }
}

@media screen and (max-width: 767px) {
  .p-cm__bg {
    background-image: url(../img/sp/bg_cm.jpg);
    background-size: cover;
    background-position: center top;
  }
}

.p-cm__container {
  position: relative;
  z-index: 2;
}

.p-cm__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 904px;
  margin: 0 auto 56px;
}

.p-cm__title {
  flex-shrink: 0;
  margin-top: 30px;
  margin-right: 66px;
}

.p-cm__movie {
  padding: 0 43px 0 0;
}

.p-cm__movie img {
  width: 100%;
  height: auto;
  display: block;
}

.p-cm__btn-area {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .p-cm {
    padding: 32px 0;
  }

  .p-cm__content {
    flex-direction: column;
    align-items: center;
    gap: 45px;
    width: auto;
    text-align: center;
    margin-bottom: 46px;
  }

  .p-cm__title {
    width: 248px;
    margin-right: 0;
    flex-shrink: 1;
  }

  .p-cm__movie {
    width: 277px;
    padding: 0;
  }

  .p-cm__btn-area {
    margin-top: 10px;
  }
}


.cm_introduce {
  width: 100%;
}
.cm_introduce_video .popup_movie_play {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cm_introduce_video .popup_movie_play .movie_main {
  position: relative;
  width: 85.33333333333334vw;
  max-width: 640px;
  height: 48vw;
  max-height: 360px;
}

@media (orientation: landscape) and (max-device-width: 1024px) {
  .cm_introduce_video .popup_movie_play .movie_main {
    width: 512px;
    height: 288px;
  }
}

.cm_introduce_video .popup_movie_play .movie_main iframe {
  display: none;
  width: 100%;
  height: 100%;
}

.cm_introduce_video .popup_movie_play .close_movie_popup {
  position: absolute;
  top: -25.5px;
  right: -25.5px;
  transform: rotate(45deg);
  width: 25px;
  height: 25px;
  background: #333;
  border-radius: 50%;
  cursor: pointer;
}
.cm_introduce_video .popup_movie_play .close_movie_popup::after,
.cm_introduce_video .popup_movie_play .close_movie_popup::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  margin-top: -0.5px;
  margin-left: -7.5px;
  background: #fff;
  content: "";
}
.cm_introduce_video .popup_movie_play .close_movie_popup::after {
  transform: rotate(90deg);
}
.cm_introduce .cm_introduce_video .video_playback .visualization {
  margin: 0 auto;
  cursor: pointer;
}
.cm_introduce .cm_introduce_video .video_playback .visualization img {
  width: 100%;
  height: auto;
}
