@charset "UTF-8";
:root {
  --c-black: #333;
  --c-white: #fff;
  --c-gray-light: #EDEDED;
  --c-gray-semilight: #d5d5d5;
  --c-gray: #ddd;
  --c-gray-dark: #666;
  --c-gold: #5f5033;
  --c-gold-light: #B9AF9C;
}

/*------------------------------------------------------------------------

1.Foundation

------------------------------------------------------------------------*/
/* reset
---------------------------------------------------------- */
html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, img, dl, dt, dd, ol, ul, li, form, label, legend, table, tbody, tr, th, td, article, embed, footer, header, hgroup, nav, section, time {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

main {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* font
---------------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.8rem;
  color: var(--c-black);
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  min-width: 1240px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
    letter-spacing: 0.05em;
  }
}
/* common
---------------------------------------------------------- */
a {
  color: #154AA5;
  transition: all 0.5s;
}
@media (hover: hover) {
  a:hover {
    color: #1959C6;
  }
}

body {
  -webkit-text-size-adjust: 100%;
}

button {
  cursor: pointer;
}

strong span {
  font-weight: bold;
}

/* table */
table {
  width: 100%;
  margin: 0 0 20px 0;
  line-height: 1.5;
}
table th, table td {
  border: 1px solid var(--c-gray-dark);
  border-collapse: collapse;
  border-spacing: 0;
  padding: 20px;
  font-size: 100%;
  vertical-align: middle;
}
table th {
  background: var(--c-gray-light);
}
table td {
  background: var(--c-white);
}

/*------------------------------------------------------------------------

2.Layout

------------------------------------------------------------------------*/
.l-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-inner__s {
  max-width: 840px;
}

@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 12px;
  }
}
/* header
---------------------------------------------------------- */
/*top header*/
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.l-header__logo {
  padding: 0 0 0 40px;
  height: 100px;
  display: flex;
  align-items: center;
}
.l-header__logo img {
  width: 300px;
}
.l-header__links {
  display: flex;
  align-items: center;
}
.l-header__links .links-tel a {
  color: var(--c-black);
  text-decoration: none;
  font-size: 2.6rem !important;
  margin: 0 30px 0 0;
  letter-spacing: 0.1em;
}
.l-header__links .links-tel a::before {
  content: "";
  display: inline-block;
  background-image: url(../img/ico_tel_g.svg);
  width: 22px;
  height: 22px;
  margin: -2px 5px 0 0;
  vertical-align: middle;
}
.l-header__links .links-btn {
  display: flex;
}
.l-header__links .links-btn__line, .l-header__links .links-btn__contact {
  height: 100px;
  display: flex;
  align-items: center;
  color: var(--c-white);
  text-decoration: none;
  background: no-repeat left 20px center var(--c-black);
  background-size: 20px;
  font-size: 1.5rem;
  padding: 0 20px 0 50px;
}
@media (hover: hover) {
  .l-header__links .links-btn__line:hover, .l-header__links .links-btn__contact:hover {
    opacity: 0.8;
    color: var(--c-white);
  }
}
.l-header__links .links-btn__line {
  background-image: url(../img/ico_line.svg);
  background-color: var(--c-gold-light);
}
.l-header__links .links-btn__contact {
  background-image: url(../img/ico_mail.svg);
}

.l-nav {
  width: 100%;
}
.l-nav ul {
  display: flex;
  justify-content: center;
  height: 70px;
  background: var(--c-gray-light);
}
.l-nav ul li > a, .l-nav ul li > span {
  text-decoration: none;
  font-size: 1.4rem;
  color: var(--c-black);
  letter-spacing: 0.075em;
  padding: 0 20px;
  display: flex;
  height: 100%;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}
.l-nav ul .has-menu-sub {
  position: relative;
}
.l-nav ul .has-menu-sub > span {
  padding-right: 36px;
}
.l-nav ul .has-menu-sub > span::after {
  content: "";
  width: 6px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(90deg) translate(-5px, 0);
  background: url(../img/arrow_link.svg) no-repeat center;
  background-size: contain;
}
.l-nav ul .menu-sub {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  background: var(--c-gray-light);
  z-index: 5;
  transition: all 0.3s;
}
.l-nav ul .menu-sub a {
  text-decoration: none;
  color: var(--c-black);
  display: block;
  font-size: 1.4rem;
  padding: 0 15px;
}
@media (hover: hover) {
  .l-nav ul .menu-sub a:hover {
    background: var(--c-black);
    color: var(--c-white);
  }
  .l-nav ul .menu-sub a:hover span {
    border-color: transparent !important;
  }
}
.l-nav ul .menu-sub a span {
  display: block;
  padding: 10px 0;
  white-space: nowrap;
}
.l-nav ul .menu-sub a:not(:first-of-type) span {
  border-top: 1px solid var(--c-gray-semilight);
}
.l-nav ul .has-menu-sub:hover .menu-sub {
  opacity: 1;
  pointer-events: visible;
}

/*drawer menu*/
.drawer-hamburger {
  display: none;
}

@media screen and (max-width: 767px) {
  .l-header__logo {
    padding: 0 12px;
    height: 60px;
  }
  .l-header__logo img {
    width: 222px;
  }
  .l-header__links {
    display: none;
  }
  .l-nav {
    display: none;
  }
  .drawer-hamburger {
    display: block;
    background: var(--c-black) !important;
    padding: 0 15px;
    width: 30px;
    height: 60px;
    right: 0;
    z-index: 10;
  }
  .drawer-hamburger::after {
    content: "menu";
    color: var(--c-white);
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-indent: 0.05em;
  }
  .drawer-hamburger-icon {
    background: var(--c-white);
    margin-top: -5px;
  }
  .drawer-hamburger-icon::before, .drawer-hamburger-icon::after {
    background: var(--c-white);
  }
  .drawer--right.drawer-open .drawer-hamburger {
    right: 0;
  }
  .drawer--right .drawer-nav {
    width: calc(100vw - 40px);
    right: calc(-100vw + 40px);
  }
  .drawer-overlay {
    z-index: 8;
  }
  .drawer-nav {
    padding: 70px 30px 30px;
    background: var(--c-white);
    text-align: center;
    z-index: 9;
  }
  .drawer-nav ul {
    margin: 0 0 30px;
  }
  .drawer-nav li {
    margin: 0 0 15px;
  }
  .drawer-nav li a {
    text-decoration: none;
    color: var(--c-black);
    font-size: 1.5rem;
  }
  .drawer-nav li a:hover {
    text-decoration: none;
    color: var(--c-black);
    font-size: 1.5rem;
  }
  .drawer-nav .l-nav__contact {
    font-size: 1.5rem;
  }
}
.l-pagetit {
  height: 360px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.l-pagetit h1 {
  color: var(--c-white);
  font-size: 3.6rem;
  margin-bottom: 60px;
  z-index: 4;
  text-align: center;
  width: 100%;
  line-height: 1.4;
}

.l-pagetit__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.l-pagetit::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 2;
}
.l-pagetit::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(../img/bg_wave_pagetit.svg) no-repeat center bottom;
  background-size: 103%;
  z-index: 4;
}

.breadcrumbs {
  font-size: 1.4rem;
  margin: 0 0 40px;
  padding: 10px 0;
}
.breadcrumbs a {
  color: var(--c-black);
}

.bread-in-tit .breadcrumbs {
  margin: 0 0 calc(-1 * (2.45rem + 20px));
  position: relative;
  z-index: 2;
}
.bread-in-tit .breadcrumbs * {
  color: var(--c-white);
}
@media screen and (max-width: 767px) {
  .bread-in-tit .breadcrumbs {
    padding: 5px 0;
    margin: 0 0 calc(-1 * (2.1rem + 10px));
  }
}

@media screen and (max-width: 767px) {
  .l-pagetit {
    height: 190px;
    padding: 0 12px;
  }
  .l-pagetit h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .breadcrumbs {
    font-size: 1.2rem;
    margin: 0 0 25px;
  }
}
/* 2col / sidebar
---------------------------------------------------------- */
.l-2col-wrap {
  padding: 40px 0 80px;
}
.l-2col-wrap .l-inner {
  display: flex;
}
.l-2col-wrap .l-inner .p-single, .l-2col-wrap .l-inner .p-list {
  flex: 1;
}
.l-2col-wrap .l-inner .p-post-nav {
  width: 300px;
  margin: 0 0 0 40px;
}

@media screen and (max-width: 767px) {
  .l-2col-wrap {
    padding: 20px 0 40px;
  }
  .l-2col-wrap .l-inner {
    display: block;
  }
  .l-2col-wrap .l-inner .p-single {
    width: 100%;
  }
  .l-2col-wrap .l-inner .p-post-nav {
    width: 100%;
    margin: 50px 0 0;
  }
}
.l-hoken {
  background: var(--c-gray-light);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 12px;
  margin: 60px 0 0;
}
.l-hoken__img {
  padding: 0 20px 0 0;
  flex: 0 0 auto;
  margin: 0 20px 0 0;
  border-right: 1px solid var(--c-gray-dark);
}
.l-hoken__img img {
  width: 144px;
}
.l-hoken__txt {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-hoken {
    margin: 30px 0 0;
  }
  .l-hoken__img {
    padding: 0 10px 0 0;
    margin: 0 10px 0 0;
  }
  .l-hoken__img img {
    width: 120px;
  }
  .l-hoken__txt {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

/* footer
---------------------------------------------------------- */
.l-footer {
  background: var(--c-black);
  padding: 80px 0 30px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 40px 0 70px;
  }
}
.l-footer * {
  color: var(--c-white);
}
.l-footer__inner {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
  }
}
.l-footer__info {
  padding: 0 60px 0 0;
  margin: 0 40px 0 0;
  border-right: 1px solid var(--c-gray-dark);
}
.l-footer__info__logo {
  width: 56px;
}
.l-footer__info__tit {
  font-size: 1.7rem;
  margin: 15px 0;
}
.l-footer__info__address {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    order: 3;
    padding: 0 0 20px;
    margin: 30px 0 20px;
    border: none;
    border-bottom: 1px solid var(--c-gray-dark);
    text-align: center;
  }
  .l-footer__info__logo {
    width: 45px;
    margin: 0 auto;
  }
  .l-footer__info__tit {
    font-size: 1.6rem;
    margin: 10px 0;
  }
  .l-footer__info__address {
    font-size: 1.4rem;
  }
}
.l-footer__link {
  display: flex;
}
.l-footer__link ul:first-of-type {
  margin: 0 30px 0 0;
}
.l-footer__link ul li a {
  text-decoration: none;
  color: var(--c-white) !important;
  padding: 15px 20px;
  display: block;
  font-size: 1.4rem;
}
@media (hover: hover) {
  .l-footer__link ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__link ul li a {
    padding: 10px 12px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__link {
    order: 1;
  }
}
.l-footer__contact {
  margin: 0 0 0 auto;
  padding-top: 15px;
}
.l-footer__contact a {
  text-decoration: none;
  color: var(--c-white) !important;
}
.l-footer__contact__tel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-footer__contact__tel span {
  font-size: 1.3rem;
}
.l-footer__contact__tel a {
  display: flex;
  align-items: center;
  font-size: 2.6rem;
  line-height: 1;
}
.l-footer__contact__tel a::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/ico_tel_w.svg) no-repeat center/contain;
  margin: 0 5px -2px 0;
}
.l-footer__contact__btn {
  margin: 25px 0 40px;
  display: flex;
  justify-content: space-between;
}
.l-footer__contact__btn a {
  width: calc((100% - 1px) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
}
.l-footer__contact__btn a::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/ico_mail.svg) no-repeat center/contain;
  margin: 0 10px 0 0;
}
.l-footer__contact__btn a.btn-line::before {
  background: url(../img/ico_line.svg) no-repeat center/contain;
}
@media (hover: hover) {
  .l-footer__contact__btn a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.l-footer__contact__douisyo {
  font-size: 1.2rem;
  border: 1px solid var(--c-white);
  padding: 0.8em 1em;
  letter-spacing: 0;
}
.l-footer__contact__douisyo a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .l-footer__contact {
    order: 2;
    margin: 20px 0 0;
    padding: 0;
  }
  .l-footer__contact__tel {
    justify-content: center;
  }
  .l-footer__contact__tel span {
    font-size: 1.2rem;
    margin: 0 1em 0 0;
  }
  .l-footer__contact__tel a {
    font-size: 2.2rem;
  }
  .l-footer__contact__tel a::before {
    width: 15px;
    height: 15px;
    margin: 0 5px -2px 0;
  }
  .l-footer__contact__btn {
    margin: 25px 0 40px;
    display: flex;
    justify-content: space-between;
  }
  .l-footer__contact__btn a {
    width: calc((100% - 1px) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
  }
  .l-footer__contact__btn a::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../img/ico_mail.svg) no-repeat center/contain;
    margin: 0 10px 0 0;
  }
  .l-footer__contact__btn a.btn-line::before {
    background: url(../img/ico_line.svg) no-repeat center/contain;
  }
}
@media screen and (max-width: 767px) and (hover: hover) {
  .l-footer__contact__btn a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__contact__douisyo {
    font-size: 1.2rem;
    border: 1px solid var(--c-white);
    padding: 0.8em 1em;
    letter-spacing: 0;
  }
  .l-footer__contact__douisyo a {
    text-decoration: underline;
  }
}
.l-footer__copy {
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
  margin: 50px 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    order: 4;
    margin: 0;
  }
}

