@charset "UTF-8";
/* ==================================================
[Style]
    1. setting
	2. foundation
	3. Layout
	4. object

================================================== */
/* --------------------------------------------------
	1. setting
-------------------------------------------------- */
/* mixins */
/* functions */
/* typography */
/*
* "SourceHanSans" licensed under the SIL Open Font License
* https://github.com/adobe-fonts/source-han-sans
*/
@font-face {
  font-family: source-han-sans;
  src: url(./fonts/SourceHanSans-Bold.otf) format("opentype");
  font-weight: 700;
  font-display: swap;
}

/* media-query */
/* variables */
/* --------------------------------------------------
	2. foundation
-------------------------------------------------- */
/* reset */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

body {
  color: #000;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.75;
  word-break: normal;
  overflow-wrap: normal;
  word-wrap: normal;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-decoration: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

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

iframe {
  max-width: 100%;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  color: #000;
  font-size: 1rem;
}

textarea {
  resize: none;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* animation */
@-webkit-keyframes textflow {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes textflow {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------
	3. Layout
-------------------------------------------------- */
/* header */
.l-header__inner {
  margin-right: 5.625rem;
}

.l-header__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  height: 90px;
}

.l-header__logo {
  margin-left: min(3%, 45px);
  width: clamp(20.875rem, 24vw, 20.875rem);
}

.l-header__logo-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-header__logo-link-img {
  width: 21.5569%;
  max-width: 72px;
}

.l-header__logo-link-text {
  width: 73.6527%;
  max-width: 246px;
}

.l-header__nav {
  margin-left: auto;
  margin-left: auto;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: min(966px, 60%);
  margin-right: 3.75rem;
}

.l-header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.625rem;
}

.l-header__nav-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  letter-spacing: 0.09em;
  font-weight: 700;
  padding: 1.0625rem 0;
  position: relative;
  color: #141414;
}

.l-header__nav-link::after {
  content: "";
  width: 10px;
  height: 6px;
  background: url(images/common/icon_arrow-down-01.svg) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.l-header__popup {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.l-header__popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.l-header__popup-content {
  padding: 8.4375rem 1.25rem 0;
  overflow-y: auto;
  pointer-events: none;
}

.l-header__popup-body {
  pointer-events: auto;
  padding: 7.625rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 50px;
  position: relative;
  background: url(images/common/bg_blue-02.png) no-repeat center/cover, -webkit-gradient(linear, left top, left bottom, from(#13386c), color-stop(#1c327e), to(#26618d));
  background: url(images/common/bg_blue-02.png) no-repeat center/cover, -webkit-linear-gradient(#13386c, #1c327e, #26618d);
  background: url(images/common/bg_blue-02.png) no-repeat center/cover, linear-gradient(#13386c, #1c327e, #26618d);
}

.l-header__popup-close {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: url(images/common/icon_close.svg) no-repeat center/contain;
  position: absolute;
  top: 2.25rem;
  right: 3.125rem;
}

.l-header__popup-nav {
  max-width: 856px;
  margin: 0 auto;
}

.l-header__popup-list {
  font-weight: 700;
  font-size: 1.5625rem;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3.375rem 0;
  margin: 0 0.5625rem;
}

.l-header__popup-list li {
  width: 25%;
  text-align: center;
}

.l-header__popup-list li:nth-child(4n+1) {
  text-align: left;
}

.l-header__popup-list li:nth-child(4n) {
  text-align: right;
}

.l-header__popup-list li:nth-child(4n + 2) {
  -webkit-transform: translateX(-15%);
  transform: translateX(-15%);
}

.l-header__popup-btn {
  font-size: 1.5625rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  min-height: 74px;
  margin-top: 3.25rem;
}

.l-header__popup-sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 1.875rem;
  margin-top: 3.375rem;
}

.l-hum {
  width: 90px;
  height: 90px;
  background: url("./images/common/bg_hum.jpg") no-repeat center/cover;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.l-hum span {
  display: block;
  width: 40px;
  height: 2px;
  border-radius: 999px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.l-hum span:nth-child(1) {
  top: calc( 50% - 10px);
}

.l-hum span:nth-child(2) {
  width: 28px;
}

.l-hum span:nth-child(3) {
  top: calc( 50% + 10px);
}

@media all and (min-width: 1281px), print {
  .l-header__nav-link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .l-header__nav-link:hover {
    opacity: 0.7;
  }
}

@media only screen and (max-width: 1280px) {
  .l-header__nav {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .l-header__popup-list {
    font-size: 1.5rem;
  }
  .l-header__popup-list a {
    white-space: nowrap;
  }
}

@media only screen and (max-width: 767px) {
  .l-header__logo {
    width: 262px;
    margin-left: 0;
    margin-top: 0.625rem;
  }
  .l-header__logo-link-img {
    max-width: 54px;
  }
  .l-header__logo-link-text {
    max-width: 200px;
    width: 77%;
    margin-top: 0.25rem;
  }
  .l-header__inner {
    padding: 0 0 0 0.75rem;
  }
  .l-header__container {
    height: 84px;
  }
  .l-header__popup-body {
    border-radius: 20px;
    padding-top: 5.375rem;
    padding-bottom: 2.75rem;
    background: url(images/common/bg_blue-02-sp.png) no-repeat center/cover, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
    background: url(images/common/bg_blue-02-sp.png) no-repeat center/cover, -webkit-linear-gradient(#fff, #fff);
    background: url(images/common/bg_blue-02-sp.png) no-repeat center/cover, linear-gradient(#fff, #fff);
  }
  .l-header__popup-content {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }
  .l-header__popup-close {
    top: 0.875rem;
    right: 0.9375rem;
  }
  .l-header__popup-list {
    display: block;
    font-size: 1.25rem;
  }
  .l-header__popup-list li {
    text-align: center !important;
    width: 100%;
  }
  .l-header__popup-list li:nth-child(4n + 2) {
    -webkit-transform: none;
    transform: none;
  }
  .l-header__popup-list li + li {
    margin-top: 1.625rem;
  }
  .l-header__popup-btn {
    margin: 2.375rem auto 0;
    width: 246px;
    max-width: 100%;
    font-size: 1.25rem;
    min-height: 68px;
  }
  .l-header__popup-sns {
    margin-top: 2.4375rem;
  }
  .l-hum {
    width: 84px;
    height: 84px;
  }
}

/* footer */
.l-footer {
  margin-top: 8.625rem;
}

.l-footer__cooperate {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  padding: 3.5rem 1.25rem 3.375rem;
}

.l-footer__cooperate-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(146px, 1fr));
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  row-gap: 1.25rem;
  width: 100%;
  max-width: 1314px;
  margin: 0 auto;
}

.l-footer__cooperate-item {
  border: 1px solid #e3e3e3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-footer__cooperate-item img {
  width: 100%;
}

.l-footer__main {
  text-align: center;
  background: #035886;
  padding: 2.625rem 0 1.625rem;
}

.l-footer__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1.125rem;
}

.l-footer__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 1.875rem;
  margin-top: 1.25rem;
}

.l-footer__link {
  color: #fff;
  margin-top: 2.15625rem;
  font-size: 0.9375rem;
}

.l-footer__link a {
  color: #fff;
  text-decoration: underline;
}

.l-footer__copyright {
  font-weight: 700;
  font-size: 0.5625rem;
  font-family: source-han-sans, sans-serif;
  letter-spacing: 0.44em;
  color: #80d3f8;
  margin-top: 2.625rem;
}

@media only screen and (max-width: 767px) {
  .l-footer {
    margin-top: 4.625rem;
  }
  .l-footer__cooperate {
    padding: 2.1875rem 0.625rem 2.6875rem;
  }
  .l-footer__cooperate-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.75rem 0.375rem;
  }
  .l-footer__cooperate-item {
    width: calc((100% - 12px)/3);
  }
  .l-footer__logo img {
    width: 84px;
  }
  .l-footer__main {
    padding: 1.5625rem 0 0.875rem;
  }
  .l-footer__title {
    margin-top: 0.5625rem;
  }
  .l-footer__sns {
    margin-top: 2.3125rem;
  }
  .l-footer__copyright {
    font-size: 0.4375rem;
    margin-top: 2.25rem;
  }
}

/* main */
.l-inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 1140px;
  max-width: 100%;
  height: inherit;
}

.l-inner.--wide {
  width: 1240px;
}

.l-inner.--narrow {
  width: 1000px;
}

.l-container {
  position: relative;
}

.l-article {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .l-inner {
    padding: 0 20px;
  }
}

/* --------------------------------------------------
	4. object
-------------------------------------------------- */
/* component */
.c-button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 260px;
  min-height: 55px;
  padding: 0 1.875rem 0 0.625rem;
  border-radius: 999px;
  background-color: #035886;
  line-height: 1.2;
  position: relative;
  color: #fff;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

.c-button.--arrow-down::after {
  content: "";
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1rem;
  width: 25px;
  height: 26px;
  background: url(images/common/icon_arrow-down-02.svg) no-repeat center/contain;
}

.c-button-swiper-prev {
  width: 29px;
  height: 66px;
  background: url(images/common/icon_darrow-left-02.png) no-repeat center/contain;
}

.c-button-swiper-prev::after {
  content: none;
}

.c-button-swiper-prev.--black {
  background-image: url(images/common/icon_darrow-left-03.png);
}

.c-button-swiper-next {
  width: 29px;
  height: 66px;
  background: url(images/common/icon_darrow-right-02.png) no-repeat center/contain;
}

.c-button-swiper-next::after {
  content: none;
}

.c-button-swiper-next.--black {
  background-image: url(images/common/icon_darrow-right-03.png);
}

@media all and (min-width: 1281px), print {
  .c-button {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .c-button:hover {
    opacity: 0.7;
  }
}

@media only screen and (max-width: 767px) {
  .c-button-swiper-prev {
    width: 24px;
    height: 56px;
  }
  .c-button-swiper-next {
    width: 24px;
    height: 56px;
  }
  .c-button {
    width: 330px;
    max-width: 100%;
  }
}

.c-heading {
  text-align: center;
}

.c-heading__en {
  display: block;
}

.c-heading__jp {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  font-family: source-han-sans, sans-serif;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0.5625rem;
}

.c-heading__jp span {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #000;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding-bottom: 0.1875rem;
}

.c-heading.--white .c-heading__jp span {
  background-color: #fff;
  color: #243740;
}

.c-heading.--new .c-heading__en {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.c-heading.--new .c-heading__en::before {
  content: "";
  position: absolute;
  left: -2.875rem;
  top: -3.4375rem;
  width: 70px;
  height: 70px;
  background: url(images/common/text_new.png) no-repeat center/contain;
}

.c-heading-sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: source-han-sans, sans-serif;
  color: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0.5625rem;
}

@media only screen and (max-width: 767px) {
  .c-heading-sub {
    font-size: 1.125rem;
  }
}

.c-list-ol {
  list-style: none;
}

.c-list-ol__item {
  font-size: 1.375rem;
  color: #fff;
  font-weight: 700;
  font-family: source-han-sans, sans-serif;
  letter-spacing: 0.02em;
  position: relative;
  border-bottom: 1px;
  line-height: 1.3;
  padding: 0.3125rem 0 0.875rem 3.625rem;
  position: relative;
}

.c-list-ol__item::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 22px;
  background-color: #00a3cc;
  left: 0.3125rem;
  top: 0.3125rem;
}

.c-list-ol__item::after {
  content: "";
  height: 1px;
  left: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
  background: -webkit-repeating-linear-gradient(left, #fff 0px, #fff 4px, transparent 4px, transparent 8px);
  background: repeating-linear-gradient(to right, #fff 0px, #fff 4px, transparent 4px, transparent 8px);
  background-size: 8px 100%;
  background-position: center;
}

.c-list-ol__item + .c-list-ol__item {
  margin-top: 0.3125rem;
}

.c-list-ol__item:nth-child(1)::before {
  background-image: url(images/common/text_num-01.png);
}

.c-list-ol__item:nth-child(2)::before {
  background-image: url(images/common/text_num-02.png);
}

.c-list-ol__item:nth-child(3)::before {
  background-image: url(images/common/text_num-03.png);
}

.c-list-ol__item:nth-child(4)::before {
  background-image: url(images/common/text_num-04.png);
}

.c-list-ol__item:nth-child(5)::before {
  background-image: url(images/common/text_num-05.png);
}

.c-list-dot {
  list-style: none;
  padding-left: 1.5625rem;
}

.c-list-dot__item {
  position: relative;
}

.c-list-dot__item::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
  top: 0.7em;
  left: -0.9375rem;
}

.c-list-dot.--font-02 {
  font-size: 1rem;
  font-weight: 700;
  font-family: source-han-sans, sans-serif;
  letter-spacing: 0.025em;
}

@media only screen and (max-width: 767px) {
  .c-list-ol__item {
    padding: 0.3125rem 0 0.8125rem 2.3125rem;
    line-height: 1.4;
    letter-spacing: 0px;
    font-size: 0.9375rem;
  }
  .c-list-ol__item:nth-child(4), .c-list-ol__item:nth-child(5) {
    margin-right: -0.125rem;
  }
  .c-list-ol__item::before {
    width: 25px;
    height: 25px;
    top: max(4px, 14%);
    left: 0.1875rem;
    background-size: auto 16px;
  }
}

.c-swiper-pagination {
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 9px;
}

.c-swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  border-radius: 0px;
  border: 1px solid #035886;
}

.c-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #035886;
}

.c-swiper-pagination.--black .swiper-pagination-bullet {
  border: 1px solid #000;
}

.c-swiper-pagination.--black .swiper-pagination-bullet-active {
  background: #000;
}

@media only screen and (max-width: 767px) {
  .c-swiper-pagination {
    --swiper-pagination-bullet-width: 6px;
    --swiper-pagination-bullet-height: 6px;
    --swiper-pagination-bullet-horizontal-gap: 7px;
  }
}

/* project */
.p-accordion__item {
  position: relative;
}

.p-accordion__item::after {
  content: "";
  height: 1px;
  left: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
  background: -webkit-repeating-linear-gradient(left, rgba(0, 0, 0, 0.15) 0px, rgba(0, 0, 0, 0.15) 4px, transparent 4px, transparent 8px);
  background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.15) 0px, rgba(0, 0, 0, 0.15) 4px, transparent 4px, transparent 8px);
  background-size: 8px 100%;
  background-position: center;
}

.p-accordion__item:first-child::before {
  content: "";
  height: 1px;
  left: 0;
  top: 0;
  width: 100%;
  position: absolute;
  background: -webkit-repeating-linear-gradient(left, rgba(0, 0, 0, 0.15) 0px, rgba(0, 0, 0, 0.15) 4px, transparent 4px, transparent 8px);
  background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.15) 0px, rgba(0, 0, 0, 0.15) 4px, transparent 4px, transparent 8px);
  background-size: 8px 100%;
  background-position: center;
}

