@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/*--------------------------------------
レイアウト
--------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}

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

a:link {
  color: #9B0020;
  text-decoration: underline;
}

a:visited {
  color: #9B0020;
  text-decoration: underline;
}

a:hover {
  color: #9B0020;
  text-decoration: none;
}

a:active {
  color: #9B0020;
  text-decoration: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* 矢印アイコン */
.arrow {
  position: relative;
  display: inline-block;
  width: 9.7px;
  height: 15.3px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: #9B0020;
  transform-origin: calc(100% - 1px) 50%;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

/* 新規ウィンドウアイコン */
.newopen {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../img/cmn-newopen-ico01.png) center center no-repeat;
  background-size: cover;
}

.disabled {
  pointer-events: none;
  opacity: 0.8;
  filter: grayscale(1);
}

/*--------------------------------------
  header
--------------------------------------*/
.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 88px;
}

.header__gnav--account {
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #530011;
  border: 2px solid white;
  border-radius: 8px;
}
.header__gnav--account a {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  width: 100%;
  height: 100%;
  color: white;
  line-height: 1;
  text-decoration: none;
  transition: 0.2s;
}
.header__gnav--account a:hover {
  opacity: 0.5;
}
.header__gnav--account a::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  background: url(../img/header-myaccount-ico.png) center center no-repeat;
  background-size: contain;
}

/* gnav */
.header__gnav--logo {
  display: block;
  width: 232px;
  margin-left: 40px;
  font-size: 0;
}

@media (max-width: 1400px) {
  .header__gnav--logo {
    margin-left: 1.4285714286vw;
    width: 16.5714285714vw;
  }
}
.header__gnav--menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
}

.header__gnav {
  /* margin-left: -272px; */
  margin-left: -100px;
}

@media (max-width: 1400px) {
  .header__gnav {
    margin-left: 0;
  }
}
.header__gnav--scroll {
  display: flex;
  align-items: stretch;
}
.header__gnav--scroll .header__gnav--linked {
  display: none;
}

.header__gnav--list {
  display: flex;
  list-style: none;
  padding: 0;
}

.header__gnav--item {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "RakutenSans_Bd", "Noto Sans JP", sans-serif;
}
.header__gnav--item + .header__gnav--item {
  margin-left: 3em;
}
.header__gnav--item a {
  position: relative;
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s opacity;
}
.header__gnav--item a:hover {
  opacity: 0.5;
}
.header__gnav--item a::after {
  display: block;
  bottom: -14px;
  left: 50%;
  position: absolute;
  color: #EFDB8B;
  font-size: 0.8rem;
  text-align: center;
  transform: translateX(-50%);
  content: "▼";
}

@media (max-width: 1400px) {
  .header__gnav--item + .header__gnav--item {
    margin-left: 1.4285714286vw;
  }
  .header__gnav--item a {
    font-size: 1.1428571429vw;
  }
  .header__gnav--item a::after {
    bottom: -1.2857142857vw;
    font-size: 0.7142857143vw;
  }
}
.header__gnav--linked {
  display: flex;
  list-style: none;
  padding-left: 0;
}

.header__linked--btn {
  display: block;
  position: relative;
  width: 112px;
  height: 88px;
}
.header__linked--btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.header__linked--btn .arrow {
  display: block;
}
.header__linked--btn:nth-of-type(1) {
  background-color: white;
}
.header__linked--btn:nth-of-type(1) .arrow::before, .header__linked--btn:nth-of-type(1) .arrow::after {
  background-color: #9B0020;
}
.header__linked--btn:nth-of-type(1) a {
  color: #9B0020;
}
.header__linked--btn:nth-of-type(2) {
  color: white;
  background-color: #9B0020;
}
.header__linked--btn:nth-of-type(2) a {
  color: white;
}

@media (max-width: 1400px) {
  .header__linked--btn {
    width: 8vw;
  }
  .header__linked--btn a {
    font-size: 1.1428571429vw;
  }
}
.header__gnav--btn {
  display: none;
}

.header__gnav--close {
  display: none;
}

/*--------------------------------------
  メインコンテンツ
--------------------------------------*/
main {
  position: relative;
}

.main__inner {
  margin: 0 auto;
  width: 1200px;
}