/*fixed-cta*/
.fixed-cta {
  background: rgba(255, 255, 255, 0.6);
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 0;
}
.fixed-cta ul {
  padding: 5px;
  text-align: center;
  display: flex;
  justify-content: space-between;
}
.fixed-cta li {
  background: var(--c-white);
  border-radius: 4px;
  width: calc((100% - 10px) / 3);
  flex: 0 0 auto;
}
.fixed-cta li a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-size: 1.1rem;
}
.fixed-cta li a strong {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  text-align: left;
}
.fixed-cta li a strong::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin: 0 5px 0 0;
}
.fixed-cta li a.cta-btns__tel {
  background: var(--c-white);
  color: var(--c-black);
  border: 1px solid var(--c-black);
}
.fixed-cta li a.cta-btns__tel strong::before {
  background-image: url(../img/ico_tel_g.svg);
  width: 20px;
  height: 20px;
  margin: 0 5px 0 0;
}
.fixed-cta li a.cta-btns__line {
  color: var(--c-white);
  background: var(--c-gold-light);
}
.fixed-cta li a.cta-btns__line strong::before {
  background-image: url(../img/ico_line.svg);
  width: 18px;
  height: 18px;
  margin: 0 5px 0 0;
}
.fixed-cta li a.cta-btns__btn {
  color: var(--c-white);
  background: var(--c-black);
}
.fixed-cta li a.cta-btns__btn strong::before {
  content: "";
  display: inline-block;
  background: url(../img/ico_mail.svg) no-repeat center;
  width: 18px;
  height: 18px;
  background-size: contain;
  vertical-align: middle;
  margin: 0 5px 0 0;
}

.pagetop {
  position: fixed;
  z-index: 4;
  bottom: 120px;
  right: 30px;
  writing-mode: vertical-rl;
  color: var(--c-gray-dark) !important;
  text-decoration: none;
  font-size: 1.4rem;
  background: url(../img/arrow_pagetop.svg) no-repeat left top;
  background-size: 12px;
  padding: 14px 0 0;
  line-height: 14px;
}

.c-hover img {
  transition: all 0.3s;
}
.c-hover:hover img {
  opacity: 0.8;
}

/*------------------------------------------------------------------------

3.Object

------------------------------------------------------------------------*/
/*------------------------------------------------------------------------
3-i.Component
------------------------------------------------------------------------*/
/*c-tit*/
.c-tit1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
  margin: 0 0 60px;
}
.c-tit1 .txt-jp {
  font-size: 3.4rem;
  order: 1;
  letter-spacing: 0.2em;
}
.c-tit1 .txt-en {
  font-size: 1.2rem;
  order: 3;
}
.c-tit1::after {
  order: 2;
  content: "";
  width: 350px;
  height: 20px;
  background: url(../img/deco_01.svg) no-repeat center;
  background-size: contain;
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .c-tit1 {
    line-height: 1.4;
    margin: 0 0 30px;
  }
  .c-tit1 .txt-jp {
    font-size: 2.4rem;
  }
  .c-tit1 .txt-en {
    font-size: 1rem;
  }
  .c-tit1::after {
    width: 175px;
    height: 10px;
    background-size: contain;
    margin: 7px 0;
  }
}
@media screen and (max-width: 480px) {
  .c-tit1 .txt-jp {
    font-size: 1.8rem;
  }
}

.c-tit2 {
  font-size: 2.2rem;
  padding: 10px 20px;
  margin: 0 0 40px;
  position: relative;
  background: linear-gradient(#4b4b4b 0%, #404040 53.49%, #333 100%);
  color: var(--c-white);
  font-weight: 600;
  position: relative;
}
.c-tit2.mt {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .c-tit2 {
    font-size: 1.8rem;
    padding: 5px 10px;
    margin: 0 0 20px;
    line-height: 1.4;
  }
  .c-tit2.mt {
    margin-top: 40px;
  }
}

.c-tit3 {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1;
  margin: 0 0 40px;
  color: var(--c-black);
}

.c-tit4 {
  font-size: 2rem;
  color: var(--c-white);
  background: var(--c-black);
  padding: 5px 10px;
  line-height: 1.4;
  margin: 0 0 30px;
}

.c-tit5 {
  font-size: 1.5rem;
  margin: 30px 0 10px;
  border-left: 3px solid var(--c-black);
  line-height: 1.4;
  padding: 0 0 0 10px;
}

@media screen and (max-width: 767px) {
  .c-tit3 {
    font-size: 1.7rem;
    margin: 0 0 20px;
    line-height: 1.4;
  }
  .c-tit4 {
    font-size: 1.6rem;
    padding: 5px 10px;
    line-height: 1.4;
    margin: 0 0 15px;
  }
}
/*c-btn*/
.c-btn1 {
  min-width: 400px;
  border-radius: 1px;
  background: linear-gradient(90deg, #b4a78b 0%, #efe6d3 28.57%, #e6deca 48.77%, #d5cab2 70.44%, #a7997b 100%);
  display: inline-block;
  color: var(--c-black) !important;
  font-size: 1.8rem;
  line-height: 1.4;
  padding: 15px 40px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  position: relative;
}
.c-btn1::after {
  content: " »";
}
.c-btn1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: all 0.3s;
}
.c-btn1.btn-s {
  min-width: initial;
}
@media (hover: hover) {
  .c-btn1:hover::after {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .c-btn1 {
    min-width: 240px;
    font-size: 1.5rem;
    padding: 10px 40px;
  }
}

/*c-exlist*/
.c-exlist {
  margin: 1em 0 1.5em;
  background: #f8f8f8;
}
.c-exlist dl {
  font-size: 1.6rem;
  padding: 20px !important;
  margin: 0;
  border: 1px solid var(--c-gray) !important;
}
.c-exlist dl:not(:last-of-type) {
  margin: 0 0 1em;
}
.c-exlist dl dt {
  font-weight: 600;
  margin-bottom: 5px;
}
.c-exlist dl dt:not(:first-of-type) {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dotted var(--c-gray);
}
@media screen and (max-width: 767px) {
  .c-exlist dl {
    font-size: 1.4rem;
    padding: 15px !important;
  }
  .c-exlist dl dt {
    margin-bottom: 0;
  }
  .c-exlist dl dt:not(:first-of-type) {
    margin-top: 1rem;
    padding-top: 1rem;
  }
}

/*c-table*/
.c-table1 {
  margin: 0;
}
.c-table1 th, .c-table1 td {
  background: none;
  border: none;
  text-align: left;
  border-bottom: 1px solid #b0aea8;
  padding: 20px 0;
}
.c-table1 tr:last-of-type th, .c-table1 tr:last-of-type td {
  border-bottom: none;
}
.c-table1 th {
  padding-right: 40px;
}

.c-th-g th {
  color: var(--c-black);
}

.c-td-r td {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .c-table1 th, .c-table1 td {
    padding: 10px 0;
    font-size: 1.3rem;
  }
  .c-table1 th {
    padding-right: 20px;
    white-space: nowrap;
  }
}
/*c-form*/
.c-form {
  max-width: 800px;
  margin: 0 auto;
}
.c-form dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-form dt {
  width: 15em;
  margin: 0 0 15px;
  padding: 11px 0 0;
}
.c-form dd {
  width: calc(100% - 15em);
  margin: 0 0 15px;
}
.c-form .must::before {
  content: "必須";
  display: inline-block;
  background: #d40604;
  color: var(--c-white);
  font-size: 1.2rem;
  padding: 5px 5px;
  margin: 0 10px 0 0;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
}
.c-form input, .c-form button, .c-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  font-size: 16px;
}
.c-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  font-size: 16px;
  resize: vertical;
}
.c-form input[type=checkbox], .c-form input[type=radio] {
  display: none;
}
.c-form input[type=submit], .c-form input[type=button] {
  cursor: pointer;
}
.c-form label, .c-form button {
  cursor: pointer;
}
.c-form select {
  cursor: pointer;
}
.c-form select::-ms-expand {
  display: none;
}
.c-form *::placeholder {
  color: #999 !important;
}
.c-form input, .c-form textarea {
  background: var(--c-white);
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  margin: 0 0 10px 0;
}
.c-form input.input-s {
  width: 6em;
}
.c-form input:focus {
  background: #f3eedf;
}
.c-form textarea:focus {
  background: #f3eedf;
}
.c-form input.wpcf7-not-valid, .c-form textarea.wpcf7-not-valid, .c-form select.wpcf7-not-valid {
  background: #f5e5e5;
}
.c-form .name_field {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-form .name_field > span {
  width: 49%;
}
.c-form .wpcf7-checkbox, .c-form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-form .wpcf7-list-item {
  margin: 0 0 2% 0;
  width: 49%;
}
.c-form .wpcf7-list-item .wpcf7-list-item-label {
  background: var(--c-white);
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 10px 10px 35px;
  display: block;
  position: relative;
}
.c-form .wpcf7-list-item .wpcf7-list-item-label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
  border: 1px solid #999;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: var(--c-white);
}
.c-form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label:before {
  border-radius: 50%;
  width: 16px;
  height: 16px;
}
.c-form .wpcf7-list-item input:checked + .wpcf7-list-item-label {
  background: #f3eedf;
}
.c-form .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 12px;
  width: 5px;
  height: 10px;
  transform: rotate(40deg) translate(-35%, -60%);
  border-bottom: 3px solid var(--c-black);
  border-right: 3px solid var(--c-black);
}
.c-form .wpcf7-radio .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  width: 12px;
  height: 12px;
  background: var(--c-black);
  border-radius: 50%;
  top: 50%;
  left: 13px;
  transform: translate(0, -50%);
  border: none;
}
.c-form textarea {
  height: 8em;
}
.c-form .file-desc {
  margin: 0 0 20px;
  border: 2px solid #79a91f;
  padding: 15px;
}
.c-form .file-desc p {
  font-size: 14px;
  margin: 0 0 10px;
}
.c-form .input-caution {
  margin: -5px 0 20px;
  font-size: 0.8em;
  color: var(--c-gray-dark);
}
.c-form input[type=file] {
  width: auto;
  font-size: 1.2rem;
}
.c-form .contact-first-desc {
  margin: 40px 0 20px;
}
.c-form .contactAddress {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-form .contactAddress__head {
  display: flex;
  align-items: center;
}
.c-form .your-zipcode {
  margin: 0 10px 0 5px;
}
.c-form .contactAddress__head input {
  margin: 0 0 10px;
  display: block;
}
.c-form select {
  background: var(--c-white);
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  margin: 0 0 10px;
}

/*フォームリセット*/
/*フォーム装飾*/
.icon_zip {
  margin: 0 0 10px;
}

.c-form-privacy {
  height: 300px;
  overflow-y: scroll;
  background: var(--c-white);
  padding: 30px;
  word-break: break-all;
}
.c-form-privacy h3 {
  font-size: 1.8rem;
  margin: 0 0 15px;
  text-align: center;
  color: var(--c-black);
}
.c-form-privacy h4 {
  font-size: 1.5rem;
  margin: 30px 0 10px;
  border-left: 3px solid var(--c-black);
  line-height: 1.4;
  padding: 0 0 0 10px;
}
.c-form-privacy p {
  font-size: 1.3rem;
}

.c-form-send {
  margin: 20px 0;
  text-align: center;
  line-height: 1.4;
  position: relative;
}

.c-form .wpcf7-acceptance .wpcf7-list-item {
  width: auto;
}
.c-form input[type=submit] {
  background: var(--c-black);
  padding: 15px 30px;
  color: var(--c-white);
  border: none;
  font-size: 16px;
  margin: 20px 0 0;
}
.c-form input[type=submit]:hover {
  opacity: 0.7;
  cursor: pointer;
}
.c-form input[type=submit].wpcf7-submit:disabled {
  cursor: not-allowed;
  background: #ccc;
}

.wpcf7 .ajax-loader {
  position: absolute !important;
  right: 20px;
  bottom: 24px;
}

.c-form .wpcf7-not-valid-tip {
  color: #cf0000;
  display: inline-block;
  line-height: 1;
  font-size: 1.4rem;
}
.c-form select + .wpcf7-not-valid-tip {
  margin: 0 0 0 10px;
}

.wpcf7-response-output {
  max-width: 800px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

.recaptcha_policy {
  text-align: center;
  font-size: 1.1rem !important;
  color: -dark !important;
  line-height: 1.5;
}
.recaptcha_policy a {
  font-size: 1.1rem !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (max-width: 767px) {
  .c-form dl {
    display: block;
  }
  .c-form dt {
    width: 100%;
    margin: 0 0 5px;
    padding: 0;
    font-size: 1.4rem;
  }
  .c-form dd {
    width: 100%;
    margin: 0 0 15px;
    font-size: 1.4rem;
  }
  .c-form button, .c-form select {
    font-size: 1.4rem;
  }
  .c-form .must::before {
    font-size: 1.1rem;
    padding: 5px 5px;
  }
  .c-form-send {
    font-size: 1.4rem;
  }
  .c-form input[type=submit] {
    margin: 15px 0 0;
  }
  .c-form-privacy {
    height: 200px;
    padding: 15px;
  }
  .c-form-privacy h3 {
    font-size: 1.6rem;
    margin: 0 0 10px;
  }
  .c-form-privacy h4 {
    font-size: 1.4rem;
    margin: 25px 0 10px;
  }
  .c-form-privacy p {
    font-size: 1.2rem;
  }
  .recaptcha_policy {
    text-align: left;
  }
}
/*検索BOX*/
.c-search {
  position: relative;
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}

.c-search-field {
  font-size: 16px;
  width: 100%;
  padding: 10px;
  border: solid 1px #ccc;
  background-color: var(--c-white);
  font-family: inherit;
}
.c-search-field:focus {
  outline: none;
  background-color: #f3eedf;
}

.c-search-submit {
  position: absolute;
  top: 0;
  right: 10px;
  margin-top: 12px;
  padding: 0;
  cursor: pointer;
  border: none;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon_search.svg) no-repeat center;
  background-size: contain;
}

/*------------------------------------------------------------------------
3-ii.Project
------------------------------------------------------------------------*/
/*----------
p-top
----------*/
/*p-top-mv*/
.p-top-mv {
  position: relative;
  overflow: hidden;
}
.p-top-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 80%);
}
.p-top-mv__txt {
  position: absolute;
  top: 45%;
  left: calc(50% - 550px);
  transform: translateY(-50%);
  z-index: 1;
  color: var(--c-white);
}
.p-top-mv__txt h1 {
  font-size: 3.8rem;
  line-height: 1.4;
  margin: 0 0 60px;
}
.p-top-mv__txt p {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
}
.p-top-mv .svg-bg {
  position: absolute;
  width: 100%;
  bottom: -1px;
  z-index: 1;
}
.p-top-mv .svg-bg svg {
  display: block;
}
.p-top-mv__slide img:not(:first-child) {
  display: none;
}
.p-top-mv .slick-slide img {
  width: 100%;
  max-height: 80vh;
  min-height: 480px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-mv__txt {
    top: 0;
    left: 0;
    transform: none;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 10%;
  }
  .p-top-mv__txt h1 {
    font-size: 2.2rem;
    margin: 0 0 30px;
  }
  .p-top-mv__txt p {
    font-size: 1.6rem;
  }
  .p-top-mv .slick-slide img {
    min-height: 280px;
  }
}
@media screen and (max-width: 480px) {
  .p-top-mv::before {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 120%);
  }
  .p-top-mv__txt {
    padding: 0 0 0 20px;
  }
  .p-top-mv__txt h1 {
    font-size: 1.8rem;
    margin: 0 0 30px;
  }
  .p-top-mv__txt p {
    font-size: 1.2rem;
  }
}