.p-accordion__head {
  position: relative;
  width: 100%;
  padding: 1.25rem 2.375rem 1.3125rem;
  cursor: pointer;
  color: #035886;
  font-weight: 700;
  line-height: 1.375;
  text-align: left;
}

.p-accordion__head::before {
  content: "";
  position: absolute;
  top: 1.1875rem;
  left: 0.125rem;
  width: 24px;
  height: 19px;
  background: url(images/common/text_q.svg) no-repeat center/contain;
}

.p-accordion__head::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0.375rem;
  width: 18px;
  height: 10px;
  background: url(images/common/icon_arrow-down-03.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.p-accordion__head.is-active::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

.p-accordion__content {
  font-weight: 700;
  padding: 0 2.375rem 1.625rem;
  margin-top: 0.3125rem;
  line-height: 1.25;
  position: relative;
}

.p-accordion__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.125rem;
  width: 22px;
  height: 18px;
  background: url(images/common/text_a.svg) no-repeat center/contain;
}

@media only screen and (max-width: 767px) {
  .p-accordion__head {
    font-size: 0.875rem;
    padding: 0.9375rem 1.75rem 0.875rem 2.0625rem;
  }
  .p-accordion__head::before {
    width: 22px;
    height: 16px;
    top: 1rem;
    left: 0.3125rem;
  }
  .p-accordion__head::after {
    width: 14px;
    height: 7px;
    right: 0;
  }
  .p-accordion__content {
    font-size: 0.875rem;
    margin-top: 0.125rem;
    padding: 0 1.875rem 0.75rem 2.0625rem;
    line-height: 1.4285;
  }
  .p-accordion__content::before {
    width: 21px;
    height: 15px;
    left: 0.3125rem;
    top: 0.125rem;
  }
}

.p-anchor-list.--column2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .p-anchor-list.--column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.75rem 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.page-index__change {
  font-weight: bold;
}

.page-index__change-title {
  font-size: 1.375rem;
  text-align: center;
  color: #fff;
  background-color: #000;
  border-radius: 0.375rem 0.375rem 0 0;
  line-height: 0.9;
  padding: 1.25rem 0;
  font-family: source-han-sans, sans-serif;
}

.page-index__change-content {
  padding: 2.0625rem 0 2.6875rem;
  background-color: #F5FBFF;
  border-radius: 0.375rem;
}

.page-index__change-desc {
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #3FB6E7;
}

.page-index__change-ul {
  margin-top: 2.1875rem;
  padding: 0 4.5rem;
}

.page-index__change-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.625rem;
}

.page-index__change-item {
  font-size: 1.125rem;
  line-height: 1.5;
  position: relative;
  letter-spacing: 0.025em;
  padding-bottom: 0.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: source-han-sans, sans-serif;
}