/*--------------------------------------
  トップページに戻る
--------------------------------------*/
.cmn__back--wrap {
  padding: 40px 0;
  background-color: white;
}

.cmn__back--link {
  margin: 0 auto;
  padding-left: 0;
  width: 1200px;
  list-style: none;
}

.cmn__back--btn {
  position: relative;
  width: 368px;
  height: 80px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}
.cmn__back--btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}
.cmn__back--btn a .arrow {
  position: absolute;
  left: 20px;
  transform: rotateZ(180deg);
}

/*--------------------------------------
  footer
--------------------------------------*/
footer {
  position: relative;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 1200px;
}

.footer__nav {
  padding: 48px 0;
}

.footer__nav--logo {
  display: block;
  width: 352px;
}

.footer__nav {
  background-color: white;
}

.footer__nav--menu {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.footer__nav--btn {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
}
.footer__nav--btn:not(:last-child) {
  margin-right: 10px;
}
.footer__nav--btn a:link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  text-decoration: none;
  transition: 0.2s opacity;
}
.footer__nav--btn a:link:visited {
  text-decoration: none;
}
.footer__nav--btn a:link:hover {
  text-decoration: none;
  opacity: 0.5;
}
.footer__nav--btn a:link:active {
  text-decoration: none;
}
.footer__nav--btn a:link img {
  width: auto;
  height: 20px;
}

.icon-facebook a {
  color: #3c5a99;
}

.icon-instagram a {
  color: #cf2e92;
}

.icon-youtube a {
  color: #da1725;
}

.footer__nav--contact {
  display: block;
  margin: 0 auto;
  width: 368px;
  height: 80px;
  background-color: #530011;
  border: 1px solid #4F0313;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}
.footer__nav--contact a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}
.footer__nav--contact a i {
  position: absolute;
  right: 20px;
  font-size: 1.6rem;
  font-weight: 300;
}

.footer__subnav {
  display: flex;
  height: 48px;
  background-color: #F4F3EE;
  border-bottom: 1px solid white;
}

.footer__subnav--list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  width: 100%;
}

.footer__subnav--btn {
  padding: 0;
}
.footer__subnav--btn + .footer__subnav--btn {
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid #9B0020;
}
.footer__subnav--btn a {
  color: #9B0020;
  font-size: 1.4rem;
}

.footer__copyright {
  background-color: #9B0020;
}

.footer__copyright--txt {
  display: block;
  padding: 10px 0;
  width: 100%;
  color: white;
  font-size: 1.4rem;
  text-align: center;
}

/* ページトップ */
#page-top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 180px;
  z-index: 2;
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
}
#page-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 1.6rem;
  text-decoration: none;
  line-height: 1;
  transition: 0.3s;
}
#page-top a:hover {
  opacity: 0.5;
}
#page-top a:before {
  content: "";
  background: white;
  height: 10.3923048454px;
  width: 16px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.entry__btn--wrap {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 2;
}