/*p-top-concept*/
.p-top-concept {
  position: relative;
  background: var(--c-black);
  padding: 60px 0 100px;
  color: var(--c-white);
}
.p-top-concept__tit {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.8;
  margin: 0 0 50px;
}
.p-top-concept__tit span {
  display: block;
  font-size: 4rem;
  letter-spacing: 0.2em;
}
.p-top-concept__txt {
  text-align: center;
}
.p-top-concept__txt p {
  margin: 0 0 40px;
}
.p-top-concept__btn {
  display: flex;
  justify-content: center;
  margin: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .p-top-concept {
    padding: 30px 0 50px;
  }
  .p-top-concept__tit {
    font-size: 1.6rem;
    margin: 0 0 25px;
  }
  .p-top-concept__tit span {
    font-size: 2.4rem;
  }
  .p-top-concept__txt {
    text-align: center;
  }
  .p-top-concept__txt p {
    font-size: 1.4rem;
    margin: 0 0 20px;
  }
  .p-top-concept__txt p br {
    display: none;
  }
  .p-top-concept__btn {
    margin: 30px 0 0;
  }
}

/*p-top-loop*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.p-top-loop__wrap {
  display: flex;
  overflow: hidden;
}
.p-top-loop__wrap ul {
  animation: infinity-scroll-left 50s infinite linear 0.5s both;
  display: flex;
  list-style: none;
  padding: 0;
}
.p-top-loop__wrap ul li {
  width: 25vw;
}
.p-top-loop__wrap ul li img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-loop__wrap {
    display: flex;
    overflow: hidden;
  }
  .p-top-loop__wrap ul {
    animation: infinity-scroll-left 35s infinite linear 0.5s both;
  }
  .p-top-loop__wrap ul li {
    width: 33.3333333333vw;
  }
}

/*p-top-menu*/
.p-top-menu {
  padding: 80px 0;
  background: linear-gradient(90deg, #d5cab2 0%, #ede1c7 41.87%, #d5cab2 77.34%, #beb08f 100%);
}
.p-top-menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.p-top-menu__list li {
  width: calc((100% - 60px) / 4);
  text-align: center;
}
.p-top-menu__list__img {
  background: var(--c-white);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
@media (hover: hover) {
  .p-top-menu__list__img a:hover {
    opacity: 0.8;
  }
}
.p-top-menu__list__title {
  font-size: 2.2rem;
  margin: 15px 0;
}
.p-top-menu__list__desc {
  line-height: 1.6;
  font-size: 1.6rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top-menu {
    padding: 40px 0;
  }
  .p-top-menu__list {
    flex-wrap: wrap;
    gap: 20px;
  }
  .p-top-menu__list li {
    width: calc((100% - 20px) / 2);
  }
  .p-top-menu__list__title {
    font-size: 1.8rem;
    margin: 10px 0;
  }
  .p-top-menu__list__desc {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-menu__list {
    gap: 20px;
  }
  .p-top-menu__list li {
    width: 280px;
    flex: 0 0 auto;
    margin: 0 auto;
  }
  .p-top-menu__list__title {
    margin: 10px 0 5px;
  }
}

/*p-top-feature*/
.p-top-feature {
  padding: 80px 0;
  background: #F2EEE6;
}
.p-top-feature__block .block-item {
  background: url(../img/feature_deco1.svg) no-repeat top 10px left 10px, url(../img/feature_deco2.svg) no-repeat bottom 10px right 10px;
  background-color: var(--c-white);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 60px 100px;
}
.p-top-feature__block .block-item:not(:last-of-type) {
  margin: 0 0 60px;
}
.p-top-feature__block .block-item__tit {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--c-gold);
  padding: 0 0 10px;
  margin: 0 0 30px;
  line-height: 1.4;
}
.p-top-feature__block .block-item__tit > span {
  font-style: italic;
  font-size: 6rem;
  margin: 0 20px 0 0;
  color: var(--c-gold-light);
}
.p-top-feature__block .block-item__tit h3 {
  font-size: 2.6rem;
  display: flex;
  align-items: center;
}
.p-top-feature__block .block-item__tit h3 span {
  font-size: 1.7rem;
  color: var(--c-gold);
  margin: 0 0 0 20px;
}
.p-top-feature__block .block-item__body {
  display: flex;
}
.p-top-feature__block .block-item__body__img {
  width: 410px;
  margin: 0 50px 0 0;
}
.p-top-feature__block .block-item__body__txt {
  flex: 1;
  font-size: 1.6rem;
}
.p-top-feature__block .block-item__body__txt > *:not(:last-of-type) {
  margin: 0 0 1em;
}
@media screen and (max-width: 767px) {
  .p-top-feature {
    padding: 40px 0;
  }
  .p-top-feature__block .block-item {
    background-size: 40px;
    padding: 30px 40px;
  }
  .p-top-feature__block .block-item:not(:last-of-type) {
    margin: 0 0 30px;
  }
  .p-top-feature__block .block-item__tit {
    padding: 0 0 10px;
    margin: 0 0 30px;
    justify-content: center;
  }
  .p-top-feature__block .block-item__tit > span {
    font-size: 6rem;
    margin: 0 15px 0 0;
  }
  .p-top-feature__block .block-item__tit h3 {
    flex-direction: column;
    font-size: 2rem;
  }
  .p-top-feature__block .block-item__tit h3 span {
    font-size: 1.4rem;
    margin: 5px 0 0;
  }
  .p-top-feature__block .block-item__body {
    display: block;
  }
  .p-top-feature__block .block-item__body__img {
    float: left;
    width: 50%;
    margin: 0 25px 10px 0;
  }
  .p-top-feature__block .block-item__body__txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-feature__block .block-item {
    background-size: 30px;
    padding: 20px;
  }
  .p-top-feature__block .block-item:not(:last-of-type) {
    margin: 0 0 20px;
  }
  .p-top-feature__block .block-item__tit {
    padding: 0 0 5px;
    margin: 0 0 15px;
    justify-content: center;
  }
  .p-top-feature__block .block-item__tit > span {
    font-size: 4rem;
  }
  .p-top-feature__block .block-item__tit h3 {
    display: block;
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .p-top-feature__block .block-item__tit h3 span {
    display: inline-block;
    font-size: 1.2rem;
    margin: 0;
  }
  .p-top-feature__block .block-item__body {
    display: block;
  }
  .p-top-feature__block .block-item__body__img {
    float: none;
    width: 380px;
    max-width: 100%;
    margin: 0 auto 20px;
  }
}

/*p-top-info*/
.p-top-info {
  padding: 80px 0;
}

.p-top-infor__block {
  display: flex;
  justify-content: space-between;
}

.p-top-info__box {
  width: 580px;
}

.p-top-info__box__title {
  font-size: 2.6rem;
  margin: 0 0 10px;
}

.p-top-info__box__list li {
  padding: 20px 5px;
  border-bottom: 1px solid var(--c-gray);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.p-top-info__box__list__img {
  width: 120px;
}
.p-top-info__box__list__img a {
  display: block;
  padding: 75% 0 0;
  background: no-repeat center;
  background-size: cover;
}

.p-top-info__box__list__txt {
  width: calc(100% - 140px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.p-top-info__box__list__date {
  color: var(--c-black);
  margin: 0 10px 0 0;
  font-size: 1.4rem;
}

.p-top-info__box__list__cat a {
  font-size: 1.2rem;
  margin: 0 5px 0 0;
  text-decoration: none;
}

.p-top-info__box__list__title {
  width: 100%;
  margin: 10px 0 0;
  font-size: 1.6rem;
}
.p-top-info__box__list__title a {
  text-decoration: none;
  color: var(--c-black);
  line-height: 1.4;
  display: block;
}

.p-top-info__box__link {
  text-align: right;
  margin: 30px 0 0;
}
.p-top-info__box__link a {
  color: var(--c-gold);
  font-size: 1.6rem;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .p-top-info {
    padding: 45px 0;
  }
  .p-top-infor__block {
    display: block;
  }
  .p-top-info__box {
    width: 100%;
  }
  .p-top-info__box:nth-of-type(2) {
    margin: 35px 0 0;
  }
  .p-top-info__box__title {
    font-size: 2rem;
    margin: 0 0 5px;
  }
  .p-top-info__box__list li {
    padding: 15px 0;
  }
  .p-top-info__box__list__img {
    width: 80px;
  }
  .p-top-info__box__list__txt {
    width: calc(100% - 95px);
    line-height: 1;
  }
  .p-top-info__box__list__date {
    margin: 0 7px 5px 0;
    font-size: 1.2rem;
  }
  .p-top-info__box__list__cat {
    margin: 0 0 5px;
  }
  .p-top-info__box__list__cat a {
    font-size: 1rem;
    margin: 0 4px 0 0;
  }
  .p-top-info__box__list__title {
    margin: 0;
    font-size: 1.2rem;
  }
  .p-top-info__box__link {
    margin: 15px 0 0;
  }
  .p-top-info__box__link a {
    font-size: 1.2rem;
  }
}
/*p-top-instagram*/
.p-top-instagram .l-inner {
  /* padding: 10px 0 100px; */
  padding: 70px 0 90px;
}

@media screen and (max-width: 767px) {
  .p-top-instagram .l-inner {
    /* padding: 0 0 30px; */
    padding: 45px 0;
  }
  .p-top-instagram #sbi_images {
    padding: 0;
  }
}
/*----------
p-con //下層共通レイアウト
----------*/
.p-com-detail {
  padding: 80px 0;
}

.c-tit1 + .p-com-detail {
  padding: 20px 0 80px;
}

.p-com-detail__block {
  margin: 0 0 60px;
}
.p-com-detail__block:last-of-type {
  margin: 0;
}

.p-com-detail p:not(:last-child) {
  margin: 0 0 40px;
}

.p-com-detail__caution {
  padding: 15px;
  border: 1px solid var(--c-black);
  margin: 50px 0 0;
}

.p-com-detail__caution__tit {
  font-size: 120%;
  margin: 0 0 10px;
}

@media screen and (max-width: 767px) {
  .p-com-detail {
    padding: 40px 0;
  }
  .c-tit1 + .p-com-detail {
    padding: 10px 0 40px;
  }
  .p-com-detail__block {
    margin: 0 0 30px;
  }
  .p-com-detail__block:last-of-type {
    margin: 0;
  }
  .p-com-detail p:not(:last-child) {
    margin: 0 0 20px;
  }
  .p-com-detail__caution {
    padding: 10px;
    margin: 30px 0 0;
  }
  .p-com-detail__caution__tit {
    font-size: 110%;
    margin: 0 0 5px;
    color: var(--c-black);
  }
}
/*----------
p-about
----------*/
.p-about-concept {
  text-align: center;
  padding: 80px 0 0;
}

.p-about-concept__tit {
  font-size: 3rem;
  margin: 0 0 50px;
}

.p-about-concept__img {
  width: 160px;
  margin: 0 auto 50px;
}

.p-about-concept__txt p {
  margin: 0 0 40px;
}
.p-about-concept__txt p:last-of-type {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .p-about-concept {
    padding: 20px 0 0;
  }
  .p-about-concept__tit {
    font-size: 2rem;
    margin: 0 0 25px;
  }
  .p-about-concept__img {
    width: 60px;
    margin: 0 auto 25px;
  }
  .p-about-concept__txt p {
    font-size: 1.4rem;
    margin: 0 0 20px;
    text-align: left;
  }
}
.p-about-gallery {
  margin: 40px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.p-about-gallery img {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 767px) {
  .p-about-gallery {
    margin: 20px 0 0;
    gap: 10px;
  }
  .p-about-gallery img {
    width: calc((100% - 10px) / 2);
  }
}

.p-about-clinic {
  background: #f5f5f5;
  padding: 80px 0;
}

.p-about-clinic__block {
  display: flex;
  justify-content: space-between;
}

.p-about-clinic__block__tbl {
  flex: 1;
}

.p-about-clinic__block__img {
  width: 580px;
  margin: 0 0 0 40px;
}

@media screen and (max-width: 767px) {
  .p-about-clinic {
    padding: 40px 0;
  }
  .p-about-clinic__block {
    display: block;
  }
  .p-about-clinic__block__img {
    width: 100%;
    margin: 20px 0 0;
  }
}
.p-about-access {
  padding: 80px 0;
}

.p-about-access__block {
  display: flex;
  margin: 0 0 80px;
}

.p-about-access__map {
  width: 580px;
  flex: 0 0 auto;
  margin: 0 40px 0 0;
}

.p-about-access__address {
  margin: 50px 0 30px;
}

.p-about-access__gmap .c-btn1 {
  width: 280px;
}

@media screen and (max-width: 767px) {
  .p-about-access {
    padding: 40px 0;
  }
  .p-about-access__block {
    display: block;
    margin: 0 0 40px;
  }
  .p-about-access__map {
    width: 100%;
    margin: 0 0 20px;
  }
  .p-about-access__way li {
    font-size: 1.3rem;
  }
  .p-about-access__address {
    margin: 25px 0 20px;
    font-size: 1.3rem;
  }
  .p-about-access__gmap {
    text-align: center;
  }
  .p-about-access__gmap .c-btn1 {
    width: auto;
  }
}
.p-about-access__route__box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 60px;
}
.p-about-access__route__box:last-of-type {
  margin: 0;
}

.p-about-access__route__item {
  width: 360px;
  margin: 0 60px 30px 0;
}
.p-about-access__route__item:nth-of-type(3n) {
  margin-right: 0;
}

.p-about-access__route__tit {
  color: var(--c-black);
  font-size: 2rem;
  margin: 0 0 30px;
}

.p-about-access__route__img {
  margin: 0 0 15px;
  position: relative;
}
.p-about-access__route__img::after {
  content: "";
  width: 12px;
  height: 16px;
  background: url(../img/arrow_link.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translate(0, -50%);
}

.p-about-access__route__item:nth-of-type(3n) .p-about-access__route__img::after, .p-about-access__route__item:last-of-type .p-about-access__route__img::after {
  display: none;
}

.p-about-access__route__txt {
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-about-access__route__box {
    display: block;
    margin: 0 0 30px;
    padding: 0 0 30px;
    border-bottom: 1px solid #b0aea8;
  }
  .p-about-access__route__box:last-of-type {
    margin: 0;
    padding: 0;
    border: none;
  }
  .p-about-access__route__item {
    width: 100%;
    margin: 0;
  }
  .p-about-access__route__tit {
    font-size: 1.6rem;
    margin: 0 0 15px;
  }
  .p-about-access__route__img {
    margin: 0 0 10px;
  }
  .p-about-access__route__img::after {
    display: none;
  }
  .p-about-access__route__txt {
    font-size: 1.3rem;
  }
  .p-about-access__route .slick-prev, .p-about-access__route .slick-next {
    z-index: 1;
    height: 26px;
    width: 26px;
  }
  .p-about-access__route .slick-prev:before, .p-about-access__route .slick-next:before {
    font-size: 26px;
    opacity: 1;
  }
  .p-about-access__route .slick-prev.slick-disabled:before, .p-about-access__route .slick-next.slick-disabled:before {
    opacity: 0.3;
  }
  .p-about-access__route .slick-prev {
    left: 12px;
  }
  .p-about-access__route .slick-next {
    right: 12px;
  }
}
/*----------
p-doctor
----------*/
.p-doctor {
  padding: 80px 0;
}

.p-doctor-greeting {
  padding: 0 0 80px;
}
.p-doctor-greeting p {
  margin: 0 0 30px;
}
.p-doctor-greeting p:last-of-type {
  margin: 0;
}
.p-doctor-greeting .imgR {
  float: right;
  margin: 0 0 1.5em 1.5em;
  width: 40%;
}
.p-doctor-greeting .imgL {
  float: left;
  margin: 0 1.5em 1.5em 0;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-doctor-greeting {
    padding: 0 0 40px;
    font-size: 1.4rem;
  }
  .p-doctor-greeting p {
    margin: 0 0 1em;
  }
  .p-doctor-greeting p:last-of-type {
    margin: 0;
  }
  .p-doctor-greeting .imgR, .p-doctor-greeting .imgL {
    max-width: 80%;
    float: none;
    display: block;
    margin: 1.5em auto;
    width: auto;
  }
}

.p-doctor-rinen {
  padding: 1.5em 1.5em 3em;
  margin: 2em 0;
  background: #F2EEE6;
}
.p-doctor-rinen__tit {
  text-align: center;
  font-weight: 600;
  font-size: 2.2rem;
  margin: 0 0 20px;
}
.p-doctor-rinen dl {
  margin: 1em auto 0;
  width: 80%;
  padding: 0 0 5px;
  text-align: center;
  background: var(--c-white);
  padding: 1.2em;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
}
.p-doctor-rinen dl dt {
  font-weight: 600;
  text-align: center;
  margin: 0 0 5px;
}
.p-doctor-rinen dl dd {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-doctor-rinen {
    padding: 1.5em 1.5em 2em;
    margin: 2em 0;
  }
  .p-doctor-rinen__tit {
    font-size: 1.8rem;
    margin: 0 0 15px;
  }
  .p-doctor-rinen dl {
    width: 100%;
    text-align: center;
    background: var(--c-white);
    padding: 1.2em;
  }
  .p-doctor-rinen dl dd {
    font-size: 1.4rem;
    text-align: left;
  }
}

.p-doctor-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-doctor-block__tit {
  width: 100%;
  margin: 0 0 40px;
  font-size: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  line-height: 1;
}
.p-doctor-block__tit strong {
  font-size: 1.6rem;
  margin: 0 1em 0 0;
}
.p-doctor-block__tit span {
  font-size: 1.6rem;
  margin: 0 0 0 1em;
  color: var(--c-black);
}

.p-doctor-block__insta {
  margin: 0 0 0 20px;
  height: 20px;
  background: url(../img/icon_insta.svg) no-repeat left bottom;
  background-size: 20px;
  padding: 0 0 0 24px;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--c-black);
  display: flex;
  align-items: center;
}

.p-doctor-block__img {
  width: 420px;
}

.p-doctor-block__message {
  flex: 1;
  margin: 0 0 0 40px;
}
.p-doctor-block__message p {
  margin: 0 0 30px;
}
.p-doctor-block__message p:last-of-type {
  margin: 0;
}

.p-doctor-block__prof {
  width: 100%;
  margin: 40px 0 0;
  display: flex;
  justify-content: space-between;
}

.p-doctor-block__prof__item {
  border-top: 1px solid #b0aea8;
  padding: 20px 0 0;
  width: calc((100% - 80px) / 3);
}
.p-doctor-block__prof__item:nth-of-type(2) {
  margin: 0 40px;
}
.p-doctor-block__prof__item h3 {
  font-size: 1.8rem;
  margin: 0 0 15px;
  color: var(--c-black);
}
.p-doctor-block__prof__item li {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0 0 5px;
}

.p-doctor-block__prof__biography li {
  display: flex;
}
.p-doctor-block__prof__biography .prof-year {
  white-space: nowrap;
}

.p-doctor-block__certificate {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px 0 0;
  gap: 10px;
  /* &::before {
    content: "";
    display: block;
    width: 287px;
    order: 1;
  }

  &::after {
    content: "";
    display: block;
    width: 287px;
  } */
}

.p-doctor-block__certificate__item {
  width: calc((100% - 50px) / 6);
  border: 1px solid var(--c-gray);
  padding: 10px 0;
}

@media screen and (max-width: 767px) {
  .p-doctor {
    padding: 20px 0 40px;
  }
  .p-doctor-block {
    display: block;
  }
  .p-doctor-block__tit {
    margin: 0 0 20px;
    font-size: 2rem;
  }
  .p-doctor-block__tit strong, .p-doctor-block__tit span {
    font-size: 1.3rem;
  }
  .p-doctor-block__insta {
    width: 100%;
    margin: 10px 0 0;
    background-size: 18px;
    padding: 0 0 0 20px;
  }
  .p-doctor-block__img {
    width: 80%;
    margin: 0 auto;
  }
  .p-doctor-block__message {
    margin: 15px 0 0;
    font-size: 1.4rem;
  }
  .p-doctor-block__message p {
    margin: 0 0 15px;
  }
  .p-doctor-block__prof {
    margin: 30px 0 0;
    display: block;
  }
  .p-doctor-block__prof__item {
    padding: 10px 0 0;
    width: 100%;
  }
  .p-doctor-block__prof__item:nth-of-type(2) {
    margin: 30px 0;
  }
  .p-doctor-block__prof__item h3 {
    font-size: 1.6rem;
    margin: 0 0 5px;
  }
  .p-doctor-block__prof__item li {
    font-size: 1.4rem;
  }
  .p-doctor-block__certificate {
    margin: 20px 0 0;
  }
  .p-doctor-block__certificate__item {
    width: calc((100% - 20px) / 3);
  }
}
/*----------
p-recruit
----------*/
.p-recruit-gaiyou {
  padding: 80px 0;
}

.p-recruit-gaiyou-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-recruit-gaiyou-block__txt {
  flex: 1;
}
.p-recruit-gaiyou-block__txt h2 {
  color: var(--c-black);
  font-size: 3rem;
}
.p-recruit-gaiyou-block__txt p {
  margin: 30px 0 0;
}

.p-recruit-gaiyou-block__img {
  width: 400px;
  margin: 0 40px 0 0;
}
.p-recruit-gaiyou-block__img img {
  border-radius: 100%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.p-recruit-detail {
  padding: 40px 0 80px;
}

.p-recruit-detail-catch {
  font-size: 2rem;
  color: var(--c-black);
  text-align: center;
  margin: 0 0 60px;
}

.p-recruit-detail-block {
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  max-width: 850px;
}
.p-recruit-detail-block:last-of-type {
  margin-bottom: 0;
}

.p-recruit-detail-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.p-recruit-detail-box__gaiyou {
  margin: 0 0 50px;
  width: 100%;
}
.p-recruit-detail-box__gaiyou p {
  margin: 0 0 30px;
}
.p-recruit-detail-box__gaiyou p:last-of-type {
  margin: 0;
}

.p-recruit-detail-box__info {
  flex: 1;
}

.p-recruit-detail-box__img {
  width: 500px;
  flex: 0 0 auto;
  margin: 0 0 0 40px;
}

.p-recruit-form {
  padding: 80px 0;
}

.p-recruit-address {
  padding: 10px 15px;
  background: #f0f0f0;
  display: inline-block;
  margin: 15px 0 0;
  font-size: 90%;
}

@media screen and (max-width: 767px) {
  .p-recruit-gaiyou {
    padding: 20px 0 40px;
  }
  .p-recruit-gaiyou-block {
    flex-direction: column-reverse;
  }
  .p-recruit-gaiyou-block__txt h2 {
    font-size: 1.7rem;
    line-height: 1.5;
  }
  .p-recruit-gaiyou-block__txt h2 br {
    display: none;
  }
  .p-recruit-gaiyou-block__txt p {
    font-size: 1.3rem;
    margin: 15px 0 0;
  }
  .p-recruit-gaiyou-block__img {
    width: 70%;
    margin: 30px auto 0;
  }
  .p-recruit-detail {
    padding: 20px 0 40px;
  }
  .p-recruit-detail-catch {
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
    margin: 0 0 30px;
  }
  .p-recruit-detail-catch br {
    display: none;
  }
  .p-recruit-detail-block {
    margin: 0 0 40px;
  }
  .p-recruit-detail-box__gaiyou {
    margin: 0 0 25px;
    order: 2;
  }
  .p-recruit-detail-box__gaiyou p {
    margin: 0 0 15px;
    font-size: 1.4rem;
  }
  .p-recruit-detail-box__info {
    order: 3;
  }
  .p-recruit-detail-box__img {
    width: 100%;
    margin: 0 auto 20px;
    order: 1;
    position: relative;
    height: calc((100vw - 24px) * 0.5625);
    overflow: hidden;
  }
  .p-recruit-detail-box__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .p-recruit-form {
    padding: 40px 0;
  }
}
/*----------
p-contact
----------*/
.p-contact-form {
  padding: 60px 0;
}

.noheadlogo {
  display: block;
  margin: 0 auto 80px;
  width: 300px;
  line-height: 1;
}

.p-contact-line {
  text-align: center;
  margin: 0 0 50px;
}

.p-contact-line__inner {
  display: inline-flex;
  align-items: center;
  padding: 15px;
  border: 2px solid #3cb73c;
}

.p-contact-line p {
  text-align: left;
  margin: 0 10px 0 0;
}

.p-contact-form .c-form-privacy {
  background: #f0f0f0;
}

@media screen and (max-width: 767px) {
  .p-contact-form {
    padding: 30px 0;
  }
  .noheadlogo {
    width: 160px;
    margin: 0 auto 60px;
  }
}
/*----------
p-404
----------*/
.p-404 .p-recruit-gaiyou-block__txt {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-404 {
    padding: 80px 0;
  }
  .p-404 .p-recruit-gaiyou-block__txt p {
    text-align: left;
  }
}
/*----------
p-price
----------*/
.p-price {
  padding: 80px 0;
}
.p-price .l-inner {
  max-width: 800px;
}

.p-menu-price-table {
  margin-bottom: 60px;
  padding: 0 10px;
}
.p-menu-price-table th, .p-menu-price-table td {
  border: none;
  border-top: 1px solid #b0aea8;
}
.p-menu-price-table tr:first-child th, .p-menu-price-table tr:first-child td {
  border-top: none;
}
.p-menu-price-table tr:last-child th {
  white-space: normal;
}
.p-menu-price-table th {
  white-space: normal;
}
.p-menu-price-table td {
  white-space: nowrap;
}
.p-menu-price-table .has-monitor th, .p-menu-price-table .has-monitor td {
  padding-bottom: 10px;
}
.p-menu-price-table .monitor-price th {
  border: 0;
  padding-top: 0;
  color: #d40604;
}
.p-menu-price-table .monitor-price td {
  border: 0;
  padding-top: 0;
  color: #d40604;
  font-size: 2rem;
}
.p-menu-price-table .monitor-price td span {
  font-size: 1.6rem;
}

.p-price-link {
  text-align: right;
  margin: 10px 0 0;
}
.p-price-link a {
  color: var(--c-black);
  text-decoration: none;
}
.p-price-link a:hover {
  text-decoration: underline;
}
.p-price-link a::after {
  content: "の詳細 »";
}

.p-treatment-price__notice {
  font-size: 1.4rem;
  margin: 30px 0 0;
}
.p-treatment-price__notice li {
  text-indent: -1em;
  padding-left: 1em;
  margin: 5px 0 0;
}
.p-treatment-price__notice + .c-table1 {
  margin: 40px 0 0;
}

@media screen and (max-width: 767px) {
  .p-price {
    padding: 40px 0;
  }
  .p-menu-price-table {
    margin-bottom: 30px;
    padding: 0 5px;
  }
  .p-treatment-price .l-inner {
    padding: 0;
  }
  .p-menu-price-table {
    padding: 0 12px 10px;
  }
  .p-menu-price-table th {
    font-size: 1.4rem;
  }
  .p-menu-price-table td {
    font-size: 1.4rem;
  }
  .p-menu-price-table td span {
    font-size: 1rem;
  }
  .p-menu-price-table .has-monitor th, .p-menu-price-table .has-monitor td {
    padding-bottom: 5px;
  }
  .p-menu-price-table .monitor-price td {
    font-size: 1.6rem;
  }
  .p-menu-price-table .monitor-price td span {
    font-size: 1rem;
  }
  .p-price-link {
    margin: 0;
  }
  .p-price-link a {
    font-size: 1.2rem;
  }
  .p-treatment-price__notice {
    font-size: 1.2rem;
    margin: 15px 0 0;
  }
}
.p-price .p-treatment-index {
  margin: 0 0 60px;
}
.p-price .p-treatment-index__box {
  padding: 20px 30px;
}
.p-price .p-treatment-index__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-price .p-treatment-index__list li {
  width: 48%;
  position: relative;
  padding: 0 0 0 20px;
  margin: 5px 0;
  background: url(../img/arrow_down.svg) no-repeat left center;
  background-size: 12px;
}

@media screen and (max-width: 767px) {
  .p-price .p-treatment-index {
    margin: 0 0 30px;
  }
  .p-price .p-treatment-index__box {
    padding: 15px;
  }
  .p-price .p-treatment-index__list li {
    padding: 0 0 0 15px;
    margin: 3px 0;
    background-size: 8px;
  }
}
/*----------
p-faq
----------*/
.p-faq-search {
  padding: 20px 0 0;
}

.p-faq-searchform {
  margin: 0 0 30px;
}

.p-faq-cat {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-faq-cat a {
  line-height: 1.3;
  border: 1px solid var(--c-black);
  border-radius: 4px;
  color: var(--c-black);
  font-size: 1.3rem;
  text-decoration: none;
  padding: 4px 10px;
  margin: 10px 5px 0;
}
.p-faq-cat a.active, .p-faq-cat a:hover {
  color: var(--c-white);
  background: var(--c-black);
}

.p-faq-block {
  padding: 80px 0;
}

.p-faq-box {
  background: var(--c-white);
  padding: 30px;
  margin: 0 0 30px;
  border: 1px solid #eee;
  background: #f8f8f8;
}
.p-faq-box:last-of-type {
  margin: 0;
}
.p-faq-box dt {
  color: var(--c-black);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  padding: 0 0 0 2.7rem;
  margin: 0 0 15px;
}
.p-faq-box dt::before {
  content: "Q.";
  position: absolute;
  top: 0;
  left: 0;
}
.p-faq-box dd {
  font-size: 1.8rem;
  position: relative;
  padding: 0 0 0 2.7rem;
  line-height: 1.6;
  word-break: break-all;
}
.p-faq-box dd::before {
  content: "A.";
  font-size: 2rem;
  position: absolute;
  top: 0;
  left: 0;
}
.p-faq-box dd p {
  margin: 0 0 20px;
}
.p-faq-box dd p:last-of-type {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .p-faq-search {
    padding: 20px 0 0;
  }
  .p-faq-searchform {
    margin: 0 0 30px;
  }
  .p-faq-cat {
    justify-content: flex-start;
  }
  .p-faq-cat a {
    font-size: 1.2rem;
    padding: 2px 6px;
    margin: 5px 5px 0 0;
  }
  .p-faq-block {
    padding: 40px 0;
  }
  .p-faq-box {
    padding: 15px;
    margin: 0 0 15px 0;
  }
  .p-faq-box dt {
    font-size: 1.4rem;
    padding: 0 0 0 2.5rem;
    margin: 0 0 10px;
  }
  .p-faq-box dd {
    font-size: 1.4rem;
    padding: 0 0 0 2.5rem;
  }
  .p-faq-box dd::before {
    font-size: 1.4rem;
  }
  .p-faq-box dd p {
    margin: 0 0 15px;
  }
}
/*----------
p-monitor
----------*/
.p-monitor-detail {
  text-align: center;
  padding: 80px 0;
}

.p-monitor-detail__tit {
  font-size: 3rem;
  color: var(--c-black);
  margin: 0 0 50px;
}

.p-monitor-detail__desc {
  font-size: 1.8rem;
}
.p-monitor-detail__desc strong {
  font-size: 2.4rem;
}
.p-monitor-detail__desc strong.u-fc-g {
  font-size: 3.8rem;
}

.p-monitor-menu__block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.p-monitor-menu__box {
  background: var(--c-white);
  border: 1px solid var(--c-black);
  border-radius: 4px;
  padding: 30px;
  margin: 0 0 20px;
}
.p-monitor-menu__box h3 {
  font-size: 2.2rem;
  margin: 0 0 5px;
}

.p-monitor-menu__box__list {
  display: flex;
  flex-wrap: wrap;
}
.p-monitor-menu__box__list a {
  background: #e9e7e0;
  color: #000;
  padding: 5px 10px;
  margin: 10px 10px 0 0;
  border-radius: 4px;
  line-height: 1.4;
  text-decoration: none;
}
.p-monitor-menu__box__list a:hover {
  opacity: 0.8;
}

.menu-box1 {
  background: url(../img/menu/futaesekkai_mv.png) no-repeat left -90px top -65px;
  background-size: 400px;
  padding-left: 250px;
}

.webp .menu-box1 {
  background-image: url(../../../uploads-webpc/themes/motif-ginza/img/menu/futaesekkai_mv.png.webp);
}

.menu-box2 {
  width: 49%;
  background: url(../img/menu/hyaluronic_mv.png) no-repeat right -50px bottom;
  background-size: 240px;
  padding-right: 100px;
}

.webp .menu-box2 {
  background-image: url(../../../uploads-webpc/themes/motif-ginza/img/menu/hyaluronic_mv.png.webp);
}

.menu-box3 {
  width: 49%;
  background: url(../img/menu/fujinka_mv.png) no-repeat right -120px bottom;
  background-size: 340px;
  padding-right: 100px;
}

.webp .menu-box3 {
  background-image: url(../../../uploads-webpc/themes/motif-ginza/img/menu/fujinka_mv.png.webp);
}

.p-monitor-notice {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin: 0 0 20px;
}
.p-monitor-notice h3 {
  border-bottom: 2px solid var(--c-black);
  margin: 0 20px 0 0;
  flex: 0 0 auto;
}
.p-monitor-notice p {
  font-size: 1.5rem;
}

.p-monitor-price .l-inner {
  max-width: 1040px;
}
.p-monitor-price a {
  color: var(--c-black);
  text-decoration: none;
}
.p-monitor-price th a::after {
  content: "：モニター価格";
}
.p-monitor-price strong {
  color: #d40604;
  font-weight: bold;
  font-size: 120%;
}
.p-monitor-price td strong + span {
  color: #d40604;
}

.has-img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  margin: 0 0 20px;
  padding: 15px;
}

.p-menu-price-table__img {
  width: 190px;
  flex: 0 0 auto;
  position: relative;
}
.p-menu-price-table__img span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(154, 141, 108, 0.6);
  color: var(--c-white);
  line-height: 1.3;
  font-size: 1.4rem;
  display: block;
  padding: 5px;
  text-align: center;
}

.has-img .c-table1 {
  width: calc(100% - 210px);
}

@media screen and (max-width: 767px) {
  .p-monitor-detail {
    padding: 40px 0;
  }
  .p-monitor-detail__tit {
    font-size: 2rem;
    margin: 0 0 25px;
  }
  .p-monitor-detail__desc {
    font-size: 1.6rem;
  }
  .p-monitor-detail__desc strong {
    font-size: 1.8rem;
  }
  .p-monitor-detail__desc strong.u-fc-g {
    font-size: 2.2rem;
  }
  .p-monitor-menu__box {
    padding: 15px;
    margin: 0 0 10px;
  }
  .p-monitor-menu__box h3 {
    font-size: 1.8rem;
    margin: 0 0 5px;
  }
  .p-monitor-menu__box__list a {
    padding: 3px 5px;
    margin: 5px 5px 0 0;
    font-size: 1.4rem;
  }
  .p-monitor-menu__box__list a span {
    font-size: 1.2rem;
  }
  .menu-box1 {
    background-position: right -100px bottom -30px;
    background-size: 300px;
    padding-right: 80px;
  }
  .menu-box2 {
    width: 100%;
    background-position: right -50px center;
    background-size: 200px;
    padding-right: 70px;
  }
  .menu-box3 {
    width: 100%;
    background-position: right -20px bottom;
    background-size: 200px;
  }
  .p-monitor-notice {
    flex-wrap: wrap;
    margin: 0 0 10px;
  }
  .p-monitor-notice h3 {
    font-size: 1.5rem;
    margin: 0 0 10px;
  }
  .p-monitor-notice p {
    font-size: 1.4rem;
  }
  .has-img {
    margin: 0 0 10px;
    padding: 10px;
  }
  .p-menu-price-table__img {
    width: 100%;
  }
  .p-menu-price-table__img span {
    padding: 5px;
  }
  .has-img .c-table1 {
    width: 100%;
  }
  .p-monitor-price table, .p-monitor-price tbody, .p-monitor-price tr, .p-monitor-price th, .p-monitor-price td {
    display: block;
    border: none;
    padding: 0;
    text-align: left;
  }
  .p-monitor-price .p-menu-price-table {
    padding: 15px 0;
  }
  .p-monitor-price tr {
    padding: 10px 0;
  }
  .p-monitor-price tr:not(:last-child) {
    border-bottom: 1px solid #b0aea8;
  }
  .p-monitor-price td {
    margin: 3px 0 0;
    white-space: normal;
  }
}
/*----------
p-menu
----------*/
.p-menu-gaiyou {
  text-align: center;
  padding: 40px 0 60px;
}

.p-menu-gaiyou__tit {
  font-size: 3rem;
  color: var(--c-black);
  margin: 0 0 30px;
}

.p-menu-gaiyou__txt p {
  margin: 0 0 40px;
}
.p-menu-gaiyou__txt p:last-of-type {
  margin: 0;
}

.p-menu-list {
  padding: 0 0 40px;
}

.p-menu-list-block {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 30px;
}

a.p-menu-list-item {
  text-decoration: none;
  color: var(--c-black);
  width: 380px;
  margin: 0 30px 40px 0;
}
a.p-menu-list-item:hover {
  opacity: 0.8;
}

.p-menu-list-item:nth-of-type(3n) {
  margin-right: 0;
}

a.p-menu-list-item:hover .p-newslist-img {
  opacity: 0.8;
  transition: all 0.3s;
}

.p-menu-list-item__title {
  font-size: 2rem;
  line-height: 1.5;
  margin: 10px 0;
  color: var(--c-black);
}

.p-menu-list-item__desc {
  line-height: 1.5;
}

.p-menu-list-item__worry {
  padding: 5px 0 0;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
}
.p-menu-list-item__worry span {
  display: inline-block;
  background: var(--c-black);
  color: var(--c-white);
  font-size: 1.3rem;
  padding: 2px 10px;
  letter-spacing: 0;
  margin: 5px 5px 0 0;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .p-menu-gaiyou {
    padding: 20px 0 30px;
  }
  .p-menu-gaiyou__tit {
    font-size: 2rem;
    margin: 0 0 10px;
  }
  .p-menu-gaiyou__txt p {
    font-size: 1.4rem;
    margin: 0 0 20px;
    text-align: left;
  }
  .p-menu-list {
    padding: 0 0 20px;
  }
  .p-menu-list-block {
    margin: 0 0 20px;
    justify-content: space-between;
  }
  a.p-menu-list-item {
    width: calc((100% - 10px) / 2);
    margin: 0 0 20px;
  }
  .p-menu-list-item__title {
    font-size: 1.5rem;
    margin: 5px 0 3px;
  }
  .p-menu-list-item__desc {
    font-size: 1.2rem;
  }
  .p-menu-list-item__worry {
    padding: 2px 0 0;
  }
  .p-menu-list-item__worry span {
    font-size: 1.1rem;
    padding: 2px 5px;
  }
}
/*----------
p-list
----------*/
.p-list-item {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 10px;
  border-bottom: 1px solid #dedbd4;
  text-decoration: none;
  color: var(--c-black);
}

.p-list__tit {
  font-weight: 600;
  font-size: 2.4rem;
  margin: 0 0 1em;
}
@media screen and (max-width: 767px) {
  .p-list__tit {
    font-size: 1.8rem;
    margin: 0 0 0.5em;
  }
}

a.p-list-item:hover {
  color: var(--c-black);
  opacity: 0.8;
}

.p-list-img {
  width: 260px;
  flex: 0 0 auto;
  margin: 0 30px 0 0;
}
.p-list-img span {
  display: block;
  padding-top: 75%;
  background: no-repeat center;
  background-size: cover;
}

.p-list-txt {
  width: calc(100% - 290px);
}

.p-list-tit {
  font-size: 2rem;
  line-height: 1.5;
  margin: 10px 0 10px;
}

.p-list-desc {
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-list-item {
    padding: 15px 0;
  }
  a.p-list-item:hover {
    background: none;
  }
  .p-list-img {
    width: 120px;
    flex: 0 0 auto;
    margin: 0 10px 0 0;
  }
  .p-list-txt {
    width: calc(100% - 130px);
  }
  .p-list-tit {
    font-size: 1.6rem;
    margin: 5px 0 0;
  }
  .p-list-desc {
    font-size: 1.3rem;
    margin: 10px 0 0;
  }
}
/*----------
p-newslist
----------*/
.p-newslist {
  padding: 80px 0;
}

.p-newslist-block {
  border-bottom: 1px solid #dedbd4;
  max-width: 1000px;
  margin: 0 auto;
}

a.p-newslist-item {
  border-top: 1px solid #dedbd4;
  text-decoration: none;
  color: #2e2e2e;
  width: 100%;
  display: block;
}
.p-newslist-txt {
  display: flex;
  align-items: center;
  padding: 15px 25px 15px 15px;
  background: url(../img/arrow_link.svg) no-repeat right 15px center;
  background-size: 6px;
}

.p-newslist-info {
  line-height: 1.2;
  margin: 0;
  width: 120px;
  flex-shrink: 0;
}
.p-newslist-info .p-single-date {
  display: block;
  margin: 0;
}

.p-newslist-tit {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-newslist {
    padding: 20px 0 40px;
  }
  .p-newslist-txt {
    padding: 10px 20px 10px 10px;
    background-position: center right 10px;
    background-size: 4px;
  }
  .p-newslist-info {
    width: 90px;
  }
  .p-newslist-tit {
    font-size: 1.4rem;
  }
}
/*----------
p-post
----------*/
/*p-single*/
.p-single-head {
  margin: 0 0 30px;
}
.p-single-head .c-tit2 {
  margin: 0;
  padding: 0 0 5px;
  border: 0;
  background: 0;
  color: var(--c-black);
  border-bottom: 3px double var(--c-black);
}

.p-single-info {
  margin: 10px 0 0 0;
  line-height: 1.4;
}

.p-single-date {
  color: var(--c-gray-dark);
  font-size: 1.4rem;
  margin: 0 10px 0 0;
}

.p-single-cate {
  display: inline-block;
  border: 1px solid var(--c-gray-dark);
  color: var(--c-black);
  font-size: 1.3rem;
  padding: 2px 10px;
  letter-spacing: 0;
  text-decoration: none;
  border-radius: 4px;
}
@media (hover: hover) {
  .p-single-cate:hover {
    border: 1px solid var(--c-black);
    background: var(--c-black);
    color: var(--c-white);
  }
}
@media screen and (max-width: 767px) {
  .p-single-cate {
    font-size: 1.1rem;
    padding: 2px 5px;
  }
}

.p-single-thumb {
  margin: 0 0 30px;
}

@media screen and (max-width: 767px) {
  .p-single-head {
    margin: 0 0 15px;
  }
  .p-single-date {
    font-size: 1.2rem;
  }
  .p-single-thumb {
    margin: 0 0 15px;
  }
}
/*p-single-nav*/
.p-single-nav {
  display: flex;
  justify-content: space-between;
  margin: 60px 0 0;
}
.p-single-nav a {
  display: inline-block;
  border: 1px solid var(--c-black);
  border-radius: 3px;
  padding: 0.5em 1em;
  line-height: 1.5;
  color: var(--c-black);
  font-size: 1.4rem;
  text-decoration: none !important;
}
.p-single-nav a:hover {
  background: var(--c-black);
  color: var(--c-white);
}

@media screen and (max-width: 767px) {
  .p-single-nav {
    display: block;
    margin: 40px 0 30px;
  }
  .p-single-nav a {
    font-size: 1.2rem;
  }
}
/*editor*/
body.wp-autoresize {
  min-width: inherit;
  padding: 20px !important;
}

.p-post a:hover {
  text-decoration: underline;
}
.p-post h2, .p-post h3, .p-post h4 {
  clear: both;
  line-height: 1.4;
}
.p-post h2:first-child, .p-post h3:first-child, .p-post h4:first-child {
  margin-top: 0;
}
.p-post h2 {
  font-size: 2rem;
  border-left: 3px solid var(--c-black);
  margin: 2.5em 0 1.5em;
  padding: 5px 10px;
  background: #f0f0f0;
}
.p-post h3 {
  margin: 2.5em 0 1.5em;
  font-size: 1.7rem;
  border-bottom: 1px solid #dedbd4;
  padding: 0 0 0.5em;
  color: var(--c-black);
}
.p-post h4 {
  margin: 1.5em 0 1em;
  font-size: 1.6rem;
}
.p-post p {
  margin: 0 0 1.5em;
  word-wrap: break-word;
}
.p-post * {
  max-width: 100%;
}
.p-post img {
  height: auto !important;
}
.p-post .alignleft {
  float: left;
  margin-top: 0;
  margin-right: 1.5em;
  max-width: 40%;
}
.p-post .alignright {
  float: right;
  margin-top: 0;
  margin-left: 1.5em;
  max-width: 40%;
}
.p-post .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.p-post .wp-caption {
  text-align: center;
  display: inline-block;
}

.mce-content-body .mceTemp {
  text-align: center;
  display: inline-block;
}

.p-post .wp-caption + .wp-caption, .mce-content-body .mceTemp + .mceTemp {
  margin: 1.5em 0 0;
}

.p-post .wp-caption p, .mce-content-body .wp-caption-dd {
  letter-spacing: 0;
  margin: 5px 0 0;
}

.p-post hr {
  margin: 2em 0;
  border: transparent;
  clear: both;
}
.p-post ol {
  list-style: none;
  padding: 0;
  counter-reset: item;
  margin: 0 0 1.5em;
}
.p-post ol li {
  padding-left: 30px;
  margin: 0.8em 0;
  overflow: hidden;
}
.p-post ol li::before {
  display: block;
  float: left;
  counter-increment: item;
  content: "(" counter(item) ")";
  text-align: center;
  margin: 0 0 0 -30px;
}
.p-post ul {
  margin: 0 0 1.5em;
}
.p-post ul li {
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin: 0 0.5em 0.5em 0;
}
.p-post ul li::before {
  content: "・";
  margin: 0 0.5rem 0 0;
  color: var(--c-black);
  font-weight: bold;
}
.p-post .c-table table {
  margin: 0 0 1.5em;
  border-collapse: collapse;
}
.p-post .c-table table th {
  padding: 10px;
  border: solid 1px #ccc;
  background: #f5f5f5;
}
.p-post .c-table table td {
  padding: 10px;
  border: solid 1px #ccc;
}
.p-post .c-table-2 table th {
  padding: 10px;
  border: solid 1px #ccc;
  background: var(--c-black);
  color: var(--c-white);
}
.p-post .c-table-2 table td.head {
  background: #f5f5f5;
}
.p-post pre {
  position: relative;
  padding: 1.5em;
  margin: 0 0 1.2em;
  white-space: pre-wrap;
}

@media screen and (max-width: 767px) {
  .p-post {
    font-size: 1.4rem;
  }
  .p-post h2 {
    font-size: 1.8rem;
  }
  .p-post h3 {
    font-size: 1.6rem;
  }
  .p-post .aligncenter, .p-post .alignnone, .p-post .alignleft, .p-post .alignright {
    float: none;
    display: block;
    margin: 0 auto 1em;
  }
  .p-post hr {
    margin: 1.5em 0;
  }
  /*スクロール型table*/
  .c-table-over {
    margin: 0 0 1.5em;
    position: relative;
  }
  .c-table-over::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    box-shadow: -10px 0px 20px -12px rgba(0, 0, 0, 0.6) inset;
  }
  .c-table-over .c-table {
    overflow-x: scroll;
  }
  .c-table-over table {
    margin: 0 !important;
  }
  .c-table-over tr > * {
    white-space: nowrap;
  }
}
/*--------------------
p-post-nav
--------------------*/
.p-post-nav {
  flex-basis: 300px;
}

.p-post-nav-block {
  margin: 0 0 30px 0;
}
.p-post-nav-block h2 {
  padding: 5px 10px;
  font-weight: 600;
  background: #f5f5f5;
}
.p-post-nav-block li {
  border-bottom: 1px solid #dedbd4;
  border-top: none;
}
.p-post-nav-block li a {
  display: block;
  text-decoration: none;
  line-height: 1.3;
  font-size: 1.4rem;
  padding: 10px 5px;
  overflow: hidden;
  color: var(--c-black);
}
.p-post-nav-block li a:hover {
  opacity: 0.8;
}
.p-post-nav-block li a img {
  width: 60px;
  float: left;
  margin: 0 10px 0 0;
}

.p-post-nav-date {
  color: var(--c-gray-dark);
  font-size: 1.2rem;
}

.p-post-nav-cate {
  display: inline-block;
  background: var(--c-black);
  color: var(--c-white);
  font-size: 1.1rem;
  padding: 2px 5px;
  letter-spacing: 0;
  margin: 4px 0 0 0;
}

.p-post-nav-block li a h3 {
  margin: 5px 0 0;
}

.p-post-nav-catlist li a {
  padding: 15px 25px 15px 5px;
  background: url(../img/arrow_link.svg) no-repeat right 10px center;
  background-size: 6px;
}

@media screen and (max-width: 767px) {
  .p-post-nav-block {
    margin: 0 0 20px 0;
  }
  .p-post-nav-block li a:hover {
    background-color: none;
  }
  .p-post-nav-date {
    color: var(--c-gray-dark);
    font-size: 1.2rem;
  }
  .p-post-nav-catlist li a {
    background-size: 4px;
  }
}
/*--------------------
pagenavi
--------------------*/
.wp-pagenavi {
  margin: 4em 0 0;
  text-align: center;
  font-size: 1.4rem;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi a, .wp-pagenavi .current {
  display: inline-block !important;
  border: 1px solid var(--c-black) !important;
  border-radius: 3px !important;
  padding: 0.5em 0 !important;
  line-height: 1 !important;
  color: var(--c-black) !important;
  text-decoration: none !important;
  font-weight: normal !important;
  width: 2em !important;
  text-align: center;
  margin: 0 0.3em !important;
}
.wp-pagenavi a:hover, .wp-pagenavi .current {
  background: var(--c-black) !important;
  color: var(--c-white) !important;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin: 2em 0;
  }
}
/*--------------------
p-treatment
--------------------*/
/*p-treatment-mv*/
.p-treatment-tit {
  background: linear-gradient(#4b4b4b 0%, #404040 53.49%, #333 100%);
  line-height: 1.1;
  margin: 0 auto;
  padding: 90px 0 120px;
  position: relative;
  text-align: center;
}
.p-treatment-tit .txt-jp {
  display: block;
  font-size: 4.6rem;
  color: var(--c-white);
}
.p-treatment-tit .txt-en {
  display: block;
  color: #D8CEB9;
  font-size: 1.4rem;
  margin: 1.5em 0 0;
  text-align: center;
}
.p-treatment-tit svg {
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-treatment-tit {
    padding: 60px 0 80px;
  }
  .p-treatment-tit .txt-jp {
    font-size: 2.6rem;
  }
  .p-treatment-tit .txt-en {
    font-size: 1.2rem;
    margin: 1em 0 0;
  }
}
@media screen and (max-width: 480px) {
  .p-treatment-tit {
    padding: 50px 0 60px;
  }
  .p-treatment-tit .txt-jp {
    font-size: 2.2rem;
  }
  .p-treatment-tit .txt-en {
    font-size: 1rem;
    margin: 1em 0 0;
  }
}

/* 
.p-treatment-tit {
  line-height: 1.1;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;

  .txt-jp {
    font-size: 5rem;
    color: $c-black;
  }

  .txt-en {
    order: 3;
    font-size: 1.4rem;
    margin: 1.5em 0 0;
    text-align: center;
    min-width: 100%;
    padding: .4em;
    background: linear-gradient(90deg,#d5cab2 0%, #ede1c7 41.87%, #d5cab2 77.34%, #beb08f 100%);
  }

  @include mq(sp) {
    .txt-jp {
      font-size: 2.6rem;
    }

    .txt-en {
      font-size: 1.2rem;
      margin: 1em 0 0;
    }
  }

  @include mq(sp-s) {
    .txt-jp {
      font-size: 2.2rem;
    }

    .txt-en {
      font-size: 1rem;
      margin: 1em 0 0;
    }
  }
}
 */
/*p-treatment-index*/
.p-treatment-index {
  margin: 40px 0 0;
}

.p-treatment-index__box {
  border: 1px solid var(--c-black);
  padding: 20px 50px;
}
.p-treatment-index__box h2 {
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 10px;
}

.p-treatment-index__list li {
  position: relative;
  padding: 0 0 0 1.5em;
  margin: 5px 0 0;
  line-height: 1.4;
}
.p-treatment-index__list li a {
  color: var(--c-black);
}
.p-treatment-index__list li .mark {
  position: absolute;
  top: 0;
  left: 0;
}

.p-treatment-index__sub dd {
  margin: 5px 0 0;
  font-size: 90%;
}

@media screen and (max-width: 767px) {
  .p-treatment-index {
    margin: 20px 0 0;
  }
  .p-treatment-index__box {
    padding: 15px;
  }
  .p-treatment-index__box h2 {
    font-size: 1.4rem;
    margin: 0 0 8px;
  }
  .p-treatment-index__list li {
    font-size: 1.2rem;
  }
}
/*p-treatment-feature*/
.p-treatment-feature {
  padding: 80px 0;
}
.p-treatment-feature p {
  margin: 0 0 30px;
}
.p-treatment-feature :last-child {
  margin-bottom: 0 !important;
}

.p-treatment-feature2__block {
  padding: 60px 60px 40px;
  background: url(../img/top_concept_bg.png) no-repeat;
  background-size: cover;
}

.p-treatment-featurebox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-treatment-featurebox li {
  width: calc((100% - 40px) / 2);
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.p-treatment-featurebox__img {
  width: 160px;
  flex: 0 0 auto;
}

.p-treatment-featurebox__txt {
  width: calc(100% - 180px);
}
.p-treatment-featurebox__txt h3 {
  font-size: 2rem;
  margin: 0 0 10px;
  line-height: 1.2;
}
.p-treatment-featurebox__txt p {
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .p-treatment-feature {
    padding: 40px 0;
  }
  .p-treatment-feature p {
    margin: 0 0 20px;
    font-size: 1.4rem;
  }
  .p-treatment-feature2 .l-inner {
    padding: 0;
  }
  .p-treatment-feature2__block {
    padding: 30px 12px;
  }
  .p-treatment-featurebox {
    display: block;
  }
  .p-treatment-featurebox li {
    width: 100%;
    margin: 0 0 20px;
  }
  .p-treatment-featurebox li:last-of-type {
    margin: 0;
  }
  .p-treatment-featurebox__img {
    width: 100px;
  }
  .p-treatment-featurebox__txt {
    width: calc(100% - 115px);
  }
  .p-treatment-featurebox__txt h3 {
    font-size: 1.5rem;
    margin: 0 0 5px;
  }
  .p-treatment-featurebox__txt p {
    font-size: 1.3rem;
  }
}
/*p-treatment-recommend*/
.p-treatment-recommend {
  padding: 80px 0;
}

.p-treatment-feature + .p-treatment-recommend {
  padding: 0 0 80px;
}

.p-treatment-recommend__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-treatment-detail .p-treatment-recommend__box {
  margin: 60px 0;
}

.p-treatment-recommend__box__img {
  width: 480px;
}

.p-treatment-recommend__box__list {
  width: calc(100% - 520px);
}
.p-treatment-recommend__box__list.no-img {
  width: 100%;
}
.p-treatment-recommend__box__list h2 {
  font-size: 2.2rem;
  margin: 0 0 15px;
  line-height: 1.5;
}
.p-treatment-recommend__box__list li {
  padding: 0 0 0 24px;
  margin: 0 0 10px;
  background: url(../img/icon_check.svg) no-repeat left center;
  background-size: 16px;
}
.p-treatment-recommend__box__list .no-mark li {
  padding: 0 0 0 1.5em;
  text-indent: -1.5em;
  font-weight: bold;
  background: none;
}
.p-treatment-recommend__box__list .inline-list {
  display: flex;
  flex-wrap: wrap;
}
.p-treatment-recommend__box__list .inline-list li {
  margin: 0 15px 15px 0;
}

.p-treatment-recommend__box.w100 .p-treatment-recommend__box__list {
  width: 100%;
}
.p-treatment-recommend__box.w100 .p-treatment-recommend__box__list li {
  padding: 0 0 0 24px;
  margin: 0 0 10px;
  background: url(../img/icon_check.svg) no-repeat left 0.4em;
  background-size: 16px;
}

.p-treatment-recommend__txt {
  width: 100%;
}
.p-treatment-recommend__txt p:not(:first-of-type) {
  margin: 20px 0 0;
}

.p-treatment-recommend__box__list + .p-treatment-recommend__txt {
  margin: 40px 0 0;
}

.p-treatment-recommend__txt__notice {
  margin: 30px 0 0;
  border: 1px solid var(--c-black);
  padding: 15px;
  color: var(--c-black);
}

@media screen and (max-width: 767px) {
  .p-treatment-recommend {
    padding: 40px 0;
  }
  .p-treatment-feature + .p-treatment-recommend {
    padding: 0 0 40px;
  }
  .p-treatment-recommend__box {
    display: block;
  }
  .p-treatment-detail .p-treatment-recommend__box {
    margin: 30px 0;
  }
  .p-treatment-recommend__box__img {
    width: 100%;
    order: -1;
  }
  .p-treatment-recommend__box__list {
    width: 100%;
    margin: 15px 0 0;
  }
  .p-treatment-recommend__box__list li {
    padding: 0 0 0 20px;
    font-size: 1.4rem;
    margin: 0 0 5px;
    background-size: 15px;
  }
  .p-treatment-recommend__box__list p {
    font-size: 14px;
  }
  .p-treatment-recommend__txt {
    font-size: 1.4rem;
  }
  .p-treatment-recommend__txt p:not(:first-of-type) {
    margin: 10px 0 0;
  }
  .p-treatment-recommend__box__list + .p-treatment-recommend__txt {
    margin: 20px 0 0;
  }
  .p-treatment-recommend__txt__notice {
    margin: 20px 0 0;
    padding: 10px;
    font-size: 1.3rem;
  }
}
.p-treatment-notice {
  font-size: 90%;
  padding: 1.5rem;
  background: #F2EEE6;
}

/*p-treatment-merit*/
.p-treatment-merit__box {
  background: linear-gradient(90deg, #d5cab2 0%, #ede1c7 41.87%, #d5cab2 77.34%, #beb08f 100%);
  padding: 40px;
  display: flex;
  justify-content: space-between;
}

.p-treatment-merit__box__item {
  width: calc((100% - 40px) / 2);
  background: var(--c-white);
  padding: 20px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.p-treatment-merit__box__item .tit-merit {
  font-size: 2rem;
  margin: 0 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c-black);
}
.p-treatment-merit__box__item .tit-merit::before {
  content: "";
  width: 1em;
  height: 1em;
  background: no-repeat center;
  background-size: contain;
  margin: 0 10px 0 0;
}
.p-treatment-merit__box__item .no-mark::before {
  display: none !important;
}
.p-treatment-merit__box__item .tit-merit::before {
  background-image: url(../img/ico_circle.svg);
}
.p-treatment-merit__box__item .tit-demerit {
  color: var(--c-gray-dark);
}
.p-treatment-merit__box__item .tit-demerit::before {
  background-image: url(../img/ico_cross.svg);
}
.p-treatment-merit__box__item li {
  text-indent: -1em;
  padding: 0 0 0 1em;
  margin: 0 0 5px;
}
.p-treatment-merit__box__item li::before {
  content: "・";
}

@media screen and (max-width: 767px) {
  .p-treatment-merit .l-inner {
    padding: 0;
  }
  .p-treatment-merit__box {
    padding: 30px 12px;
    display: block;
  }
  .p-treatment-merit__box__item {
    width: 100%;
    padding: 15px;
  }
  .p-treatment-merit__box__item:not(:first-of-type) {
    margin: 15px 0 0;
  }
  .p-treatment-merit__box__item .tit-merit {
    font-size: 1.7rem;
    margin: 0 0 10px;
  }
  .p-treatment-merit__box__item li {
    font-size: 1.4rem;
    margin: 0 0 5px;
  }
  .p-treatment-merit__box__item .tit-merit::before {
    margin: 0 5px 0 0;
  }
}
/*one-box*/
.one-box {
  background: none;
  padding: 0;
}
.one-box .p-treatment-merit__box__item {
  width: 100%;
  background: var(--c-white);
  border: 1px solid #b0aea8;
  padding: 20px;
  box-shadow: none;
}

@media screen and (min-width:768px) {
  .one-box .p-treatment-merit__box__item .tit-merit {
    justify-content: flex-start;
  }
  .one-box .p-treatment-merit__box__item li {
    display: inline-block;
    text-indent: 0;
    padding: 5px 10px;
    background: #f0f0f0;
    margin: 0 5px 10px 0;
    border-radius: 4px;
    font-size: 1.5rem;
  }
  .one-box .p-treatment-merit__box__item li::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .one-box .p-treatment-merit__box__item {
    border: 1px solid #b0aea8;
    padding: 15px;
    margin: 0 auto;
    width: calc(100% - 24px);
  }
}
/*bui-box*/
.bui-box .p-treatment-merit__box__item .tit-merit {
  justify-content: center;
}
.bui-box .p-treatment-merit__box__item ul {
  text-align: center;
}
.bui-box .p-treatment-merit__box__item li {
  display: inline-block;
  text-indent: 0;
  padding: 5px 10px;
  background: #f0f0f0;
  margin: 0 5px 10px 0;
  border-radius: 4px;
  font-size: 1.5rem;
}
.bui-box .p-treatment-merit__box__item li::before {
  display: none;
}

@media screen and (max-width: 767px) {
  .bui-box .p-treatment-merit__box__item li {
    font-size: 1.2rem;
  }
}
/*p-treatment-detail*/
.p-treatment-detail {
  padding: 80px 0;
}

.p-treatment-feature + .p-treatment-detail, .p-treatment-feature + .p-treatment-feature {
  padding-top: 0;
}

.p-treatment-detail + .p-treatment-feature {
  padding-top: 0;
}

.p-treatment-recommend + .p-treatment-detail, .p-treatment-recommend + .p-treatment-recommend {
  padding-top: 0;
}

.p-treatment-detail + .p-treatment-detail {
  padding: 0 0 60px;
  margin-top: -20px;
}

.p-treatment-detail__desc {
  margin: 0 0 40px;
}
.p-treatment-detail__desc:last-of-type {
  margin: 0;
}
.p-treatment-detail__desc p {
  margin: 0 0 30px;
}
.p-treatment-detail__desc p:last-of-type {
  margin: 0;
}
.p-treatment-detail__desc dl {
  border: 1px solid var(--c-black);
  margin: 1em 0 0;
  padding: 20px;
}

.p-tribeampremium .p-treatment-detail__desc dl {
  border: none;
  margin: 0;
  padding: 0;
}

.p-treatment-detail__desc dl > div:not(:first-of-type) {
  margin: 1em 0 0;
}

.p-treatment-detail__imgbox {
  display: flex;
  margin: 0 0 60px;
}
.p-treatment-detail__imgbox:last-child {
  margin-bottom: 0;
}
.p-treatment-detail__imgbox + .p-treatment-detail__desc {
  margin-top: -20px;
}

.p-treatment-feature .p-treatment-detail__imgbox {
  margin: 40px 0 0;
}

.p-treatment-detail__imgbox__item {
  margin: 0 30px 0 0;
}
.p-treatment-detail__imgbox__item + .p-treatment-detail__imgbox__item, .p-treatment-detail__imgbox__item.item2col {
  margin: 0;
}

.p-treatment-detail__block {
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px;
}

.p-treatment-detail__block__txt {
  width: calc(100% - 410px);
}

.img-w .p-treatment-detail__block__txt {
  width: calc(100% - 450px);
}

.p-treatment-detail__block__txt__tit, .p-treatment-feature__block__txt__tit {
  font-size: 2.2rem;
  line-height: 1.5;
  padding: 0 0 0 1.2em;
  width: fit-content;
  margin: 0 0 15px;
  font-weight: 600;
  position: relative;
}
.p-treatment-detail__block__txt__tit::after, .p-treatment-feature__block__txt__tit::after {
  content: "";
  width: 6px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #b4a78b 0%, #efe6d3 28.57%, #e6deca 48.77%, #d5cab2 70.44%, #a7997b 100%);
}
@media screen and (max-width: 767px) {
  .p-treatment-detail__block__txt__tit, .p-treatment-feature__block__txt__tit {
    font-size: 1.6rem;
    padding: 0 0 0 0.8em;
  }
  .p-treatment-detail__block__txt__tit::after, .p-treatment-feature__block__txt__tit::after {
    width: 4px;
  }
}

.p-treatment-detail__block__txt__desc p {
  margin: 0 0 30px;
}
.p-treatment-detail__block__txt__desc p:last-of-type {
  margin: 0;
}

.p-treatment-detail__block__img {
  width: 380px;
  flex: 0 0 auto;
}

.img-w .p-treatment-detail__block__img {
  width: 420px;
  flex: 0 0 auto;
}

.p-treatment-feature__img {
  text-align: center;
  margin: 0 0 40px;
}
.p-treatment-feature__img:last-child {
  margin: 0;
}

.p-treatment-feature__img__txt {
  margin-top: 20px;
  font-size: 1.4rem;
  text-align: left;
  display: flex;
  justify-content: center;
}
.p-treatment-feature__img__txt p {
  margin: 0;
}

.p-treatment-feature .p-treatment-detail__block {
  border: 1px solid var(--c-black);
  padding: 20px;
  align-items: center;
}

.p-tribeampremium .p-treatment-detail .p-treatment-detail__block {
  border: 1px solid var(--c-black);
  padding: 20px;
  align-items: center;
  margin: 20px 0 0;
}

.p-treatment-detail__block__tbl {
  margin: 40px 0 0;
  overflow: auto;
}
.p-treatment-detail__block__tbl th {
  color: var(--c-black);
  font-weight: 700;
  background: none;
  border-color: #ccc;
  white-space: nowrap;
  width: 35%;
  text-align: center;
}
.p-treatment-detail__block__tbl td {
  border-color: #ccc;
  white-space: nowrap;
  width: 35%;
  text-align: center;
}
.p-treatment-detail__block__tbl .tbl-head {
  background: #f5f5f5;
  width: 30%;
}
.p-treatment-detail__block__tbl span {
  font-size: 90%;
}

@media screen and (max-width: 767px) {
  .p-treatment-detail {
    padding: 40px 0;
  }
  .p-treatment-feature + .p-treatment-detail {
    padding: 0 0 40px;
  }
  .p-treatment-detail + .p-treatment-detail {
    padding: 0 0 40px;
    margin-top: -10px;
  }
  .p-treatment-detail__desc {
    margin: 0 0 20px;
  }
  .p-treatment-detail__desc p {
    margin: 0 0 20px;
    font-size: 1.4rem;
  }
  .p-treatment-detail__desc dl {
    padding: 15px;
  }
  .p-tribeampremium .p-treatment-detail__desc dl {
    padding: 0;
  }
  .p-treatment-detail__imgbox {
    display: block;
    margin: 0 0 30px;
  }
  .p-treatment-detail__imgbox + .p-treatment-detail__desc {
    margin-top: -10px;
  }
  .p-treatment-feature .p-treatment-detail__imgbox {
    margin: 20px 0 0;
  }
  .p-treatment-detail__imgbox__item {
    margin: 0 0 15px;
  }
  .p-treatment-detail__imgbox__item.item2col {
    margin: 0 0 15px;
  }
  .p-treatment-detail__block {
    flex-wrap: wrap;
    margin: 0 0 30px;
  }
  .p-treatment-detail__block__txt, .img-w .p-treatment-detail__block__txt {
    width: 100%;
  }
  .p-treatment-detail__block__txt__desc p {
    margin: 0 0 15px;
    font-size: 1.4rem;
  }
  .p-treatment-detail__block__img, .img-w .p-treatment-detail__block__img {
    width: 100%;
    margin: 15px 0 0;
  }
  .img-left .p-treatment-detail__block__img {
    margin: 0 0 15px;
  }
  .img-revers .p-treatment-detail__block__img {
    margin: 0 0 15px;
    order: 1;
  }
  .img-revers .p-treatment-detail__block__txt {
    order: 2;
  }
  .p-treatment-feature__img {
    padding: 15px;
  }
  .p-treatment-feature__img__txt {
    margin-top: 10px;
    font-size: 1.2rem;
  }
  .p-treatment-feature .p-treatment-detail__block {
    padding: 15px;
  }
  .p-tribeampremium .p-treatment-detail .p-treatment-detail__block {
    padding: 15px;
    margin: 15px 0 0;
  }
  .p-treatment-detail__block__tbl {
    font-size: 1.4rem;
    margin-top: 20px;
  }
  .p-treatment-detail__block__tbl th, .p-treatment-detail__block__tbl td {
    padding: 10px;
  }
  .p-treatment-detail__block__tbl th span, .p-treatment-detail__block__tbl td span {
    font-size: 85%;
  }
}
/*p-treatment-detail__qa*/
.p-treatment-detail__qa {
  background: var(--c-white);
  padding: 20px;
  margin: 40px 0 60px;
  border: 1px solid var(--c-black);
}
.p-treatment-detail__qa:last-child {
  margin-bottom: 0;
}

.p-treatment-price .p-treatment-detail__qa {
  margin: 40px 0 60px;
}

.p-treatment-detail__qa dt {
  color: var(--c-black);
  font-size: 1.8rem;
  line-height: 1.4;
  position: relative;
  padding: 0 0 0 2.7rem;
  margin: 0 0 15px;
}
.p-treatment-detail__qa dt::before {
  content: "Q.";
  position: absolute;
  top: 0;
  left: 0;
}
.p-treatment-detail__qa dd {
  font-size: 1.4rem;
  position: relative;
  padding: 0.3rem 0 0 2.7rem;
  line-height: 1.6;
}
.p-treatment-detail__qa dd::before {
  content: "A.";
  font-size: 1.8rem;
  position: absolute;
  top: 0;
  left: 0;
}
.p-treatment-detail__qa dd p {
  margin: 0 0 20px;
}
.p-treatment-detail__qa dd p:last-of-type {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .p-treatment-detail__qa {
    padding: 15px;
    margin: 30px 0;
  }
  .p-treatment-price .p-treatment-detail__qa {
    width: calc(100% - 24px);
    margin: 30px auto 40px;
  }
  .p-treatment-detail__qa dt {
    font-size: 1.6rem;
    padding: 0 0 0 2.5rem;
    margin: 0 0 10px;
  }
  .p-treatment-detail__qa dd {
    font-size: 1.3rem;
    padding: 0.3rem 0 0 2.5rem;
  }
  .p-treatment-detail__qa dd::before {
    font-size: 1.6rem;
  }
  .p-treatment-detail__qa dd p {
    margin: 0 0 15px;
  }
}
/*p-treatment-flowe*/
.p-treatment-flow__box {
  display: flex;
  margin-top: 40px;
  position: relative;
}
.p-treatment-flow__box:first-of-type {
  margin: 0;
}
.p-treatment-flow__box::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: var(--c-black) transparent transparent transparent;
  position: absolute;
  bottom: -25px;
  left: 130px;
}
.p-treatment-flow__box:last-of-type::after {
  display: none;
}

.p-treatment-flow__box__img {
  width: 280px;
  margin: 0 40px 0 0;
}

.p-treatment-flow__box__txt {
  flex: 1;
}

.p-treatment-flow__box__txt__tit {
  font-size: 2rem;
  color: var(--c-black);
  margin: 0 0 5px 0;
  font-weight: 600;
}

.p-treatment-flow__box__txt__desc {
  font-size: 1.6rem;
}
.p-treatment-flow__box__txt__desc p:not(:first-of-type) {
  margin: 1em 0 0;
}

@media screen and (max-width: 767px) {
  .p-treatment-flow__box {
    font-size: 1.4rem;
    margin-top: 40px;
    flex-direction: column-reverse;
  }
  .p-treatment-flow__box::after {
    border-width: 12px 10px 0 10px;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .p-treatment-flow__box__img {
    width: 80%;
    margin: 15px auto 0;
    text-align: center;
  }
  .p-treatment-flow__box__txt__tit {
    font-size: 1.6rem;
    margin: 0 0 5px 0;
  }
  .p-treatment-flow__box__txt__desc {
    font-size: 1.4rem;
  }
}
/*p-treatment-price*/
.p-treatment-price__block {
  padding: 60px 200px;
  margin: 0 0 80px;
  background: #f5f5f5;
}

.p-treatment-merit + .p-treatment-price .p-treatment-price__block {
  margin: 80px 0 0;
}

.p-treatment-price__block th, .p-treatment-price__block td {
  border: none;
  font-size: 1.8rem;
  border-top: 1px solid #b0aea8;
}
.p-treatment-price__block tr:last-child th, .p-treatment-price__block tr:last-child td {
  border-bottom: 1px solid #b0aea8;
}
.p-treatment-price__block th {
  white-space: normal;
}
.p-treatment-price__block td {
  white-space: nowrap;
}
.p-treatment-price__block td span {
  font-size: 1.6rem;
}
.p-treatment-price__block .has-monitor th, .p-treatment-price__block .has-monitor td {
  padding-bottom: 10px;
}
.p-treatment-price__block .monitor-price th {
  border: 0;
  padding-top: 0;
  color: #d40604;
}
.p-treatment-price__block .monitor-price td {
  border: 0;
  padding-top: 0;
  color: #d40604;
  font-size: 2.2rem;
}
.p-treatment-price__block .monitor-price td span {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .p-treatment-price .l-inner {
    padding: 0;
  }
  .p-treatment-price__block {
    padding: 30px 12px;
    margin: 0 0 40px;
  }
  .p-treatment-price__block th {
    font-size: 1.4rem;
  }
  .p-treatment-price__block td {
    font-size: 1.4rem;
  }
  .p-treatment-price__block td span {
    font-size: 1rem;
  }
  .p-treatment-price__block .has-monitor th, .p-treatment-price__block .has-monitor td {
    padding-bottom: 5px;
  }
  .p-treatment-price__block .monitor-price td {
    font-size: 1.6rem;
  }
  .p-treatment-price__block .monitor-price td span {
    font-size: 1rem;
  }
}
.p-treatment-payment {
  margin: 30px 0 0;
  display: flex;
  justify-content: flex-end;
}
.p-treatment-payment p {
  font-size: 1.4rem;
  margin: 0 20px 0 0;
}
.p-treatment-payment .c-btn1 {
  font-size: 90%;
}

@media screen and (max-width: 767px) {
  .p-treatment-payment {
    margin: 20px 0 0;
    display: block;
  }
  .p-treatment-payment p {
    font-size: 1.2rem;
    margin: 0 0 10px;
  }
  .p-treatment-payment .c-btn1 {
    font-size: 1.2rem;
  }
}
/*p-treatment-attention*/
.p-treatment-attention {
  padding: 0 0 80px;
  margin: -20px 0 0;
}

.p-treatment-attention__list {
  display: flex;
  flex-wrap: wrap;
}
.p-treatment-attention__list li {
  width: calc((100% - 60px) / 3);
  margin: 0 30px 30px 0;
  display: flex;
  align-items: center;
}
.p-treatment-attention__list li:nth-of-type(3n) {
  margin: 0 0 30px;
}
.p-treatment-attention__list li.w100 {
  width: 100%;
  margin: 0 0 30px;
}
.p-treatment-attention__list li .p-treatment-attention__list__img {
  width: 80px;
  flex: 0 0 auto;
  margin: 0 20px 0 0;
}

.p-treatment-attention__list__txt {
  font-size: 1.5rem;
  line-height: 1.5;
}

.p-treatment-attention__caution {
  background: var(--c-white);
  padding: 20px 20px 15px;
  margin: 40px 0 20px;
  border: 1px solid var(--c-black);
  position: relative;
}
.p-treatment-attention__caution h3 {
  display: inline-block;
  padding: 10px;
  color: var(--c-black);
  background: var(--c-white);
  font-size: 1.8rem;
  position: absolute;
  top: -27px;
  left: 20px;
}
.p-treatment-attention__caution p {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .p-treatment-attention {
    padding: 20px 0 40px;
  }
  .p-treatment-attention__list {
    justify-content: space-between;
  }
  .p-treatment-attention__list li {
    width: 100%;
    margin: 0 0 10px;
  }
  .p-treatment-attention__list li:nth-of-type(3n) {
    margin: 0 0 10px;
  }
  .p-treatment-attention__list li.w100 {
    width: 100%;
    margin: 0 0 10px;
  }
  .p-treatment-attention__list li .p-treatment-attention__list__img {
    width: 60px;
    margin: 0 10px 0 0;
  }
  .p-treatment-attention__list__txt {
    font-size: 1.2rem;
  }
  .p-treatment-attention__caution {
    padding: 15px 15px 10px;
    margin: 0;
  }
  .p-treatment-attention__caution h3 {
    padding: 5px;
    font-size: 1.4rem;
    top: -18px;
    left: 15px;
  }
  .p-treatment-attention__caution p {
    font-size: 1.2rem;
  }
}
/*p-treatment-doctor*/
.p-treatment-doctor {
  padding: 0 0 80px;
}

.p-treatment-doctor__box {
  display: flex;
  justify-content: space-between;
}

.p-treatment-doctor__box__img {
  width: 320px;
}

.p-treatment-doctor__box__txt {
  width: calc(100% - 360px);
  font-size: 1.6rem;
}
.p-treatment-doctor__box__txt h2 {
  font-size: 2.2rem;
  margin: 0 0 15px;
  line-height: 1.5;
}
.p-treatment-doctor__box__txt p {
  margin: 0 0 30px;
}
.p-treatment-doctor__box__txt .ikensyo {
  margin: 30px 0 0;
  display: flex;
}
.p-treatment-doctor__box__txt .ikensyo__txt {
  text-indent: -1em;
  padding: 0 0 0 1em;
  font-size: 0.8em;
}
.p-treatment-doctor__box__txt .ikensyo__img {
  flex: 0 0 auto;
  margin: 0 0 0 10px;
  display: flex;
}
.p-treatment-doctor__box__txt .ikensyo__img img {
  width: 200px;
  margin: 0 0 0 10px;
}

@media screen and (max-width: 767px) {
  .p-treatment-doctor {
    padding: 0 0 60px;
  }
  .p-treatment-doctor__box {
    display: block;
  }
  .p-treatment-doctor__box__img {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
  .p-treatment-doctor__box__txt {
    width: 100%;
    margin: 15px 0 0;
  }
  .p-treatment-doctor__box__txt h2 {
    font-size: 1.8rem;
    margin: 0 0 10px;
  }
  .p-treatment-doctor__box__txt p {
    margin: 0 0 20px;
    font-size: 1.4rem;
  }
  .p-treatment-doctor__box__txt__btn {
    margin: 30px 0 0;
    text-align: center;
  }
  .p-treatment-doctor__box__txt .ikensyo {
    margin: 30px 0 0;
    display: block;
  }
  .p-treatment-doctor__box__txt .ikensyo__img {
    margin: 10px 0 0;
    justify-content: space-between;
  }
  .p-treatment-doctor__box__txt .ikensyo__img img {
    width: 49%;
    margin: 2px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .p-treatment-doctor__box__img {
    max-width: 80%;
  }
}
/*p-treatment-other*/
.p-treatment-other {
  margin: 0 0 -60px;
  padding: 60px 0;
  background: linear-gradient(90deg, #d5cab2 0%, #ede1c7 41.87%, #d5cab2 77.34%, #beb08f 100%);
}
.p-treatment-other .p-menu-list-block {
  margin: 0;
}
.p-treatment-other a.p-menu-list-item {
  width: calc((100% - 90px) / 4);
  margin: 0 30px 0 0;
}
.p-treatment-other a.p-menu-list-item:nth-of-type(4n) {
  margin-right: 0;
}
.p-treatment-other .p-menu-list-item__title {
  font-size: 1.8rem;
  margin: 10px 0 0;
  text-align: center;
}
.p-treatment-other .p-menu-list-item__desc, .p-treatment-other .p-menu-list-item__worry {
  display: none;
}

.p-treatment-other__btn {
  text-align: center;
  margin: 40px 0 0;
}

@media screen and (max-width: 767px) {
  .p-treatment-other {
    padding: 30px 0 15px;
    margin: 0 0 -30px;
  }
  .p-treatment-other .p-menu-list-block {
    justify-content: space-between;
  }
  .p-treatment-other a.p-menu-list-item {
    width: calc((100% - 10px) / 2);
    margin: 0 0 15px;
  }
  .p-treatment-other .p-menu-list-item__title {
    font-size: 1.4rem;
    margin: 5px 0 0;
  }
  .p-treatment-other__btn {
    margin: 20px 0 0;
  }
}
.pay-img {
  display: block;
  margin: 10px 0 0;
  max-height: 75px !important;
}
.pay-img-qr {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .pay-img {
    max-height: 50px !important;
  }
}

/*------------------------------------------------------------------------
3-iii.Utility
------------------------------------------------------------------------*/
.u-ta-c {
  text-align: center;
}

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

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

.u-dp-ib {
  display: inline-block;
}

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

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

.u-mb-m {
  margin-bottom: 1em;
}

.u-mb-l {
  margin-bottom: 2.5em;
}

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

.u-mt-m {
  margin-top: 1em;
}

.u-mt-l {
  margin-top: 2.5em;
}

.u-fw-b {
  font-weight: bold;
}

.u-fs-s {
  font-size: 1.4rem;
}

.u-fs-m {
  font-size: 1.8rem;
}

.u-fs-l {
  font-size: 2rem;
}

.u-fc-red {
  color: #CC2222;
}

.u-fc-g {
  color: var(--c-black);
}

.u-cta-bg2 {
  background: #f5f5f5;
}

@media screen and (max-width: 767px) {
  .u-fs-s {
    font-size: 90%;
  }
  .u-fs-m {
    font-size: 120%;
  }
  .u-fs-l {
    font-size: 150%;
  }
}
@media screen and (min-width:768px) {
  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .u-sps {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */