@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* ========================================
   リセット / ベーススタイル
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html, body {
  width: 100%;
  height: 100%;
}

img, iframe {
  border: 0;
  vertical-align: bottom;
}

ul, ol {
  list-style-type: none;
}

a {
  text-decoration: none;
}

mark {
  font-weight: bold;
  color: inherit;
  background-color: transparent;
}

em {
  font-style: normal;
}

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: baseline;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  color: #000;
  line-height: 1.4;
  background-color: #FFF;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
}

button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  line-height: 1;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

a {
  transition: 0.3s;
  color: inherit;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}
.preload a {
  transition: none !important;
}

.wrap {
  margin: 0 auto;
}

.inner {
  max-width: 972px;
  height: 100%;
  margin: 0 auto;
}

img {
  width: 100%;
  height: auto;
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

@media screen and (min-width: 767px) and (max-width: 1080px) {
  .inner {
    width: 100%;
    padding: 0 1.5em;
  }
}
@media screen and (max-width: 767px) {
  html > * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  html {
    overflow-y: visible;
  }
  body {
    width: 100%;
    overflow-x: hidden;
  }
  body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
  br.pc {
    display: none;
  }
  br.sp {
    display: block;
  }
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
  .wrap {
    margin: 0 auto;
  }
  .inner {
    width: 100%;
    padding: 0 6vw;
  }
  .inner.sp-p0 {
    padding: 0;
  }
  body {
    font-size: 2.9333333333vw;
  }
}
/* ========================================
   ユーティリティ
   ======================================== */
.red {
  color: #c80019;
}

.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* ========================================
   ドロワーナビ / モーダル
   ======================================== */
.menuToggle {
  width: 46px;
  height: 46px;
  position: relative;
  background-color: transparent;
  position: fixed;
  top: 5px;
  right: 30px;
  z-index: 500;
  background-color: #fff;
  border-radius: 50%;
}

.menuToggle span {
  display: block;
  width: 52%;
  height: 2px;
  position: absolute;
  left: 50%;
  background-color: #000000;
  transition: all 0.2s ease-in-out 0s;
}

.menuToggle span:nth-of-type(1) {
  top: 35%;
  transform: translate3d(-50%, -50%, 0);
}

.menuToggle span:nth-of-type(2) {
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.menuToggle span:nth-of-type(3) {
  top: 65%;
  transform: translate3d(-50%, -50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  .menuToggle:hover span:nth-of-type(1) {
    transform: translate3d(-60%, -50%, 0);
  }
  .menuToggle:hover span:nth-of-type(3) {
    transform: translate3d(-40%, -50%, 0);
  }
}
@media screen and (max-width: 767px) {
  .menuToggle {
    width: 8vw;
    height: 8vw;
    top: 1.3333333333vw;
    right: 2.6666666667vw;
  }
  .menuToggle span {
    height: 0.2666666667vw;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    opacity: 0;
    transform: translateY(5%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-5%);
  }
}
@keyframes mmsideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes mmsideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
@keyframes mmsideInSp {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes mmsideOutSp {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
.modalBox {
  display: none;
  width: 100%;
  height: 100vh;
}

.modalBox.is-open {
  display: block;
}

.modalBox[aria-hidden=false] .modalOverlay {
  animation: mmfadeIn 0.3s cubic-bezier(0.4, 0.25, 0.54, 0.93);
}

.modalBox[aria-hidden=false] .modalContent {
  animation: mmslideIn 0.3s cubic-bezier(0.4, 0.25, 0.54, 0.93);
}

.modalBox[aria-hidden=false] .modalNav {
  animation: mmsideIn 0.4s cubic-bezier(0.4, 0.25, 0.54, 0.93);
}

.modalBox[aria-hidden=true] .modalOverlay {
  animation: mmfadeOut 0.3s cubic-bezier(0.4, 0.25, 0.54, 0.93) forwards;
}

.modalBox[aria-hidden=true] .modalContent {
  animation: mmslideOut 0.3s cubic-bezier(0.4, 0.25, 0.54, 0.93) forwards;
}

.modalBox[aria-hidden=true] .modalNav {
  animation: mmsideOut 0.4s cubic-bezier(0.4, 0.25, 0.54, 0.93) forwards;
}

@media screen and (max-width: 560px) {
  .modalBox[aria-hidden=false] .modalNav {
    animation: mmsideInSp 0.3s cubic-bezier(0.4, 0.25, 0.54, 0.93);
  }
  .modalBox[aria-hidden=true] .modalNav {
    animation: mmsideOutSp 0.3s cubic-bezier(0.4, 0.25, 0.54, 0.93) forwards;
  }
}
.modalOverlay,
.globalNav {
  will-change: transform;
}

.modalOverlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 4vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 17, 17, 0.65);
  z-index: 600;
}
@media screen and (min-width: 767px) and (max-width: 1080px) {
  .modalOverlay {
    padding: 0 vw(30);
  }
}
@media screen and (min-width: 1080px) {
  .modalOverlay {
    padding: 0 1em;
  }
}

.modalOverlay.-gNav {
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0;
}

.modalOverlay.-modal {
  justify-content: flex-start;
  padding-top: 8vw;
  padding-bottom: 4vw;
}
@media screen and (min-width: 767px) and (max-width: 1080px) {
  .modalOverlay.-modal {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1080px) {
  .modalOverlay.-modal {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* ドロワーメニュー */
.modalNav {
  display: block;
  width: 480px;
  height: 100%;
  padding: 0;
  position: relative;
  top: 0;
  right: 0;
  background-color: #fff;
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 767px) {
  .modalNav {
    width: 100%;
  }
}

.modalNav-body {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 100px 55px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .modalNav-body {
    padding: 20vw 4vw 6.6666666667vw 4vw;
  }
}

.modalNav-body::-webkit-scrollbar {
  width: 10px;
}

.modalNav-body::-webkit-scrollbar-track {
  background-color: rgba(204, 204, 204, 0.15);
}

.modalNav-body::-webkit-scrollbar-thumb {
  width: 8px;
  background-color: rgba(153, 153, 153, 0.45);
  border-radius: 2em;
}

.globalNav__menu {
  color: #272727;
}
.globalNav__menu li {
  font-size: 20px;
  font-weight: 600;
}
.globalNav__menu li + li {
  margin-top: 15px;
}
.globalNav__menu-brand {
  margin-left: 15px;
  margin-bottom: 30px;
  margin-top: 17px;
}
.globalNav__menu-brand li {
  font-size: 16px;
  font-weight: 500;
  font-feature-settings: "palt";
}
.globalNav__menu-brand li a {
  display: flex;
  justify-content: space-between;
}
.globalNav__menu-brand li a i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
}
.globalNav__menu-brand li a i.visa img {
  width: 39px;
}
.globalNav__menu-brand li a i.mastercard img {
  width: 37px;
}
.globalNav__menu-brand li a i.suica img {
  width: 27px;
}
.globalNav__menu-brand li a i.jcb img {
  width: 27px;
}
.globalNav__menu-brand li a i.american-express img {
  width: 23px;
}
.globalNav__menu-brand li a i.diners img {
  width: 58px;
}
.globalNav__menu-brand li a i.op img {
  width: 29px;
}
.globalNav__menu-brand li a i.g_visa img {
  width: 43px;
}
.globalNav__menu.flex + .globalNav__menu.flex {
  margin-top: 50px;
}
.globalNav__menu.flex li {
  font-feature-settings: "palt";
}
.globalNav__menu.flex li a {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.globalNav__menu.flex li a small {
  position: absolute;
  top: -16px;
  left: 0;
  font-size: 12px;
}
.globalNav__menu.flex li a i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
}
.globalNav__menu.flex li a i.g_visa img, .globalNav__menu.flex li a i.a_visa img, .globalNav__menu.flex li a i.r_visa img {
  width: 43px;
}
.globalNav__menu.flex li a i.icon-campaign img {
  width: 25px;
}
.globalNav__menu.flex li a i.icon-app img {
  width: 26px;
}
.globalNav__menu.flex li a i.icon-faq img {
  width: 32px;
}
@media screen and (max-width: 767px) {
  .globalNav__menu li {
    font-size: 5.2vw;
  }
  .globalNav__menu li + li {
    margin-top: 4.6666666667vw;
  }
  .globalNav__menu-brand {
    margin-left: 3.0666666667vw;
    margin-bottom: 8vw;
    margin-top: 4vw;
  }
  .globalNav__menu-brand li {
    font-size: 4vw;
  }
  .globalNav__menu-brand li a i {
    width: 15.3333333333vw;
  }
  .globalNav__menu-brand li a i.visa img {
    width: 10vw;
  }
  .globalNav__menu-brand li a i.mastercard img {
    width: 9.4666666667vw;
  }
  .globalNav__menu-brand li a i.suica img {
    width: 6.9333333333vw;
  }
  .globalNav__menu-brand li a i.jcb img {
    width: 6.9333333333vw;
  }
  .globalNav__menu-brand li a i.american-express img {
    width: 6vw;
  }
  .globalNav__menu-brand li a i.diners img {
    width: 15.0666666667vw;
  }
  .globalNav__menu-brand li a i.op img {
    width: 7.3333333333vw;
  }
}

.navClose {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 20px;
  right: 45px;
  background-color: #fff;
  z-index: 10;
}
.navClose span {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000;
  transition: all 0.2s ease-in-out 0s;
}

.navClose span:nth-of-type(1) {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.navClose span:nth-of-type(2) {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

@media (hover: hover) and (pointer: fine) {
  .navClose:hover span:nth-of-type(1) {
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  .navClose:hover span:nth-of-type(2) {
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
}
@media screen and (min-width: 767px) and (max-width: 1080px) {
  .navClose {
    width: 26px;
    height: 26px;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .navClose {
    width: 6vw;
    height: 6vw;
    right: 6vw;
  }
}
/* ========================================
   共通パーツ
   ======================================== */
.ttl {
  display: flex;
  justify-content: center;
  font-size: 25px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .ttl {
    font-size: 4vw;
  }
}

h2.ttl-underline {
  display: flex;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}
h2.ttl-underline span {
  display: inline-block;
  padding: 0 5px 15px;
  position: relative;
}
h2.ttl-underline span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgb(249, 180, 144) 0%, rgb(239, 76, 115) 99.92%);
}
h2.ttl-underline small {
  font-size: 18px;
}
h2.ttl-underline.center {
  text-align: center;
}
h2.ttl-underline .balloon {
  display: inline-block;
  color: #c80019;
  font-size: 24px;
  font-weight: 600;
  padding: 0 10px;
  position: absolute;
  margin-bottom: 5px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
h2.ttl-underline .balloon::before, h2.ttl-underline .balloon::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #c80019;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
h2.ttl-underline .balloon::before {
  left: 0;
  rotate: -20deg;
}
h2.ttl-underline .balloon::after {
  right: 0;
  rotate: 20deg;
}
@media screen and (max-width: 767px) {
  h2.ttl-underline {
    font-size: 4.4vw;
  }
  h2.ttl-underline span {
    padding: 0 0.8vw 2.6666666667vw;
  }
  h2.ttl-underline span::before {
    left: 50%;
    height: 0.8vw;
  }
  h2.ttl-underline small {
    font-size: 2.9333333333vw;
  }
  h2.ttl-underline .balloon {
    font-size: 3.7333333333vw;
    padding: 0 2.6666666667vw;
    margin-bottom: 0.6666666667vw;
  }
  h2.ttl-underline .balloon::before, h2.ttl-underline .balloon::after {
    height: 1em;
  }
}

.btn-blank {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #272727;
  border-radius: 999px;
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  width: 272px;
  height: 85px;
}
@media (hover: hover) {
  .btn-blank:hover {
    background: #e9e9e9;
    color: #272727;
    opacity: 1;
  }
}
.btn-blank::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background: url(../img/icon-blank.svg) no-repeat 0 0/100% auto;
}
@media screen and (max-width: 767px) {
  .btn-blank {
    font-size: 3.2vw;
    width: 42.6666666667vw;
    height: 13.3333333333vw;
  }
  .btn-blank::after {
    right: 3.4666666667vw;
    top: 50%;
    width: 3.2vw;
    height: 3.2vw;
  }
}

.btn-modal {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #272727;
  border-radius: 999px;
  background-color: #fff;
  font-size: 19px;
  font-weight: 500;
  width: 383px;
  height: 104px;
}
.btn-modal span {
  position: relative;
}
.btn-modal span::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background: url(../img/icon-modal-black.svg) no-repeat 0 0/100% auto;
}
.btn-modal.black {
  width: 312px;
  height: 85px;
  background-color: #272727;
  border: none;
  color: #fff;
  text-align: center;
  line-height: 1.26;
}
.btn-modal.black span::after {
  right: -60px;
  background: url(../img/icon-modal-white.svg) no-repeat 0 0/100% auto;
}
.btn-modal.purple {
  width: 396px;
  height: 85px;
  background-color: #b96097;
  border: none;
  color: #fff;
  text-align: center;
  line-height: 1.26;
  position: relative;
}
.btn-modal.purple span {
  position: static;
}
.btn-modal.purple span::after {
  right: 30px;
  background: url(../img/icon-modal-white.svg) no-repeat 0 0/100% auto;
}
@media screen and (max-width: 767px) {
  .btn-modal {
    font-size: 3.4666666667vw;
    width: 72.2666666667vw;
    height: 13.3333333333vw;
  }
  .btn-modal span::after {
    right: -5.3333333333vw;
    width: 3.2vw;
    height: 3.2vw;
  }
  .btn-modal.black {
    font-size: 2.9333333333vw;
    width: 48vw;
    height: 10.6666666667vw;
  }
  .btn-modal.black span {
    padding-right: 4vw;
  }
  .btn-modal.black span::after {
    right: -1.0666666667vw;
  }
  .btn-modal.purple {
    font-size: 2.9333333333vw;
    width: 53.8666666667vw;
    height: 10.2666666667vw;
  }
  .btn-modal.purple span::after {
    right: 3.3333333333vw;
  }
}

/* 詳細タブ内のボタン */
.btn-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 510px;
  min-height: 85px;
  padding: 16px 24px;
  margin: 0 auto;
  border-radius: 999px;
  background: #c80019;
  color: #fff;
  border: 1px solid #c80019;
  text-decoration: none;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  transition: 0.3s ease;
  position: relative;
  font-feature-settings: "palt";
}
.btn-cta small {
  font-size: 17px;
}
.btn-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  display: block;
  width: 7px;
  height: 14px;
  background: url(../img/icon-arrow-left.svg) no-repeat center/contain;
  transition: transform 0.25s ease;
}
@media (hover: hover) {
  .btn-cta:hover {
    background: #fff;
    color: #c80019;
  }
  .btn-cta:hover::after {
    background: url(../img/icon-arrow-left-red.svg) no-repeat center/contain;
  }
}
@media screen and (max-width: 767px) {
  .btn-cta {
    min-height: 13.3333333333vw;
    padding: 2.6666666667vw 4vw;
    font-size: 3.4666666667vw;
  }
  .btn-cta small {
    font-size: 2.8vw;
  }
  .btn-cta::after {
    right: 4vw;
    width: 1.3333333333vw;
    height: 2.9333333333vw;
  }
}

/* ※ 重複注意: .btn-modal.black と類似スタイル（統合を検討すること） */
.btn-modal-black {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-size: 19px;
  font-weight: 500;
  width: 396px;
  height: 85px;
  background-color: #272727;
  color: #fff;
  text-align: center;
  line-height: 1.26;
  margin: 66px auto 42px;
}
.btn-modal-black span::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url(../img/icon-modal-white.svg) no-repeat 0 0/100% auto;
}
@media screen and (max-width: 767px) {
  .btn-modal-black {
    font-size: 2.9333333333vw;
    width: 53.7333333333vw;
    height: 10.2666666667vw;
    margin: 8vw auto 8vw;
  }
  .btn-modal-black span {
    padding-right: 4vw;
  }
  .btn-modal-black span::after {
    right: 3.7333333333vw;
  }
}

.txt-link-blank {
  font-size: 14px;
  font-weight: 600;
  margin-right: 20px;
}
.txt-link-blank span {
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
}
.txt-link-blank span::after {
  content: "";
  position: absolute;
  top: 55%;
  right: -20px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(../img/icon-blank.svg) no-repeat 0 0/100% auto;
}
.txt-link-blank span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 100%;
  background-color: #272727;
  transition: 0.2s all;
}
@media (hover: hover) {
  .txt-link-blank:hover span::before {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .txt-link-blank {
    font-size: 2.6666666667vw;
    margin-right: 4.5333333333vw;
  }
  .txt-link-blank span {
    padding-bottom: 4px;
  }
  .txt-link-blank span::after {
    top: 55%;
    right: -4.5333333333vw;
    transform: translateY(-50%);
    width: 3.2vw;
    height: 3.2vw;
  }
}

.txt-lead {
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .txt-lead {
    margin-bottom: 1.0666666667vw;
  }
}

/* ========================================
   ヘッダー / レイアウト
   ======================================== */
header {
  display: flex;
  align-items: center;
  position: relative;
  height: 60px;
  padding-left: 35px;
}
header .logo {
  display: block;
  width: 173px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo span {
  width: 100%;
}

@media screen and (max-width: 767px) {
  header {
    height: 10.6666666667vw;
    padding-left: 5.3333333333vw;
  }
  header .logo {
    width: 39.6vw;
  }
}
.mv {
  position: relative;
}
.mv .mv-container h1 {
  width: 100%;
}

/* ========================================
   追従設定（共通設定）
   ======================================== */
.floating__sp {
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 400;
}
.floating__sp.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.floating__side {
  position: fixed;
  right: 0;
  top: 196px;
  z-index: 401;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 767px) {
  .floating__side {
    top: auto;
    bottom: 0;
    transform: none;
    width: 45%;
    flex: none;
    gap: 0;
  }
}

/* ========================================
   セクション別スタイル
   ======================================== */
/* --- sec-overview: 申込条件・特長・ステップ --- */
.sec-overview {
  padding: 67px 0 100px;
}
@media screen and (max-width: 767px) {
  .sec-overview {
    padding: 6vw 0 11.3333333333vw;
  }
}

.conditions {
  width: 100%;
  margin-bottom: 60px;
}
.conditions + .student {
  margin-top: 125px;
}
@media screen and (max-width: 767px) {
  .conditions {
    margin-bottom: 6.4vw;
  }
  .conditions + .student {
    margin-top: 10.6666666667vw;
  }
}

.student .btn {
  display: flex;
  justify-content: center;
  width: 592px;
  margin: 70px auto 0;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .student .btn {
    width: 100%;
    margin: 8vw auto 0;
    gap: 2.5333333333vw;
  }
}

/* --- 注意事項 --- */
.sec-notice {
  padding: 120px 0 130px;
  background-color: #fde8de;
}
@media screen and (max-width: 767px) {
  .sec-notice {
    padding: 10.6666666667vw 0 5.3333333333vw;
  }
}
.sec-notice .notice-btns {
  display: flex;
  margin-top: 72px;
}
.sec-notice .notice-btns a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 58px;
  background-color: #fac1a3;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.sec-notice .notice-btns a.tab-active {
  background-color: #c80019;
}
.sec-notice .notice-btns a + a {
  margin-left: 4px;
}
@media screen and (max-width: 767px) {
  .sec-notice .notice-btns {
    margin-top: 8.2666666667vw;
  }
  .sec-notice .notice-btns a {
    height: 10.6666666667vw;
    font-size: 2.9333333333vw;
    line-height: 1.2;
  }
  .sec-notice .notice-btns a + a {
    margin-left: 0.5333333333vw;
  }
}
.sec-notice .notice-body {
  min-height: 710px;
  padding: 60px;
  background-color: #fff;
  color: #272727;
  font-size: 15px;
  line-height: 1.73;
  font-feature-settings: "palt";
  text-align: justify;
}
.sec-notice .notice-body a {
  font-weight: 700;
  text-decoration: underline;
  position: relative;
}
.sec-notice .notice-body a.blank::after {
  content: "";
  position: absolute;
  top: 55%;
  right: -20px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(../img/icon-blank.svg) no-repeat 0 0/100% auto;
}
.sec-notice .notice-body a.blank-red::after {
  content: "";
  position: absolute;
  top: 55%;
  right: -20px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(../img/icon-blank-red.svg) no-repeat 0 0/100% auto;
}
@media (hover: hover) {
  .sec-notice .notice-body a:hover {
    text-decoration: none;
  }
}
.sec-notice .notice-body ul li {
  text-indent: -1em;
  margin-left: 1em;
}
.sec-notice .notice-body ul + h3, .sec-notice .notice-body ul + p {
  margin-top: 2em;
}
.sec-notice .notice-body h3 {
  font-size: 15px;
  font-weight: 600;
}
.sec-notice .notice-body p + h3 {
  margin-top: 2em;
}
.sec-notice .notice-body p + p {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .sec-notice .notice-body {
    min-height: auto;
    padding: 5.3333333333vw 4.2666666667vw;
    font-size: 2.9333333333vw;
  }
  .sec-notice .notice-body a.blank::after {
    right: -4.4vw;
    width: 3.2vw;
    height: 3.2vw;
  }
  .sec-notice .notice-body h3 {
    font-size: 2.9333333333vw;
  }
}
.sec-notice .notice-table {
  width: 100%;
  margin-top: 50px;
}
.sec-notice .notice-table th {
  font-weight: 600;
  line-height: 1.5;
  background-color: #feeee7;
}
.sec-notice .notice-table th, .sec-notice .notice-table td {
  min-width: 215px;
  height: 80px;
  padding: 15px 10px;
  text-align: center;
  border: 1px solid #272727;
}
@media screen and (max-width: 767px) {
  .sec-notice .notice-table {
    margin-top: 4vw;
  }
  .sec-notice .notice-table th, .sec-notice .notice-table td {
    min-width: 22vw;
    height: 14.4vw;
    padding: 2.4vw 1.3333333333vw;
    line-height: 1.4;
  }
}

/* ========================================
   フッター
   ======================================== */
footer {
  background: #000;
  padding: 50px 0;
}
footer .copyright {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 9.3333333333vw 0;
  }
  footer .copyright {
    font-size: 3.4666666667vw;
  }
}/*# sourceMappingURL=common.css.map */