@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;
}

.mt1em {
  margin-top: 1em;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100vh;
  background: white url(../img/cmn-fixed-bg.jpg) top center no-repeat;
  background-size: cover;
  opacity: 0.08;
}

.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 {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
}
.newopen svg {
  fill: #9B0020;
}

.disabled {
  pointer-events: none;
  opacity: 0.8;
  filter: grayscale(1);
}
.disabled .newopen svg {
  fill: #000;
  opacity: 0.8;
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 40px;
  width: 1920px;
}

@media (max-width: 1400px) {
  .header__inner {
    padding: 0 1.4285714286vw;
    width: 100%;
  }
}
/* gnav */
.header__gnav--logo {
  display: block;
  width: 232px;
}

@media (max-width: 1400px) {
  .header__gnav--logo {
    width: 12.8571428571vw;
  }
}
.header__gnav--menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  background-color: #9B0020;
  border-bottom: 1px solid white;
}

.header__gnav--left {
  display: flex;
  align-items: center;
}
.header__gnav--left .header__gnav--back {
  display: block;
  margin-left: 2em;
  font-size: 1.4rem;
  font-weight: 700;
}
.header__gnav--left .header__gnav--back a {
  color: white;
}
@media (max-width: 1400px) {
  .header__gnav--left .header__gnav--back {
    font-size: 1vw;
  }
}

.header__gnav {
  display: block;
}

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

@media (max-width: 1400px) {
  .header__gnav--list {
    padding: 0 2.2857142857vw;
  }
}
.header__gnav--item {
  position: relative;
  white-space: nowrap;
}
.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: -18px;
  left: 50%;
  position: absolute;
  color: #EFDB8B;
  font-size: 0.8rem;
  text-align: center;
  transform: translateX(-50%);
  content: "▼";
}

@media (max-width: 1400px) {
  .header__gnav--item a {
    font-size: 1.1428571429vw;
  }
  .header__gnav--item a::after {
    bottom: -1.4285714286vw;
    font-size: 0.7142857143vw;
  }
}
/* マイアカウント */
.header__gnav--account {
  font-weight: 700;
  background-color: #530011;
  border: 2px solid white;
  border-radius: 8px;
  white-space: nowrap;
}
.header__gnav--account a {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 1.4rem;
  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;
}

@media (max-width: 1400px) {
  /* マイアカウント */
  .header__gnav--account {
    margin-left: 0;
    width: 4.5714285714vw;
    height: 4.5714285714vw;
  }
  .header__gnav--account a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .header__gnav--account a::before {
    margin-right: 0;
    width: 2.2857142857vw;
    height: 2.2857142857vw;
  }
  .header__gnav--account a span {
    display: none;
  }
}
.header__gnav--btn {
  display: none;
}

.header__gnav--close {
  display: none;
}

.header__gnav--entry {
  display: none;
}

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

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

/*--------------------------------------
  バナーエリア
--------------------------------------*/
.cmn__bnr--list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 0 auto;
  padding: 80px 0;
  width: 1200px;
  list-style: none;
}

.cmn__bnr--item {
  width: 368px;
}
.cmn__bnr--item a {
  transition: 0.2s;
}
.cmn__bnr--item a:hover {
  opacity: 0.8;
}

/*--------------------------------------
  コースバナー
--------------------------------------*/
.cmn__course--wrap {
  position: relative;
  padding: 100px 0;
  background: #F4F3EE url(../img/cmn-lineart-bg02.png) center top no-repeat;
  background-size: 100% auto;
}

.cmn__course--logo {
  margin: 0 auto;
  width: 360px;
}

.cmn__course--link {
  display: flex;
  justify-content: space-between;
  margin: 64px auto 0;
  width: 1200px;
  padding-left: 0;
  list-style: none;
}

.cmn__course--btn {
  position: relative;
  width: 368px;
  height: 80px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}
.cmn__course--btn 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;
}
.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__course--btn.royal {
  background-color: #A99200;
}

.cmn__course--btn.elite {
  background-color: #01A7BA;
}

.cmn__course--btn.regular {
  background-color: #9B0020;
}

.cmn__course--btn.u12 {
  background-color: #43A758;
}

/*--------------------------------------
  リンク
--------------------------------------*/
.cmn__link--box {
  padding: 80px 0;
  background: url(../../common/img/cmn-regular-bg-pc.jpg) center top no-repeat;
  background-size: cover;
}

.cmn__link--box--txt {
  color: white;
  font-size: 5.6rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
}
.cmn__link--box--txt i {
  display: block;
  margin-top: 1em;
  color: white;
  font-family: "RakutenSans_Bd", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 1;
}

.cmn__link--list {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding-left: 0;
  width: 784px;
}

.cmn__link--btn {
  display: block;
  margin: 0 auto;
  width: 368px;
  height: 80px;
  background-color: white;
  border: 1px solid #9B0020;
  border-radius: 8px;
}
.cmn__link--btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
}
.cmn__link--btn a .arrow {
  position: absolute;
  right: 20px;
}
.cmn__link--btn a:hover {
  opacity: 0.5;
}

/*--------------------------------------
  トップページに戻る
--------------------------------------*/
.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;
  transition: 0.2s;
}
.cmn__back--btn a .arrow {
  position: absolute;
  left: 20px;
  transform: rotateZ(180deg);
}
.cmn__back--btn a:hover {
  opacity: 0.5;
}