.entry-btn {
  display: block;
  width: 280px;
  height: 100px;
  color: white;
  background-color: #9B0020;
  border: 4px solid #882F41;
  border-radius: 8px;
}
.entry-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: 0.2s;
}
.entry-btn a i {
  position: absolute;
  right: 20px;
}
.entry-btn a i::before, .entry-btn a i::after {
  background-color: white;
}
.entry-btn a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  /*--------------------------------------
  レイアウト
  --------------------------------------*/
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /* 矢印アイコン */
  .arrow {
    position: relative;
    display: inline-block;
    width: 2.4871794872vw;
    height: 3.9230769231vw;
  }
  .arrow::before,
  .arrow::after {
    right: 0;
    width: 2.0512820513vw;
    height: 0.5128205128vw;
  }
  /* 新規ウィンドウアイコン */
  .newopen {
    width: 0 4.1025641026vw;
    height: 0 4.1025641026vw;
  }
  /*--------------------------------------
  header
  --------------------------------------*/
  .header__inner {
    padding: 0 5.1282051282vw;
    width: 100%;
    min-height: auto;
  }
  .header__gnav--account {
    margin-left: 20.5128205128vw;
    width: 8.2051282051vw;
    height: 8.2051282051vw;
    border: none;
  }
  .header__gnav--account a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .header__gnav--account a:hover {
    opacity: 1;
  }
  .header__gnav--account a::before {
    margin-right: 0;
    width: 5.1282051282vw;
    height: 5.1282051282vw;
  }
  .header__gnav--account a span {
    display: none;
  }
  /* gnav */
  .header__gnav--logo {
    display: block;
    margin-left: 0;
    width: 42.8205128205vw;
  }
  .header__gnav--menu {
    height: 16.4102564103vw;
  }
  .header__gnav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    margin-left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
  }
  .header__gnav .header__gnav--scroll {
    height: 100%;
    overflow-y: scroll;
    overscroll-behavior: contain;
  }
  .header__gnav .header__gnav--list {
    padding-top: 16.4102564103vw;
  }
  .header__gnav--linked {
    display: none;
  }
  .header__gnav--scroll {
    display: block;
    padding-bottom: 20.5128205128vw;
  }
  .header__gnav--scroll .header__gnav--linked {
    display: block;
  }
  .header__gnav--list {
    display: block;
    margin-bottom: 8.2051282051vw;
  }
  .header__gnav--item {
    position: relative;
    margin: 0 5.1282051282vw;
    width: auto;
    text-align: center;
    border-bottom: 1px solid #666;
  }
  .header__gnav--item a {
    display: block;
    padding: 5.1282051282vw 0;
    width: 100%;
    color: white;
    font-size: 5.1282051282vw;
  }
  .header__gnav--item a:hover {
    opacity: 1;
  }
  .header__gnav--item a::after {
    display: none;
  }
  .header__gnav--item + .header__gnav--item {
    margin-left: 5.1282051282vw;
  }
  .header__gnav--close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 5.1282051282vw;
    padding: 6.1538461538vw 0;
    width: auto;
    color: white;
    font-family: "RakutenSans_Bd", sans-serif;
    font-size: 7.1794871795vw;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    text-align: center;
  }
  .header__gnav--close i {
    margin: 2.0512820513vw 4.1025641026vw 0 0;
  }
  .header__gnav--close i::before, .header__gnav--close i::after {
    display: inline-block;
    width: 0.5128205128vw;
    height: 6.1538461538vw;
    background-color: white;
    content: "";
  }
  .header__gnav--close i::before {
    transform: rotateZ(45deg);
  }
  .header__gnav--close i::after {
    transform: translateX(-0.5128205128vw) rotateZ(-45deg);
  }
  .header__linked--btn {
    display: block;
    position: relative;
    margin: 0 5.1282051282vw;
    width: auto;
    background-color: #9B0020;
    border-radius: 8px;
  }
  .header__linked--btn + .header__linked--btn {
    margin-top: 5.1282051282vw;
  }
  .header__linked--btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6.1538461538vw 0;
    height: 100%;
    color: white;
    font-size: 5.1282051282vw;
    font-weight: 700;
    text-decoration: none;
  }
  .header__linked--btn .arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  .header__linked--btn .arrow::before, .header__linked--btn .arrow::after {
    background-color: white;
  }
  .header__gnav--btn {
    display: block;
    position: relative;
    right: 0;
    width: 7.1794871795vw;
    height: 5.641025641vw;
    cursor: pointer;
  }
  .header__gnav--btn i {
    display: block;
    position: absolute;
    top: 50%;
    width: 7.1794871795vw;
    height: 0.5128205128vw;
    background-color: white;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  .header__gnav--btn i::before, .header__gnav--btn i::after {
    display: block;
    position: absolute;
    width: 7.1794871795vw;
    height: 0.5128205128vw;
    background-color: white;
    content: "";
    transition: 0.3s;
  }
  .header__gnav--btn i::before {
    top: 9px;
    left: 0;
  }
  .header__gnav--btn i::after {
    top: -9px;
    left: 0;
  }
  .header__gnav--btn.active i {
    background-color: black;
  }
  .header__gnav--btn.active i::before {
    transform-origin: 50% 50%;
    top: 50%;
    transform: translateY(-50%) rotateZ(45deg);
  }
  .header__gnav--btn.active i::after {
    transform-origin: 50% 50%;
    top: 50%;
    transform: translateY(-50%) rotateZ(-45deg);
  }
  /*--------------------------------------
  メインコンテンツ
  --------------------------------------*/
  .main__inner {
    margin: 0 5.1282051282vw;
    width: auto;
  }
  /*--------------------------------------
  バナーエリア
  --------------------------------------*/
  .cmn__bnr--list {
    display: block;
    margin: 0 5.1282051282vw;
    padding: 20.5128205128vw 0;
    width: auto;
  }
  .cmn__bnr--item {
    width: auto;
  }
  .cmn__bnr--item + .cmn__bnr--item {
    margin-top: 6.1538461538vw;
  }
  /*--------------------------------------
  コースバナー
  --------------------------------------*/
  .cmn__course--wrap {
    padding: 16.4102564103vw 0;
    background-size: 100% auto;
  }
  .cmn__course--logo {
    width: 68.2051282051vw;
  }
  .cmn__course--link {
    display: block;
    margin: 10.2564102564vw 5.1282051282vw 0;
    width: auto;
  }
  .cmn__course--btn {
    width: auto;
    height: 17.4358974359vw;
  }
  .cmn__course--btn + .cmn__course--btn {
    margin-top: 6.1538461538vw;
  }
  .cmn__course--btn a {
    font-size: 5.1282051282vw;
    text-decoration: none;
  }
  .cmn__course--btn a .arrow {
    position: absolute;
    right: 20px;
  }
  .cmn__course--btn a .arrow::before, .cmn__course--btn a .arrow::after {
    background-color: white;
  }
  /*--------------------------------------
  トップページに戻る
  --------------------------------------*/
  .cmn__back--wrap {
    padding: 12.3076923077vw 0;
  }
  .cmn__back--link {
    margin: 0 5.1282051282vw;
    width: auto;
  }
  .cmn__back--btn {
    width: auto;
    height: 17.4358974359vw;
  }
  .cmn__back--btn a {
    font-size: 5.1282051282vw;
    text-decoration: none;
  }
  /*--------------------------------------
  footer
  --------------------------------------*/
  .footer__inner {
    display: block;
    margin: 0 5.1282051282vw;
    width: auto;
  }
  .footer__nav {
    padding: 12.3076923077vw 0;
  }
  .footer__nav--logo {
    display: block;
    margin: 0 auto;
    width: 72.3076923077vw;
  }
  .footer__nav--menu {
    justify-content: space-between;
    margin-top: 10.2564102564vw;
  }
  .footer__nav--btn {
    width: 12.3076923077vw;
    height: 12.3076923077vw;
  }
  .footer__nav--btn a:link {
    font-size: 6.1538461538vw;
  }
  .footer__nav--btn a:link:hover {
    opacity: 1;
  }
  .footer__nav--btn a:link img {
    height: 6.1538461538vw;
  }
  .icon-facebook a {
    color: #3c5a99;
  }
  .icon-instagram a {
    color: #cf2e92;
  }
  .icon-youtube a {
    color: #da1725;
  }
  .footer__nav--contact {
    display: block;
    width: auto;
    height: 17.4358974359vw;
  }
  .footer__nav--contact a i {
    right: 5.1282051282vw;
    font-size: 4.1025641026vw;
  }
  .footer__subnav {
    display: block;
    height: auto;
  }
  .footer__subnav--list {
    padding: 3.0769230769vw 0;
  }
  .footer__subnav--btn + .footer__subnav--btn {
    margin-left: 1.5rem;
    padding-left: 1.5rem;
  }
  .footer__subnav--btn a {
    font-size: 3.5897435897vw;
  }
  .footer__copyright--txt {
    padding: 2.5641025641vw 0;
    font-size: 3.0769230769vw;
    text-align: center;
  }
  /* ページトップ */
  #page-top {
    right: 2.5641025641vw;
    bottom: 31.7948717949vw;
    width: 12.3076923077vw;
    height: 12.3076923077vw;
  }
  #page-top a:hover {
    opacity: 1;
  }
  .entry__btn--wrap {
    padding: 6.1538461538vw 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
  }
  .entry-btn {
    margin: 0 auto;
    right: 2.5641025641vw;
    bottom: 2.5641025641vw;
    width: 89.7435897436vw;
    height: 15.3846153846vw;
  }
  .entry-btn a {
    text-decoration: none;
  }
  .entry-btn a:hover {
    opacity: 1;
  }
}
@font-face {
  font-family: "RakutenSans_Bd";
  src: url("/fonts/RakutenSans_Bd.woff2") format("woff2"), url("/fonts/RakutenSans_Bd.woff") format("woff");
}