html {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  background-color: #f7f7f7;
  scroll-behavior: smooth;
}

@media print {
  body {
    display: none;
  }
}

body.is-prevent-transition * {
  transition: none !important;
}

a {
  transition: opacity .2s;
}

a:hover {
  opacity: .6;
}

/** ────────────────────
 * Utilities
──────────────────── */
@media screen and (min-width: 829px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (max-width: 828px) {
  .u-pc {
    display: none !important;
  }
}

/* Background color */
.u-bg-gray {
  background-color: #f7f7f7;
}

.u-bg-blue {
  background-color: #0a005a;
}

.u-bg-black {
  background-color: #000;
}

/* Color */
.u-text-gold {
  color: #f0b400;
}

/* Border */
.u-border-t-4 {
  border-top: 4px solid #fff;
}

/* Anchor */
.u-anchor {
  scroll-margin-top: 130px;
}

/** ────────────────────
 * Components
──────────────────── */
.container {
  margin: 0 auto;
  max-width: 1366px;
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all .3s;
}

body.is-sub-page .header {
  background-color: #0a005a;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  position: relative;
}

.header-logo {
  width: 115px;
}

.header-logo a img.logo-white {
  display: none;
}

.header-top-button {
  position: absolute;
  color: #fff;
  right: 100px;
  top: calc(50% - 18px);
  height: 28px;
  font-size: 20px;
  letter-spacing: .08em;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 0 9px 0 7px;
  font-style: italic;
}

.header-top-button:after {
  position: absolute;
  content: '';
  width: 44px;
  height: 1px;
  display: inline-block;
  background-color: #fff;
  bottom: -1px;
}

.header-menu ul {
  display: flex;
}

.header-menu ul li a {
  display: block;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  color: #0a005a;
  padding: 5px 22px;
}

.menu ul li a span.sub-text {
  display: none;
}

@media screen and (min-width: 829px) {
  .header-top-button {
    display: none;
  }

  body.is-sub-page .header-menu ul li a {
    color: #fff;
  }

  body.has-active-header .header {
    background-color: #0a005a;
  }

  body.has-active-header .header ul li a {
    color: #fff;
  }

  body.has-active-header .header-logo a img.logo-blue {
    display: none;
  }

  body.has-active-header .header-logo a img.logo-white {
    display: block;
  }
}

@media screen and (max-width: 828px) {
  .header-inner {
    background-color: #0a005a;
    padding: 20px 30px;
    height: 70px;
  }

  .header-space {
    height: 70px;
  }

  .header-logo {
    width: 94px;
  }

  .header-menu ul {
    display: flex;
  }

  .header-menu ul li a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: #0a005a;
    padding: 0 22px;
  }
}

/* Header Menu */
@media screen and (min-width: 829px) {
  .btn-menu {
    display: none;
  }
}

@media screen and (max-width: 828px) {
  .btn-menu {
    width: 70px;
    height: 70px;
    background-color: #f0b400;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #0a005a;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
  }

  .btn-menu-bar {
    display: block;
    width: 36px;
    height: 2px;
    background-color: #0a005a;
    transition: transform .2s;
  }

  body.is-menu-open .btn-menu-bar:nth-of-type(1) {
    transform: rotate(35deg) translate(5px, 4px);
  }

  body.is-menu-open .btn-menu-bar:nth-of-type(2) {
    transform: rotate(-35deg) translate(4px, -5px);
  }

  /*** menu ***/
  .menu {
    position: fixed;
    overflow: hidden;
    top: 70px;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .menu-wrap {
    position: absolute;
    inset: 0;
    background-color: #0a005a;
    width: 100%;
    border-top: 2px solid #fff;
  }

  .menu nav {
    position: relative;
  }

  .menu ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-right: 0;
  }

  .menu ul li {
    width: 100%;
    border-bottom: 1.5px solid #fff;
    border-left: 0;
  }

  .menu ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: .02em;
    text-align: center;
    width: 100%;
    padding: 40px 20px;
  }

  .menu ul li a span.sub-text {
    display: block;
    font-size: 16px;
  }

  /*** menu open ***/
  .menu,
  .menu-wrap {
    transition: transform .3s;
  }

  body:not(.is-menu-open) .menu {
    pointer-events: none;
    transform: translateY(-100%);
  }

  body:not(.is-menu-open) .menu-wrap {
    transform: translateY(100%);
  }
}

