@charset "UTF-8";
/* ==============================
Foundation
================================= */
/*
---
name: index
category:
  - object
  - object/foundation/index
---
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/*
---
name: index
category:
  - object
  - object/global/index
---
*/
/*
---
name: variable
category:
  - global/variable
---

変数 設定

*/
/*
---
name: mixin
category:
  - global/mixin
---

*/
/*
---
name: base
category:
  - foundation/base
---

基本設定

*/
@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/NotoSerifJP-Regular.otf) format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/NotoSerifJP-Bold.otf) format("opentype");
  font-display: swap;
}
html {
  font-size: 62.5%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.7;
  color: #333;
  margin: 0;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 0;
    font-size: 1.6rem;
  }
}

a {
  transition-duration: 0.4s;
  text-decoration: none;
}
a:hover {
  color: inherit;
  opacity: 0.8;
}
a:visited {
  color: inherit;
}

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

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  text-wrap: auto;
}

address {
  font-style: normal;
}

ol, ul, dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

ul {
  list-style: none;
  margin: 0;
}

/* ==============================
Layout
================================= */
/*
---
name: index
category:
  - object
  - object/layout/index
---
*/
/*
---
name: container
category:
  - object
  - object/layout/container
---

container

*/
.l-container {
  max-width: 1798px;
  margin-inline: auto;
}

.l-container-narrow {
  max-width: 1320px;
  margin-inline: auto;
}

.l-container-narrow-more {
  max-width: 1160px;
  margin-inline: auto;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}

/*
---
name: header
category:
  - object
  - object/layout/header
---

ヘッダー全体。

*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* 初期状態：非表示 */
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* スクロール後に表示 */
.l-header.is-show {
  transform: translateY(0);
  opacity: 1;
}

/*
---
name: footer
category:
  - object
  - object/layout/footer
---

フッター全体。

*/
/* ==============================
Object
================================= */
/*
Component
----------------------------- */
/*
---
name: index
category:
  - object
  - object/component/index
---
*/
/*
---
name: anchor
category:
  - object
  - object/component/anchor
---

固定ヘッダーのときのページ内リンクのアンカーのずれを解消するためのクラスです。

*/
.c-anchor {
  margin-top: -80px !important;
  padding-top: 80px !important;
}

/*
---
name: arrow
category:
  - object
  - object/component/arrow
---

矢印

*/
.c-arrow {
  position: relative;
  display: inline-block;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  transition: all 0.5s;
}
.c-arrow:before, .c-arrow:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: all 0.5s;
}

/*
---
name: banner
category:
  - object
  - object/component/banner
---

バナー

*/
.p-banner-side {
  position: fixed;
  right: -15px;
  top: 20%;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .p-banner-side {
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 90%;
  }
}
.p-banner-side__inner a {
  /* 押せる感じ */
  transition: filter 0.2s ease;
}
@media screen and (max-width: 768px) {
  .p-banner-side__inner a img {
    margin-right: auto;
    margin-left: auto;
  }
}
.p-banner-side__inner a:hover {
  filter: brightness(1.05);
  opacity: 0.9;
}

/*
---
name: button
category:
  - object
  - object/component/button
---

ボタン

*/
/*
---
name: column
category:
  - object
  - object/component/column
---

カラム関連

*/
.c-column-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 0px;
}
@media screen and (max-width: 768px) {
  .c-column-2col {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 30px;
  }
}
.c-column-mutual {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .c-column-mutual {
    flex-direction: column;
  }
}
.c-column-mutual .mutual-txt {
  width: 46%;
}
@media screen and (max-width: 992px) {
  .c-column-mutual .mutual-txt {
    width: 100%;
  }
}
.c-column-mutual .mutual-img {
  width: 46%;
}
@media screen and (max-width: 992px) {
  .c-column-mutual .mutual-img {
    width: 100%;
  }
}
.c-column-mutual:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 992px) {
  .c-column-mutual:nth-of-type(even) {
    flex-direction: column;
  }
}
.c-column-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
}
@media screen and (max-width: 768px) {
  .c-column-card {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 20px;
  }
}
.c-column-card__item {
  background-color: #fff;
  border: 2px solid #AA964A;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .c-column-card__item {
    padding: 20px;
  }
}

/*
---
name: hamburger
category:
  - object
  - object/component/hamburger
---

動くハンバーガーアイコンです。

*/
.c-hamburger__area {
  position: absolute;
  top: 7px;
  right: 15px;
}
@media screen and (min-width: 1200px) {
  .c-hamburger__area {
    display: none;
  }
}
.c-hamburger__area input[type=checkbox] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.c-hamburger__area input[type=checkbox]:checked + .c-hamburger__bar span {
  background-color: transparent;
}
.c-hamburger__area input[type=checkbox]:checked + .c-hamburger__bar span::before {
  top: 0;
  transform: rotate(45deg);
}
.c-hamburger__area input[type=checkbox]:checked + .c-hamburger__bar span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.c-hamburger__area input[type=checkbox]:checked ~ .c-hamburger__nav {
  visibility: visible;
  opacity: 1;
}
.c-hamburger__bar {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #FFFFFF;
  border-radius: 10px;
  transition: all 0.5s;
  color: #AA964A;
  cursor: pointer;
  z-index: 999;
  position: relative;
}
.c-hamburger__bar span,
.c-hamburger__bar span::before,
.c-hamburger__bar span::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #AA964A;
  transition: all 0.5s;
}
.c-hamburger__bar span {
  width: 30px;
  position: relative;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.c-hamburger__bar span::before {
  top: -5px;
}
.c-hamburger__bar span::after {
  bottom: -5px;
}
.c-hamburger__menu {
  font-size: 1rem;
  color: #AA964A;
  font-weight: bold;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.c-hamburger__nav {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.is-open {
  overflow: hidden;
}

.is-open .c-hamburger__bar::after {
  display: none;
}

/*
---
name: link
category:
  - object
  - object/component/link
---

リンク

*/
.c-link--default {
  color: #AA964A;
  text-decoration: underline;
}
.c-link--default:hover {
  text-decoration: none;
}

/*
---
name: list
category:
  - object
  - object/component/list
---

リスト

*/
.c-list-dot {
  list-style-type: disc;
  margin: 0;
  padding: 0;
}

/*
---
name: separate
category:
  - object
  - object/component/separate
---

区切り線

*/
.p-separate--01 {
  border-bottom: 1px dotted #000;
}

/*
---
name: title
category:
  - object
  - object/component/title
---

各種タイトル

*/
.c-title-line {
  font-size: 4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-title-line {
    font-size: 2.8rem;
  }
}
.c-title-line:after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background-color: #aa964a;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .c-title-line:after {
    width: 75px;
    height: 3px;
  }
}
.c-title-line-02 {
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-title-line-02 {
    font-size: 1.8rem;
  }
}
.c-title-line-02:after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #aa964a;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .c-title-line-02:after {
    width: 50px;
    height: 2px;
  }
}
.c-title-line-03 {
  font-size: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-title-line-03 {
    font-size: 1.8rem;
  }
}
.c-title-line-03:after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #aa964a;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .c-title-line-03:after {
    width: 50px;
    height: 2px;
  }
}