.page-index__change-item::before {
  content: "";
  background-image: url(images/common/img_change_check.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.9375rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.page-index__change-item::after {
  border-bottom: 1px dashed #000;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .page-index__change-title {
    font-size: 1.25rem;
    padding: 1.0625rem 0;
    line-height: 1.75;
    letter-spacing: 0.02em;
  }
  .page-index__change-content {
    padding: 1.25rem 0 2.6875rem;
    background-color: #F5FBFF;
    border-radius: 0 0 0.625rem 0.625rem;
  }
  .page-index__change-desc {
    max-width: 295px;
    margin: 0 auto;
  }
  .page-index__change-ul {
    margin-top: 2.625rem;
    padding: 0 1.25rem;
  }
  .page-index__change-item {
    font-size: 1rem;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .page-index__change-item::before {
    margin-right: 0.4375rem;
  }
}

.p-faq {
  background: #fff;
  border-radius: 6px;
  padding: 1.875rem 3rem 2.625rem;
}

.p-faq__title {
  font-size: 1.625rem;
  font-weight: 700;
  text-align: center;
}

.p-faq__list {
  margin-top: 1.5625rem;
}

@media only screen and (max-width: 767px) {
  .p-faq {
    padding: 1.4375rem 0.75rem 2.125rem;
  }
  .p-faq__title {
    font-size: 1.375rem;
  }
  .p-faq__list {
    margin-top: 1.25rem;
  }
}

.p-goods__item {
  background: url(images/common/bg_goods-01.jpg) no-repeat center/cover;
  border-radius: 10px;
  padding: 0.875rem 0.8125rem 0.75rem;
  width: 400px;
}

.p-goods__item-picture {
  background-color: #fff;
  position: relative;
  aspect-ratio: 374/238;
}

.p-goods__item-picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.p-goods__item-picture img.pd_bottom {
  padding-bottom: 0.9375rem;
}

.p-goods__item-picture-text {
  position: absolute;
  font-size: 0.9375rem;
  bottom: 1px;
  right: 6px;
}

.p-goods__item-info {
  margin-top: 0.625rem;
  height: 150px;
}

.p-goods__item-tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0px 0.375rem;
  min-height: 38px;
}

.p-goods__item-tag-text {
  font-family: source-han-sans, sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #fff;
  background: #000;
  position: relative;
  letter-spacing: 0.025em;
  padding: 0 0.3125rem 0 0.75rem;
  line-height: 1.7;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}

.p-goods__item-tag-text::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
  width: 19px;
  margin-left: -1px;
  background-color: inherit;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.p-goods__item-tag-list {
  background-color: #fff;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 1.5rem;
  padding: 0 0.5rem 0 1.6875rem;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 18px 50%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 18px 50%);
}

.p-goods__item-tag-list.--pl-01 {
  padding-left: 2.125rem;
}

.p-goods__item-tag-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-goods__item-tag-list-item span {
  font-family: source-han-sans, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.035em;
}

.p-goods__item-tag-list-item span.--ls-wide {
  letter-spacing: 0.025em;
  margin-left: 0.375rem;
}

.p-goods__item-tag-list-item img {
  display: inline-block;
  margin-right: 0.3125rem;
}

.p-goods__item-tag-list-item img + img {
  min-width: 18px;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-goods__item-tag-list-item img.diamond {
  height: 18px;
}

.p-goods__item-tag-list-item img.ruby, .p-goods__item-tag-list-item img.emerald {
  height: 19px;
}

.p-goods__item-tag-list-item img.turquoise {
  height: 21px;
}

.p-goods__item-tag-list-item img.junior {
  height: 17px;
}

.p-goods__item-title {
  font-size: 1.625rem;
  font-weight: 700;
  margin-top: 0.4375rem;
}

.p-goods__item-desc {
  font-weight: 700;
  line-height: 1.33;
  font-size: 0.9375rem;
  margin: -0.25rem -0.3125rem 0 0.3125rem;
}

.p-goods__text {
  font-size: 0.9375rem;
  position: absolute;
  left: 15.9375rem;
  bottom: 1.375rem;
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-goods__item {
    width: auto;
    padding: 0.8125rem 0.625rem;
  }
  .p-goods__item-info {
    margin-top: 0.5rem;
    height: auto;
  }
  .p-goods__item-tag {
    min-height: 31px;
  }
  .p-goods__item-tag-text {
    font-size: 0.875rem;
    padding-right: 0.25rem;
    padding-left: 0.625rem;
  }
  .p-goods__item-tag-text::after {
    width: 16px;
  }
  .p-goods__item-tag-list {
    padding-left: 1.25rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 15px 50%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 15px 50%);
  }
  .p-goods__item-tag-list-item img {
    min-width: 0;
    margin-right: 1px;
    min-width: 23px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
  }
  .p-goods__item-tag-list-item img.diamond {
    height: 17px;
  }
  .p-goods__item-tag-list-item img.ruby, .p-goods__item-tag-list-item img.emerald {
    height: 17px;
  }
  .p-goods__item-tag-list-item img.turquoise {
    height: 19px;
  }
  .p-goods__item-tag-list-item img.junior {
    height: 16px;
  }
  .p-goods__item-tag-list-item span {
    font-size: 0.9375rem;
  }
  .p-goods__item-title {
    font-size: 1.3125rem;
  }
  .p-goods__item-desc {
    font-size: 0.75rem;
  }
  .p-goods__text {
    display: none;
  }
}

.p-grade {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.9375rem 1.5625rem;
}

.p-grade__item {
  --color01: #fff;
  --color02: #000;
  --color-text: #000;
  width: calc((100% - 50px)/3);
  background-color: #fff;
  position: relative;
  -webkit-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4);
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4);
  padding-top: 1.5625rem;
  cursor: pointer;
}

.p-grade__item.--disabled {
  pointer-events: none;
}

.p-grade__item.--disabled::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.p-grade__item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(var(--color01)), to(var(--color02)));
  background: -webkit-linear-gradient(left, var(--color01), var(--color02));
  background: linear-gradient(to right, var(--color01), var(--color02));
}

.p-grade__item-img {
  height: 91px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-grade__item-title {
  text-align: center;
  margin-top: 2.25rem;
}

.p-grade__item-title-name img {
  height: 20px;
}

.p-grade__item-title-sub {
  font-family: source-han-sans, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.025em;
}

.p-grade__item-fee {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: source-han-sans, sans-serif;
  font-weight: 700;
  margin-top: 0.75rem;
  position: relative;
  padding-bottom: 8px;
}

.p-grade__item-fee::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 180px;
  height: 1px;
  background-color: rgba(28, 28, 28, 0.5);
  max-width: 100%;
}

.p-grade__item-fee-text01 {
  font-size: 0.71875rem;
  color: #fff;
  width: 16px;
  background-color: #000;
  line-height: 1.1;
  padding: 0.125rem;
  text-align: center;
}

.p-grade__item-fee-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin-left: 0.3125rem;
  line-height: 1;
  margin-right: 0.3125rem;
  letter-spacing: -0.05em;
  margin-top: 0.18em;
}

.p-grade__item-fee-text02 {
  line-height: 1;
}

.p-grade__item-fee-text02 small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: -0.06em;
}

.p-grade__item-fee-text02 span {
  font-size: 1.4375rem;
  letter-spacing: -0.08em;
  display: block;
  margin-top: -0.125rem;
}

.p-grade__item-desc {
  color: var(--color-text);
  font-weight: 700;
  font-size: 1rem;
  font-family: source-han-sans, sans-serif;
  text-align: center;
  line-height: 1.4375;
  margin-top: 0.625rem;
}

.p-grade__item-footer {
  min-height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(var(--color01)), to(var(--color02)));
  background: -webkit-linear-gradient(left, var(--color01), var(--color02));
  background: linear-gradient(to right, var(--color01), var(--color02));
  margin-top: 1.625rem;
}

.p-grade__item-footer-btn {
  width: 38px;
  height: 38px;
  margin: -0.9375rem auto 0;
  border-radius: 50%;
  position: relative;
  background-size: 100% 16px;
  background-repeat: no-repeat;
  background-position: center top;
  padding: 0.375rem;
}

.p-grade__item-footer-btn span {
  background: #000;
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  position: relative;
}

.p-grade__item-footer-btn span::before, .p-grade__item-footer-btn span::after {
  content: "";
  width: 10px;
  height: 1px;
  background: #fff;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
}

.p-grade__item-footer-btn span::after {
  -webkit-transform: translateX(-50%) rotate(-90deg);
  transform: translateX(-50%) rotate(-90deg);
}

.p-grade__item.--diamond {
  --color-text: #25739d;
}

