@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&family=Montserrat:wght@400;500;600&display=swap");
/*==================================
# common
==================================*/
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

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

body {
  font-family: "M PLUS Rounded 1c", "Montserrat", sans-serif;
  color: #393939;
  background: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, a, p, span, em, small, strong, sub, sup, mark, del, ins, strike, abbr, dfn, blockquote, q, cite, code, pre, ol, ul, li, dl, dt, dd, div, section, article, main, aside, nav, header, hgroup, footer, img, figure, figcaption, address, time, audio, video, canvas, iframe, details, summary, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
  color: #393939;
  text-decoration: none;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

.c-util-ttl {
  color: #393939;
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 4px 0;
  position: relative;
}

@media (max-width: 767px) {
  .c-util-ttl {
    font-size: 20px;
  }
}

.c-util-ttl img {
  width: 190px;
}

.c-util-ttl::before, .c-util-ttl::after {
  background: url(../img/title-deco.svg) no-repeat;
  background-size: contain;
  content: "";
  height: 20px;
  width: 72px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767px) {
  .c-util-ttl::before, .c-util-ttl::after {
    height: 15px;
    width: 50px;
  }
}

.c-util-ttl::before {
  left: -95px;
}

@media (max-width: 767px) {
  .c-util-ttl::before {
    left: -64px;
  }
}

.c-util-ttl::after {
  right: -95px;
}

@media (max-width: 767px) {
  .c-util-ttl::after {
    right: -64px;
  }
}

/*==================================
# header
==================================*/
/* header
-----------------------------------*/
.l-header {
  background: #fff;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 80px;
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding: 0 40px;
  width: 100%;
}

.c-logo-header {
  display: block;
  max-width: 270px;
  width: 100%;
}

.c-logo-header img {
  max-width: 100%;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  margin-left: auto;
}

@media (max-width: 1200px) {
  .header__right {
    display: none;
    height: inherit;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.p-header-nav__item {
  height: inherit;
}

.p-header-nav__item:nth-child(n + 2) {
  margin-left: 24px;
}

.p-header-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: inherit;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.p-header-nav__link svg {
  height: 24px;
  width: 24px;
}

.p-header-nav__link path {
  fill: #393939;
  -webkit-transition: fill 0.3s ease-out 0s;
  transition: fill 0.3s ease-out 0s;
}

.p-header-nav__link::after {
  background: #22ac38;
  bottom: 8px;
  content: "";
  position: absolute;
  height: 2px;
  width: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0, 1);
          transform: translateX(-50%) scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-header-nav__link span {
  font-size: 11px;
  font-weight: 700;
  margin-top: 6px;
}

.p-header-nav__link:hover {
  color: #22ac38;
}

.p-header-nav__link:hover path {
  fill: #22ac38;
}

.p-header-nav__link:hover::after {
  -webkit-transform: translateX(-50%) scale(1, 1);
          transform: translateX(-50%) scale(1, 1);
}

.is-active .p-header-nav__link {
  color: #22ac38;
  position: relative;
}

.is-active .p-header-nav__link path {
  fill: #22ac38;
}

.is-active .p-header-nav__link::after {
  background: #22ac38;
  bottom: 8px;
  content: "";
  position: absolute;
  height: 2px;
  width: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-header-tel {
  margin-left: 32px;
  text-align: right;
}

.p-header-tel__text {
  font-size: 12px;
  line-height: 1;
}

.p-header-tel__number {
  color: #22ac38;
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.002px;
  margin-top: 6px;
  white-space: nowrap;
}

.p-header-tel__number > svg {
  margin-right: 5px;
  vertical-align: bottom;
}

.c-button-drawer {
  display: none;
  cursor: pointer;
  top: 0;
  height: 18px;
  width: 28px;
  margin-left: auto;
  position: relative;
  background: transparent;
}

@media (max-width: 1200px) {
  .c-button-drawer {
    display: block;
    z-index: 40;
  }
}

.c-button-drawer__line {
  background-color: #22ac38;
  border-radius: 1px;
  height: 3px;
  width: 100%;
  display: block;
  position: absolute;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.c-button-drawer__line:nth-child(1) {
  top: 0;
  right: 0;
  left: 0;
}

.c-button-drawer__line:nth-child(2) {
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-button-drawer__line:nth-child(3) {
  right: 0;
  left: 0;
  bottom: 0;
}

.is-open .c-button-drawer__line {
  background: #fff;
}

.is-open .c-button-drawer__line:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.is-open .c-button-drawer__line:nth-child(2) {
  background: transparent;
}

.is-open .c-button-drawer__line:nth-child(3) {
  bottom: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-drawerMenu {
  background: #009944;
  display: none;
  height: 100vh;
  width: 50%;
  top: 0;
  right: 0;
  position: fixed;
  z-index: 39;
}

.p-drawerMenu.is-open {
  display: block;
}

.c-logo-drawer {
  display: block;
  margin-left: 38px;
  margin-top: 25px;
  max-width: 270px;
  width: 100%;
}

@media (max-width: 767px) {
  .c-logo-drawer {
    margin-left: 24px;
    margin-top: 80px;
    max-width: 200px;
  }
}

.p-drawerMenu__scroll {
  height: 100vh;
  overflow: scroll;
  padding: 100px 0;
}

@media (max-width: 767px) {
  .p-drawerMenu__scroll {
    padding: 53px 0 100px;
  }
}

.p-drawerMenu__content {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 255px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.p-drawerMenu__link {
  border-top: 1px dashed #fff;
  color: #fff;
  display: block;
  padding: 16px 0;
  position: relative;
  width: 100%;
}

.p-drawerMenu__link > span {
  letter-spacing: 0.08em;
  margin-left: 14px;
}

.p-drawerMenu__link:nth-last-child(1) {
  border-bottom: 1px dashed #fff;
}

.p-drawerMenu__link::after {
  background-image: url(../img/icon-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 14px;
  width: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*==================================
# top
==================================*/
/* swiper
-----------------------------------*/
.p-swiper {
  margin: auto;
  margin-top: 120px;
  max-width: 1920px;
  width: 90.6%;
  position: relative;
}

.p-swiper .swiper-slide {
  position: relative;
}

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

.swiper-container {
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .swiper-slide {
    border-radius: 8px;
  }
}

.p-swiper__slide {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.p-swiper__img {
  max-height: 520px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 767px) {
  .p-swiper__img {
    -o-object-position: left;
       object-position: left;
  }
}

.p-swiper__textImg {
  bottom: 50px;
  left: 60px;
  position: absolute;
  width: 415px;
  z-index: 1;
}

@media (max-width: 767px) {
  .p-swiper__textImg {
    bottom: 40px;
    left: 20px;
    width: 265px;
  }
}

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

@media (min-width: 1280px) {
  .u-hidden-pc {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .u-hidden-tab {
    display: none;
  }
}

.p-swiper__next,
.p-swiper__prev {
  top: 49%;
  height: 66px;
  width: 66px;
}

@media (max-width: 767px) {
  .p-swiper__next,
  .p-swiper__prev {
    height: 48px;
    width: 48px;
  }
}

.p-swiper__next {
  background-image: url(../img/01-top/arrow-right.svg);
  background-size: contain;
  color: transparent;
  right: -34px;
}

@media (max-width: 767px) {
  .p-swiper__next {
    right: -3px;
  }
}

.p-swiper__prev {
  background-image: url(../img/01-top/arrow-left.svg);
  background-size: contain;
  color: transparent;
  left: -30px;
}

@media (max-width: 767px) {
  .p-swiper__prev {
    left: -3px;
  }
}

.swiper-pagination {
  bottom: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: -22px;
  position: absolute;
  width: 100%;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

@media (max-width: 767px) {
  .swiper-pagination {
    bottom: 18px;
    left: 8px;
  }
}

/* top-info
-----------------------------------*/
.p-top-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

@media (max-width: 999px) {
  .p-top-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .p-top-info {
    padding: 0 20px;
  }
}

.p-top-news {
  margin-top: 16px;
  max-width: 540px;
  width: 100%;
}

@media (max-width: 999px) {
  .p-top-news {
    margin-top: 34px;
  }
}

.p-top-news__ttlWrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-top-news__head {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 16px;
}

.p-top-news__ttl {
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.p-top-news__subTtl {
  color: #22ac38;
  font-size: 12px;
  font-weight: 700;
  line-height: 3;
  margin-left: 14px;
}

@media (max-width: 767px) {
  .p-top-news__subTtl {
    font-size: 11px;
  }
}

.p-top-news__detail {
  color: #888;
  font-size: 12px;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .p-top-news__detail {
    font-size: 11px;
  }
}

.p-top-news__archive {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #393939;
  border-top: 1px solid #393939;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 9px 0;
  position: relative;
}

@media (max-width: 767px) {
  .p-top-news__archive {
    padding: 12px 0;
  }
}

.p-top-news__archive::after {
  background-image: url(../img/01-top/icon-arrow-black@3x.png);
  background-size: cover;
  content: "";
  height: 14px;
  width: 14px;
  position: absolute;
  top: 50%;
  right: 7px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.p-top-news__archive:hover::after {
  background-image: url(../img/01-top/icon-arrow-blue-btn.svg);
  right: 0;
}

.p-top-news__archive:hover .p-top-news__published,
.p-top-news__archive:hover .p-top-news__text {
  color: #22ac38;
}

.p-top-news__published {
  color: #393939;
  font-size: 12px;
  line-height: 1;
  padding-left: 14px;
  -webkit-transition: 0.3 ease-out;
  transition: 0.3 ease-out;
  white-space: nowrap;
  width: 84px;
}

@media (max-width: 767px) {
  .p-top-news__published {
    padding-left: 8px;
    width: 94px;
  }
}

.p-top-news__text {
  color: #393939;
  font-size: 14px;
  line-height: 1.5;
  margin-left: 22px;
  padding-right: 40px;
  -webkit-transition: 0.3 ease-out;
  transition: 0.3 ease-out;
  width: calc(100% - 84px);
}

@media (max-width: 767px) {
  .p-top-news__text {
    margin-left: 12px;
    padding-right: 20px;
  }
}

.p-top-info__text {
  text-align: center;
  padding: 20px 5px 15px;
  font-size: 11px;
}

.p-top-info__text:nth-child(2) {
  font-size: 14px;
  font-weight: 700;
}

.p-top-info__text:nth-child(3) {
  font-size: 11px;
  padding-bottom: 20px;
}

.p-top-info__table {
  margin-left: 62px;
  margin-top: -35px;
}

@media (max-width: 999px) {
  .p-top-info__table {
    margin-left: 0;
    margin-top: -22px;
  }
}

.p-time-table {
  background-color: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  max-width: 477px;
  width: 100%;
}

@media (max-width: 999px) {
  .p-time-table {
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* concept
-----------------------------------*/
.l-top__concept {
  margin-top: 110px;
  padding-top: 50px;
}

@media (max-width: 767px) {
  .l-top__concept {
    margin-top: 20px;
    padding-top: 20px;
  }
}

.p-feature {
  position: relative;
}

.p-feature__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: 80px;
  z-index: 2;
}

@media (max-width: 767px) {
  .p-feature__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-feature__img {
  border-radius: 0 20px 20px 0;
  height: 100%;
  max-height: 438px;
  overflow: hidden;
  width: 50%;
}

@media (max-width: 767px) {
  .p-feature__img {
    height: 61.2vw;
    margin-right: auto;
    margin-top: 40px;
    width: 89%;
  }
}

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

@media (max-width: 767px) {
  .p-feature__img img {
    height: 61.2vw;
  }
}

.p-feature__description {
  margin-left: 95px;
  width: 31.8%;
}

@media (max-width: 999px) {
  .p-feature__description {
    margin-left: 40px;
    width: 40%;
  }
}

@media (max-width: 767px) {
  .p-feature__description {
    margin-left: 0;
    padding: 0 20px;
    width: 100%;
  }
}

.p-feature__subTtl {
  color: #22ac38;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .p-feature__subTtl {
    font-size: 11px;
    padding-left: 0;
  }
}

.p-feature__ttl {
  color: #393939;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.57143;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .p-feature__ttl {
    font-size: 20px;
    margin-top: 12px;
  }
}

.p-feature__textBlock {
  margin-top: 33px;
}

@media (max-width: 767px) {
  .p-feature__textBlock {
    margin-top: 26px;
  }
}

.p-feature__text {
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71429;
}

.p-feature__text:nth-child(n + 2) {
  margin-top: 21px;
}

.p-feature__btn {
  margin-top: 36px;
}

@media (max-width: 767px) {
  .p-feature__btn {
    text-align: center;
  }
}

.c-btn {
  background: #fff;
  background-image: url(../img/01-top/icon-arrow-blue-btn.svg);
  background-position: right 12px center;
  background-repeat: no-repeat;
  border: 1px solid #22ac38;
  border-radius: 24px;
  color: #22ac38;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  padding: 12px 46px;
  -webkit-transition: background-position 0.3s ease 0s;
  transition: background-position 0.3s ease 0s;
}

.c-btn:hover {
  background: #009944;
  background-image: url(../img/01-top/arrow-right-white.svg);
  background-position: right 5px center;
  background-repeat: no-repeat;
  color: #fff;
}

@media (max-width: 767px) {
  .c-btn {
    padding: 10px 40px;
  }
}

/* recommend
-----------------------------------*/
.p-top-recommend {
  margin-top: 110px;
  padding-top: 50px;
}

@media (max-width: 767px) {
  .p-top-recommend {
    margin-top: 100px;
  }
}

.p-top-recommend__ttlWrap {
  text-align: center;
}

.p-top-recommend__items {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  max-width: 966px;
  padding: 0;
  text-align: center;
  width: 100%;
}

@media (max-width: 767px) {
  .p-top-recommend__items {
    display: block;
    margin-top: 38px;
    max-width: 600px;
    padding: 0 48px;
  }
}

.p-recommend-item {
  width: calc(33.333333% - 60px * 2 / 3);
}

.p-recommend-item:nth-child(n + 2) {
  margin-left: 60px;
}

@media (max-width: 767px) {
  .p-recommend-item:nth-child(n + 2) {
    margin-left: 0;
    margin-top: 58px;
  }
}

@media (max-width: 767px) {
  .p-recommend-item {
    width: 100%;
  }
}

.p-recommend-item__ttl {
  text-align: center;
}

.p-recommend-item__ttl img {
  width: 190px;
}

@media (max-width: 767px) {
  .p-recommend-item__ttl img {
    width: 178px;
  }
}

.p-recommend-item__img {
  margin-top: 15px;
  text-align: center;
}

@media (max-width: 767px) {
  .p-recommend-item__img {
    margin-top: 12px;
  }
}

.p-recommend-item__text {
  font-size: 14px;
  line-height: 1.71429;
  margin-top: 22px;
  text-align: left;
}

@media (max-width: 767px) {
  .p-recommend-item__text {
    font-size: 14px;
    line-height: 1.7143;
    margin-top: 22px;
    text-align-last: left;
  }
}

.p-recommend-item__text-red {
  color: #EE5A6D;
}

/* medical
-----------------------------------*/
.l-top__medical {
  margin-top: 137px;
}

@media (max-width: 767px) {
  .l-top__medical {
    margin-top: 95px;
  }
}

.l-deco-vector__bg {
  background: #e9f5eb;
  padding: 40px 0 96px;
}

@media (max-width: 767px) {
  .l-deco-vector__bg {
    padding-top: 28px;
  }
}

.l-inner {
  height: inherit;
  margin: 0 auto;
  max-width: 100%;
  width: 1040px;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 999px) {
  .l-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  .l-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-medical__ttlWrap {
  text-align: center;
}

.p-medical__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 60px auto 0;
  max-width: 1000px;
  width: 100%;
}

@media (max-width: 767px) {
  .p-medical__items {
    display: block;
    margin-top: 40px;
  }
}

.p-medical__item {
  position: relative;
  width: 50%;
}

@media (max-width: 767px) {
  .p-medical__item {
    width: 100%;
  }
}

.p-medical__item:nth-child(n + 2) {
  margin-left: 80px;
}

@media (max-width: 999px) {
  .p-medical__item:nth-child(n + 2) {
    margin-left: 40px;
  }
}

@media (max-width: 767px) {
  .p-medical__item:nth-child(n + 2) {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
}

.p-medical-link {
  border-radius: 20px;
  display: block;
  height: 288px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (max-width: 767px) {
  .p-medical-link {
    height: 210px;
  }
}

.p-medical-link::before {
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.p-medical-link:hover .p-medical-link-line {
  border: 2px solid #fff;
}

.p-medical-link:hover::before {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.p-medical-link:hover::after {
  background: rgba(0, 0, 0, 0.4);
}

.p-medical-link:nth-child(1)::before {
  background-image: url(../img/arm2.jpg);
}

.p-medical-link:nth-child(2)::before {
  background-image: url(../img/hp.jpeg);
}

.p-medical-link::after {
  background: rgba(0, 0, 0, 0.2);
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  z-index: 0;
}

.p-medical-link-line {
  border-radius: 20px;
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  margin: 10px;
  position: relative;
  -webkit-transition: all 0.1s ease-out 0s;
  transition: all 0.1s ease-out 0s;
  z-index: 1;
}

.p-medical-link__wrap {
  position: absolute;
  text-align: center;
  top: 35%;
  width: 100%;
  z-index: 2;
}

@media (max-width: 767px) {
  .p-medical-link__wrap {
    top: 30%;
  }
}

.p-medical-link__ttl,
.p-medical-link__text {
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .p-medical-link__ttl,
  .p-medical-link__text {
    font-size: 14px;
  }
}

.p-medical-link__ttl {
  font-size: 28px;
  line-height: 1;
  padding-bottom: 42px;
  position: relative;
}

@media (max-width: 767px) {
  .p-medical-link__ttl {
    font-size: 20px;
  }
}

.p-medical-link__ttl::after {
  background: #fff;
  border-radius: 20px;
  bottom: 16px;
  content: "";
  height: 2px;
  width: 40px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 767px) {
  .p-medical-link__ttl::after {
    width: 30px;
  }
}

.p-medical-link__text {
  letter-spacing: 0.08em;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .p-medical-link__text {
    font-size: 12px;
  }
}

.p-medical__textWrap {
  background: #fff;
  margin-top: 60px;
  max-width: 1280px;
  padding: 40px 40px 32px;
  width: 100%;
}

@media (max-width: 767px) {
  .p-medical__textWrap {
    margin-top: 20px;
    padding: 20px;
  }
}

.p-medical__text {
  font-size: 14px;
  line-height: 2;
}

.p-medical__text-red {
  color: #EE5A6D;
}

/* blog
-----------------------------------*/
.l-top__blog {
  margin-top: 110px;
  padding-top: 50px;
}

@media (max-width: 767px) {
  .l-top__blog {
    margin-top: 60px;
    padding-top: 20px;
  }
}

.p-blog__ttlWrap {
  text-align: center;
}

.p-blog__lists {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 80px;
}

@media (max-width: 767px) {
  .p-blog__lists {
    display: block;
    margin-top: 48px;
  }
}

@media (min-width: 1000px) {
  .p-blog__list {
    width: calc(33.33333% - 50px * 2 / 3);
  }
  .p-blog__list:not(:nth-child(3n + 1)) {
    margin-left: 50px;
  }
  .p-blog__list:nth-child(n + 4) {
    margin-top: 58px;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-blog__list {
    width: calc(50% - 50px * 1 / 2);
  }
  .p-blog__list:not(:nth-child(2n + 1)) {
    margin-left: 40px;
  }
  .p-blog__list:nth-child(n + 3) {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .p-blog__list {
    max-width: 600px;
    width: 100%;
  }
  .p-blog__list:nth-child(n + 2) {
    margin-top: 22px;
  }
}

.p-blog-card {
  border-radius: 20px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: block;
  min-height: 300px;
  position: relative;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.p-blog-card:hover .p-blog-card__ttl {
  color: #22ac38;
}

.p-blog-card:hover .p-blog-card__img > img {
  -webkit-transform: translate(-50%, -50%) scale(1.1, 1.1);
          transform: translate(-50%, -50%) scale(1.1, 1.1);
}

@media (max-width: 767px) {
  .p-blog-card {
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100px;
  }
}

.p-blog-card__img {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  padding-top: 62.7%;
  position: relative;
}

@media (max-width: 767px) {
  .p-blog-card__img {
    border-radius: initial;
    height: 100px;
    padding-top: 0;
    width: 40%;
  }
}

.p-blog-card__img > img {
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
          transform: translate(-50%, -50%) scale(1, 1);
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.p-blog-card__body {
  min-height: 126px;
  padding: 24px 24px 16px;
  position: relative;
}

@media (max-width: 767px) {
  .p-blog-card__body {
    min-height: initial;
    padding: 8px 0 5px 10px;
    width: 60%;
  }
}

.p-blog-card__category {
  background-color: #22ac38;
  border-radius: 12px;
  color: #fff;
  display: inline-block;
  text-align: center;
  font-size: 11px;
  line-height: 28px;
  height: 28px;
  top: -14px;
  left: 24px;
  position: absolute;
  padding: 0 12px;
}

@media (max-width: 767px) {
  .p-blog-card__category {
    font-size: 10px;
    height: 18px;
    line-height: 18px;
    padding-left: 8px;
    padding-right: 8px;
    position: static;
    vertical-align: top;
  }
}

.p-blog-card__ttl {
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  min-height: 72px;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

@media (max-width: 767px) {
  .p-blog-card__ttl {
    font-size: 14px;
    min-height: initial;
  }
}

.p-blog-card__published {
  color: #888;
  display: block;
  font-size: 11px;
  line-height: 1;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .p-blog-card__published {
    margin-top: 8px;
  }
}

.p-blog__btn {
  margin-top: 66px;
  text-align: center;
}

@media (max-width: 767px) {
  .p-blog__btn {
    margin-top: 40px;
  }
}

/*==================================
# footer
==================================*/
/* footer
-----------------------------------*/
.p-footer-topImg {
  height: 32px;
  margin-top: 160px;
  position: relative;
}

@media (max-width: 767px) {
  .p-footer-topImg {
    margin-top: 100px;
  }
}

.p-footer-topImg::before {
  background: url(../img/01-top/wave.svg) no-repeat;
  background-position: top center;
  background-size: cover;
  content: "";
  height: inherit;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
}

.l-footer {
  background: #e9f5eb;
  padding-top: 58px;
  position: relative;
}

@media (max-width: 767px) {
  .l-footer .l-inner {
    height: inherit;
    margin: 0 auto;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    width: 1040px;
  }
}

@media (max-width: 767px) {
  .l-footer {
    padding-top: 14px;
  }
}

.p-footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 20px;
  margin: auto;
  padding: 40px 49px;
  max-width: 1000px;
  width: 100%;
}

@media (max-width: 999px) {
  .p-footer-info {
    display: block;
  }
}

@media (max-width: 767px) {
  .p-footer-info {
    border-radius: 8px;
    padding: 32px 10px 20px;
  }
}

.p-footer-info__left {
  max-width: 478px;
  text-align: center;
  width: 100%;
}

@media (max-width: 999px) {
  .p-footer-info__left {
    margin: auto;
  }
}

.p-footer-info__img {
  text-align: center;
}

.p-footer-info__img > img {
  width: 403px;
}

@media (max-width: 767px) {
  .p-footer-info__img > img {
    width: 311px;
  }
}

.p-footer-info__access {
  font-size: 14px;
  margin-top: 6px;
}

@media (max-width: 767px) {
  .p-footer-info__access {
    margin-top: 10px;
  }
}

.p-footer-info__tel {
  color: #22ac38;
  display: block;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 24px;
}

.p-footer-info__time {
  color: #22ac38;
  font-size: 12px;
  line-height: 1;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .p-footer-info__time {
    margin-top: 6px;
  }
}

.p-footer-info__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 22px;
}

.p-footer-info__btn:nth-child(2) {
  margin-left: 20px;
}

@media (max-width: 767px) {
  .p-footer-info__btn:nth-child(2) {
    margin-left: 15px;
  }
}

.c-btn-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  font-size: 16px;
  height: 56px;
  max-width: 220px;
  width: 100%;
}

.c-btn-footer > span {
  margin-left: 8px;
}

@media (max-width: 767px) {
  .c-btn-footer {
    font-size: 14px;
    height: 38px;
    max-width: 150px;
  }
}

.c-btn-footer-blue {
  background-color: #22ac38;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.c-btn-footer-blue path {
  fill: #fff;
  -webkit-transition: fill 0.3s ease-out 0s;
  transition: fill 0.3s ease-out 0s;
}

.c-btn-footer-blue:hover {
  background-color: #009944;
  color: #fff;
}

.c-btn-footer-white {
  background-color: #fff;
  color: #22ac38;
  border: 1px solid #22ac38;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.c-btn-footer-white svg {
  width: 20px;
}

@media (max-width: 767px) {
  .c-btn-footer-white svg {
    width: 17.5px;
  }
}

.c-btn-footer-white path {
  fill: #fff;
  -webkit-transition: fill 0.3s ease-out 0s;
  transition: fill 0.3s ease-out 0s;
}

.c-btn-footer-white:hover {
  background-color: #009944;
  border: 1px solid #009944;
  color: #fff;
}

.c-btn-footer-white:hover path {
  fill: #fff;
}

.footer-sns {
  margin-top: 20px;
}

.footer-sns-list {
  text-align: center;
}

@media (max-width: 767px) {
  .footer-sns-list {
    margin-top: 14px;
  }
}

.footer-sns-item {
  display: inline-block;
}

.footer-sns-item + .footer-sns-item {
  margin-left: 10px;
}

.footer-sns-item-link {
  color: #22ac38;
  font-size: 24px;
  display: block;
  padding: .1em .5em;
}

@media (min-width: 1280px) {
  .footer-sns-item-link {
    -webkit-transition: opacity .4s;
    transition: opacity .4s;
  }
  .footer-sns-item-link.hover {
    opacity: .7;
  }
}

.p-footer-info__right {
  margin-left: 40px;
}

@media (max-width: 999px) {
  .p-footer-info__right {
    margin-top: 40px;
    margin-left: 0;
  }
}

.p-footer-map {
  max-width: 100%;
  width: 385px;
}

@media (max-width: 999px) {
  .p-footer-map {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .p-footer-map {
    margin-top: 22px;
  }
}

.p-footer-map__iframe {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.p-footer-map__iframe > iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.p-copyright {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #22ac38;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 55px;
}

@media (max-width: 1200px) {
  .p-copyright {
    height: inherit;
    padding-top: 17px;
    padding-bottom: 79px;
  }
}

.p-copyright__text {
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

/* 
-----------------------------------*/
.p-top-btn {
  position: fixed;
  cursor: pointer;
  height: 52px;
  width: 52px;
  right: 20px;
  bottom: 40px;
  z-index: 30;
}

.p-reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  background: #22ac38;
  border-radius: 20px 0 0 20px;
  cursor: pointer;
  height: 120px;
  width: 92px;
  top: 176px;
  right: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 30;
}

.p-reserve svg {
  margin-top: 20px;
}

.p-reserve:hover {
  background: #009944;
}

@media (max-width: 1200px) {
  .p-reserve {
    display: none;
  }
}

.p-reserve__text {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-top: 12px;
}

.p-footer-cta {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  background: rgba(255, 255, 255, 0.85);
  bottom: 0;
  height: 60px;
  right: 0;
  left: 0;
  z-index: 39;
}

@media (max-width: 1200px) {
  .p-footer-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-footer-cta__tel {
  text-align: center;
}

.p-footer-cta__tel a {
  color: #22ac38;
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.p-footer-cta__tel svg {
  height: 18px;
  width: 18px;
  margin-right: 5px;
}

.footer-cta__time {
  color: #393939;
  font-size: 10px;
  line-height: 1;
}

.p-footer-cta__web {
  background-color: #22ac38;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  height: 47px;
  width: 157px;
  margin-left: 12px;
  padding-left: 12px;
}

.p-footer-cta__web img {
  height: 23.5px;
  width: 43.5px;
}

.p-footer-cta__webText {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-left: 10px;
}

.p-footer-cta__webText-big {
  font-size: 16px;
}

/* feature
-----------------------------------*/
.l-lower {
  margin-top: 80px;
}

.p-about-feature__ttlWrap {
  text-align: center;
}

.p-feature__items {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .p-feature__items {
    margin-top: 40px;
  }
}

.p-about-feature__item:nth-child(n + 2) {
  margin-top: 160px;
}

@media (max-width: 767px) {
  .p-about-feature__item:nth-child(n + 2) {
    margin-top: 92px;
  }
}

.is-reverse .p-feature__wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .is-reverse .p-feature__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.is-reverse .p-feature__wrap .p-feature__img {
  border-radius: 20px 0 0 20px;
  height: 100%;
  max-height: 438px;
  overflow: hidden;
  width: 50%;
}

@media (max-width: 767px) {
  .is-reverse .p-feature__wrap .p-feature__img {
    height: 61.2vw;
    margin-left: auto;
    margin-right: inherit;
    margin-top: 40px;
    width: 89%;
  }
  .is-reverse .p-feature__wrap .p-feature__img img {
    height: 61.2vw;
  }
}

.is-reverse .p-feature__wrap .p-feature__description {
  margin-right: 95px;
  width: 31.8%;
}

@media (min-width: 768px) and (max-width: 999px) {
  .is-reverse .p-feature__wrap .p-feature__description {
    margin-right: 40px;
    width: 40%;
  }
}

@media (max-width: 767px) {
  .is-reverse .p-feature__wrap .p-feature__description {
    margin-right: 0;
    padding: 0 20px;
    width: 100%;
  }
}

/* gallery
-----------------------------------*/
.l-lower-about__gallery {
  margin-top: 160px;
}

@media (max-width: 767px) {
  .l-lower-about__gallery {
    margin-top: 100px;
  }
}

.p-about-gallery__ttlWrap {
  text-align: center;
}

.p-about-gallery__photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 62px;
}

@media (max-width: 767px) {
  .p-about-gallery__photos {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    max-width: 600px;
    width: 100%;
  }
}

.p-about-gallery__photo {
  border-radius: 20px;
  overflow: hidden;
  width: calc(33.33333% - 24px * 2 / 3);
}

.p-about-gallery__photo:not(:nth-child(3n)) {
  margin-right: 24px;
}

.p-about-gallery__photo:not(:nth-child(-n + 3)) {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .p-about-gallery__photo {
    width: calc(50% - 12px * 1 / 2);
  }
  .p-about-gallery__photo:not(:nth-child(3n)) {
    margin-right: inherit;
  }
  .p-about-gallery__photo:not(:nth-child(2n)) {
    margin-right: 12px;
  }
  .p-about-gallery__photo:not(:nth-child(-n + 2)) {
    margin-top: 12px;
  }
}

.p-about-gallery__img {
  padding-top: 100%;
  position: relative;
}

.p-about-gallery__img img {
  height: 100%;
  width: 100%;
  left: 50%;
  top: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*==================================
# medical
==================================*/
.p-lower-top--medical {
  background-image: url(../img/03-medical/page-medical_top@3x.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.l-lower-medical__nav {
  margin-top: 76px;
}

.p-medical-main__ttlWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-medical-anchor__ttl {
  color: #393939;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.42857;
}

.p-medical-anchor__subTtl {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 35px;
  line-height: 35px;
  margin-left: 24px;
  padding: 0 12px;
}

.p-medical-anchor__subTtl-blue {
  background: #22ac38;
}

.p-medical-anchor__subTtl-red {
  background: #EE5A6D;
}

.p-medical-main__items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 34px;
}

.p-medical-main__item {
  margin-bottom: 20px;
  margin-right: 16px;
}

.p-medical-item {
  background: #fff;
  border: 2px solid #22ac38;
  border-radius: 12px;
  display: inline-block;
}

.medical-item__link {
  background-color: #fff;
  background-image: none;
  background-position: bottom 0px center;
  background-repeat: no-repeat;
  border-radius: 12px;
  color: #22ac38;
  display: block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 22px 29px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.medical-item__link:hover {
  background-color: #dff1fd;
  background-image: url(../img/03-medical/arrow-bottom.svg);
  background-position: bottom 5px center;
  background-repeat: no-repeat;
  padding: 11px 29px 31px;
}

.l-lower-staff__gallery {
  margin-top: 150px;
}

@media (max-width: 767px) {
  .l-lower-staff__gallery {
    margin-top: 84px;
  }
}

.p-staff-gallery,
.swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}

/*==================================
# Menu
==================================*/
.l-top__price {
  margin-top: 110px;
  padding-top: 50px;
}

@media (max-width: 767px) {
  .l-top__price {
    margin-top: 60px;
    padding-top: 20px;
  }
}

.p-price__ttlWrap {
  text-align: center;
}

.p-price__list {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .p-price__list {
    margin-left: auto;
    width: 100%;
  }
}

.p-plice-item {
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.6rem;
  padding: 0 18px;
}

.p-plice-item + .p-plice-item {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .p-plice-item + .p-plice-item {
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  .p-plice-item + .p-plice-item {
    margin-top: 24px;
  }
}

.p-price-itemQuestion {
  color: #22ac38;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 0 14px;
  line-height: 1.5;
  border: 1px solid #22ac38;
  border-radius: 20px;
  margin-top: 20px;
}

.p-price-itemQuestion_txt {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  line-height: 1.5;
  margin-left: 0.75em;
  position: relative;
  letter-spacing: 0.025em;
  font-size: 18px;
  font-weight: 700;
}

.p-price-itemQuestion_txt:before {
  background: #22ac38;
  content: '';
  display: block;
  margin-right: 20px;
  height: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  width: 15px;
  letter-spacing: normal;
}

.p-price-itemQuestion_txt:after {
  background: #22ac38;
  content: '';
  display: block;
  margin-right: 20px;
  height: 3px;
  width: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.p-price-item.add-active .p-price-itemQuestion {
  background: #22ac38;
  color: #fff;
}

.p-price-item.add-active .p-price-itemQuestion_txt:after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  background: #fff;
}

.p-price-itemAnswer {
  display: none;
  padding-bottom: 14px;
}

.p-price-itemAnswer_txt {
  background: rgba(73, 115, 255, 0.2);
  border-radius: 4px;
  line-height: 1.5;
  padding: 14px 14px;
}

@media (max-width: 767px) {
  .p-price-itemAnswer_txt {
    font-size: 1.4rem;
    padding: 10px;
  }
}

.price-table {
  border: solid 1px #707070;
  border-collapse: collapse;
  font-size: 1.6rem;
  margin-top: 54px;
  table-layout: fixed;
  width: 100%;
}

@media (max-width: 767px) {
  .price-table {
    font-size: 1.6rem;
    margin-top: 38px;
  }
}

.price-table th,
.price-table td {
  font-weight: 500;
  padding: 0.8em 20px;
}

@media (min-width: 768px) {
  .price-table th,
  .price-table td {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 0.5em 1.6em;
  }
}

@media (max-width: 767px) {
  .price-table th,
  .price-table td {
    font-size: .6rem;
    padding-top: 0.6em;
    padding-bottom: 0.6em;
  }
}

.price-table th {
  background: #3e3e3e;
  color: #fff;
  text-align: center;
}

.price-table td {
  background: #fff;
  text-align: center;
  vertical-align: middle;
}

.price-table tr:not(:first-child) th {
  border-top: solid 1px #ddd;
}

.price-table tr:not(:first-child) td {
  border-top: solid 1px #707070;
}

tr:not(:first-child) .price-table td {
  border-top: solid 1px #707070;
}

.price-txt {
  font-size: 1.2rem;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .price-txt {
    margin-top: 1em;
  }
}

@media (max-width: 767px) {
  .price-txt {
    font-size: 1rem;
  }
}

@media (min-width: 1000px) {
  .p-price-list {
    width: calc(33.33333% - 50px * 2 / 3);
  }
  .p-price-list:not(:nth-child(3n + 1)) {
    margin-left: 50px;
  }
  .p-price-list:nth-child(n + 4) {
    margin-top: 58px;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-price-list {
    width: calc(50% - 50px * 1 / 2);
  }
  .p-price-list:not(:nth-child(2n + 1)) {
    margin-left: 40px;
  }
  .p-price-list:nth-child(n + 3) {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .p-price-list {
    display: block;
  }
  .p-price-list:nth-child(n + 2) {
    margin-top: 22px;
  }
}

.p-price-card {
  border-radius: 20px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: block;
  min-height: 300px;
  position: relative;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

@media (max-width: 767px) {
  .p-price-card {
    min-height: 100px;
  }
}

.p-price-card__body {
  min-height: 126px;
  padding: 24px 24px 16px;
  position: relative;
}

@media (max-width: 767px) {
  .p-price-card__body {
    min-height: initial;
    padding: 8px 0 5px 10px;
    width: 100%;
  }
}

.p-price-card__category {
  background-color: #22ac38;
  border-radius: 12px;
  color: #fff;
  display: inline-block;
  text-align: center;
  font-size: 11px;
  line-height: 28px;
  height: 28px;
  top: -14px;
  left: 24px;
  position: absolute;
  padding: 0 12px;
}

@media (max-width: 767px) {
  .p-price-card__category {
    font-size: 10px;
    height: 18px;
    line-height: 18px;
    padding-left: 8px;
    padding-right: 8px;
    position: static;
    vertical-align: top;
  }
}

.p-price-card__ttl {
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  min-height: 72px;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  text-align: center;
  padding: 10px 0;
}

@media (max-width: 767px) {
  .p-price-card__ttl {
    font-size: 14px;
    min-height: initial;
  }
}

.course-ttl {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #22ac38;
}

.course-price {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #22ac38;
}

.menu__ttl {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 700;
}

.menu1 {
  margin-top: 50px;
}

.premium-red {
  text-align: center;
  font-size: 18px;
  color: red;
}

.premium-text {
  text-align: center;
}
/*# sourceMappingURL=style.css.map */