/* Footer */
.footer {
  background-color: #000;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100px;
  padding: 0 80px;
}

.copyright {
  font-size: 11px;
  color: #fff;
  font-weight: 500;
}

@media screen and (max-width: 828px) {
  .footer-container {
    justify-content: center;
    height: 75px;
    padding: 0 20px;
  }

  .copyright {
    font-size: 11px;
  }
}

/* Main Visual */
.mv {
  background-color: #fff;
}

.mv-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
}

.mv-image {
  margin-top: 15px;
}

.mv-image img {
  width: 100%;

  /* max-width: 357px; */
}

.mv-content {
  margin-top: 70px;
}

.mv-content-head {
  width: 100%;
  max-width: 414px;
  margin: 0 auto;
}

.mv-content-text {
  font-size: 32px;
  font-weight: bold;
  color: #0a005a;
  text-align: center;
  margin-top: 32px;
  line-height: 1.625;
  font-style: italic;
}

@media screen and (max-width: 828px) {
  /* Main Visual */
  .mv {
    margin-top: 2px;
  }

  .mv-image {
    /* width: 41.9%; */
  }

  .mv-content {
    margin-left: -8vw;
    margin-top: -5vw;
  }

  .mv-content-head {
    width: 45.531vw;
  }

  .mv-content-text {
    font-size: 3.623vw;
    margin-top: 10px;
    line-height: 1.625;
  }
}

/* Text */
.c-text {
  padding: 90px 20px 100px;
}

.c-text h3 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 1.375;
  color: #0a005a;
  margin-bottom: 24px;
}

.c-text p {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #0a005a;
  line-height: 2.13;
}

.c-text-box {
  width: 100%;
  max-width: 720px;
  margin: 48px auto 0;
  border: 1px solid #0a005a;
}

.c-text-box > h5 {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #0a005a;
  padding: 16px;
  border-bottom: 1px solid #0a005a;
}

.c-text-box > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-text-box > div > p {
  text-align: left;
  padding: 20px;
}

.c-text-box > div > p > span {
  display: flex;
}

.c-text-box > div > p > span:before {
  content: "‧";
}

@media screen and (max-width: 828px) {
  .c-text {
    padding: 30px 20px 45px;
  }

  .c-text h3 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .c-text p {
    font-size: 11px;
    line-height: 1.7;
  }

  .c-text-box {
    max-width: 360px;
    margin: 32px auto 0;
  }

  .c-text-box > h5 {
    font-size: 11px;
    padding: 16px;
  }

  .c-text-box > div > p {
    padding: 16px 20px;
  }
}

/* Intro */
.intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 70px 76px;
  gap: 36px;
  margin-bottom: 100px;
}

.intro-article {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.intro-article_title {
  color: #fff;
  font-size: 34px;
  font-weight: bold;
  text-align: right;
  font-style: italic;
  margin-bottom: 12px;
}

.intro-article_text {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 28px;
}

@media screen and (max-width: 828px) {
  /* Intro */
  .intro {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding: 40px 27px;
    gap: 46px;
    margin-bottom: 50px;
  }

  .intro-article_title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .intro-article_text {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}

/* Section */
.section-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  height: 80px;
  color: #fff;
  padding: 0 70px;
}

.section-head h4 {
  font-size: 42px;
  font-weight: bold;
  font-style: italic;
  letter-spacing: .1em;
}

.section-head p {
  font-size: 21px;
  font-weight: bold;
  font-style: italic;
  margin-top: 15px;
}

@media screen and (max-width: 828px) {
  /* Section */
  .section-head {
    gap: 15px;
    height: 32px;
    padding: 0 25px;
  }

  .section-head h4 {
    font-size: 17px;
    letter-spacing: .1em;
  }

  .section-head p {
    font-size: 11px;
    margin-top: 5px;
  }
}

/* Top Salon */
.top-salon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 100px;
}

.top-salon_item {
  display: flex;
  flex-direction: column;
  align-items: end;
  padding: 36px 32px 44px;
}

.top-salon_item + .top-salon_item {
  border-left: 4px solid #fff;
}

.top-salon_item-image img {
  max-width: 245px;
}

.top-salon_item-content {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  margin-top: 74px;
}