.c-title-simple {
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-title-simple {
    font-size: 2.4rem;
  }
}
.c-title-simple-02 {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-title-simple-02 {
    font-size: 1.8rem;
  }
}
.c-title-simple-03 {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-title-simple-03 {
    font-size: 1.8rem;
  }
}

.c-title-color01 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #aa964a;
}

.c-title-point {
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 1px solid #AA964A;
  padding-bottom: 10px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .c-title-point {
    font-size: 1.8rem;
  }
}

.c-title-number-round {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #335266;
  color: #fff;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .c-title-number-round {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
}
.c-title-number-round span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-title-number-round span {
    width: 40px;
  }
}

/*
Project
----------------------------- */
/*
---
name: index
category:
  - object
  - object/project/index
---
*/
/*
---
name: header
category:
  - object
  - object/project/header
---

ヘッダーの中身。

*/
.p-header__area {
  background-color: #fff;
  border-bottom: 1px solid #aa964a;
}
@media screen and (max-width: 768px) {
  .p-header__area {
    background-color: transparent;
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .p-header__area .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 80px;
  padding-left: 80px;
  height: 97px;
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 0;
    padding-left: 0;
    height: 70px;
  }
}
@media screen and (max-width: 1200px) {
  .p-header__logoarea img {
    width: 65%;
  }
}
.p-header__contentarea {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px;
  margin: 0px;
}
@media screen and (max-width: 1200px) {
  .p-header__contentarea {
    display: none;
  }
}
.p-header__pcnav--list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.p-header__pcnav--list li a {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}
.p-header__pcnav--list li:not(:first-child) a:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  margin-left: 24px;
  margin-right: 24px;
  background-color: #707070;
}
.p-header__nav {
  width: 80%;
  margin-left: 20%;
  height: auto;
  background-color: #aa964a;
  color: #fff;
  padding-top: 93px;
  padding-bottom: 50px;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 0 0 0 50px;
}
.p-header__nav .p-header__nav--list {
  list-style: none;
}
.p-header__nav .p-header__nav--list li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  padding-top: 20px;
  padding-bottom: 20px;
  display: inline-block;
  width: 100%;
  border-top: 1px solid #fff;
}
.p-header__nav .p-header__nav--list li:last-child a {
  border-bottom: 1px solid #fff;
}
.p-header__nav .p-header__nav--btn {
  margin-top: 40px;
  background-color: #fff;
  color: #aa964a;
  border-radius: 85px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 500;
}

/*
---
name: footer
category:
  - object
  - object/project/footer
---

フッターの中身。

*/
.p-footer {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
}
@media screen and (max-width: 576px) {
  .p-footer {
    padding-top: 50px;
    padding-bottom: 110px;
  }
}
.p-footer__menu--list {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.p-footer__menu--list li {
  display: flex;
  align-items: center;
}
.p-footer__menu--list li:not(:first-child)::before {
  content: "";
  display: inline-block;
  background-color: #aa964a;
  width: 1px;
  height: 20px;
  margin-right: 30px;
  margin-left: 30px;
}
@media screen and (max-width: 576px) {
  .p-footer__menu--list li:not(:first-child)::before {
    margin-right: 20px;
    margin-left: 20px;
  }
}
.p-footer__menu--list a {
  font-family: "Noto Sans JP", sans-serif;
}
.p-footer__menu--list a:hover {
  opacity: 0.6;
}
.p-footer__logoarea {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 576px) {
  .p-footer__logoarea {
    margin-top: 50px;
  }
}
.p-footer__logoarea img {
  margin-right: auto;
  margin-left: auto;
}
.p-footer__copy {
  margin-top: 60px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 30px;
  border-top: 1px solid #aa964a;
}
@media screen and (max-width: 576px) {
  .p-footer__copy {
    margin-top: 30px;
    padding-top: 30px;
  }
}

/*
---
name: top
category:
  - object
  - object/project/top
---

トップページ

*/
.p-top-mv {
  position: relative;
}
.p-top-mv__bg {
  background-image: url(../images/img_main_pc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 0;
  padding-top: 66.71875%;
}
@media screen and (max-width: 768px) {
  .p-top-mv__bg {
    background-image: url(../images/img_main_sp.png);
    padding-top: 180.5333333333%;
  }
}
.p-top-mv__title {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.p-top-mv__logo {
  position: absolute;
  top: 2%;
  left: 2%;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .p-top-mv__logo img {
    display: none;
  }
}
.p-top-caption {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-top-caption {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.p-top-caption__title h2 {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-caption__title h2 {
    font-size: 2.8rem;
    line-height: 1.6;
  }
}
.p-top-caption__title:after {
  content: "";
  display: block;
  width: 2px;
  height: 60px;
  background-color: #aa964a;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}
.p-top-caption__textArea {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top-caption__textArea {
    text-align: left;
  }
}
.p-top-caption__textArea--row:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-top-caption__textArea--row:not(:first-child) {
    margin-top: 20px;
  }
}
.p-top-about__bg {
  background-color: #335266;
  border-radius: 120px 0 0 120px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-top-about__bg {
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 60px 0 0 60px;
  }
}
.p-top-about .l-container {
  max-width: 1140px;
}
.p-top-about__column {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-top-about__column {
    margin-top: 40px;
    display: flex;
    flex-direction: column-reverse;
  }
}
.p-top-about__textarea {
  font-family: "Noto Sans JP", sans-serif;
}
.p-top-about__img img {
  border-radius: 20px;
  margin-right: auto;
  margin-left: auto;
}
.p-top-medical {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-top-medical {
    padding-bottom: 100px;
  }
}
.p-top-medical-content01__column {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .p-top-medical-content01__column {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}
@media screen and (max-width: 576px) {
  .p-top-medical-content01__column {
    display: block;
    margin-top: 50px;
  }
}
.p-top-medical-content01__textArea {
  grid-area: 1/1/2/4;
  align-self: flex-end;
}
@media screen and (max-width: 992px) {
  .p-top-medical-content01__textArea {
    grid-area: 1/1/3/4;
    align-self: center;
  }
}
@media screen and (max-width: 576px) {
  .p-top-medical-content01__title {
    text-align: center;
  }
}
.p-top-medical-content01__text {
  margin-top: 40px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 576px) {
  .p-top-medical-content01__text {
    margin-top: 30px;
  }
}
.p-top-medical-content01__sideImage {
  grid-area: 1/4/3/6;
  margin-left: 80px;
}
@media screen and (max-width: 992px) {
  .p-top-medical-content01__sideImage {
    grid-area: 1/4/3/6;
  }
}
@media screen and (max-width: 576px) {
  .p-top-medical-content01__sideImage {
    display: none;
  }
}
.p-top-medical-content01__list {
  grid-area: 2/1/3/4;
  display: flex;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, auto);
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 992px) {
  .p-top-medical-content01__list {
    grid-area: 3/1/4/6;
    margin-top: 20px;
  }
}
@media screen and (max-width: 576px) {
  .p-top-medical-content01__list {
    display: block;
  }
}
.p-top-medical-content01__list .list-item {
  max-width: 180px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-top-medical-content01__list .list-item {
    max-width: inherit;
    margin-top: 30px;
  }
}
.p-top-medical-content01__list .list-item__img img {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 576px) {
  .p-top-medical-content01__list .list-item__img img {
    width: 220px;
    height: 220px;
  }
}
.p-top-medical-content01__list .list-item__title {
  margin-top: 20px;
}
.p-top-medical-content01__list .list-item__text {
  margin-top: 12px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 576px) {
  .p-top-medical-content01__list .list-item__text {
    text-align: left;
  }
}
.p-top-medical-content02 {
  margin-top: 100px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-top-medical-content02 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.p-top-medical-content02__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
}
@media screen and (max-width: 576px) {
  .p-top-medical-content02__list {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 20px;
  }
}
.p-top-medical-content02__item {
  padding-top: 30px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 40px;
  border: 2px solid #aa964a;
}
.p-top-medical-content02__item hgroup {
  text-align: center;
}
.p-top-medical-content02__item .c-title-simple-02 {
  margin-top: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 576px) {
  .p-top-medical-content02__item .c-title-simple-02 {
    margin-top: 10px;
  }
}
.p-top-medical-content02__item .textArea {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
@media screen and (max-width: 576px) {
  .p-top-medical-content02__item .textArea {
    margin-top: 15px;
  }
}
.p-top-medical-content03__columnText {
  align-self: flex-end;
}
@media screen and (max-width: 576px) {
  .p-top-medical-content03__columnText {
    align-self: normal;
    margin-top: 30px;
  }
}
.p-top-medical-content03__columnText .text-detail {
  margin-top: 40px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 576px) {
  .p-top-medical-content03__columnText .text-detail {
    margin-top: 30px;
  }
}
.p-top-medical-content04 {
  margin-top: 60px;
}
@media screen and (max-width: 576px) {
  .p-top-medical-content04 {
    margin-top: 50px;
  }
}
.p-top-merit {
  background-color: #eae5d2;
  border-radius: 0 120px 120px 0;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 576px) {
  .p-top-merit {
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 0 60px 60px 0;
  }
}
.p-top-merit__list {
  margin-top: 60px;
}
@media screen and (max-width: 576px) {
  .p-top-merit__list {
    margin-top: 40px;
  }
}
.p-top-merit__item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 576px) {
  .p-top-merit__item:not(:first-child) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 992px) {
  .p-top-merit__title {
    text-align: center;
  }
}
.p-top-merit__title .c-title-simple {
  line-height: 1.6;
}
.p-top-merit__image img {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 992px) {
  .p-top-merit__image {
    margin-top: 20px;
  }
}
.p-top-merit-recommend {
  margin-top: 100px;
}
@media screen and (max-width: 576px) {
  .p-top-merit-recommend {
    margin-top: 50px;
  }
}
.p-top-merit-recommend__title {
  text-align: center;
}
.p-top-merit-recommend__list {
  margin-top: 40px;
}
@media screen and (max-width: 576px) {
  .p-top-merit-recommend__list {
    margin-top: 30px;
  }
}
.p-top-merit-recommend__list .titleArea {
  text-align: center;
}
.p-top-merit-recommend__list .imageBox {
  margin-top: 20px;
}
@media screen and (max-width: 576px) {
  .p-top-merit-recommend__list .imageBox {
    margin-top: 15px;
  }
}
.p-top-merit-recommend__list .textArea {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 576px) {
  .p-top-merit-recommend__list .textArea {
    margin-top: 15px;
  }
}
.p-top-price {
  padding-top: 120px;
}
@media screen and (max-width: 576px) {
  .p-top-price {
    padding-top: 100px;
  }
}
.p-top-price .price__list {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 576px) {
  .p-top-price .price__list {
    flex-direction: column;
    row-gap: 20px;
    margin-top: 40px;
  }
}
.p-top-price .price__list--item {
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  width: 50%;
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top-price .price__list--item {
    width: 100%;
    font-size: 2rem;
  }
}
.p-top-price .price__list--item.navy {
  background-color: #335266;
}
.p-top-price .price__list--item.gold {
  background-color: #aa964a;
}
.p-top-price .price__list--item .price-text {
  margin-top: 15px;
}
.p-top-price .price__list--item .price-text .strong {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .p-top-price .price__list--item .price-text .strong {
    font-size: 2.8rem;
  }
}
.p-top-price .price-attencion {
  text-align: center;
  margin-top: 20px;
}
.p-top-price .price__simulation {
  margin-top: 100px;
  background-color: #f0f5f5;
  border-radius: 60px;
  padding: 60px;
}
@media screen and (max-width: 576px) {
  .p-top-price .price__simulation {
    margin-top: 50px;
    border-radius: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 25px;
    padding-left: 25px;
  }
}
.p-top-price .price__simulation-title {
  text-align: center;
}
.p-top-price .price__simulation-text {
  margin-top: 30px;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 576px) {
  .p-top-price .price__simulation-text {
    margin-top: 20px;
    font-size: 1.8rem;
  }
}
.p-top-price .price__simulation-text .strong-txt {
  color: #aa964a;
  font-weight: bold;
}
.p-top-price .price__simulation-column {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 576px) {
  .p-top-price .price__simulation-column {
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 20px;
    margin-top: 30px;
  }
}
.p-top-price .price__simulation-column .column-item {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  width: 50%;
  border-radius: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 576px) {
  .p-top-price .price__simulation-column .column-item {
    width: 100%;
    border-radius: 10px;
  }
}
.p-top-price .price__simulation-column .column-item .column-title {
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .p-top-price .price__simulation-column .column-item .column-title {
    font-size: 2rem;
  }
}
.p-top-price .price__simulation-column .column-item .column-calc {
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 576px) {
  .p-top-price .price__simulation-column .column-item .column-calc {
    margin-top: 10px;
  }
}
.p-top-price .price__simulation-column .column-item .column-price {
  margin-top: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 12px;
  padding-left: 12px;
  text-align: center;
  display: inline-block;
  border-radius: 50px;
  width: 204px;
}
@media screen and (max-width: 576px) {
  .p-top-price .price__simulation-column .column-item .column-price {
    margin-top: 10px;
    font-size: 2rem;
    width: 158px;
  }
}
.p-top-price .price__simulation-column .column-item .column-price.navy {
  background-color: #335266;
}
.p-top-price .price__simulation-column .column-item .column-price.gold {
  background-color: #aa964a;
}
.p-top-price .price__simulation-result {
  margin-top: 40px;
  background-color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 576px) {
  .p-top-price .price__simulation-result {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 10px;
    border: 2px solid #aa964a;
  }
}
.p-top-price .price__simulation-result .result-calc {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
@media screen and (max-width: 576px) {
  .p-top-price .price__simulation-result .result-calc {
    margin-top: 10px;
  }
}
.p-top-price .price__simulation-result .result-calc .calc-item {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 12px;
  padding-left: 12px;
  text-align: center;
  display: inline-block;
  border-radius: 50px;
  width: 204px;
}
@media screen and (max-width: 576px) {
  .p-top-price .price__simulation-result .result-calc .calc-item {
    font-size: 1.5rem;
    width: 104px;
  }
}
.p-top-price .price__simulation-result .result-calc .calc-item.navy {
  background-color: #335266;
}
.p-top-price .price__simulation-result .result-calc .calc-item-minus {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #333333;
  border-radius: 50px;
  margin-right: 20px;
  margin-left: 20px;
  display: inline-block;
}
@media screen and (max-width: 576px) {
  .p-top-price .price__simulation-result .result-calc .calc-item-minus {
    width: 10px;
    height: 1px;
    margin-right: 10px;
    margin-left: 10px;
  }
}
.p-top-price .price__simulation-result .result-calc .calc-item.gold {
  background-color: #aa964a;
}
.p-top-price .price__simulation-result .result-price {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 576px) {
  .p-top-price .price__simulation-result .result-price {
    margin-top: 15px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media screen and (max-width: 576px) {
  .p-top-price .price__simulation-result .result-price .icon-value img {
    width: 45px;
    height: 52px;
  }
}
.p-top-price .price__simulation-result .result-price .strong-txt {
  font-size: 6.4rem;
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .p-top-price .price__simulation-result .result-price .strong-txt {
    font-size: 3.2rem;
  }
}
.p-top-voice {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 576px) {
  .p-top-voice {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}
.p-top-voice .voice__wrapp {
  margin-top: 60px;
}
@media screen and (max-width: 576px) {
  .p-top-voice .voice__wrapp {
    margin-top: 40px;
  }
}
.p-top-voice .voice__head {
  display: inline-block;
  background-color: #aa964a;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 30px;
  padding-left: 30px;
  font-size: 3.2rem;
}
@media screen and (max-width: 576px) {
  .p-top-voice .voice__head {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 2.4rem;
  }
}
.p-top-voice .voice__content {
  background-color: #f0f5f5;
  border-radius: 20px;
  padding-top: 73px;
  padding-bottom: 40px;
  padding-right: 60px;
  padding-left: 60px;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .p-top-voice .voice__content {
    border-radius: 10px;
    padding-top: 60px;
    padding-bottom: 50px;
    padding-right: 25px;
    padding-left: 25px;
    margin-top: -15px;
  }
}
.p-top-voice .voice__content-inner {
  display: flex;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-top-voice .voice__content-inner {
    flex-direction: column-reverse;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 20px;
  }
}
.p-top-voice .voice__content .voice__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-top-voice .voice__content .voice__subtitle {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.p-top-voice .voice__content .voice__detail {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-top-voice .voice__content .voice__detail {
    margin-top: 15px;
  }
}
.p-top-voice .voice__content .voice__image {
  flex-shrink: 0;
}
.p-top-voice .voice__content .voice__image img {
  margin-right: auto;
  margin-left: auto;
}
.p-top-voice .voice__scene {
  margin-top: 60px;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 576px) {
  .p-top-voice .voice__scene {
    margin-top: 50px;
  }
}
.p-top-voice .voice__scene .c-title-simple {
  line-height: 1.6;
}
.p-top-voice .voice__scene-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  .p-top-voice .voice__scene-list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 30px;
  }
}
.p-top-voice .voice__scene-listItem {
  text-align: center;
}
.p-top-voice .voice__scene-listItem .voice-number {
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .p-top-voice .voice__scene-listItem .voice-number {
    font-size: 2.4rem;
  }
}
.p-top-voice .voice__scene-listRound {
  background-image: url(../images/bg_round.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 220px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 576px) {
  .p-top-voice .voice__scene-listRound {
    width: 142.5px;
    height: 142.5px;
  }
}
.p-top-voice .voice__scene-listRound .voice-img img {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 576px) {
  .p-top-voice .voice__scene-listRound .voice-img img {
    width: 50%;
  }
}
.p-top-voice .voice__scene-listRound .voice-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 10px;
}
@media screen and (max-width: 576px) {
  .p-top-voice .voice__scene-listRound .voice-txt {
    font-size: 1.6rem;
    margin-top: 6px;
  }
}
.p-top-question__bg {
  background-color: #335266;
  padding-top: 120px;
  padding-bottom: 120px;
  border-radius: 0 120px 120px 0;
}
@media screen and (max-width: 576px) {
  .p-top-question__bg {
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 0 60px 60px 0;
  }
}
.p-top-question__list {
  margin-top: 60px;
}
@media screen and (max-width: 576px) {
  .p-top-question__list {
    margin-top: 40px;
  }
}
.p-top-question__item:not(:first-child) {
  margin-top: 30px;
}
.p-top-question__item .qa-title {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 576px) {
  .p-top-question__item .qa-title {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.p-top-question__item__question {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 48px 20px 0;
  cursor: pointer;
  background-color: #f0f3f5;
  border-radius: 20px 20px 20px 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 60px;
  padding-left: 40px;
}
@media screen and (max-width: 576px) {
  .p-top-question__item__question {
    padding: 15px;
    padding-right: 35px;
  }
}
.p-top-question__item__question .icon-q {
  color: #aa964a;
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .p-top-question__item__question .icon-q {
    font-size: 2rem;
  }
}
.p-top-question__item__question .question-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 576px) {
  .p-top-question__item__question .question-txt {
    font-size: 1.6rem;
  }
}
.p-top-question__item__question::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 20px;
  height: 20px;
  background-image: url("../images/icon_arrow_open.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 576px) {
  .p-top-question__item__question::after {
    width: 15px;
    height: 15px;
  }
}
.p-top-question__item__answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: height 0.4s ease, opacity 0.25s ease;
  background-color: #ffffff;
  border-top: 2px solid #335266;
  border-radius: 0 0 20px 20px;
}
.p-top-question__item__answer .icon-a {
  color: #aa964a;
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .p-top-question__item__answer .icon-a {
    font-size: 2rem;
  }
}
.p-top-question__item__answer .answer-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 576px) {
  .p-top-question__item__answer .answer-txt {
    font-size: 1.6rem;
  }
}
.p-top-question__item__answer .answer-list {
  margin-left: 7%;
}
@media screen and (max-width: 576px) {
  .p-top-question__item__answer .answer-list {
    margin-left: 15%;
  }
}
.p-top-question__item__answer .answer-list li {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 10px;
}
.p-top-question__item.is-open .p-top-question__item__question {
  border-radius: 20px 20px 0 0;
}
.p-top-question__item.is-open .p-top-question__item__question::after {
  transform: translateY(-50%) rotate(180deg);
}
.p-top-question__item.is-open .p-top-question__item__answer {
  opacity: 1;
  visibility: visible;
  padding-top: 20px;
  padding-bottom: 30px;
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 576px) {
  .p-top-question__item.is-open .p-top-question__item__answer {
    padding: 15px;
  }
}
.p-top-experience {
  margin-top: 120px;
}
.p-top-experience .experience__invi {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__invi {
    margin-top: 40px;
  }
}
.p-top-experience .experience__invi__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 80px;
  grid-row-gap: 30px;
}
@media screen and (max-width: 992px) {
  .p-top-experience .experience__invi__box {
    grid-row-gap: 60px;
  }
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__invi__box {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 0px;
    grid-row-gap: 30px;
  }
}
.p-top-experience .experience__invi__imagebox {
  grid-area: 1/1/3/2;
}
@media screen and (max-width: 992px) {
  .p-top-experience .experience__invi__imagebox {
    grid-area: 1/1/2/2;
  }
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__invi__imagebox {
    margin-right: 25px;
    grid-area: 1/1/2/2;
  }
}
.p-top-experience .experience__invi__textbox {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 992px) {
  .p-top-experience .experience__invi__textbox {
    grid-area: 1/2/2/3;
  }
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__invi__textbox {
    grid-area: 2/1/3/2;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.p-top-experience .experience__invi__title {
  background-image: url(../images/bg_ribbon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 258px;
  height: 59px;
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__invi__title {
    margin-right: auto;
    margin-left: auto;
    font-size: 1.6rem;
    width: 172px;
    height: 40px;
  }
}
.p-top-experience .experience__invi__message {
  margin-top: 30px;
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 12px;
  -webkit-text-decoration: underline solid #aa964a;
          text-decoration: underline solid #aa964a;
  text-decoration-thickness: 1px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 15px;
  line-height: 2.5;
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__invi__message {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
  }
}
.p-top-experience .experience__invi__detail {
  grid-area: 2/2/3/3;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 992px) {
  .p-top-experience .experience__invi__detail {
    grid-area: 2/1/3/3;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__invi__detail {
    grid-area: 3/1/4/2;
  }
}
.p-top-experience .experience__column {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-top: 100px;
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__column {
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 20px;
    margin-top: 30px;
  }
}
.p-top-experience .experience__column .experience__columnItem {
  width: 50%;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 50px;
  padding-left: 50px;
  background-color: #f0f5f5;
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__column .experience__columnItem {
    width: 100%;
  }
}
.p-top-experience .experience__list {
  max-width: 840px;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__list {
    margin-top: 50px;
  }
}
.p-top-experience .experience__list__item {
  border-radius: 120px;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(170, 150, 74, 0.3);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 80px;
  padding-left: 80px;
  display: flex;
  align-items: center;
}
.p-top-experience .experience__list__item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__list__item {
    border-radius: 20px;
    padding: 20px;
    flex-direction: column;
  }
}
.p-top-experience .experience__list__title {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-style: normal;
  width: 20%;
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__list__title {
    font-size: 1.6rem;
    width: 100%;
    text-align: center;
  }
}
.p-top-experience .experience__list__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  width: 80%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__list__text {
    font-size: 1.6rem;
    flex-direction: column;
    font-weight: normal;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.p-top-experience .experience__list__text:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 40px;
  background-color: #aa964a;
  margin-right: 30px;
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__list__text:before {
    width: 40px;
    height: 1px;
    margin-right: 0;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.p-top-experience .experience__btnbox {
  max-width: 1160px;
  margin-top: 100px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.p-top-experience .experience__btnbox-inner {
  padding-top: 60px;
  padding-bottom: 60px;
  border: 2px solid #aa964a;
  border-radius: 60px;
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(170, 150, 74, 0.3);
}
@media screen and (max-width: 768px) {
  .p-top-experience .experience__btnbox-inner {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__btnbox-inner {
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 30px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.p-top-experience .experience__btnbox__title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__btnbox__title {
    font-size: 2rem;
  }
}
.p-top-experience .experience__btnbox__btn {
  background-image: url(../images/bg_roundbtn_pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  width: 589px;
  height: 125px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  font-size: 2.8rem;
  font-weight: bold;
  color: #333333;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-experience .experience__btnbox__btn {
    background-image: url(../images/bg_roundbtn_sp.png);
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__btnbox__btn {
    font-size: 1.8rem;
    width: 285px;
    height: 85px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-experience .experience__btnbox__btn--inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .p-top-experience .experience__btnbox__btn--inner {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.p-top-experience .experience__btnbox__btn::after {
  content: "";
  background-image: url(../images/icon_arrowlink.png);
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 85px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-top-experience .experience__btnbox__btn::after {
    display: none;
  }
}
.p-top-experience .experience__btnbox__btn:hover {
  opacity: 0.6;
}
.p-top-salon {
  margin-top: 120px;
}
.p-top-salon__bg {
  background-image: url(../images/bg_wave_pc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 120px;
  border-radius: 120px 120px 0 0;
}
@media screen and (max-width: 576px) {
  .p-top-salon__bg {
    background-image: url(../images/bg_wave_sp.png);
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 60px 60px 0 0;
  }
}
.p-top-salon__content {
  text-align: center;
}
.p-top-salon__content .salon__title {
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .p-top-salon__content .salon__title {
    font-size: 2.8rem;
  }
}
.p-top-salon__content .salon__message {
  margin-top: 40px;
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .p-top-salon__content .salon__message {
    margin-top: 20px;
    font-size: 1.8rem;
  }
}
.p-top-salon__content .salon__txt {
  margin-top: 40px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-top-salon__content .salon__txt {
    text-align: left;
  }
}
@media screen and (max-width: 576px) {
  .p-top-salon__content .salon__txt {
    margin-top: 30px;
  }
}
.p-top-map {
  background-color: #e5dfc8;
}
.p-top-map__column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media screen and (max-width: 576px) {
  .p-top-map__column {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-top-map .access__map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9のアスペクト比 */
  height: 0;
}
@media screen and (max-width: 1200px) {
  .p-top-map .access__map {
    padding-top: 100%;
  }
}
@media screen and (max-width: 992px) {
  .p-top-map .access__map {
    padding-top: 150%;
  }
}
@media screen and (max-width: 576px) {
  .p-top-map .access__map {
    padding-top: 100%;
  }
}
.p-top-map .access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-top-map .access__address {
  padding-top: 50px;
  padding-bottom: 57px;
  padding-right: 60px;
  padding-left: 60px;
}
@media screen and (max-width: 576px) {
  .p-top-map .access__address {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 25px;
    padding-left: 25px;
  }
}
.p-top-map .access__subtitle {
  font-weight: bold;
}
.p-top-map .access__title {
  font-weight: bold;
  font-size: 1.8rem;
}
.p-top-map .access__title .strong-txt {
  font-size: 2.8rem;
}
.p-top-map .access__time {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  margin-top: 10px;
}
.p-top-map .access__time .head-txt {
  font-weight: 500;
}
.p-top-map .access__holiday {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  margin-top: 10px;
}
.p-top-map .access__holiday .head-txt {
  font-weight: 500;
}

/*
---
name: contact
category:
  - object
  - object/project/contact
---

お問い合わせ

*/
.p-contact {
  padding-top: 216px;
  padding-bottom: 120px;
  border-bottom: 1px solid #aa964a;
}
@media screen and (max-width: 768px) {
  .p-contact {
    padding-top: 108px;
    padding-bottom: 60px;
  }
}
.p-contact__head {
  text-align: center;
}
.p-contact__title {
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-contact__title {
    font-size: 2.4rem;
  }
}
.p-contact__txt {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact__content {
  margin-top: 100px;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-contact__content {
    margin-top: 60px;
  }
}
.p-contact__form {
  font-family: "Noto Sans JP", sans-serif;
  color: #cc0000;
}
.p-contact__form .forminner {
  color: #333;
}
.p-contact__form .forminner .error {
  color: #cc0000;
}
.p-contact__form .contentbox > label,
.p-contact__form .contentbox-sub > label,
.p-contact__form .content-wrap > label,
.p-contact__form .anq-title {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
}
.p-contact__form .anq-wrap {
  margin-top: 40px;
}
.p-contact__form .contentbox-title {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
}
.p-contact__form .text-red {
  font-size: 1.4rem;
  font-weight: normal;
  background-color: #cc0000;
  border-radius: 50px;
  color: #fff;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
}
.p-contact__form .text-gray {
  font-size: 1.4rem;
  font-weight: normal;
  background-color: #747476;
  border-radius: 50px;
  color: #fff;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
}
.p-contact__form .contentbox {
  margin-top: 40px;
}
.p-contact__form .contentbox-sub {
  margin-top: 24px;
}
.p-contact__form .content-wrap {
  margin-top: 24px;
}
.p-contact__form .content {
  margin-top: 12px;
}
.p-contact__form input[type=text] {
  width: 100%;
  padding-left: 30px;
  padding-right: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  border: 1px solid #c8c8ca;
  border-radius: 10px;
}
.p-contact__form input[type=text]::-moz-placeholder {
  color: #ccc;
}
.p-contact__form input[type=text]::placeholder {
  color: #ccc;
}
.p-contact__form select {
  width: 100%;
  margin-top: 12px;
  padding-left: 30px;
  padding-right: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  border: 1px solid #c8c8ca;
  border-radius: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url("../images/icon_allow_select.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right 20px center;
  cursor: pointer;
}
.p-contact__form select::-moz-placeholder {
  color: #ccc;
}
.p-contact__form select::placeholder {
  color: #ccc;
}
.p-contact__form .radio-item input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.p-contact__form .radio-item span {
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 35px;
  position: relative;
}
.p-contact__form .radio-item span::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #cdd6dd;
  border-radius: 50%;
}
.p-contact__form .radio-item span::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #707f89;
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
  opacity: 0; /* 透明 */
}
.p-contact__form .radio-item input[type=radio]:checked + span::after {
  opacity: 1;
}
.p-contact__form .checkbox-item input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.p-contact__form .checkbox-item span {
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 40px;
  position: relative;
}
.p-contact__form .checkbox-item span::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  border: 1px solid #cdd6dd;
  border-radius: 2px;
}
.p-contact__form .checkbox-item span::after {
  content: "";
  display: block;
  width: 13px;
  height: 9px;
  position: absolute;
  left: 11px;
  top: 6px;
  transform: rotate(-45deg);
  border-left: 2px solid #707f89;
  border-bottom: 2px solid #707f89;
  opacity: 0; /* 透明 */
}
.p-contact__form .checkbox-item input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.p-contact__form textarea {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 30px;
  padding-left: 30px;
  border: 1px solid #c8c8ca;
  border-radius: 10px;
}
.p-contact__form textarea::-moz-placeholder {
  color: #ccc;
}
.p-contact__form textarea::placeholder {
  color: #ccc;
}
.p-contact__form .other-input {
  margin-top: 12px;
}
.p-contact__form .number-content {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: flex-end;
}
.p-contact__form .number-content input[type=text].number-input {
  width: 78px;
}
.p-contact__form .cofirm-check-area {
  margin-top: 40px;
  color: #cc0000;
}
.p-contact__form .cofirm-check-area .cofirm-check-row {
  color: #333;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .p-contact__form .cofirm-check-area .cofirm-check-row {
    text-align: left;
  }
}
.p-contact__form .cofirm-check-area .cofirm-check-row:not(:first-child) {
  margin-top: 24px;
}
.p-contact__form .cofirm-check-area .privacy-scroll {
  height: 200px;
  overflow-y: scroll;
  border: 1px solid #c8c8ca;
  padding: 20px;
}
.p-contact__form .cofirm-check-area .privacy-scroll__inner {
  text-align: left;
}
.p-contact__form .cofirm-check-area .privacy-scroll__title {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Noto Serif Japanese";
  text-align: center;
}
.p-contact__form .cofirm-check-area .privacy-scroll__group {
  margin-top: 20px;
}
.p-contact__form .cofirm-check-area .privacy-scroll__group .c-list-dot {
  margin-left: 4%;
}
@media screen and (max-width: 576px) {
  .p-contact__form .cofirm-check-area .privacy-scroll__group .c-list-dot {
    margin-left: 8%;
  }
}
.p-contact__form .cofirm-check-area .privacy-scroll__head {
  font-size: 1.8rem;
  font-weight: bold;
}
.p-contact__form .cofirm-check-area .privacy-scroll__txt {
  margin-top: 10px;
}
@media screen and (max-width: 576px) {
  .p-contact__form .cofirm-check-area .cofirm-check-item {
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.p-contact__form .cofirm-check-area input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media screen and (max-width: 768px) {
  .p-contact__form .cofirm-check-area .confirm-check-item {
    display: flex;
    align-items: center;
  }
}
.p-contact__form .cofirm-check-area .cofirm-check-txt {
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 40px;
  position: relative;
  line-height: 1.6;
}
.p-contact__form .cofirm-check-area .cofirm-check-txt::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  border: 1px solid #cdd6dd;
  border-radius: 2px;
}
.p-contact__form .cofirm-check-area .cofirm-check-txt::after {
  content: "";
  display: block;
  width: 13px;
  height: 9px;
  position: absolute;
  left: 9px;
  top: 10px;
  transform: rotate(-45deg);
  border-left: 2px solid #707f89;
  border-bottom: 2px solid #707f89;
  opacity: 0; /* 透明 */
}
@media screen and (max-width: 768px) {
  .p-contact__form .cofirm-check-area .cofirm-check-txt::after {
    top: 24px;
  }
}
.p-contact__form .cofirm-check-area .cofirm-check-link {
  text-decoration: underline;
  color: #333333;
  font-weight: 500;
}
.p-contact__form .cofirm-check-area .cofirm-check-link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  margin-left: 5px;
  background-image: url(../images/icon_blank.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-contact__form .cofirm-check-area input[type=checkbox]:checked + .cofirm-check-txt::after {
  opacity: 1;
}
.p-contact__form .submit-btn-area {
  margin-top: 54px;
}
.p-contact__form .submit-btn-area .submit-btn {
  background-color: #3b4043;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 50px;
  width: 100%;
  padding: 20px;
  border: none;
  cursor: pointer;
}
.p-contact-preview {
  color: #333;
}
.p-contact-preview table {
  margin-top: 40px;
  margin-bottom: 40px;
  border-collapse: collapse;
}
.p-contact-preview table tr th {
  text-align: left;
  width: 30%;
}
.p-contact-preview table tr th,
.p-contact-preview table tr td {
  padding: 20px;
  border-top: 1px solid #ccc;
}
.p-contact-preview table tr:nth-of-type(odd) th,
.p-contact-preview table tr:nth-of-type(odd) td {
  background-color: #f0f5f5;
}
.p-contact-preview table tr:nth-of-type(even) th,
.p-contact-preview table tr:nth-of-type(even) td {
  background-color: #fff;
}
.p-contact-preview table tr:last-child th,
.p-contact-preview table tr:last-child td {
  border-bottom: 1px solid #ccc;
}
.p-contact-preview__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-contact-preview__btn {
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 20px;
  }
}
.p-contact-preview__btn input[type=submit] {
  background-color: #ccc;
  color: #333;
  padding: 10px;
  border-radius: 50px;
  border: none;
  width: 50%;
  cursor: pointer;
}
.p-contact-preview__btn input[type=button] {
  background-color: #3b4043;
  color: #fff;
  padding: 10px;
  border-radius: 50px;
  border: none;
  width: 50%;
  cursor: pointer;
}
.p-contact-thanx {
  color: #333;
  text-align: center;
}
.p-contact-thanx__head {
  font-size: 2rem;
}
.p-contact-thanx__txt {
  margin-top: 30px;
}
.p-contact-thanx__btn {
  margin-top: 60px;
  text-decoration: underline;
  color: #335266;
}

/*
Utility
----------------------------- */
/*
---
name: index
category:
  - object
  - object/utility/index
---
*/
/*
---
name: align
category:
  - object
  - object/utility/align
---

text-alignの設定

*/
.u-align-left {
  text-align: left !important;
}

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

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

.u-align-justify {
  text-align: justify !important;
}

@media screen and (min-width: 768px) {
  .u-md-align-left {
    text-align: left !important;
  }
  .u-md-align-center {
    text-align: center !important;
  }
  .u-md-align-right {
    text-align: right !important;
  }
  .u-md-align-justify {
    text-align: justify !important;
  }
}
@media screen and (max-width: 768px) {
  .u-sm-align-left {
    text-align: left !important;
  }
  .u-sm-align-center {
    text-align: center !important;
  }
  .u-sm-align-right {
    text-align: right !important;
  }
  .u-sm-align-justify {
    text-align: justify !important;
  }
}
/*
---
name: text
category:
  - object
  - object/utility/color
---

color

*/
.u-color-white {
  color: #fff;
}

/*
---
name: responsive-helper
category:
  - object
  - object/utility/responsive-helper
---

responsiveの設定

*/
.u-no {
  display: none;
}

@media screen and (max-width: 992px) {
  .u-lg-no {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .u-md-no {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .u-sm-no {
    display: none;
  }
}

.u-lg-block {
  display: none;
}
@media screen and (max-width: 992px) {
  .u-lg-block {
    display: block;
  }
}

.u-md-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-md-block {
    display: block;
  }
}

.u-sm-block {
  display: none;
}
@media screen and (max-width: 576px) {
  .u-sm-block {
    display: block;
  }
}

.u-mt-15 {
  margin-top: 15px;
}

/*
---
name: spacing
category:
  - object
  - object/utility/spacing
---

spacingの設定

*/
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mt-10 {
  margin-top: 1rem !important;
}

.u-mt-20 {
  margin-top: 2rem !important;
}

.u-mt-30 {
  margin-top: 3rem !important;
}

.u-mt-40 {
  margin-top: 4rem !important;
}

.u-mt-50 {
  margin-top: 5rem !important;
}

.u-mt-60 {
  margin-top: 6rem !important;
}

.u-mt-70 {
  margin-top: 7rem !important;
}

.u-mt-80 {
  margin-top: 8rem !important;
}

.u-mt-90 {
  margin-top: 9rem !important;
}

.u-mt-100 {
  margin-top: 10rem !important;
}

.u-mb-10 {
  margin-bottom: 1rem !important;
}

.u-mb-20 {
  margin-bottom: 2rem !important;
}

.u-mb-30 {
  margin-bottom: 3rem !important;
}

.u-mb-40 {
  margin-bottom: 4rem !important;
}

.u-mb-50 {
  margin-bottom: 5rem !important;
}

.u-mb-60 {
  margin-bottom: 6rem !important;
}

.u-mb-70 {
  margin-bottom: 7rem !important;
}

.u-mb-80 {
  margin-bottom: 8rem !important;
}

.u-mb-90 {
  margin-bottom: 9rem !important;
}

.u-mb-100 {
  margin-bottom: 10rem !important;
}

.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/*
---
name: text
category:
  - object
  - object/utility/text
---

テキスト設定

*/
.u-text-10 {
  font-size: 1rem !important;
}

.u-text-11 {
  font-size: 1.1rem !important;
}

.u-text-12 {
  font-size: 1.2rem !important;
}

.u-text-13 {
  font-size: 1.3rem !important;
}

.u-text-14 {
  font-size: 1.4rem !important;
}

.u-text-15 {
  font-size: 1.5rem !important;
}

.u-text-16 {
  font-size: 1.6rem !important;
}

.u-text-17 {
  font-size: 1.7rem !important;
}

.u-text-18 {
  font-size: 1.8rem !important;
}

.u-text-19 {
  font-size: 1.9rem !important;
}

.u-text-20 {
  font-size: 2rem !important;
}

.u-text-21 {
  font-size: 2.1rem !important;
}

.u-text-22 {
  font-size: 2.2rem !important;
}

.u-text-23 {
  font-size: 2.3rem !important;
}

.u-text-24 {
  font-size: 2.4rem !important;
}

.u-text-25 {
  font-size: 2.5rem !important;
}

.u-text-26 {
  font-size: 2.6rem !important;
}

.u-text-27 {
  font-size: 2.7rem !important;
}

.u-text-28 {
  font-size: 2.8rem !important;
}

.u-text-29 {
  font-size: 2.9rem !important;
}

.u-text-30 {
  font-size: 3rem !important;
}

.u-text-normal {
  font-weight: normal;
}

.u-text-bold {
  font-weight: bold;
}

.u-text-middle {
  font-weight: 500;
}

.u-text-lh125 {
  line-height: 1.25;
}

.u-text-lh2 {
  line-height: 2 !important;
}

.u-text-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.u-text-sans-serif {
  font-family: "Noto Sans JP", sans-serif;
}/*# sourceMappingURL=style.css.map */