.p-grade__item.--diamond::before {
  background: -webkit-gradient(linear, left top, right top, from(#a4faff), color-stop(#fcb1c1), color-stop(#fdea90), color-stop(#adffac), color-stop(#82ddf3), to(#ca95ff));
  background: -webkit-linear-gradient(left, #a4faff, #fcb1c1, #fdea90, #adffac, #82ddf3, #ca95ff);
  background: linear-gradient(to right, #a4faff, #fcb1c1, #fdea90, #adffac, #82ddf3, #ca95ff);
}

.p-grade__item.--diamond .p-grade__item-img {
  padding-top: 0.625rem;
}

.p-grade__item.--diamond .p-grade__item-footer {
  background: -webkit-gradient(linear, left top, right top, from(#a4faff), color-stop(#fcb1c1), color-stop(#fdea90), color-stop(#adffac), color-stop(#82ddf3), to(#ca95ff));
  background: -webkit-linear-gradient(left, #a4faff, #fcb1c1, #fdea90, #adffac, #82ddf3, #ca95ff);
  background: linear-gradient(to right, #a4faff, #fcb1c1, #fdea90, #adffac, #82ddf3, #ca95ff);
}

.p-grade__item.--diamond .p-grade__item-footer-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#e7f299), to(#b0ffab));
  background-image: -webkit-linear-gradient(left, #e7f299, #b0ffab);
  background-image: linear-gradient(to right, #e7f299, #b0ffab);
}

.p-grade__item.--emerald {
  --color01: #009a72;
  --color02: #45c88f;
  --color-text: #009a72;
}

.p-grade__item.--emerald .p-grade__item-footer-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#1baf7e), to(#27b683));
  background-image: -webkit-linear-gradient(left, #1baf7e, #27b683);
  background-image: linear-gradient(to right, #1baf7e, #27b683);
}

.p-grade__item.--ruby {
  --color01: #cd2041;
  --color02: #f65c8b;
  --color-text: #ec4069;
}

.p-grade__item.--ruby .p-grade__item-footer-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#dc3e63), to(#e2456d));
  background-image: -webkit-linear-gradient(left, #dc3e63, #e2456d);
  background-image: linear-gradient(to right, #dc3e63, #e2456d);
}

.p-grade__item.--turquoise {
  --color01: #1399bd;
  --color02: #43d9dc;
  --color-text: #1d98bb;
}

.p-grade__item.--turquoise .p-grade__item-footer-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#39b1c9), to(#3ebccd));
  background-image: -webkit-linear-gradient(left, #39b1c9, #3ebccd);
  background-image: linear-gradient(to right, #39b1c9, #3ebccd);
}

.p-grade__item.--junior {
  --color01: #f7ff3f;
  --color02: #f7bc3f;
  --color-text: #e49100;
}

.p-grade__item.--junior .p-grade__item-footer-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#f2e94a), to(#f2de4a));
  background-image: -webkit-linear-gradient(left, #f2e94a, #f2de4a);
  background-image: linear-gradient(to right, #f2e94a, #f2de4a);
}

.p-grade__item.--norinori {
  --color01: #638B3A;
  --color02: #99C846;
  --color-text: #518C0D;
}

.p-grade__item.--norinori .p-grade__item-footer-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#7EAA40), to(#84B041));
  background-image: -webkit-linear-gradient(left, #7EAA40, #84B041);
  background-image: linear-gradient(to right, #7EAA40, #84B041);
}

.p-grade__lock {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-family: source-han-sans, sans-serif;
  border: 1px solid #fff;
}

.p-grade__lock p {
  font-size: 0.9375rem;
  line-height: 1.4;
}

.p-grade__lock strong {
  font-size: 1.5rem;
  font-weight: 700;
}

.p-grade__lock span {
  display: inline-block;
  margin-top: 0.25rem;
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .p-grade__item {
    width: calc((100% - 25px)/3);
  }
}

@media only screen and (max-width: 767px) {
  .p-grade {
    display: block;
  }
  .p-grade__content {
    margin-left: 0.1875rem;
    padding-top: 0.375rem;
  }
  .p-grade__item {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0 0 0.5rem;
    min-height: 83px;
  }
  .p-grade__item::before {
    background: -webkit-gradient(linear, left bottom, left top, from(var(--color01)), to(var(--color02)));
    background: -webkit-linear-gradient(bottom, var(--color01), var(--color02));
    background: linear-gradient(to top, var(--color01), var(--color02));
  }
  .p-grade__item + .p-grade__item {
    margin-top: 0.75rem;
  }
  .p-grade__item::before {
    height: 100%;
    width: 8px;
  }
  .p-grade__item-img {
    height: auto;
    width: 67px;
  }
  .p-grade__item-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;
    gap: 0 0.25rem;
  }
  .p-grade__item-title-sub {
    font-size: 0.8125rem;
  }
  .p-grade__item-title-name img {
    height: 16px;
  }
  .p-grade__item-desc {
    display: none;
  }
  .p-grade__item-fee {
    padding-bottom: 0;
    border-bottom: none;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-top: 0;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .p-grade__item-fee::after {
    content: none;
  }
  .p-grade__item-fee-text01 {
    width: auto;
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem 0.25rem;
    position: relative;
    top: -0.4375rem;
  }
  .p-grade__item-fee-number {
    margin-top: 0;
    font-size: 2.1875rem;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .p-grade__item-fee-text02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 0 0.3125rem;
    margin-bottom: 0.5rem;
  }
  .p-grade__item-fee-text02 span {
    font-size: 0.9375rem;
  }
  .p-grade__item-fee-text02 small {
    font-size: 0.5rem;
  }
  .p-grade__item-footer {
    background: none !important;
    min-height: unset;
    margin-top: 0;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .p-grade__item-footer-btn {
    padding: 0;
    margin: 0;
    width: 20px;
    height: 20px;
  }
  .p-grade__item-footer-btn span::before, .p-grade__item-footer-btn span::after {
    width: 8px;
  }
  .p-grade__item.--diamond::before {
    background: -webkit-gradient(linear, left bottom, left top, from(#ffe6ff), to(#2ab3ff));
    background: -webkit-linear-gradient(bottom, #ffe6ff, #2ab3ff);
    background: linear-gradient(to top, #ffe6ff, #2ab3ff);
  }
  .p-grade__item.--diamond .p-grade__item-img {
    padding-top: 0rem;
  }
  .p-grade__item.--diamond .p-grade__item-img img {
    width: 42px;
  }
  .p-grade__item.--emerald .p-grade__item-img img {
    width: 30px;
  }
  .p-grade__item.--ruby .p-grade__item-img img {
    width: 42px;
  }
  .p-grade__item.--turquoise .p-grade__item-img img {
    width: 30px;
  }
  .p-grade__item.--junior .p-grade__item-img img {
    width: 45px;
  }
  .p-grade__item.--norinori .p-grade__item-img img {
    width: 40px;
  }
  .p-grade__lock {
    width: 74px;
    height: 74px;
  }
  .p-grade__lock p {
    font-size: 0.5625rem;
  }
  .p-grade__lock strong {
    font-size: 0.875rem;
  }
  .p-grade__lock span {
    margin-top: 0.125rem;
  }
}

.p-mainvisual {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.p-mainvisual__item {
  height: 100%;
}

.p-mainvisual__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.p-mainvisual__text {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  margin: 0 auto;
  text-align: center;
  bottom: -1.25rem;
  padding-left: 0.5rem;
  max-width: 80%;
}

@media only screen and (max-width: 767px) {
  .p-mainvisual {
    height: auto;
  }
  .p-mainvisual__text {
    left: 0.5625rem;
    right: 0.25rem;
    padding-left: 0;
    bottom: -0.1875rem;
    max-width: 360px;
  }
  .p-mainvisual__text img {
    width: 100%;
    max-width: 520px;
  }
}

.p-new-member {
  height: 153px;
  background: url(images/common/bg_member-01.jpg) no-repeat center/cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-new-member__inner {
  margin: 0 auto;
  width: 723px;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.p-new-member__inner::before, .p-new-member__inner::after {
  content: "";
  width: 54px;
  height: 86px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-new-member__inner::before {
  background: url(images/common/icon_darrow-right-01.png) no-repeat center/contain;
  left: 0;
}

.p-new-member__inner::after {
  background: url(images/common/icon_darrow-left-01.png) no-repeat center/contain;
  right: 0;
}

.p-new-member__text {
  position: relative;
  color: #fdd70a;
  font-family: source-han-sans, sans-serif;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  padding-left: 3.125rem;
  margin-top: 0.875rem;
}

.p-new-member__text::before {
  content: "";
  width: 46px;
  height: 53px;
  position: absolute;
  left: -0.75rem;
  top: 0.8125rem;
  background: url(images/common/icon_member-01.png) no-repeat center/contain;
}

.p-new-member__text-jp {
  display: block;
  font-size: 4.25rem;
  letter-spacing: 0.10em;
  line-height: 1;
  text-shadow: 4px 4px rgba(0, 0, 0, 0.28);
}

.p-new-member__text-en {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.6em;
  margin-top: 0.5rem;
  margin-right: 1rem;
  text-shadow: 4px 4px rgba(0, 0, 0, 0.28);
}

@media only screen and (max-width: 767px) {
  .p-new-member {
    height: 107px;
  }
  .p-new-member__inner {
    width: 330px;
    max-width: calc(100% - 20px);
  }
  .p-new-member__inner::before, .p-new-member__inner::after {
    width: 25px;
    height: 41px;
  }
  .p-new-member__text {
    padding-left: 2.1875rem;
    margin-top: 0.375rem;
  }
  .p-new-member__text::before {
    width: 27px;
    top: -4px;
    left: 0px;
  }
  .p-new-member__text-jp {
    font-size: 2.5rem;
    text-shadow: 2px 3px rgba(0, 0, 0, 0.28);
  }
  .p-new-member__text-en {
    font-size: 0.4375rem;
    margin-top: 0.375rem;
    margin-right: 0.625rem;
    text-shadow: 3px 3px rgba(0, 0, 0, 0.28);
  }
}

.p-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  cursor: pointer;
}

.p-modal__content {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1.25rem;
  overflow-x: auto;
}

.p-modal__content::-webkit-scrollbar {
  display: none;
}

.p-modal__body {
  pointer-events: auto;
  margin: auto;
  position: relative;
  max-width: 100%;
}

.p-modal__close {
  position: absolute;
  right: -1.5625rem;
  top: -1.125rem;
  cursor: pointer;
  z-index: 1;
  padding: 0;
}

.p-modal__grade {
  background-color: #fff;
  -webkit-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4);
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4);
  position: relative;
  width: 600px;
  max-width: 100%;
}

.p-modal__grade::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
}

.p-modal__grade-inner {
  padding: 1rem 2.125rem 0;
}

.p-modal__grade-head {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 164px;
  position: relative;
  z-index: 1;
}

.p-modal__grade-head-img {
  text-align: center;
  padding: 0 0.5rem;
  width: 33%;
}

.p-modal__grade-head-title .name {
  margin-left: 0.1875rem;
}

.p-modal__grade-head-title .name img {
  height: 20px;
  display: inline-block;
  margin-right: 0.25rem;
}

.p-modal__grade-head-title .name span {
  font-weight: 700;
  font-size: 1.125rem;
  font-family: source-han-sans, sans-serif;
  letter-spacing: 0.025em;
}

.p-modal__grade-head-title .desc {
  font-weight: 700;
  font-size: 1.25rem;
  font-family: source-han-sans, sans-serif;
  line-height: 1.4;
  margin-top: 0.5rem;
}

.p-modal__grade-head-title .desc.--color-01 {
  color: #25739d;
}

.p-modal__grade-head-title .desc.--color-02 {
  color: #009a72;
}

.p-modal__grade-head-title .desc.--color-03 {
  color: #ec4069;
}

.p-modal__grade-head-title .desc.--color-04 {
  color: #1d98bb;
}

.p-modal__grade-head-title .desc.--color-05 {
  color: #e49100;
}

.p-modal__grade-head-title .desc.--small {
  font-size: 0.875rem;
}

.p-modal__grade-head-title .desc.--color-06 {
  color: #518C0D;
}

.p-modal__grade-head-note {
  margin-left: auto;
}

.p-modal__grade-head-note-02 {
  position: absolute;
  top: 53%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -1.125rem;
  z-index: -1;
}

.p-modal__grade-content {
  overflow: auto;
  max-height: 510px;
  padding: 0.625rem 3rem;
  margin-top: 0.625rem;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.p-modal__grade-content::-webkit-scrollbar {
  width: 13px;
}

.p-modal__grade-content::-webkit-scrollbar-track {
  background: #efefef;
}

.p-modal__grade-content::-webkit-scrollbar-thumb {
  background: #b2b2b2;
  border-radius: 7px;
}

.p-modal__grade-title {
  font-weight: 700;
  font-size: 1.125rem;
  font-family: source-han-sans, sans-serif;
  letter-spacing: 0.025em;
  position: relative;
}

.p-modal__grade-title:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #000;
  margin-right: 0.125rem;
}

.p-modal__grade-title:not(:first-child) {
  margin-top: 2.5rem;
}

.p-modal__grade-title.--mt-02 {
  margin-top: 1.625rem;
}

.p-modal__grade-list {
  margin-top: 0.125rem;
}

.p-modal__grade-list.--mt-02 {
  margin-top: 0.375rem;
}

.p-modal__grade-btn {
  margin-top: 1.25rem;
  min-height: 82px;
  position: relative;
  font-weight: 700;
  font-family: source-han-sans, sans-serif;
  font-size: 2.5rem;
  color: #fdd70a;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.4);
  background: url(images/common/bg_gradient-blue-01.png) no-repeat center/cover;
}

.p-modal__grade-btn::after {
  content: "";
  width: 28px;
  height: 42px;
  background: url(images/common/icon_darrow-right-01.png) no-repeat center/contain;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-modal__grade-btn.--disabled {
  background: #585858;
  font-size: 2rem;
}

.p-modal__grade-btn.--disabled::after {
  display: none;
}

.p-modal__grade.--diamond::before {
  background: -webkit-gradient(linear, left top, right top, from(#a4faff), color-stop(#fcb1c1), color-stop(#fdea90), color-stop(#adffac), color-stop(#82ddf3), to(#ca95ff));
  background: -webkit-linear-gradient(left, #a4faff, #fcb1c1, #fdea90, #adffac, #82ddf3, #ca95ff);
  background: linear-gradient(to right, #a4faff, #fcb1c1, #fdea90, #adffac, #82ddf3, #ca95ff);
}

.p-modal__grade.--emerald::before {
  background: -webkit-gradient(linear, left top, right top, from(#009a72), to(#45c88f));
  background: -webkit-linear-gradient(left, #009a72, #45c88f);
  background: linear-gradient(to right, #009a72, #45c88f);
}

.p-modal__grade.--ruby:before {
  background: -webkit-gradient(linear, left top, right top, from(#cd2041), to(#f65c8b));
  background: -webkit-linear-gradient(left, #cd2041, #f65c8b);
  background: linear-gradient(to right, #cd2041, #f65c8b);
}

.p-modal__grade.--turquoise:before {
  background: -webkit-gradient(linear, left top, right top, from(#1399bd), to(#43d9dc));
  background: -webkit-linear-gradient(left, #1399bd, #43d9dc);
  background: linear-gradient(to right, #1399bd, #43d9dc);
}

.p-modal__grade.--junior:before {
  background: -webkit-gradient(linear, left top, right top, from(#f7ff3f), to(#f7bc3f));
  background: -webkit-linear-gradient(left, #f7ff3f, #f7bc3f);
  background: linear-gradient(to right, #f7ff3f, #f7bc3f);
}

.p-modal__grade.--norinori:before {
  background: -webkit-gradient(linear, left top, right top, from(#638B3A), to(#99C846));
  background: -webkit-linear-gradient(left, #638B3A, #99C846);
  background: linear-gradient(to right, #638B3A, #99C846);
}

@media only screen and (max-width: 767px) {
  .p-modal__close {
    right: -0.9375rem;
    top: -0.75rem;
  }
  .p-modal__close img {
    width: 30px;
  }
  .p-modal__grade {
    width: 400px;
  }
  .p-modal__grade::before {
    height: 8px;
  }
  .p-modal__grade-inner {
    padding: 0.5rem 1rem 0;
  }
  .p-modal__grade-content {
    padding: 0.25rem 0.625rem 0.625rem;
    max-height: 290px;
  }
  .p-modal__grade-content::-webkit-scrollbar {
    width: 10px;
  }
  .p-modal__grade-head {
    min-height: 100px;
  }
  .p-modal__grade-head-title .name {
    margin-left: 0;
  }
  .p-modal__grade-head-title .name img {
    height: 16px;
  }
  .p-modal__grade-head-title .name span {
    font-size: 0.8125rem;
    letter-spacing: 0;
  }
  .p-modal__grade-head-title .desc {
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
  .p-modal__grade-head-title .desc.--small {
    font-size: 0.625rem;
  }
  .p-modal__grade-head-note img {
    width: 56px;
  }
  .p-modal__grade-head-note-02 {
    right: 0;
  }
  .p-modal__grade-head-note-02 img {
    width: 90px;
  }
  .p-modal__grade-head-img {
    padding: 0;
    margin-right: 0.5rem;
    width: 20%;
  }
  .p-modal__grade-title {
    font-size: 1rem;
  }
  .p-modal__grade-title:before {
    width: 12px;
    height: 12px;
  }
  .p-modal__grade-title:not(:first-child) {
    margin-top: 1.25rem;
  }
  .p-modal__grade-title.--mt-02 {
    margin-top: 1.25rem;
  }
  .p-modal__grade-list {
    margin-top: 0.25rem;
  }
  .p-modal__grade-list.--mt-02 {
    margin-top: 0.25rem;
  }
  .p-modal__grade-list.c-list-dot {
    font-size: 0.875rem;
    padding-left: 1.5625rem;
  }
  .p-modal__grade-list .c-list-dot__item::before {
    width: 6px;
    height: 6px;
    top: 0.8em;
  }
  .p-modal__grade-btn {
    min-height: 50px;
    font-size: 1.5rem;
    margin-top: 0.625rem;
  }
  .p-modal__grade-btn::after {
    width: 14px;
    right: 1.25rem;
  }
  .p-modal__grade-btn.--disabled {
    font-size: 1.125rem;
  }
  .p-modal__grade.--diamond .p-modal__grade-head-img img {
    width: 42px;
  }
  .p-modal__grade.--emerald .p-modal__grade-head-img img {
    width: 30px;
  }
  .p-modal__grade.--ruby .p-modal__grade-head-img img {
    width: 42px;
  }
  .p-modal__grade.--turquoise .p-modal__grade-head-img img {
    width: 30px;
  }
  .p-modal__grade.--junior .p-modal__grade-head-img img {
    width: 45px;
  }
}

.p-news__item {
  display: block;
}

.p-news__item-img {
  aspect-ratio: 700/325;
  position: relative;
}

.p-news__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-news__item-info {
  min-height: 75px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 0.5rem 3.75rem 0.5rem 1.25rem;
  gap: 1.75rem;
  background-color: #232323;
}

.p-news__item-info::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: 1.5625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -2px;
  background: url(images/common/icon_arrow-right-01.svg) no-repeat center/contain;
}

.p-news__item-date {
  font-weight: 700;
  font-size: 1rem;
  color: #838383;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-news__item-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

@media all and (min-width: 1281px), print {
  .p-news__item {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .p-news__item:hover {
    opacity: 0.7;
  }
}

@media only screen and (max-width: 767px) {
  .p-news__item-info {
    min-height: 115px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 1rem;
    padding-right: 2rem;
    gap: 0;
  }
  .p-news__item-info::after {
    content: none;
  }
  .p-news__item-title {
    line-height: 1.5;
    margin-top: 0.125rem;
  }
}

.p-others {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 1.875rem;
}

.p-others__item {
  width: calc((100% - 60px) / 3);
}

.p-others__item-img {
  aspect-ratio: 300/180;
}

.p-others__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-others__item-content {
  background-color: #fff;
  text-align: center;
  padding: 0.5rem;
}

.p-others__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: source-han-sans, sans-serif;
}

.p-others__item-sub {
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: source-han-sans, sans-serif;
  font-style: italic;
  color: #00afeb;
  letter-spacing: 0.48em;
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .p-others {
    gap: 0 1.25rem;
  }
  .p-others__item {
    width: calc((100% - 40px) / 3);
  }
  .p-others__item-title {
    font-size: 1.125rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-others {
    display: block;
  }
  .p-others__item {
    width: 100%;
  }
  .p-others__item:nth-child(2) .p-others__item-img img {
    -o-object-position: center 70%;
    object-position: center 70%;
  }
  .p-others__item:nth-child(3) .p-others__item-img img {
    -o-object-position: center 28%;
    object-position: center 28%;
  }
  .p-others__item + .p-others__item {
    margin-top: 1.5625rem;
  }
  .p-others__item-img {
    aspect-ratio: 270/110;
  }
  .p-others__item-title {
    font-size: 1rem;
  }
  .p-others__item-sub {
    font-size: 0.4375rem;
    letter-spacing: 0.52em;
  }
}

.p-rewards__item {
  background: url(images/common/bg_reward-01.jpg) no-repeat center/cover;
  border-radius: 10px;
  padding: 0.8125rem 0.8125rem 1.25rem;
  min-height: 400px;
}

.p-rewards__item-picture {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.p-rewards__item-picture-num {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  line-height: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  top: 3px;
  left: 13px;
}

.p-rewards__item-picture-num.--num-10 {
  left: 0.375rem;
}

.p-rewards__item-picture-num.--num-15 {
  left: 0.375rem;
}

.p-rewards__item-picture-num .num {
  font-size: 7.375rem;
  letter-spacing: -0.015em;
  margin-right: 0.25rem;
  font-weight: 400;
}

.p-rewards__item-picture-num .num.--ls-wide {
  letter-spacing: -0.055em;
  margin-right: 0.625rem;
}

.p-rewards__item-picture-num .text {
  letter-spacing: 0.02em;
  font-size: 2.4375rem;
  text-align: center;
  margin-top: 0.625rem;
  font-family: source-han-sans, sans-serif;
}

.p-rewards__item-picture-num .text small {
  font-size: 1rem;
  display: block;
}

.p-rewards__item-picture-note {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: -0.06em;
  color: #606060;
  position: absolute;
  left: 0.625rem;
  bottom: 0.125rem;
}

.p-rewards__item-picture-img {
  aspect-ratio: 374/238;
  width: 100%;
}

.p-rewards__item-picture-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.p-rewards__item-info {
  margin-top: 1.25rem;
}

.p-rewards__item-tag {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  border: 1px solid #ffffff;
  font-size: 1.25rem;
  display: inline-block;
  line-height: 1.33;
  padding: 0 0.75rem 0 0.375rem;
}

.p-rewards__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.p-rewards__item-desc {
  color: #fff;
  font-weight: 700;
  line-height: 1.33;
  font-size: 0.9375rem;
  margin-top: -0.125rem;
  line-break: anywhere;
}

@media only screen and (max-width: 767px) {
  .p-rewards__item {
    padding: 0.8125rem 0.6875rem 0.9375rem;
    min-height: unset;
  }
  .p-rewards__item-picture-num {
    left: 0.625rem;
  }
  .p-rewards__item-picture-num .num {
    font-size: 6.0625rem;
  }
  .p-rewards__item-picture-num .num.--ls-wide {
    margin-right: 0.5rem;
  }
  .p-rewards__item-picture-num .text {
    font-size: 2rem;
  }
  .p-rewards__item-picture-num .text small {
    font-size: 0.8125rem;
  }
  .p-rewards__item-picture-note {
    font-size: 0.5625rem;
    left: 0.5625rem;
    bottom: 0;
  }
  .p-rewards__item-tag {
    font-size: 1rem;
  }
  .p-rewards__item-title {
    font-size: 1.25rem;
  }
  .p-rewards__item-desc {
    font-size: 0.75rem;
    margin-left: 0.1875rem;
  }
  .p-rewards__item-info {
    margin-top: 0.875rem;
  }
}

.p-side {
  position: fixed;
  z-index: 10;
  right: 1rem;
  bottom: 3.4375rem;
  bottom: 1.875rem;
}

.p-side__button {
  position: relative;
  width: 60px;
  height: 276px;
  border-radius: 30px;
  display: block;
  background: url(images/common/bg_button-01.png) no-repeat center/cover;
  -webkit-box-shadow: 6px 6px rgba(0, 26, 68, 0.18);
  box-shadow: 6px 6px rgba(0, 26, 68, 0.18);
  text-align: center;
  padding-top: 1.625rem;
}

.p-side.is-footer {
  position: absolute;
  bottom: -3.4375rem;
}

@media all and (min-width: 1281px), print {
  .p-side__button img {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .p-side__button:hover img {
    opacity: 0.7;
  }
}

@media only screen and (max-width: 767px) {
  .p-side {
    right: 0.625rem;
    bottom: 26.8%;
  }
  .p-side__button {
    width: 37px;
    height: 175px;
    -webkit-box-shadow: 4px 4px rgba(0, 26, 68, 0.18);
    box-shadow: 4px 4px rgba(0, 26, 68, 0.18);
    padding-top: 1rem;
  }
  .p-side__button img {
    width: 25px;
  }
}

.p-slideshow__swiper-slide {
  width: 700px;
  max-width: calc(100% - 160px);
}

.p-slideshow__swiper-pagination {
  display: none;
}

.p-slideshow__swiper-nav {
  position: absolute;
  z-index: 10;
  width: 860px;
  max-width: 100%;
  top: calc(50% - 5px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-slideshow__swiper-prev {
  margin: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 1.5625rem;
}

.p-slideshow__swiper-next {
  margin: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1.5625rem;
}

.p-slideshow-02__swiper {
  padding-bottom: 6.5rem;
  padding-left: 1.5625rem;
}

.p-slideshow-02__swiper-slide {
  width: 400px;
  margin-right: 2rem;
}

.p-slideshow-02__swiper-nav {
  position: absolute;
  z-index: 10;
  width: 380px;
  max-width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
}

.p-slideshow-02__swiper-prev {
  margin: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  left: 1.5625rem;
}

.p-slideshow-02__swiper-next {
  margin: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  right: 1.5625rem;
}

.p-slideshow-02__swiper-pagination.swiper-pagination-bullets {
  bottom: 1.375rem;
}

.p-slideshow-02.--good .p-slideshow-02__swiper {
  padding-left: 2.125rem;
  padding-bottom: 7.1875rem;
}

.p-slideshow-02.--good .p-slideshow-02__swiper-slide {
  margin-right: 2.0625rem;
}

.p-slideshow-02.--good .p-slideshow-02__swiper-nav {
  width: 332px;
}

@media only screen and (max-width: 767px) {
  .p-slideshow__swiper {
    padding-bottom: 5.25rem;
  }
  .p-slideshow__swiper-slide {
    width: auto;
    max-width: unset;
  }
  .p-slideshow__swiper-pagination {
    display: block;
  }
  .p-slideshow__swiper-pagination.swiper-pagination-bullets {
    bottom: 1.25rem;
  }
  .p-slideshow__swiper-nav {
    bottom: 0;
    top: auto;
    width: 300px;
    max-width: calc(100% - 20px);
  }
  .p-slideshow__swiper-prev, .p-slideshow__swiper-next {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .p-slideshow-02__swiper {
    padding-left: 0rem;
    padding-bottom: 5.625rem;
  }
  .p-slideshow-02__swiper-slide {
    width: auto;
    margin-right: 0;
  }
  .p-slideshow-02__swiper-nav {
    width: 300px;
  }
  .p-slideshow-02__swiper-pagination.swiper-pagination-bullets {
    bottom: 20px;
  }
  .p-slideshow-02.--good .p-slideshow-02__swiper {
    padding-left: 0;
    padding-bottom: 0;
  }
  .p-slideshow-02.--good .p-slideshow-02__swiper-slide {
    margin-right: 0;
  }
  .p-slideshow-02.--good .p-slideshow-02__swiper-slide + .p-slideshow-02__swiper-slide {
    margin-top: 1.25rem;
  }
  .p-slideshow-02.--good .p-slideshow-02__swiper-slide:nth-child(2) .p-goods__item-picture img {
    width: 87%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .p-slideshow-02.--good .p-slideshow-02__swiper-wrapper {
    display: block;
  }
  .p-slideshow-02.--good .p-slideshow-02__swiper-nav, .p-slideshow-02.--good .p-slideshow-02__swiper-pagination {
    display: none;
  }
}

.p-tickets__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 3px solid #000;
  margin-right: 8px;
  -webkit-box-shadow: 8px 8px #000;
  box-shadow: 8px 8px #000;
}

.p-tickets__item + .p-tickets__item {
  margin-top: 1.625rem;
}

.p-tickets__item-num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 3px solid #000;
  width: 84px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.p-tickets__item-num img {
  height: 55px;
  width: auto;
}

.p-tickets__item-content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 1.5625rem 1.25rem 0.625rem;
}

.p-tickets__item-tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0px 1.875rem;
}

.p-tickets__item-tag-text {
  font-family: source-han-sans, sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #fff;
  background: #000;
  position: relative;
  letter-spacing: 0.025em;
  padding: 0 0.1875rem 0 0.625rem;
  line-height: 1.7;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-tickets__item-tag-text::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
  width: 15px;
  margin-left: -1px;
  background-color: inherit;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.p-tickets__item-tag-sym {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 1.25rem;
}

.p-tickets__item-tag-sym-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -0.125rem;
}

.p-tickets__item-tag-sym-item span {
  font-family: source-han-sans, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.p-tickets__item-tag-sym-item span.--ls-wide {
  letter-spacing: 0.025em;
}

.p-tickets__item-tag-sym-item img {
  display: inline-block;
  margin-right: 0.3125rem;
}

.p-tickets__item-tag-sym-item img + img {
  min-width: 18px;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-tickets__item-tag-sym-item img.diamond {
  height: 18px;
}

.p-tickets__item-tag-sym-item img.ruby, .p-tickets__item-tag-sym-item img.emerald {
  height: 19px;
}

.p-tickets__item-tag-sym-item img.turquoise {
  height: 21px;
}

.p-tickets__item-tag-sym-item img.junior {
  height: 17px;
}

.p-tickets__item-tag-sym-item img.norinori {
  height: 20px;
}

.p-tickets__item-title {
  font-weight: 700;
  font-family: source-han-sans, sans-serif;
  font-size: 1.375rem;
  margin-top: -0.25rem;
  letter-spacing: 0.04em;
}

.p-tickets__item-title strong {
  font-size: 2.125rem;
  color: #ec4069;
}

.p-tickets__item-title span {
  font-size: 1.5rem;
}

.p-tickets__item-title.--big {
  font-size: 1.5rem;
}

.p-tickets__item-desc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-family: source-han-sans, sans-serif;
  font-weight: 700;
  margin-top: 0.375rem;
  gap: 0.5rem 2.125rem;
  margin-bottom: 0.875rem;
}

.p-tickets__item-desc-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 0.375rem;
}

.p-tickets__item-desc-tag {
  letter-spacing: -0.035em;
  border: 1px solid #000;
  padding: 0 0.75rem;
}

.p-tickets__item-desc-text {
  font-size: 1.0625rem;
  letter-spacing: -0.035em;
}

@media only screen and (max-width: 767px) {
  .p-tickets__item {
    position: relative;
  }
  .p-tickets__item + .p-tickets__item {
    margin-top: 2rem;
  }
  .p-tickets__item-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 65px;
    height: 53px;
    padding: 0 0 0.25rem;
    border-bottom: 3px solid #000;
  }
  .p-tickets__item-num img {
    height: 31px;
  }
  .p-tickets__item-content {
    padding: 0.75rem 0 1.0625rem;
  }
  .p-tickets__item-tag {
    margin-left: 5.1875rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0 1rem;
    min-height: 39px;
  }
  .p-tickets__item-tag-text {
    font-size: 0.9375rem;
    margin-top: 0;
    line-height: 1.6;
  }
  .p-tickets__item-tag-text::after {
    width: 12px;
  }
  .p-tickets__item-tag-sym-item {
    margin-top: -0.375rem;
  }
  .p-tickets__item-tag-sym-item:only-of-type {
    margin-top: -0.125rem;
  }
  .p-tickets__item-tag-sym-item span {
    font-size: 1.0625rem;
    letter-spacing: -0.1em;
  }
  .p-tickets__item-tag-sym-item img:only-of-type {
    margin-left: 0.625rem;
    min-width: 22px;
    margin-right: 0;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .p-tickets__item-tag-sym-item img + img {
    min-width: 15px;
  }
  .p-tickets__item-title {
    text-align: center;
    padding: 0 1.0625rem;
    margin-top: 0.5rem;
    line-height: 1.3;
  }
  .p-tickets__item-title strong {
    font-size: 2.125rem;
  }
  .p-tickets__item-desc {
    margin: 0.5rem auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: table;
    margin-bottom: 0;
  }
  .p-tickets__item-desc-tag {
    width: 96px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: center;
    padding: 0 0.125rem;
  }
  .p-tickets__item-desc-item {
    margin-left: 1.0625rem;
  }
  .p-tickets__item-desc-item + .p-tickets__item-desc-item {
    margin-top: 0.375rem;
  }
}

/* pages */
/* page index */
.page-index__news {
  padding-top: 4.875rem;
}

.page-index__news-slide {
  margin-top: 2.125rem;
}

.page-index__member {
  z-index: 1;
  position: relative;
  margin-top: 10.625rem;
  padding: 2.8125rem 0 7.5rem;
  min-height: 770px;
}

.page-index__member-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.page-index__member-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 1620px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(images/index/bg_membership-01.jpg) no-repeat center 38%/cover;
}

.page-index__member-text01 {
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  font-family: source-han-sans, sans-serif;
  text-align: center;
  font-style: italic;
  margin-top: 1.375rem;
}

.page-index__member-text01 span {
  font-size: 1.625rem;
}

.page-index__member-text02 {
  font-size: 2.8125rem;
  font-weight: 700;
  color: #ea3fa8;
  letter-spacing: 0.04em;
  font-family: source-han-sans, sans-serif;
  text-align: center;
  font-style: italic;
  margin-top: -0.625rem;
}

.page-index__member-text02-inner {
  margin-right: 2.5rem;
}

.page-index__member-text02::after {
  content: "";
  width: 530px;
  height: 27px;
  max-width: 100%;
  background: url(images/common/img_bar-01.png) no-repeat center/contain;
  display: block;
  margin: -0.25rem auto 0;
}

.page-index__member-text02 span {
  position: relative;
}

.page-index__member-text02 span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ea3fa8;
  left: 72%;
  top: 0;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.page-index__member-text02-point {
  letter-spacing: -0.6em;
  margin-left: -0.625rem;
}

.page-index__member-text02-point::before {
  display: none;
}

.page-index__member-ul {
  margin-top: 0.9375rem;
  padding: 2rem 2.875rem;
  position: relative;
}

.page-index__member-ul::after {
  content: "";
  position: absolute;
  width: 181px;
  height: 219px;
  background: url(images/index/img_dot-01.png) no-repeat center/contain;
  bottom: -4.5rem;
  right: -0.125rem;
  max-width: 18%;
}

.page-index__grade {
  padding: 0 1.25rem;
  margin-top: 9rem;
}

.page-index__grade .c-heading__jp {
  margin-top: 0.875rem;
}

.page-index__grade-inner {
  max-width: 1398px;
  margin: 0 auto;
  background: url(images/common/bg_green-01.jpg) no-repeat center/cover;
  padding-top: 4.375rem;
  padding-bottom: 9.6875rem;
}

.page-index__grade .p-grade {
  margin-top: 4.6875rem;
}

.page-index__change {
  margin-top: 8.4375rem;
  padding-top: 4.875rem;
}

.page-index__change-slide {
  margin-top: 2.625rem;
}

.page-index__rewards {
  margin-top: 5rem;
  padding-top: 5rem;
}

.page-index__rewards-slide {
  margin-top: 2.625rem;
}

.page-index__ticket {
  margin-top: 6rem;
  padding-top: 4.875rem;
}

.page-index__ticket .c-heading__jp {
  margin-top: 1.125rem;
}

.page-index__ticket-list {
  max-width: 860px;
  margin: 2rem auto 0;
}

.page-index__ticket-flow {
  margin-top: 3.875rem;
  overflow: hidden;
}

.page-index__ticket-flow-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: textflow;
  animation: textflow;
  -webkit-animation-duration: 24s;
  animation-duration: 24s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.page-index__ticket-flow-inner img {
  margin-right: 3.5rem;
}

.page-index__goods {
  margin-top: 12.5rem;
  background-color: #E9F9E4;
  padding-top: 0.0625rem;
  padding-bottom: 3.3125rem;
}

.page-index__goods .c-heading {
  margin-top: -5.625rem;
  padding-top: 3.625rem;
}

.page-index__goods-slide {
  margin-top: 4.125rem;
}

.page-index__others {
  margin-top: 11.25rem;
}

.page-index__others-inner {
  background: url(images/common/bg_blue-01.jpg) no-repeat center/cover;
  padding: 3.5rem 1.25rem 4.375rem;
}

.page-index__others-list {
  max-width: 960px;
  margin: 3.375rem auto 0;
}

.page-index__others-img {
  margin-top: 15.3125rem;
}

.page-index__others-img-item {
  display: block;
}

.page-index__others-img-item + .page-index__others-img-item {
  margin-top: 4.5rem;
}

.page-index__others-img-item img {
  width: 100%;
  display: block;
}

.page-index__faq {
  margin-top: 17.875rem;
}

.page-index__faq .c-heading {
  margin-top: -5.75rem;
  padding-top: 4.0625rem;
}

.page-index__faq-inner {
  padding: 0.0625rem 1.25rem 7rem;
  background: #cfeeed;
}

.page-index__faq-anchor {
  margin-top: 2.8125rem;
}

.page-index__faq-board {
  max-width: 960px;
  margin: 5.625rem auto 0;
}

.page-index__faq-board .p-faq + .p-faq {
  margin-top: 3.375rem;
}

@media all and (min-width: 768px), print {
  .page-index__faq-board .p-faq:nth-child(2) {
    padding-bottom: 3rem;
  }
  .page-index__faq-board .p-faq:nth-child(3), .page-index__faq-board .p-faq:nth-child(4) {
    padding-bottom: 2.8125rem;
  }
}

@media only screen and (max-width: 767px) {
  .page-index__news {
    padding-top: 4rem;
  }
  .page-index__news-slide {
    margin: 1.875rem 1.46875rem;
  }
  .page-index__member {
    margin-top: 3.5rem;
    padding-top: 3.125rem;
    padding-bottom: 4.875rem;
    min-height: unset;
  }
  .page-index__member-bg::before {
    background-image: url(images/index/bg_membership-01-sp.jpg);
    min-width: unset;
    background-position: center;
  }
  .page-index__member-text01 {
    font-size: 1.3125rem;
    margin-right: -0.25rem;
    margin-top: 2.3125rem;
  }
  .page-index__member-text01 span {
    font-size: 1rem;
  }
  .page-index__member-text02 {
    font-size: 1.6875rem;
  }
  .page-index__member-text02::after {
    width: 292px;
    height: 29px;
    background-image: url(images/common/img_bar-01-sp.png);
    margin-top: 0.5rem;
  }
  .page-index__member-text02 span::before {
    width: 5px;
    height: 5px;
    left: 66%;
  }
  .page-index__member-text02-inner {
    margin-right: 1.375rem;
    margin-top: 0.125rem;
  }
  .page-index__member-ul {
    margin-left: 0.28125rem;
    margin-right: 0.28125rem;
    padding: 1.6875rem 0.625rem 2.375rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
  .page-index__member-ul::after {
    height: 147px;
    width: 122px;
    max-width: unset;
    bottom: -6.25rem;
    right: 0.125rem;
  }
  .page-index__grade {
    padding: 0 0.625rem;
    margin-top: 11.875rem;
  }
  .page-index__grade-inner {
    padding-top: 3.125rem;
    background-image: url(images/common/bg_green-01-sp.jpg);
    padding-bottom: 3.5rem;
  }
  .page-index__grade .p-grade {
    margin: 2.25rem 0.46875rem 0;
  }
  .page-index__rewards {
    margin-top: 3rem;
  }
  .page-index__rewards-slide {
    margin: 1.875rem 1.40625rem;
  }
  .page-index__ticket {
    margin-top: 2.625rem;
  }
  .page-index__ticket .l-inner {
    padding: 0 0.84375rem;
  }
  .page-index__ticket-list {
    margin-top: 2.3125rem;
  }
  .page-index__ticket-flow {
    margin-top: 3.5rem;
  }
  .page-index__ticket-flow-inner {
    -webkit-animation-duration: 40s;
    animation-duration: 40s;
  }
  .page-index__ticket-flow-inner img {
    margin-right: 2.75rem;
  }
  .page-index__goods {
    margin-top: 8.375rem;
    padding-bottom: 6rem;
  }
  .page-index__goods .c-heading {
    margin-top: -5.125rem;
  }
  .page-index__goods-slide {
    margin: 1.875rem 1.40625rem;
    position: relative;
    z-index: 1;
  }
  .page-index__goods-slide::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 393px;
    left: -1.4375rem;
    right: -1.375rem;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    background: -webkit-gradient(linear, left bottom, left top, from(#fff), color-stop(58%, #fff), to(transparent));
    background: -webkit-linear-gradient(bottom, #fff, #fff 58%, transparent 100%);
    background: linear-gradient(to top, #fff, #fff 58%, transparent 100%);
    z-index: 1;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
  }
  .page-index__goods-slide .p-slideshow-02 {
    max-height: 500px;
    max-height: 134vw;
    overflow: hidden;
    -webkit-transition: max-height 0.6s;
    transition: max-height 0.6s;
  }
  .page-index__goods-slide.is-show::after {
    opacity: 0;
  }
  .page-index__goods-show {
    position: relative;
    text-align: center;
    z-index: 2;
  }
  .page-index__goods-show .c-button {
    min-height: 70px;
    font-size: 1.25rem;
  }
  .page-index__goods-show .c-button::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .page-index__goods-show .c-button.is-show::after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
  }
  .page-index__others {
    margin-top: 5.5rem;
  }
  .page-index__others .l-inner {
    padding: 0 0.625rem;
  }
  .page-index__others-list {
    margin: 1.375rem 1.40625rem;
  }
  .page-index__others-img {
    margin-top: 66px;
  }
  .page-index__others-img-item + .page-index__others-img-item {
    margin-top: 4.375rem;
  }
  .page-index__faq {
    margin-top: 8.125rem;
  }
  .page-index__faq .l-inner {
    padding: 0;
  }
  .page-index__faq-anchor {
    margin-top: 3.75rem;
  }
  .page-index__faq-inner {
    padding: 0.0625rem 0.625rem 4.125rem;
  }
  .page-index__faq-board {
    margin-top: 3rem;
  }
  .page-index__faq-board .p-faq + .p-faq {
    margin-top: 1.25rem;
  }
}

/* utility */
@media all and (min-width: 768px), print {
  .u-hidden-pc {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

@media all and (min-width: 1281px), print {
  .u-hover-opacity {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .u-hover-opacity:hover {
    opacity: 0.7;
  }
  .u-group-hover-opacity a, .u-group-hover-opacity button {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .u-group-hover-opacity a:hover, .u-group-hover-opacity button:hover {
    opacity: 0.7;
  }
}

.u-mt-1 {
  margin-top: 0.5rem;
}

.u-mt-2 {
  margin-top: 1rem;
}

.u-mt-3 {
  margin-top: 1.5rem;
}

.u-mt-4 {
  margin-top: 2rem;
}

.u-mt-5 {
  margin-top: 2.5rem;
}

.u-mt-6 {
  margin-top: 3rem;
}

.u-mt-7 {
  margin-top: 3.5rem;
}

.u-mt-8 {
  margin-top: 4rem;
}

.u-mt-9 {
  margin-top: 4.5rem;
}

.u-mt-10 {
  margin-top: 5rem;
}

.u-mt-11 {
  margin-top: 5.5rem;
}

.u-mt-12 {
  margin-top: 6rem;
}

.u-mt-13 {
  margin-top: 6.5rem;
}

.u-mt-14 {
  margin-top: 7rem;
}

.u-mt-15 {
  margin-top: 7.5rem;
}

.u-mt-16 {
  margin-top: 8rem;
}

.u-mt-17 {
  margin-top: 8.5rem;
}

.u-mt-18 {
  margin-top: 9rem;
}

.u-mt-19 {
  margin-top: 9.5rem;
}

.u-mt-20 {
  margin-top: 10rem;
}

.u-mt-21 {
  margin-top: 10.5rem;
}

.u-mt-22 {
  margin-top: 11rem;
}

.u-mt-23 {
  margin-top: 11.5rem;
}

.u-mt-24 {
  margin-top: 12rem;
}

.u-mt-25 {
  margin-top: 12.5rem;
}

@media only screen and (max-width: 767px) {
  .u-mt-4 {
    margin-top: 1.5rem;
  }
  .u-mt-5 {
    margin-top: 1.75rem;
  }
  .u-mt-6 {
    margin-top: 2rem;
  }
  .u-mt-7 {
    margin-top: 2.25rem;
  }
  .u-mt-8 {
    margin-top: 2.5rem;
  }
  .u-mt-9 {
    margin-top: 2.75rem;
  }
  .u-mt-10 {
    margin-top: 3rem;
  }
  .u-mt-11 {
    margin-top: 3.25rem;
  }
  .u-mt-12 {
    margin-top: 3.5rem;
  }
  .u-mt-13 {
    margin-top: 3.75rem;
  }
  .u-mt-14 {
    margin-top: 4rem;
  }
  .u-mt-15 {
    margin-top: 4.25rem;
  }
  .u-mt-16 {
    margin-top: 4.5rem;
  }
  .u-mt-17 {
    margin-top: 4.75rem;
  }
  .u-mt-18 {
    margin-top: 5rem;
  }
  .u-mt-19 {
    margin-top: 5.25rem;
  }
  .u-mt-20 {
    margin-top: 5.5rem;
  }
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

@media all and (min-width: 768px), print {
  .u-text-center-pc {
    text-align: center;
  }
  .u-text-left-pc {
    text-align: left;
  }
  .u-text-right-pc {
    text-align: right;
  }
}

@media only screen and (max-width: 767px) {
  .u-text-center-sp {
    text-align: center;
  }
  .u-text-left-sp {
    text-align: left;
  }
  .u-text-right-sp {
    text-align: right;
  }
}

.u-underline {
  text-decoration: underline !important;
}