.top-salon_item-title {
  font-size: 28px;
  font-style: italic;
  font-weight: bold;
  text-align: right;
}

.top-salon_item-text {
  text-align: right;
  font-size: 12px;
  font-weight: bold;
  margin-top: 16px;
}

.c-link-arrow:after {
  content: "";
  display: block;
  flex: 0 0 23px;
  width: 23px;
  height: 31px;
  background-image: url(../images/arrow.png);
  background-size: cover;
}

@media screen and (max-width: 828px) {
  /* Top Salon */
  .top-salon {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-bottom: 50px;
  }

  .top-salon_item {
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 24px 20px 20px;
  }

  .top-salon_item + .top-salon_item {
    border-left: 0;
    border-top: 3px solid #fff;
  }

  .top-salon_item-image img {
    max-width: 140px;
  }

  .top-salon_item-content {
    gap: 16px;
    margin-top: 32px;
  }

  .top-salon_item-title {
    font-size: 24px;
  }

  .top-salon_item-text {
    font-size: 12px;
    margin-top: 12px;
  }

  .c-link-arrow:after {
    flex: 0 0 16px;
    width: 16px;
    height: 22px;
  }
}

.top-section {
  display: flex;
  padding: 36px;
  margin-bottom: 100px;
}

.top-section_image {
  width: 64.15%;
  max-width: 830px;
}

.top-section_image img {
  width: 100%;
  max-width: 830px;
}

.top-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 36px;
}

.top-link-btn {
  display: flex;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  font-style: italic;
  gap: 48px;
  color: #fff;
}

@media screen and (max-width: 828px) {
  .top-section {
    flex-direction: column;
    padding: 24px;
    margin-bottom: 50px;
  }

  .top-section_image {
    width: 100%;
    margin-bottom: 28px;
  }

  .top-link {
    justify-content: end;
    margin-left: 36px;
  }

  .top-link-btn {
    font-size: 24px;
    gap: 12px;
  }
}

/* Page head */
.page-head {
  height: 388px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
  color: #fff;
  gap: 20px;
}

.page-head h2 {
  font-size: 72px;
  font-style: italic;
}

.page-head p {
  font-size: 33px;
}

@media screen and (max-width: 828px) {
  /* Page head */
  .page-head {
    height: 180px;
    gap: 12px;
    border-top: 2px solid #fff;
  }

  .page-head h2 {
    font-size: 40px;
  }

  .page-head p {
    font-size: 16px;
  }
}

/* Menu page */

/* Menu title */
.menu-title {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 42px;
  font-weight: bold;
  background-color: #000;
  margin-bottom: 80px;
  font-style: italic;
}

.menu-title .power {
  font-size: 18px;
  position: relative;
  top: -6px;
  padding-right: 5px;
}

.menu-container {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

.menu-image {
  margin: 0 0 56px;
}

@media screen and (max-width: 828px) {
  /* Menu title */
  .menu-title {
    height: 40px;
    font-size: 25px;
    margin-bottom: 40px;
  }

  .menu-title .power {
    font-size: 14px;
    top: -6px;
  }

  .menu-container {
    padding: 0 30px;
  }

  .menu-image {
    margin: 0 0 36px;
  }
}

/* Menu Items */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 76px;
  margin-bottom: 100px;
}

.menu-item {
  display: flex;
  gap: 40px;
}

.menu-item_main {
  width: 460px;
}

.menu-item_title {
  display: flex;
  flex-wrap: wrap;
  font-size: 28px;
  font-weight: bold;
  color: #0a005a;
  font-style: italic;
  border-bottom: 3px solid #0a005a;
  letter-spacing: -.055em;
  padding-bottom: 20px;
  line-height: 1.15;
}

.menu-item_content {
  font-size: 15px;
  font-weight: 500;
  color: #0a005a;
  line-height: 1.45;
  letter-spacing: -.02em;
  margin: 15px 0 10px;
}

.menu-item_box {
  display: flex;
  margin-top: 30px;
}

.menu-item_box p {
  display: flex;
  color: #0a005a;
  font-size: 24px;
  font-weight: bold;
  border: 3px solid #0a005a;
  padding: 4px 16px;
  transform: skew(-.3rad);
  background-color: #fff;
}

.menu-item_box p span {
  transform: skew(.3rad);
}

.menu-item_note {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
  color: #858585;
  margin: 0 0 20px;
}

.menu-item_price {
  background-color: #0a005a;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -.045em;
  height: 46px;
}

.menu-item_portion {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #0a005a;
  letter-spacing: -.045em;
  height: 46px;
  border: 3px solid #0a005a;
  border-bottom: 0;
  background-color: #fff;
}

.menu-item_price + .menu-item_note {
  margin-top: 10px;
}

.menu-item_image {
  width: 380px;
}

.menu-item_image img {
  width: 100%;
}

@media screen and (max-width: 828px) {
  /* Menu Items */
  .menu-items {
    gap: 46px;
    margin-bottom: 65px;
  }

  .menu-item {
    flex-direction: column;
    gap: 26px;
  }

  .menu-item_main {
    width: 100%;
  }

  .menu-item_title {
    font-size: 21px;
    border-bottom: 2px solid #0a005a;
    padding-bottom: 10px;
  }

  .menu-item_content {
    font-size: 14px;
    line-height: 1.45;
    margin: 6px 0 10px;
  }

  .menu-item_box {
    justify-content: center;
    margin-top: 16px;
  }

  .menu-item_box p {
    font-size: 16px;
    border: 1.5px solid #0a005a;
    padding: 2px 8px;
    transform: skew(-.3rad);
    margin: 0 auto;
    min-width: 128px;
    justify-content: center;
  }

  .menu-item_box p span {
    transform: skew(.3rad);
  }

  .menu-item_note {
    font-size: 11px;
    margin: 0 0 16px;
  }

  .menu-item_price {
    font-size: 16px;
    height: 30px;
  }

  .menu-item_portion {
    font-size: 16px;
    height: 30px;
    border: 1.5px solid #0a005a;
    border-bottom: 0;
  }

  .menu-item_price + .menu-item_note {
    margin: 10px 0 0;
  }

  .menu-item_image {
    width: 100%;
  }

  .menu-item_image img {
    width: 100%;
  }
}

.menu-text {
  margin-bottom: 50px;
}

.menu-text p {
  text-align: center;
  font-size: 15px;
  color: #0a005a;
  font-weight: bold;
  line-height: 2.13;
}

.menu-points {
  margin-bottom: 70px;
}

.menu-point + .menu-point {
  margin-top: 45px;
}

.menu-point_number {
  display: inline-flex;
  color: #0a005a;
  font-size: 38px;
  font-weight: bold;
  font-style: italic;
  border: 3px solid #0a005a;
  line-height: 1;
  padding: 0 28px;
  transform: skew(-.2rad);
  background-color: #fff;
}

.menu-point_number p {
  margin-top: -.1em;
  margin-bottom: .1em;
  transform: skew(.2rad);
}

.menu-point_number p span {
  font-size: 50px;
  line-height: 1;
}

.menu-point_content {
  background-color: #0a005a;
  transform: skew(-.2rad);
  padding: 10px 20px;
  margin: 0 30px;
}

.menu-point_content p {
  transform: skew(.2rad);
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  color: #fff;
  line-height: 1.35;
  font-style: italic;
}

.menu-point-note {
  font-size: 12px;
  font-weight: bold;
  color: #858585;
  line-height: 1.5;
  margin-top: 40px;
}

.menu-point sup {
  font-size: 16px;
  vertical-align: 30%;
}

@media screen and (max-width: 828px) {
  .menu-text {
    margin-bottom: 35px;
  }

  .menu-text p {
    font-size: 11px;
    line-height: 1.7;
  }

  .menu-points {
    margin-bottom: 20px;
  }

  .menu-point + .menu-point {
    margin-top: 25px;
  }

  .menu-point_number {
    font-size: 20px;
    border: 1.5px solid #0a005a;
    padding: 0 12px;
  }

  .menu-point_number p span {
    font-size: 25px;
  }

  .menu-point_content {
    padding: 10px 5px;
    margin: 0 10px;
  }

  .menu-point_content p {
    font-size: 15px;
    letter-spacing: -.05em;
    line-height: 1.35;
  }

  .menu-point-note {
    font-size: 11px;
    line-height: 1.5;
    margin-top: 25px;
  }

  .menu-point sup {
    font-size: 11px;
    vertical-align: 30%;
  }
}

/* Menu process */
.menu-process {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto 120px;
  display: flex;
}

.menu-process_item {
  position: relative;
}

.menu-process_item + .menu-process_item {
  margin-left: 25px;
}

.menu-process_item + .menu-process_item:before {
  content: "";
  position: absolute;
  right: calc(100% + 4.5px);
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 25px;
  background-image: url(../images/arrow-triangle.png);
  background-size: cover;
}

.menu-process_image img {
  width: 100%;
}

.menu-process_text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  background-color: #0a005a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 828px) {
  /* Menu process */
  .menu-process {
    padding: 0 20px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
  }

  .menu-process_item {
    width: calc(100% / 3 - 18px);
    margin-bottom: 20px;
  }

  .menu-process_item + .menu-process_item {
    margin-left: 18px;
  }

  .menu-process_item + .menu-process_item:before {
    right: calc(100% + 3.5px);
    width: 11px;
    height: 17px;
  }

  .menu-process_text {
    height: 26px;
    font-size: 13px;
  }
}

/* Trial */
.trial-title {
  background-color: #0a005a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 39px 12px;
}

.trial-title h4 {
  font-size: 42px;
  color: #fff;
  font-style: italic;
  font-weight: bold;
  text-align: center;
}

.trial-content {
  width: 100%;
  max-width: 1206px;
  margin: 0 auto 110px;
  padding: 0 20px;
}

.trial-content_text {
  padding: 40px 20px 28px;
  text-align: center;
  font-size: 15px;
  color: #0a005a;
  font-weight: bold;
  line-height: 2.13;
}

.trial-content_price {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #0a005a;
  font-weight: bold;
  margin-bottom: 60px;
}

.trial-content_price-regular {
  font-size: 26px;
}

.trial-content_price-initial {
  font-size: 32px;
}

.trial-content_price-initial small {
  font-size: 18px;
  position: relative;
  top: -10px;
}

.trial-content_price-initial span {
  position: relative;
  display: inline-block;
}

.trial-content_price-initial span:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: -1;
  background-color: #f0b400;
}

.trial-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.trial-item {
  margin-bottom: 50px;
  position: relative;
}

.trial-wrap {
  position: relative;
}

.trial-item_image img {
  width: 100%;
}

.trial-item_gift {
  width: 21%;
  max-width: 244px;
  position: absolute;
  right: 20px;
  bottom: 54px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.trial-item_gift-image {
  width: 46%;
  max-width: 111px;
}

.trial-item_gift-text {
  font-size: 15px;
  color: #0a005a;
  font-weight: bold;
  text-align: center;
  line-height: 1.46;
}

.trial-item_note {
  text-align: right;
  font-size: 12px;
  font-weight: bold;
  color: #878787;
  padding: 8px 0;
}

.trial-item_text {
  margin-top: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #0a005a;
  line-height: 1.46;
}

.trial-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #0a005a;
  width: 100%;
  max-width: 400px;
  height: 50px;
  margin: 0 auto;
  border-radius: 30px;
  background-color: #f0b400;
  box-shadow: 0 2px 2px rgba(0, 0, 0, .4);
  background-image: url(../images/arrow-blue.png);
  background-size: 20px auto;
  background-position: right 20px center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 828px) {
  .trial-title {
    padding: 24px 12px;
  }

  .trial-title h4 {
    font-size: 23px;
    line-height: 1.2;
  }

  .trial-content {
    max-width: 400px;
    margin: 0 auto 44px;
    padding: 0 20px;
  }

  .trial-content_text {
    padding: 20px;
    font-size: 11px;
    line-height: 1.8;
  }

  .trial-content_price {
    gap: 12px;
    margin-bottom: 40px;
  }

  .trial-content_price.no-mb-sp {
    margin-bottom: 0;
  }

  .trial-content_price-regular {
    font-size: 16px;
  }

  .trial-content_price-initial {
    font-size: 20px;
  }

  .trial-content_price-initial small {
    font-size: 12px;
    top: -6px;
  }

  .trial-content_price-initial span:before {
    bottom: -4px;
    height: 8px;
  }

  .trial-items {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 4px;
  }

  .trial-item {
    margin-bottom: 28px;
  }

  .trial-item_gift {
    width: 100%;
    max-width: 100%;
    position: static;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 36px 0 60px;
  }

  .trial-item_gift-image {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    max-width: 145px;
    padding: 5px;
  }

  .trial-item_gift-image img {
    width: 68px;
  }

  .trial-item_gift-text {
    flex: 1;
    font-size: 11px;
    text-align: center;
    line-height: 1.46;
  }

  .trial-item_text {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.7;
  }

  .trial-item_note {
    text-align: center;
    font-size: 11px;
    padding: 12px 0 36px;
  }

  .trial-button {
    font-size: 19px;
    max-width: 270px;
    height: 38px;
    border-radius: 16px;
    background-size: 12px auto;
    background-position: right 12px center;
  }
}

/* Location */
.location-container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px 300px;
}

.location-anchor > ul {
  display: flex;
  padding-top: 62px;
}

.location-anchor > ul > li {
  flex: 1;
}

.location-anchor > ul > li:not(:first-child) {
  border-left: 2px solid #f7f7f7;
}

.location-anchor > ul > li > a {
  width: calc(100% - 2px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #0a005a;
  font-size: 18px;
  font-weight: bold;
  padding: 13px 10px;
  border: 2px solid #0a005a;
}

.location-anchor > ul > li:first-of-type > a {
  background-color: white;
  color: #0a005a;
}

.location-main {
  margin-top: 134px;
}

.location-content + .location-content {
  margin-top: 114px;
}

.location_head {
  display: flex;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  color: #0a005a;
  padding-bottom: 10px;
  border-bottom: 1px solid #0a005a;
  font-style: italic;
}

.location_item {
  min-height: 100px;
  border-bottom: 1px solid #0a005a;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.location_item:nth-of-type(even) {
  background-color: #f7f7f7;
}

.location_item-name {
  width: 31%;
  font-size: 25px;
  line-height: 1.5;
  color: #0a005a;
  font-weight: bold;
}

.location_item-name span {
  display: block;
  width: 100%;
  font-size: 15px;
}

.location_item-address {
  flex: 1;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
  color: #0a005a;
  margin-left: 20px;
}

.location_item-button {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  margin: 0 20px;
}

.location_item-button a {
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.location_item-button a:after {
  content: "";
  border-style: solid;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.location_item-hot {
  color: #be2a57;
}

.location_item-hot:after {
  border-color: #be2a57;
}

.location_item-rakuten {
  color: #ff41be;
}

.location_item-rakuten:after {
  border-color: #ff41be;
}

@media screen and (max-width: 828px) {
  /* Location */
  .location-container {
    max-width: 400px;
    padding: 0 20px;
    margin-bottom: 100px;
  }

  .location-anchor > ul {
    display: flex;
    padding-top: 32px;
    flex-wrap: wrap;
  }

  .location-anchor > ul > li {
    flex: auto;
    width: calc(50% - 4px) !important;
    border-top: 2px solid #f7f7f7;
    border-left: none !important;
  }

  .location-anchor > ul > li:first-of-type {
    width: 100% !important;
  }

  .location-anchor > ul > li > a {
    font-size: 16px;
    padding: 12px;
  }

  .location-main {
    margin-top: 50px;
  }

  .location-content + .location-content {
    margin-top: 100px;
  }

  .location_head {
    font-size: 20px;
  }

  .location_item {
    min-height: 100px;
    flex-direction: column;
    padding: 10px 16px 13px;
  }

  .location_item-name {
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
  }

  .location_item-address {
    width: 100%;
    font-size: 12px;
    line-height: 1.75;
    margin-left: 0;
  }

  .location_item-button {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin: 6px 0 0;
  }

  .location_item-button a {
    font-size: 10px;
    width: 50%;
    border: 1px solid #0a005a;
    background-color: #efeef4;
    padding: 6px;
    border-radius: 12px;
    justify-content: center;
    position: relative;
  }

  .location_item-button a:after {
    padding: 3px;
    position: absolute;
    right: 8px;
  }

  .location_item-hot > span {
    margin-left: -3px;
    font-size: 9px;
  }
}

/** ────────────────────
 * Animation
──────────────────── */
.js-fx-scroll.fx-slideIn {
  transition: 1.2s cubic-bezier(.33, 1, .68, 1);
}

.js-fx-scroll.fx-slideIn:not(.is-show) {
  transform: translateY(20px);
  opacity: 0;
}