/*--------------------------------------
  footer
--------------------------------------*/
footer {
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: -103px;
  right: 50px;
  z-index: 1;
  display: block;
  width: 152px;
  height: 104px;
  background: url(../img/footer-ship-img.png) center top no-repeat;
  background-size: contain;
}

.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: #9B0020;
}

.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;
  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;
  transition: 0.2s;
}
.footer__nav--contact a i {
  position: absolute;
  right: 20px;
  font-size: 1.6rem;
  font-weight: 300;
}
.footer__nav--contact a:hover {
  opacity: 0.5;
}

.footer__subnav {
  display: flex;
  height: 48px;
  background-color: #9B0020;
  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 white;
}
.footer__subnav--btn a:link {
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
}
.footer__subnav--btn a:visited {
  color: white;
  text-decoration: none;
}
.footer__subnav--btn a:hover {
  color: white;
  text-decoration: underline;
}
.footer__subnav--btn a:active {
  color: white;
  text-decoration: underline;
}

.footer__copyright {
  background-color: #530011;
}

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

/* ページトップ */
#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 {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 2;
  width: 320px;
  height: 80px;
  color: white;
  background-color: #9B0020;
  border: 2px solid white;
  border-radius: 8px;
}
.entry-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}
.entry-btn a i {
  position: absolute;
  right: 20px;
}
.entry-btn a i::before, .entry-btn a i::after {
  background-color: white;
}

@media (max-width: 768px) {
  /*--------------------------------------
  レイアウト
  --------------------------------------*/
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /*--------------------------------------
  header
  --------------------------------------*/
  .header__inner {
    padding: 0 5.1282051282vw;
    width: 100%;
  }
  /* gnav */
  .header__gnav--logo {
    display: block;
    width: 42.8205128205vw;
  }
  .header__gnav--menu {
    height: 16.4102564103vw;
  }
  .header__gnav--left {
    display: block;
  }
  .header__gnav--left .header__gnav--back {
    display: none;
  }
  .header__gnav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    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--list {
    display: block;
    padding: 0;
  }
  .header__gnav--item {
    position: relative;
    margin: 0 5.1282051282vw;
    width: auto;
    text-align: center;
    border-bottom: 1px solid #D58192;
  }
  .header__gnav--item a {
    display: block;
    padding: 6.1538461538vw 0;
    color: #9B0020;
    font-size: 5.1282051282vw;
    text-decoration: none;
  }
  .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--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;
  }
  .header__gnav--close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 5.1282051282vw;
    padding: 6.1538461538vw 0;
    width: auto;
    color: #9B0020;
    font-size: 6.1538461538vw;
    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: #9B0020;
    content: "";
  }
  .header__gnav--close i::before {
    transform: rotateZ(45deg);
  }
  .header__gnav--close i::after {
    transform: translateX(-0.5128205128vw) rotateZ(-45deg);
  }
  .header__gnav--entry {
    display: block;
    position: relative;
    margin: 0 5.1282051282vw 25.641025641vw;
    width: auto;
    background-color: #9B0020;
    border-radius: 8px;
  }
  .header__gnav--entry 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__gnav--entry .arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  .header__gnav--entry .arrow::before, .header__gnav--entry .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: #9B0020;
  }
  .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__bnr--item a:hover {
    opacity: 1;
  }
  /*--------------------------------------
  コースバナー
  --------------------------------------*/
  .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__link--box {
    padding: 15.3846153846vw 0;
  }
  .cmn__link--list {
    display: block;
    margin: 0 auto;
    padding-left: 0;
    width: auto;
  }
  .cmn__link--btn {
    display: block;
    width: auto;
    height: 17.4358974359vw;
  }
  .cmn__link--btn a {
    font-size: 4.1025641026vw;
  }
  .cmn__link--btn a .arrow {
    right: 5.1282051282vw;
  }
  .cmn__link--btn:hover {
    opacity: 1;
  }
  /*--------------------------------------
  トップページに戻る
  --------------------------------------*/
  .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;
  }
  .cmn__back--btn a:hover {
    opacity: 1;
  }
  /*--------------------------------------
  footer
  --------------------------------------*/
  footer::before {
    top: -12.0512820513vw;
    right: 0;
    width: 17.6923076923vw;
    height: 12.3076923077vw;
  }
  .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;
    margin-top: 10.2564102564vw;
    width: auto;
    height: 17.4358974359vw;
  }
  .footer__nav--contact a i {
    right: 5.1282051282vw;
    font-size: 4.1025641026vw;
  }
  .footer__nav--contact a:hover {
    opacity: 1;
  }
  .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:link {
    color: white;
    font-size: 3.5897435897vw;
    text-decoration: none;
  }
  .footer__subnav--btn a:visited {
    color: white;
    text-decoration: none;
  }
  .footer__subnav--btn a:hover {
    color: white;
    text-decoration: underline;
  }
  .footer__subnav--btn a:active {
    color: white;
    text-decoration: underline;
  }
  .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 {
    right: 2.5641025641vw;
    bottom: 2.5641025641vw;
    width: 82.0512820513vw;
    height: 20.5128205128vw;
  }
  .entry-btn a {
    font-size: 4.6153846154vw;
  }
  .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");
}