@charset "UTF-8";
/*
Theme Name: AI STUDIO
Theme URL:
Description: AI STUDIO Webサイト
Version: 1.0.0
License: AI STUDIO
License URI:
*/
/* --- reset.css --- */
/* === 使わないセレクタは消去する --- */
/* --- reset.css --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

main {
  display: block;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

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

/* --- reset.cssここまで --- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  max-width: 100%;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
}

@media screen and (max-width: 1199px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 758px) {
  body {
    font-size: 12px;
  }
  body.home {
    padding-bottom: 89px;
  }
}
ul {
  list-style: none;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1199px) {
  a:hover {
    opacity: 1;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container {
  margin: 0 auto;
  max-width: 100%;
}

/* ---------------------------------
  各種デバイスサイズ切り替え用CSS
----------------------------------- */
.sp-only {
  display: none;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media screen and (max-width: 1199px) {
  .sp-only {
    display: block;
  }
}
@media screen and (max-width: 758px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/* ---------------------------------
  バナー：banner
----------------------------------- */
.banner {
  margin-top: 120px;
}
.banner .container {
  width: 1100px;
}
.banner__link {
  display: block;
}
.banner__link img {
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .banner {
    margin-top: 60px;
  }
  .banner .container {
    width: 100%;
    max-width: 650px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 758px) {
  .banner {
    margin-top: 42px;
  }
  .banner .container {
    max-width: 100%;
    padding: 0;
  }
}
/* ---------------------------------
  section-title
----------------------------------- */
.section-title {
  font-size: 48px;
  font-weight: 700;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
}

@media screen and (max-width: 1199px) {
  .section-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 758px) {
  .section-title {
    font-size: 30px;
  }
  .section-title__subtitle {
    margin-top: 12px;
    font-size: 13px;
  }
}
/* ---------------------------------
  画面下部ボタン
----------------------------------- */
.bbtns {
  opacity: 0;
  z-index: -1;
}

@media screen and (max-width: 1023px) {
  .bbtns {
    position: fixed;
    bottom: 0;
    padding: 10px 0;
    width: 100%;
    background-color: #222;
    opacity: 1;
    z-index: 10;
  }
  .bbtns__title {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-align: center;
  }
  .bbtns__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 7px;
  }
  .bbtns__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 50px;
    border-radius: 4px;
  }
  .bbtns__item p {
    font-size: 12px;
    font-weight: 500;
  }
  .bbtns__item.line {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px;
  }
  .bbtns__item.line img {
    width: 50px;
    height: 50px;
  }
  .bbtns__item.tel, .bbtns__item.mail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    margin-left: 5px;
  }
  .bbtns__item.tel {
    background-color: #7c0904;
    color: #fff;
  }
  .bbtns__item.tel img {
    margin-right: 7px;
    width: 10px;
  }
  .bbtns__item.mail {
    background-color: #d7ff21;
  }
  .bbtns__item.mail img {
    margin-right: 7px;
    width: 13px;
  }
  .bbtns__item.mail p {
    position: relative;
    top: -1px;
  }
}
/* ---------------------------------
  下層ページMV：mv-lower
----------------------------------- */
.mv-lower {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 85px;
  width: 100%;
  height: 450px;
  background-image: url(img/lower-diet-mv-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
}
.mv-lower .page-title {
  position: relative;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 90px;
  font-weight: 600;
  padding-bottom: 20px;
}
.mv-lower .page-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mv-lower .page-desc {
  margin-top: 30px;
  font-size: 30px;
  font-weight: 700;
}

@media screen and (max-width: 1199px) {
  .mv-lower {
    margin-top: 60px;
    width: 100%;
    height: 350px;
    background-image: url(img/lower-diet-mv-80.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .mv-lower .page-title {
    font-size: 60px;
    padding-bottom: 15px;
  }
  .mv-lower .page-desc {
    margin-top: 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 758px) {
  .mv-lower {
    height: 200px;
    background-image: url(img/sp-lower-diet-mv@3x-80.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .mv-lower .page-title {
    font-size: 42px;
    padding-bottom: 10px;
  }
  .mv-lower .page-desc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }
}
/* --------------------------------------
  下層ページMV(背景画像なし)：mv-lower-nobg
---------------------------------------- */
.mv-lower-nobg {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 85px;
  width: 100%;
  height: 450px;
  background-color: #f7f8f8;
  color: #222;
}
.mv-lower-nobg .page-title {
  position: relative;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 90px;
  font-weight: 600;
  padding-bottom: 20px;
}
.mv-lower-nobg .page-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 2px;
  background-color: #222;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mv-lower-nobg .page-desc {
  margin-top: 30px;
  font-size: 30px;
  font-weight: 700;
}

@media screen and (max-width: 1199px) {
  .mv-lower-nobg {
    margin-top: 60px;
    width: 100%;
    height: 350px;
  }
  .mv-lower-nobg .page-title {
    font-size: 60px;
    padding-bottom: 15px;
  }
  .mv-lower-nobg .page-desc {
    margin-top: 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 758px) {
  .mv-lower-nobg {
    height: 200px;
  }
  .mv-lower-nobg .page-title {
    font-size: 42px;
    padding-bottom: 10px;
  }
  .mv-lower-nobg .page-desc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }
}
/* ---------------------------------
  パンくずリスト：breadcrumb
----------------------------------- */
.breadcrumb-wrap {
  width: 1200px;
  margin: 47px auto 0;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.breadcrumb-wrap::-webkit-scrollbar {
  display: none;
}

.breadcrumb {
  font-family: futura-pt, "Futura PT", "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.breadcrumb span {
  margin: 0 10px;
}
.breadcrumb span:first-child {
  margin-left: 0;
}

@media screen and (max-width: 1199px) {
  .breadcrumb-wrap {
    width: 100%;
    padding: 0 30px;
    margin: 30px auto 0;
  }
  .breadcrumb {
    width: 100%;
    height: 100%;
  }
  .breadcrumb span {
    margin: 0 6px;
  }
}
@media screen and (max-width: 758px) {
  .breadcrumb-wrap {
    width: 100%;
    padding: 0 15px;
    margin: 15px auto 0;
  }
  .breadcrumb {
    font-size: 12px;
  }
  .breadcrumb span {
    margin: 0 3px;
  }
}
/* ---------------------------------
  ページネーション：pagination
----------------------------------- */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.pagination {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination .page-numbers {
  display: grid;
  place-items: center;
  width: 60px;
  height: 50px;
  color: #222;
  border: 1px solid #cbcbcb;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover {
  background-color: #222;
  border: 1px solid #222;
  color: #fff;
  opacity: 1;
}
.pagination .page-numbers + .page-numbers {
  margin-left: 5px;
}

@media screen and (max-width: 1199px) {
  .pagination {
    margin-top: 60px;
  }
  .pagination .page-numbers {
    width: 40px;
    height: 30px;
  }
}
/* ---------------------------------
  前後の投稿へのリンク:single-$$
----------------------------------- */
.single .nav-links {
  white-space: nowrap;
  overflow-x: hidden;
}

/* ---------------------------------
  フッター上の余白
----------------------------------- */
.page-about .service,
.page-price .service,
.page-studio .service {
  margin-bottom: 120px;
}

@media screen and (max-width: 1199px) {
  .page-about .service,
  .page-price .service,
  .page-studio .service {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 758px) {
  .page-about .service,
  .page-price .service,
  .page-studio .service {
    margin-bottom: 50px;
  }
}
/* ===================================

  ヘッダー：header

====================================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
}
.header .container {
  padding-left: 40px;
  height: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__left-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.header__logo {
  width: 180px;
}
.header__link {
  display: block;
}
.header__logo2 {
  width: 130px;
  margin-left: 37px;
}
.header img {
  width: 100%;
}
.header__desc {
  margin-left: 42px;
  font-size: 14px;
  color: #727171;
  font-weight: 300;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .instalink {
  display: block;
  width: 24px;
}
.header__tel {
  margin-left: 50px;
  text-align: center;
}
.header__tel-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__tel-top img {
  width: 13px;
}
.header__tel-number {
  margin-left: 12px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 28px;
  font-weight: 500;
}
.header__tel-text {
  margin-top: 10px;
  font-size: 14px;
}
.header__tel-text span {
  font-size: 16px;
  margin-left: 17px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 500;
}
.header__contact {
  display: grid;
  place-items: center;
  margin-left: 33px;
  width: 165px;
  height: 85px;
  background-color: #d7ff21;
}
.header__contact-text {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}
.header__contact-text span {
  display: block;
  margin-top: 8px;
}

#menu-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: block;
  width: 90px;
  height: 85px;
  background-color: #222;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#menu-btn:hover {
  opacity: 0.9;
}
#menu-btn span {
  display: block;
  position: absolute;
  left: 32px;
  width: 27px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#menu-btn span:first-child {
  top: 36px;
}
#menu-btn span:last-child {
  bottom: 36px;
}
#menu-btn.active span:first-child {
  top: 41px;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}
#menu-btn.active span:last-child {
  bottom: 41px;
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

@media screen and (max-width: 1199px) {
  .header .container {
    padding-left: 30px;
    height: 60px;
  }
  .header__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header__logo {
    width: 120px;
  }
  .header__logo2 {
    width: 87px;
    margin-left: 20px;
  }
  .header__desc {
    margin-top: 7px;
    margin-left: 0;
    font-size: 10px;
  }
  .header .instalink {
    display: none;
  }
  .header__tel {
    display: none;
  }
  .header__contact {
    margin-left: 0;
    width: 135px;
    height: 60px;
  }
  .header__contact-text {
    font-size: 11px;
  }
  #menu-btn {
    width: 64px;
    height: 60px;
  }
  #menu-btn:hover {
    opacity: 1;
  }
  #menu-btn span {
    left: 22px;
    width: 20px;
    height: 2px;
  }
  #menu-btn span:first-child {
    top: 33px;
  }
  #menu-btn span:last-child {
    bottom: 33px;
  }
  #menu-btn.active span:first-child {
    top: 29px;
  }
  #menu-btn.active span:last-child {
    bottom: 29px;
  }
}
@media screen and (max-width: 758px) {
  .header .container {
    padding-left: 15px;
  }
  .header__logo2 {
    width: 85px;
    margin-left: 16px;
  }
  .header__desc {
    margin-top: 5px;
  }
  .header__contact {
    display: none;
  }
}
/* ---------------------------------
  モーダルメニュー
----------------------------------- */
.modal-menu {
  position: fixed;
  top: 85px;
  right: -100%;
  background-color: rgba(34, 34, 34, 0.96);
  width: 450px;
  height: 100vh;
  overflow-y: scroll;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.modal-menu.show {
  right: 0;
  opacity: 1;
  z-index: 9999;
}
.modal-menu__inner {
  padding: 36px 40px 0;
}
.modal-menu .menu-list + .menu-list {
  margin-top: 30px;
}
.modal-menu .menu-link {
  display: block;
  color: #fff;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 24px;
  font-weight: 500;
}
.modal-menu .menu-link span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-left: 28px;
}
.modal-menu .privacy-link {
  display: block;
  margin-top: 40px;
  color: #fff;
  font-size: 16px;
}

@media screen and (max-width: 1199px) {
  .modal-menu {
    top: 60px;
    -webkit-overflow-scrolling: touch;
  }
  .modal-menu__inner {
    padding: 36px 40px 100px;
  }
}
@media screen and (max-width: 758px) {
  .modal-menu {
    top: 55px;
    width: 100%;
  }
  .modal-menu .menu-link {
    font-size: 24px;
  }
  .modal-menu .menu-link span {
    font-size: 12px;
    margin-left: 16px;
  }
  .modal-menu .privacy-link {
    margin-top: 30px;
  }
}
/* ---------------------------------
  Loding画面：loding
----------------------------------- */
.loding {
  display: none;
}

.home #loding {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  text-align: center;
  color: #333;
  z-index: 9999;
}
.home .loding__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
  max-width: 420px;
}
.home .loding__logo .fadeIn {
  width: 100%;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===================================

  フッター：footer

====================================== */
.footer {
  padding: 27px 0;
  width: 100%;
  background-color: #222;
}
.footer .container {
  width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.footer img {
  display: block;
  width: 100%;
}
.footer__logo {
  display: block;
  width: 180px;
}
.footer__logo2 {
  margin-left: 58px;
  width: 130px;
}
.footer .copyright {
  padding-bottom: 5px;
  color: #fff;
  margin-left: auto;
  font-size: 12px;
  font-weight: 300;
}

@media screen and (max-width: 1199px) {
  .footer {
    padding: 40px 0;
  }
  .footer .container {
    width: 100%;
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__logo {
    width: 135px;
  }
  .footer__logo2 {
    margin-left: 0;
    margin-top: 30px;
    width: 135px;
  }
  .footer .copyright {
    padding-bottom: 0;
    margin-left: 0;
    margin-top: 50px;
    font-size: 12px;
  }
}
@media screen and (max-width: 758px) {
  .footer {
    padding: 20px 0 16px;
  }
  .footer__logo {
    width: 135px;
  }
  .footer__logo2 {
    margin-top: 20px;
    width: 135px;
  }
  .footer .copyright {
    margin-top: 25px;
    font-size: 10px;
  }
}
/* ===================================

  トップページ：home

====================================== */
/* ---------------------------------
  メインビジュアル：mv
----------------------------------- */
.home .mv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 85px;
  width: 100%;
  height: 770px;
}
.home .mv__left {
  position: relative;
  width: 13.5%;
  height: 770px;
  background-color: #fff;
}
.home .mv__contents {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 62px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.home .mv__title {
  font-size: 90px;
  font-weight: 700;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  line-height: 1.09;
}
.home .mv__subtitle {
  font-size: 30px;
  font-weight: 700;
  margin-top: 46px;
}
.home .mv__text {
  margin-top: 42px;
  font-size: 20px;
  line-height: 2;
}
.home .mv__right {
  width: 86.5%;
  overflow: hidden;
  height: 100%;
}
.home .mv__inner {
  width: 100%;
  height: 100%;
  background-image: url(img/mv-lg-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}

@media screen and (max-width: 1620px) {
  .home .mv {
    height: 525px;
  }
  .home .mv__left {
    width: 13.5%;
    height: 525px;
  }
  .home .mv__contents {
    left: 62px;
    text-shadow: 4px 4px 4px rgba(255, 255, 255, 0.5), -4px 4px 4px rgba(255, 255, 255, 0.5), 4px -4px 4px rgba(255, 255, 255, 0.5), -4px -4px 4px rgba(255, 255, 255, 0.5);
  }
  .home .mv__title {
    font-size: 90px;
  }
  .home .mv__subtitle {
    font-size: 30px;
    margin-top: 46px;
  }
  .home .mv__text {
    margin-top: 42px;
    font-size: 20px;
  }
  .home .mv__right {
    width: 86.5%;
  }
  .home .mv__inner {
    background-image: url(img/mv-lg-80.jpg);
  }
}
@media screen and (max-width: 1450px) {
  .home .mv {
    height: 585px;
  }
  .home .mv__left {
    width: 13.5%;
    height: 585px;
  }
  .home .mv__contents {
    left: 62px;
  }
  .home .mv__title {
    font-size: 81px;
  }
  .home .mv__subtitle {
    font-size: 27px;
    margin-top: 46px;
  }
  .home .mv__text {
    margin-top: 42px;
    font-size: 18px;
  }
  .home .mv__right {
    width: 86.5%;
  }
  .home .mv__inner {
    background-image: url(img/mv-lg-80.jpg);
  }
}
@media screen and (max-width: 1290px) {
  .home .mv {
    height: 540px;
  }
  .home .mv__left {
    width: 13.5%;
    height: 540px;
  }
  .home .mv__contents {
    left: 62px;
  }
  .home .mv__title {
    font-size: 72px;
  }
  .home .mv__subtitle {
    font-size: 24px;
    margin-top: 46px;
  }
  .home .mv__text {
    margin-top: 42px;
    font-size: 16px;
  }
  .home .mv__right {
    width: 86.5%;
  }
  .home .mv__inner {
    background-image: url(img/mv-lg-80.jpg);
  }
}
@media screen and (max-width: 1199px) {
  .home .mv {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .home .mv {
    height: 800px;
  }
  .home .mv__left {
    display: none;
    width: 0;
    height: 800px;
  }
  .home .mv__right {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .home .mv__contents {
    width: calc(100% - 30px);
    top: 66%;
    left: 30px;
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.75);
  }
  .home .mv__title {
    font-size: 70px;
  }
  .home .mv__subtitle {
    margin-top: 30px;
    font-size: 22px;
  }
  .home .mv__text {
    margin-top: 30px;
    font-size: 15px;
  }
  .home .mv__inner {
    background-image: url(img/mv-lg-80.jpg);
    background-position: -500px top;
  }
}
@media screen and (max-width: 758px) {
  .home .mv {
    height: 580px;
  }
  .home .mv__contents {
    width: auto;
    top: 40%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: 16px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), -2px 2px 6px rgba(0, 0, 0, 0.5), 2px -2px 6px rgba(0, 0, 0, 0.5), -2px -2px 6px rgba(0, 0, 0, 0.5);
  }
  .home .mv__title {
    font-size: 48px;
  }
  .home .mv__subtitle {
    margin-top: 15px;
    font-size: 20px;
  }
  .home .mv__text {
    margin-top: 14px;
    font-size: 12px;
  }
  .home .mv__inner {
    background-image: url(img/mv-sp-80.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
  }
}
/* ---------------------------------
  NEWS：news
----------------------------------- */
.home .main {
  display: block;
  padding-bottom: 120px;
}

.home .news {
  padding-top: 80px;
  width: 100%;
}
.home .news .container {
  margin: 0 auto;
  width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .news__title {
  display: grid;
  place-items: center;
  font-size: 40px;
  font-weight: 700;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  padding-right: 50px;
  border-right: 1px solid #8f8f8f;
}
.home .news__contents {
  padding-left: 50px;
  word-break: break-all;
}
.home .news .entry + .entry {
  margin-top: 1.5em;
}
.home .news .entry__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .news .entry__date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 110px;
          flex: 0 0 110px;
  width: 110px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.home .news .entry__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  margin-top: -0.2em;
  font-weight: 300;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  .home .main {
    padding-bottom: 60px;
  }
  .home .news {
    margin-top: 0;
    margin-left: 0;
    padding: 40px 30px 0;
    width: 100%;
    min-height: auto;
  }
  .home .news .container {
    display: block;
    width: 100%;
  }
  .home .news__title {
    display: block;
    font-size: 36px;
    padding-right: 0;
    padding-bottom: 16px;
    border-right: none;
    border-bottom: 1px solid #8f8f8f;
  }
  .home .news__contents {
    display: block;
    padding-left: 0;
    padding-top: 20px;
  }
  .home .news .entry + .entry {
    margin-top: 20px;
  }
  .home .news .entry__date {
    font-size: 13px;
  }
  .home .news .entry__title {
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  .home .main {
    padding-bottom: 25px;
  }
  .home .news {
    padding: 40px 15px 0;
  }
  .home .news__title {
    font-size: 27px;
    padding-bottom: 12px;
  }
  .home .news__contents {
    padding-top: 16px;
  }
  .home .news .entry + .entry {
    margin-top: 16px;
  }
  .home .news .entry__link {
    display: block;
  }
  .home .news .entry__date {
    width: 100%;
    font-size: 11px;
  }
  .home .news .entry__title {
    width: 100%;
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.75;
  }
}
/* ---------------------------------
  コンセプト：concept
----------------------------------- */
.home .concept {
  position: relative;
  margin-top: 120px;
}
.home .concept__bg {
  position: absolute;
  top: 300px;
  right: 0;
  width: 71.9%;
  height: 510px;
  background-color: #f7f8f8;
  z-index: -1;
}
.home .concept .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .concept__img {
  width: 980px;
}
.home .concept__img img {
  display: block;
  width: 100%;
}
.home .concept__contents {
  position: relative;
  width: 630px;
  padding: 60px 60px 103px;
  background-color: #fff;
  z-index: 1;
  margin-top: 90px;
  margin-left: -410px;
}
.home .concept__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 500;
}
.home .concept__title::before {
  content: "";
  display: block;
  margin-right: 10px;
  width: 30px;
  height: 1px;
  background-color: #222;
}
.home .concept__copy {
  margin-top: 40px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}
.home .concept__text {
  margin-top: 28px;
  line-height: 2;
}

@media screen and (max-width: 1199px) {
  .home .concept {
    margin-top: 60px;
  }
  .home .concept__bg {
    display: none;
  }
  .home .concept .container {
    display: block;
    width: 100%;
    padding: 0 30px;
  }
  .home .concept__img {
    width: 100%;
  }
  .home .concept__img img {
    max-width: auto;
    width: 100%;
  }
  .home .concept__contents {
    width: 100%;
    padding: 40px 0 0;
    background-color: transparent;
    margin-top: 0;
    margin-left: 0;
  }
  .home .concept__title {
    font-size: 18px;
  }
  .home .concept__title::before {
    margin-right: 15px;
  }
  .home .concept__copy {
    margin-top: 30px;
    font-size: 28px;
  }
  .home .concept__text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 758px) {
  .home .concept {
    margin-top: 50px;
  }
  .home .concept .container {
    padding: 0 15px;
  }
  .home .concept__contents {
    padding: 32px 0 0;
  }
  .home .concept__title {
    font-size: 12px;
  }
  .home .concept__title::before {
    width: 23px;
    margin-right: 8px;
  }
  .home .concept__copy {
    margin-top: 25px;
    font-size: 24px;
    line-height: 1.75;
  }
  .home .concept__text {
    margin-top: 17px;
  }
}
/* ---------------------------------
  VOICE：voice
----------------------------------- */
.home .voice {
  padding-top: 210px;
}
.home .voice__inner {
  padding: 120px 0;
  background-color: #f7f8f8;
}
.home .voice .container {
  display: block;
}
.home .voice .section-title-wrap {
  width: 1200px;
  margin: 0 auto;
}
.home .voice .section-title__desc {
  margin-top: 18px;
  line-height: 2;
}
.home .voice__contents {
  margin-top: 50px;
}
.home .voice .swiper-slide {
  width: 350px !important;
}
.home .voice .swiper-button-prev,
.home .voice .swiper-button-next {
  display: none;
}
.home .voice .entry {
  position: relative;
  width: 350px;
  z-index: 1;
}
.home .voice .entry__link {
  display: block;
}
.home .voice .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.home .voice .entry__thumb-img {
  width: 100%;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.home .voice .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.home .voice .entry__body {
  padding: 20px 20px 15px;
  background-color: #fff;
  word-break: break-all;
}
.home .voice .entry__meta {
  padding-bottom: 20px;
  border-bottom: 1px solid #222;
}
.home .voice .entry__name {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}
.home .voice .entry__name .title {
  margin-left: 14px;
  font-size: 18px;
  font-weight: 500;
}
.home .voice .entry__name .gender-age {
  margin-left: 0;
  font-size: 16px;
}
.home .voice .entry__attr {
  margin-top: 10px;
}
.home .voice .entry__excerpt {
  margin-top: 12px;
  line-height: 2;
}

@media screen and (max-width: 1199px) {
  .home .voice {
    padding-top: 60px;
  }
  .home .voice__inner {
    padding: 60px 0;
  }
  .home .voice .container {
    display: block;
  }
  .home .voice .section-title-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
  }
  .home .voice .section-title {
    text-align: center;
  }
  .home .voice .section-title__desc {
    margin-top: 16px;
  }
  .home .voice .section-title__desc br {
    display: none;
  }
  .home .voice__contents {
    margin-top: 40px;
  }
  .home .voice .swiper-slide {
    width: 300px !important;
  }
  .home .voice .entry {
    width: 300px;
  }
  .home .voice .entry__body {
    padding: 20px 20px 15px;
  }
  .home .voice .entry__meta {
    padding-bottom: 16px;
  }
  .home .voice .entry__name {
    font-size: 20px;
  }
  .home .voice .entry__name .title {
    margin-left: 12px;
    font-size: 16px;
  }
  .home .voice .entry__name .gender-age {
    margin-left: 20px;
    font-size: 14px;
  }
  .home .voice .entry__excerpt {
    margin-top: 10px;
  }
}
@media screen and (max-width: 758px) {
  .home .voice__inner {
    padding: 55px 0;
  }
  .home .voice .section-title-wrap {
    padding: 0 15px;
  }
  .home .voice .section-title__desc {
    margin-top: 19px;
  }
  .home .voice__contents {
    margin-top: 30px;
  }
  .home .voice .swiper-slide {
    width: 330px !important;
  }
  .home .voice .swiper-button-prev,
  .home .voice .swiper-button-next {
    position: absolute;
    display: block;
    width: 45px;
    height: 45px;
    background-color: #222;
    background-size: 18px 18px;
    z-index: 5;
  }
  .home .voice .swiper-button-prev {
    left: 0;
    background-image: url(img/arrow-left.svg);
  }
  .home .voice .swiper-button-next {
    right: 0;
    background-image: url(img/arrow-right.svg);
  }
  .home .voice .entry {
    width: 330px;
  }
  .home .voice .entry__body {
    padding: 15px 15px 14px;
  }
  .home .voice .entry__name {
    font-size: 18px;
  }
  .home .voice .entry__name .title {
    margin-left: 10px;
    font-size: 14px;
  }
  .home .voice .entry__name .gender-age {
    font-size: 12px;
  }
}
/* ---------------------------------
  price
----------------------------------- */
.home .price {
  padding-top: 120px;
}
.home .price .section-title {
  text-align: center;
}
.home .price-header {
  margin-top: 80px;
}
.home .price-header__bg {
  height: 780px;
  background-image: url(img/price-header-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.home .price-header__inner {
  position: relative;
  width: 1150px;
  height: 100%;
  margin: 0 auto;
  z-index: 1;
}
.home .price-header__contents {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 45px 60px 80px;
  width: 550px;
  background-color: #fff;
}
.home .price-header__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.75;
}
.home .price-header__subtitle {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
}
.home .price-header__text {
  margin-top: 10px;
  line-height: 2;
}
.home .price-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}
.home .price-header ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .price-header ul li:nth-child(n+3) {
  margin-top: 16px;
}
.home .price-header ul li:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  position: relative;
}
.home .price-header ul li:last-child span {
  position: absolute;
  top: 25px;
  left: 30px;
}
.home .price-header ul li img {
  width: 20px;
  margin-right: 10px;
}
.home .price__body {
  margin-top: 120px;
}
.home .price__body .container {
  width: 980px;
}
.home .price__body .adm-fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 120px;
}
.home .price__body .adm-fee__title {
  display: grid;
  place-items: center;
  width: 325px;
  background-color: #222;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}
.home .price__body .adm-fee__price {
  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;
  width: calc(100% - 325px);
  font-size: 72px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
  border-top: 1px solid #c9caca;
  border-right: 1px solid #c9caca;
  border-bottom: 1px solid #c9caca;
}
.home .price__body .adm-fee__price span {
  position: relative;
  top: 5px;
  margin-left: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 500;
}
.home .price__body .cl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
.home .price__body .cl__title {
  padding-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #222;
}
.home .price__body .cl__copy {
  margin-top: 22px;
  font-size: 55px;
  font-weight: 700;
  font-family: futura-pt, "Futura PT", "Noto Sans JP", sans-serif;
  text-align: center;
}
.home .price__body .cl__copy.lesson__text {
  font-size: 72px;
  font-weight: 600;
  margin-top: 10px;
}
.home .price__body .cl__copy span {
  margin-left: 5px;
  font-size: 36px;
  font-weight: 500;
}
.home .price__body .cl__text {
  padding: 0 48px;
  margin-top: 18px;
  line-height: 1.5;
}
.home .price__body .counseling,
.home .price__body .lesson {
  padding: 40px 40px 36px;
  width: 480px;
  background-color: #f7f8f8;
}
.home .price__body .lesson .cl__text {
  margin-top: 12px;
}
.home .price .ticket {
  margin-top: 120px;
}
.home .price .ticket__head {
  text-align: center;
}
.home .price .ticket__title {
  padding-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  border-bottom: 4px solid #222;
}
.home .price .ticket__desc {
  margin-top: 37px;
}
.home .price .ticket__body {
  margin-top: 50px;
}
.home .price .ticket .price-table {
  width: 100%;
}
.home .price .ticket .price-table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .price .ticket .price-table dl > *:first-child {
  width: 140px;
  background-color: #222;
}
.home .price .ticket .price-table dt,
.home .price .ticket .price-table dd {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .price .ticket .price-table .thead {
  color: #fff;
  border-bottom: 1px solid #c9caca;
}
.home .price .ticket .price-table .thead dt {
  font-size: 30px;
  font-weight: 500;
}
.home .price .ticket .price-table .thead dt,
.home .price .ticket .price-table .thead dd {
  height: 180px;
  text-align: center;
}
.home .price .ticket .price-table .thead dd {
  padding: 0 30px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
  border-left: 1px solid #c9caca;
}
.home .price .ticket .price-table .thead dl > *:nth-child(2) {
  width: 420px;
  background-color: rgb(76, 88, 111);
}
.home .price .ticket .price-table .thead dl > *:nth-child(3) {
  width: 420px;
  background-color: rgba(76, 88, 111, 0.7);
}
.home .price .ticket .price-table .thead .menu {
  font-size: 46px;
}
.home .price .ticket .price-table .thead .menu-jp {
  position: relative;
  padding-bottom: 11px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  border-bottom: 1px solid #fff;
  font-weight: 500;
}
.home .price .ticket .price-table .thead .menu-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}
.home .price .ticket .price-table .thead .menu-price p {
  font-size: 48px;
}
.home .price .ticket .price-table .thead .menu-price p span {
  margin-left: 3px;
  font-size: 30px;
  font-weight: 500;
}
.home .price .ticket .price-table .thead .menu-price p + p {
  margin-left: 30px;
}
.home .price .ticket .price-table .tbody dl {
  height: 120px;
  border-right: 1px solid #c9caca;
  border-bottom: 1px solid #c9caca;
}
.home .price .ticket .price-table .tbody dt,
.home .price .ticket .price-table .tbody dd {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.home .price .ticket .price-table .tbody dt {
  color: #fff;
}
.home .price .ticket .price-table .tbody dt .discount {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #d7ff21;
}
.home .price .ticket .price-table .tbody dd {
  width: 420px;
}
.home .price .ticket .price-table .tbody dd + dd {
  border-left: 1px solid #c9caca;
}
.home .price .ticket .price-table .tbody dd .onetime {
  margin-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #bd191c;
}
.home .price .ticket .price-table .tbody .inner {
  font-size: 48px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
}
.home .price .ticket .price-table .tbody .inner span {
  margin-left: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 400;
}
.home .price .ticket .price-table .tbody dd .inner span {
  margin-left: 8px;
}
.home .price .focus {
  margin-top: 50px;
}
.home .price .focus__head {
  padding: 25px 0 16px;
  background-color: #222;
  color: #fff;
  text-align: center;
}
.home .price .focus__title {
  font-size: 46px;
  font-weight: 500;
}
.home .price .focus__desc {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
}
.home .price .focus__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #c9caca;
}
.home .price .focus__body-30, .home .price .focus__body-60 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .price .focus__body-60 {
  border-left: 1px solid #c9caca;
}
.home .price .focus__time {
  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;
  width: 76px;
  height: 76px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 38px;
  font-weight: 600;
  background-color: #d7ff21;
  border-radius: 50%;
  white-space: nowrap;
}
.home .price .focus__time span {
  position: relative;
  top: 5px;
  font-size: 24px;
  font-weight: 500;
}
.home .price .focus__price {
  margin-left: 45px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 48px;
  font-weight: 600;
}
.home .price .focus__price span {
  font-size: 30px;
  font-weight: 500;
  margin-left: 5px;
}
.home .price .focus__footer {
  margin-top: 45px;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .home .price {
    padding-top: 60px;
  }
  .home .price-header {
    margin-top: 40px;
  }
  .home .price-header__bg {
    height: 400px;
    background-image: url(img/price-header-80.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .home .price-header__inner {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 1;
  }
  .home .price-header__contents {
    position: static;
    right: auto;
    bottom: auto;
    padding: 40px 30px 60px;
    width: 100%;
  }
  .home .price-header__title {
    font-size: 28px;
    line-height: 1.5;
  }
  .home .price-header__subtitle {
    margin-top: 16px;
    font-size: 20px;
    line-height: 1.5;
  }
  .home .price-header__text {
    margin-top: 30px;
  }
  .home .price-header ul {
    margin-top: 30px;
  }
  .home .price-header ul li:nth-child(n+3) {
    margin-top: 20px;
  }
  .home .price-header ul li:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .home .price-header ul li:last-child span {
    top: 25px;
    left: 28px;
  }
  .home .price-header ul li img {
    width: 18px;
    margin-right: 8px;
  }
  .home .price__body {
    margin-top: 60px;
  }
  .home .price__body .container {
    width: 100%;
    padding: 0 30px;
  }
  .home .price__body .adm-fee {
    height: 100px;
  }
  .home .price__body .adm-fee__title {
    width: 30%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    font-size: 30px;
  }
  .home .price__body .adm-fee__price {
    width: 70%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 70%;
            flex: 0 1 70%;
    font-size: 60px;
  }
  .home .price__body .adm-fee__price span {
    font-size: 30px;
  }
  .home .price__body .cl {
    margin-top: 40px;
  }
  .home .price__body .cl__title {
    padding-bottom: 16px;
    font-size: 20px;
  }
  .home .price__body .cl__copy {
    margin-top: 20px;
    font-size: 48px;
  }
  .home .price__body .cl__copy.lesson__text {
    font-size: 60px;
    margin-top: 10px;
  }
  .home .price__body .cl__copy span {
    margin-left: 5px;
    font-size: 28px;
  }
  .home .price__body .cl__text {
    padding: 0 10px;
    margin-top: 14px;
  }
  .home .price__body .counseling,
  .home .price__body .lesson {
    padding: 40px 30px;
    width: 48.5%;
    background-color: #f7f8f8;
  }
  .home .price__body .lesson .cl__text {
    margin-top: 12px;
  }
  .home .price .ticket {
    margin-top: 60px;
  }
  .home .price .ticket__title {
    padding-bottom: 18px;
    font-size: 30px;
    border-bottom: 2px solid #222;
  }
  .home .price .ticket__desc {
    margin-top: 40px;
  }
  .home .price .ticket__body {
    margin-top: 40px;
  }
  .home .price .ticket .price-table dl > *:first-child {
    width: 22%;
  }
  .home .price .ticket .price-table .thead dt {
    font-size: 30px;
  }
  .home .price .ticket .price-table .thead dt,
  .home .price .ticket .price-table .thead dd {
    height: 205px;
  }
  .home .price .ticket .price-table .thead dd {
    padding: 0 10px;
  }
  .home .price .ticket .price-table .thead dl > *:nth-child(2) {
    width: 39%;
  }
  .home .price .ticket .price-table .thead dl > *:nth-child(3) {
    width: 39%;
  }
  .home .price .ticket .price-table .thead .menu {
    font-size: 36px;
  }
  .home .price .ticket .price-table .thead .menu-jp {
    margin-top: 6px;
    padding-bottom: 15px;
    font-size: 22px;
  }
  .home .price .ticket .price-table .thead .menu-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    margin-top: 10px;
  }
  .home .price .ticket .price-table .thead .menu-price p {
    font-size: 40px;
  }
  .home .price .ticket .price-table .thead .menu-price p span {
    margin-left: 3px;
    font-size: 16px;
  }
  .home .price .ticket .price-table .thead .menu-price p + p {
    margin-left: 0;
    margin-top: 5px;
  }
  .home .price .ticket .price-table .tbody dl {
    height: 100px;
  }
  .home .price .ticket .price-table .tbody dt {
    width: 22%;
  }
  .home .price .ticket .price-table .tbody dt .discount {
    margin-top: 7px;
    font-size: 20px;
  }
  .home .price .ticket .price-table .tbody dd {
    width: 39%;
  }
  .home .price .ticket .price-table .tbody dd .onetime {
    margin-top: 8px;
    font-size: 14px;
  }
  .home .price .ticket .price-table .tbody .inner {
    font-size: 40px;
  }
  .home .price .ticket .price-table .tbody .inner span {
    margin-left: 6px;
    font-size: 26px;
  }
  .home .price .ticket .price-table .tbody dd .inner span {
    margin-left: 10px;
  }
  .home .price .focus {
    margin-top: 40px;
  }
  .home .price .focus__head {
    padding: 20px 0 15px;
  }
  .home .price .focus__title {
    font-size: 36px;
  }
  .home .price .focus__desc {
    margin-top: 15px;
    font-size: 16px;
  }
  .home .price .focus__body-30, .home .price .focus__body-60 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    height: 130px;
  }
  .home .price .focus__time {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .home .price .focus__time span {
    top: 3px;
    font-size: 16px;
  }
  .home .price .focus__price {
    margin-left: 35px;
    font-size: 43px;
  }
  .home .price .focus__price span {
    font-size: 26px;
    margin-left: 5px;
  }
  .home .price .focus__footer {
    margin-top: 30px;
  }
}
@media screen and (max-width: 758px) {
  .home .price {
    padding-top: 55px;
  }
  .home .price-header {
    margin-top: 30px;
  }
  .home .price-header__bg {
    height: 200px;
  }
  .home .price-header__contents {
    padding: 34px 15px 0;
  }
  .home .price-header__title {
    font-size: 24px;
  }
  .home .price-header__subtitle {
    margin-top: 23px;
    font-size: 18px;
    line-height: 1.33;
  }
  .home .price-header__text {
    margin-top: 20px;
  }
  .home .price-header ul {
    margin-top: 20px;
  }
  .home .price-header ul li:nth-child(n+3) {
    margin-top: 16px;
  }
  .home .price-header ul li:last-child span {
    top: 20px;
    left: 25px;
  }
  .home .price-header ul li img {
    width: 17px;
    margin-right: 6px;
  }
  .home .price__body {
    margin-top: 58px;
  }
  .home .price__body .container {
    width: 100%;
    padding: 0 15px;
  }
  .home .price__body .adm-fee {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .price__body .adm-fee__title {
    padding: 20px 24px;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 27px;
  }
  .home .price__body .adm-fee__price {
    padding: 30px 0;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 54px;
    border-left: 1px solid #c9caca;
  }
  .home .price__body .adm-fee__price span {
    font-size: 22px;
  }
  .home .price__body .cl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 25px;
  }
  .home .price__body .cl__title {
    font-size: 18px;
  }
  .home .price__body .cl__copy {
    margin-top: 18px;
    font-size: 41px;
  }
  .home .price__body .cl__copy.lesson__text {
    font-size: 54px;
    margin-top: 10px;
  }
  .home .price__body .cl__copy span {
    margin-left: 9px;
    font-size: 27px;
  }
  .home .price__body .cl__text {
    padding: 0 27px;
    margin-top: 10px;
  }
  .home .price__body .counseling,
  .home .price__body .lesson {
    padding: 32px 25px 27px;
    width: 100%;
  }
  .home .price__body .lesson {
    margin-top: 25px;
  }
  .home .price__body .lesson .cl__copy {
    font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  }
  .home .price__body .lesson .cl__text {
    margin-top: 8px;
  }
  .home .price .ticket {
    margin-top: 30px;
  }
  .home .price .ticket__title {
    padding-bottom: 14px;
    font-size: 27px;
    border-bottom: 4px solid #222;
  }
  .home .price .ticket__desc {
    margin-top: 16px;
    text-align: left;
    line-height: 2;
  }
  .home .price .ticket__body {
    margin-top: 38px;
  }
  .home .price .ticket .price-table dl > *:first-child {
    width: 24%;
  }
  .home .price .ticket .price-table .thead dd {
    padding: 0 5px;
  }
  .home .price .ticket .price-table .thead dt {
    font-size: 18px;
  }
  .home .price .ticket .price-table .thead dt,
  .home .price .ticket .price-table .thead dd {
    height: 135px;
  }
  .home .price .ticket .price-table .thead dl > *:nth-child(2) {
    width: 38%;
  }
  .home .price .ticket .price-table .thead dl > *:nth-child(3) {
    width: 38%;
  }
  .home .price .ticket .price-table .thead .menu {
    font-size: 22px;
  }
  .home .price .ticket .price-table .thead .menu-jp {
    padding-bottom: 7px;
    font-size: 12px;
  }
  .home .price .ticket .price-table .thead .menu-price p {
    font-size: 22px;
  }
  .home .price .ticket .price-table .thead .menu-price p span {
    margin-left: 5px;
  }
  .home .price .ticket .price-table .thead .menu-price p + p {
    margin-top: 5px;
  }
  .home .price .ticket .price-table .tbody dl {
    height: 90px;
  }
  .home .price .ticket .price-table .tbody dt {
    width: 24%;
  }
  .home .price .ticket .price-table .tbody dt .discount {
    margin-top: 7px;
    font-size: 14px;
  }
  .home .price .ticket .price-table .tbody dd {
    width: 38%;
  }
  .home .price .ticket .price-table .tbody dd .onetime {
    margin-top: 5px;
    font-size: 12px;
  }
  .home .price .ticket .price-table .tbody .inner {
    font-size: 22px;
  }
  .home .price .ticket .price-table .tbody .inner span {
    margin-left: 5px;
    font-size: 16px;
  }
  .home .price .ticket .price-table .tbody dd .inner span {
    margin-left: 8px;
  }
  .home .price .focus {
    margin-top: 30px;
  }
  .home .price .focus__head {
    padding: 19px 0 13px;
  }
  .home .price .focus__title {
    font-size: 34px;
  }
  .home .price .focus__desc {
    margin-top: 13px;
    font-size: 13px;
  }
  .home .price .focus__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .price .focus__body-30, .home .price .focus__body-60 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 16px 0;
    height: auto;
  }
  .home .price .focus__body-60 {
    border-left: none;
    border-top: 1px solid #c9caca;
  }
  .home .price .focus__time {
    width: 57px;
    height: 57px;
  }
  .home .price .focus__time span {
    font-size: 18px;
  }
  .home .price .focus__price {
    margin-left: 33px;
    font-size: 36px;
  }
  .home .price .focus__price span {
    font-size: 22px;
  }
  .home .price .focus__footer {
    margin-top: 20px;
    text-align: left;
  }
}
/* ===================================

  COURSE

====================================== */
.home .course {
  position: relative;
  margin-top: 210px;
}
.home .course__head {
  position: absolute;
  padding: 73px 0 0 50px;
  width: 1260px;
  height: 440px;
  left: 50%;
  top: -90px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(img/course-header-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
}
.home .course__title {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 48px;
  font-weight: 700;
}
.home .course__desc {
  margin-top: 15px;
  line-height: 2;
}
.home .course__bg {
  width: 100%;
  height: 450px;
  background-color: #f7f8f8;
}
.home .course__body {
  margin: 90px auto 0;
  width: 1100px;
}
.home .course .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home .course .item {
  width: 520px;
}
.home .course .item:nth-child(n+3) {
  margin-top: 35px;
}
.home .course .item__link {
  display: block;
}
.home .course .item__link:hover {
  opacity: 1;
}
.home .course .item__head {
  width: 100%;
  overflow: hidden;
}
.home .course .item__head img {
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.home .course .item__body {
  position: relative;
  padding: 26px 40px 50px 30px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: break-all;
}
.home .course .item__link:hover .item__body {
  background-color: #d7ff21;
}
.home .course .item__link:hover .item__head img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.home .course .item__title {
  padding-bottom: 9px;
  font-size: 30px;
  font-weight: 500;
  border-bottom: 1px solid #222;
}
.home .course .item__title span {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-left: 30px;
}
.home .course .item__text {
  margin-top: 4px;
  line-height: 2;
}
.home .course .item__ico {
  position: absolute;
  right: 11px;
  bottom: 15px;
  width: 28px;
  height: 14px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-top: 14px solid #222;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
}

@media screen and (max-width: 1199px) {
  .home .course {
    margin-top: 60px;
  }
  .home .course__head {
    position: absolute;
    padding: 80px 0 0;
    width: 100%;
    height: 350px;
    left: 0;
    top: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    background-image: url(img/course-header-80.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .home .course__title {
    font-size: 36px;
    text-align: center;
  }
  .home .course__desc {
    width: 50%;
    margin: 30px auto 0;
  }
  .home .course__desc br {
    display: none;
  }
  .home .course__bg {
    width: 83%;
    height: 420px;
  }
  .home .course__body {
    margin: 40px auto 0;
    width: 100%;
    padding: 0 30px;
  }
  .home .course .item {
    width: 48.5%;
  }
  .home .course .item:nth-child(n+3) {
    margin-top: 15px;
  }
  .home .course .item__body {
    padding: 20px 30px 40px 0;
  }
  .home .course .item__link:hover .item__body {
    background-color: #fff;
  }
  .home .course .item__title {
    padding-bottom: 10px;
    font-size: 24px;
  }
  .home .course .item__title span {
    font-size: 14px;
    margin-left: 20px;
  }
  .home .course .item__text {
    margin-top: 4px;
    line-height: 2;
  }
  .home .course .item__ico {
    position: absolute;
    right: 11px;
    bottom: 15px;
    width: 28px;
    height: 14px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    border-top: 14px solid #222;
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
  }
}
@media screen and (max-width: 758px) {
  .home .course {
    margin-top: 50px;
  }
  .home .course__head {
    padding: 54px 0 0;
    height: 280px;
    background-image: url(img/sp-course-bg-80.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .home .course__title {
    font-size: 30px;
  }
  .home .course__desc {
    width: 100%;
    padding: 0 80px;
    margin: 18px auto 0;
  }
  .home .course__bg {
    width: 83%;
    height: 330px;
  }
  .home .course__body {
    margin: 50px auto 0;
    padding: 0 15px;
  }
  .home .course .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .course .item {
    width: 100%;
  }
  .home .course .item:nth-child(n+3) {
    margin-top: 0;
  }
  .home .course .item + .item {
    margin-top: 20px;
  }
  .home .course .item__body {
    padding: 20px 15px 14px;
  }
  .home .course .item__title {
    padding-bottom: 7px;
    font-size: 23px;
  }
  .home .course .item__title span {
    font-size: 12px;
  }
  .home .course .item__text {
    margin-top: 3px;
  }
  .home .course .item__ico {
    position: absolute;
    right: 10px;
    bottom: 11px;
    width: 20px;
    height: 10px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    border-top: 10px solid #222;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
}
/* ---------------------------------
  各種紹介：introduce
----------------------------------- */
.home .introduce {
  margin-top: 120px;
  padding-top: 80px;
  background-image: url(img/top-introduce-bg-80.jpg);
  background-repeat: no-repeat;
  background-size: contain;
}
.home .introduce .container {
  width: 1100px;
}
.home .introduce .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home .introduce .item {
  width: 520px;
}
.home .introduce .item__thumb {
  width: 100%;
}
.home .introduce .item__thumb img {
  width: 100%;
}
.home .introduce .item__body {
  padding: 43px 40px 0;
  text-align: center;
}
.home .introduce .item__title {
  padding-bottom: 21px;
  font-size: 30px;
  font-weight: 500;
  border-bottom: 1px solid #222;
}
.home .introduce .item__text {
  margin-top: 15px;
  line-height: 2;
}
.home .introduce .item__link {
  display: grid;
  place-items: center;
  margin: 38px auto 0;
  width: 300px;
  height: 65px;
  background-color: #222;
  color: #fff;
}
.home .introduce .item__link:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1199px) {
  .home .introduce {
    margin-top: 60px;
    padding-top: 60px;
    background-image: url(img/top-introduce-bg-80.jpg);
  }
  .home .introduce .container {
    width: 100%;
    padding: 0 30px;
  }
  .home .introduce .item {
    width: 48.5%;
  }
  .home .introduce .item__body {
    padding: 30px 15px 0;
  }
  .home .introduce .item__title {
    padding-bottom: 15px;
    font-size: 24px;
  }
  .home .introduce .item__text {
    margin-top: 15px;
    text-align: left;
  }
  .home .introduce .item__text br {
    display: none;
  }
  .home .introduce .item__link {
    margin: 40px auto 0;
    width: 250px;
    height: 55px;
  }
  .home .introduce .item__link:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 758px) {
  .home .introduce {
    margin-top: 50px;
    background-image: url(img/sp-top-introduce-80.jpg);
  }
  .home .introduce .container {
    padding: 0 15px;
  }
  .home .introduce .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .introduce .item {
    width: 100%;
  }
  .home .introduce .item + .item {
    margin-top: 40px;
  }
  .home .introduce .item__body {
    padding: 24px 0 0;
  }
  .home .introduce .item__title {
    padding-bottom: 16px;
    font-size: 23px;
  }
  .home .introduce .item__text {
    margin-top: 12px;
    text-align: center;
  }
  .home .introduce .item__text br {
    display: inline-block;
  }
  .home .introduce .item__link {
    margin: 22px auto 0;
    width: 300px;
    height: 50px;
  }
}
/* ---------------------------------
  Q&A
----------------------------------- */
.home .qa {
  margin-top: 120px;
}
.home .qa .container {
  width: 1000px;
}
.home .qa .section-title {
  text-align: center;
}
.home .qa .items {
  margin-top: 37px;
}
.home .qa .item {
  padding: 40px 40px 22px;
  background-color: #f7f8f8;
}
.home .qa .item + .item {
  margin-top: 20px;
}
.home .qa .item__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .qa .item__left {
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #d7ff21;
}
.home .qa .item__left p {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 36px;
  font-weight: 700;
}
.home .qa .item__right {
  margin-left: 25px;
  padding-top: 14px;
}
.home .qa .item__right h3 {
  font-size: 20px;
}
.home .qa .item__contents.answer {
  margin-top: 25px;
}
.home .qa .item__contents.answer .item__left {
  background-color: #222;
  color: #fff;
}
.home .qa .item__contents.answer .item__right h3 {
  font-weight: 400;
}
.home .qa .item__contents.answer .item__right p {
  line-height: 2;
  margin-top: 23px;
}
.home .qa .item__contents.answer .item__right .item__img {
  margin-top: 14px;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .home .qa {
    margin-top: 60px;
  }
  .home .qa .container {
    width: 100%;
    padding: 0 30px;
  }
  .home .qa .items {
    margin-top: 30px;
  }
  .home .qa .item {
    padding: 20px 20px 25px;
  }
  .home .qa .item + .item {
    margin-top: 15px;
  }
  .home .qa .item__left {
    width: 40px;
    height: 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
  }
  .home .qa .item__left p {
    font-size: 28px;
  }
  .home .qa .item__right {
    margin-left: 20px;
    padding-top: 10px;
  }
  .home .qa .item__right h3 {
    font-size: 18px;
  }
  .home .qa .item__contents.answer {
    margin-top: 20px;
  }
  .home .qa .item__contents.answer .item__right p {
    margin-top: 20px;
  }
  .home .qa .item__contents.answer .item__right .item__img {
    margin-top: 15px;
  }
}
@media screen and (max-width: 758px) {
  .home .qa {
    margin-top: 55px;
  }
  .home .qa .container {
    padding: 0 15px;
  }
  .home .qa .items {
    margin-top: 33px;
  }
  .home .qa .item {
    padding: 15px 15px 10px;
  }
  .home .qa .item + .item {
    margin-top: 20px;
  }
  .home .qa .item__left {
    width: 38px;
    height: 38px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 38px;
            flex: 0 0 38px;
  }
  .home .qa .item__left p {
    font-size: 27px;
  }
  .home .qa .item__right {
    margin-left: 12px;
    padding-top: 10px;
  }
  .home .qa .item__right h3 {
    font-size: 14px;
    line-height: 1.5;
  }
  .home .qa .item__contents.answer {
    margin-top: 18px;
  }
  .home .qa .item__contents.answer .item__right p {
    margin-top: 22px;
  }
  .home .qa .item__contents.answer .item__right .item__img {
    margin-top: 14px;
  }
}
/* ===================================

  COLUMN

====================================== */
.home .column {
  margin-top: 120px;
}
.home .column__head {
  position: relative;
}
.home .column__head-bg {
  width: 100%;
  height: 545px;
  background-color: #f7f8f8;
}
.home .column__contents {
  position: absolute;
  top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 77px;
  padding-left: 55px;
  width: 1100px;
  height: 545px;
  background-image: url(img/top-column-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.home .column__copy {
  margin-top: 33px;
  line-height: 2;
}
.home .column .container {
  width: 990px;
}
.home .column .entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin-top: -55px;
  z-index: 2;
}
.home .column .entry {
  width: 300px;
}
.home .column .entry + .entry {
  margin-left: 45px;
}
.home .column .entry:nth-child(3n+1) {
  margin-left: 0;
}
.home .column .entry:nth-child(n+4) {
  margin-top: 20px;
}
.home .column .entry__link {
  display: block;
  color: #fff;
}
.home .column .entry__thumb {
  width: 100%;
  overflow: hidden;
}
.home .column .entry__thumb-img {
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.home .column .entry__link:hover {
  opacity: 1;
}
.home .column .entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.home .column .entry__link:hover .entry__body {
  opacity: 0.6;
}
.home .column .entry__body {
  padding: 18px 15px 28px;
  background-color: #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.home .column .entry__cate {
  position: relative;
  display: inline-block;
  padding: 7px 8px;
  font-size: 12px;
  font-weight: 500;
  color: #222;
  background-color: #d7ff21;
  border-radius: 2px;
}
.home .column .entry__title {
  margin-top: 17px;
  font-weight: 500;
  line-height: 1.75;
}
.home .column .entry__date {
  display: inline-block;
  margin-top: 24px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.home .column__btn {
  display: grid;
  place-items: center;
  margin: 65px auto 0;
  width: 300px;
  height: 65px;
  background-color: #222;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .home .column {
    margin-top: 60px;
  }
  .home .column__head-bg {
    display: none;
  }
  .home .column__contents {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    padding-top: 0;
    padding-left: 0;
    width: 100%;
    height: auto;
    background-image: none;
  }
  .home .column .section-title {
    text-align: center;
  }
  .home .column__head-img {
    display: block;
    margin-top: 40px;
  }
  .home .column__copy {
    margin-top: 40px;
    padding: 0 30px;
  }
  .home .column__copy br {
    display: none;
  }
  .home .column .container {
    width: 100%;
    padding: 0 30px;
  }
  .home .column .entries {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
  }
  .home .column .entry {
    width: 48.5%;
  }
  .home .column .entry + .entry {
    margin-left: 0;
  }
  .home .column .entry:nth-child(3n+1) {
    margin-left: 0;
  }
  .home .column .entry:nth-child(n+4) {
    margin-top: 0;
  }
  .home .column .entry:nth-child(n+3) {
    margin-top: 30px;
  }
  .home .column .entry__link:hover .entry__body {
    opacity: 1;
  }
  .home .column .entry__body {
    padding: 20px 15px 30px;
  }
  .home .column .entry__cate {
    padding: 6px 8px;
    font-size: 12px;
  }
  .home .column .entry__title {
    margin-top: 16px;
    font-size: 16px;
  }
  .home .column .entry__date {
    margin-top: 25px;
    font-size: 14px;
  }
  .home .column__btn {
    margin: 40px auto 0;
    width: 300px;
    height: 50px;
  }
}
@media screen and (max-width: 758px) {
  .home .column {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .home .column__head-img {
    margin-top: 20px;
  }
  .home .column__copy {
    margin-top: 14px;
    padding: 0 30px;
  }
  .home .column .container {
    width: 100%;
    padding: 0 15px;
  }
  .home .column .entries {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 32px;
  }
  .home .column .entry {
    width: 100%;
  }
  .home .column .entry:nth-child(n+3) {
    margin-top: 0;
  }
  .home .column .entry + .entry {
    margin-top: 10px;
  }
  .home .column .entry__body {
    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;
    padding: 19px 45px 16px;
    word-break: break-all;
  }
  .home .column .entry__cate {
    padding: 5px 10px;
    font-size: 10px;
  }
  .home .column .entry__title {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.75;
  }
  .home .column .entry__date {
    margin-top: 9px;
    font-size: 11px;
  }
  .home .column__btn {
    margin: 40px auto 0;
    width: 300px;
    height: 50px;
  }
}
/* ===================================

  RESERVATION

====================================== */
.home .reservation {
  margin-top: 120px;
}
.home .reservation .container {
  width: 1200px;
  padding: 75px 100px 90px;
  background-image: url(img/top-reservation-header-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  text-align: center;
}
.home .reservation .section-title {
  color: #fff;
}
.home .reservation .section-copy {
  margin-top: 20px;
  font-weight: 500;
  color: #fff;
}
.home .reservation__contents {
  margin-top: 60px;
  padding: 45px 60px 50px;
  background-color: rgba(215, 255, 33, 0.8);
}
.home .reservation__title {
  font-size: 30px;
  font-weight: 700;
}
.home .reservation__copy {
  margin-top: 26px;
  line-height: 1.75;
}
.home .reservation .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
}
.home .reservation .contact__item {
  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;
  width: 280px;
  height: 80px;
  background-color: #fff;
}
.home .reservation .contact__ico {
  width: 21px;
}
.home .reservation .contact__text {
  margin-left: 15px;
  font-size: 21px;
  font-weight: 700;
}
.home .reservation .contact__item.tel .contact__text {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 28px;
  font-weight: 600;
}

@media screen and (max-width: 1199px) {
  .home .reservation {
    margin-top: 60px;
  }
  .home .reservation .container {
    width: 100%;
    padding: 60px 30px 60px;
    background-image: url(img/top-reservation-header-80.jpg);
  }
  .home .reservation .section-copy {
    margin-top: 20px;
    font-weight: 500;
    color: #fff;
  }
  .home .reservation__contents {
    margin-top: 40px;
    padding: 40px 30px 40px;
  }
  .home .reservation__title {
    font-size: 24px;
  }
  .home .reservation__copy {
    margin-top: 20px;
  }
  .home .reservation .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
  .home .reservation .contact__item {
    width: 100%;
    height: 80px;
  }
  .home .reservation .contact__item + .contact__item {
    margin-top: 20px;
  }
  .home .reservation .contact__ico {
    width: auto;
    height: 22px;
  }
  .home .reservation .contact__text {
    margin-left: 20px;
    font-size: 20px;
  }
  .home .reservation .contact__item.tel .contact__text {
    font-size: 24px;
  }
}
@media screen and (max-width: 758px) {
  .home .reservation {
    margin-top: 50px;
  }
  .home .reservation .container {
    padding: 40px 15px 38px;
    background-image: url(img/sp-reservation-80.jpg);
  }
  .home .reservation .section-copy {
    margin-top: 13px;
  }
  .home .reservation__contents {
    margin-top: 30px;
    padding: 25px 15px 27px;
  }
  .home .reservation__title {
    font-size: 22px;
    line-height: 1.5;
  }
  .home .reservation__copy {
    margin-top: 18px;
  }
  .home .reservation .contact {
    margin-top: 6px;
  }
  .home .reservation .contact__item {
    height: 60px;
  }
  .home .reservation .contact__item + .contact__item {
    margin-top: 10px;
  }
  .home .reservation .contact__ico {
    width: 16px;
    height: auto;
  }
  .home .reservation .contact__text {
    margin-left: 12px;
    font-size: 16px;
  }
  .home .reservation .contact__item.tel .contact__ico {
    width: 15px;
  }
  .home .reservation .contact__item.tel .contact__text {
    font-size: 21px;
  }
}
/* ===================================

  関連サービス

====================================== */
.home .service {
  margin-top: 120px;
}
.home .service .container {
  width: 1000px;
}
.home .service__title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
.home .service__contents {
  margin-top: 60px;
}
.home .service-banner {
  width: 100%;
  margin-top: 0;
}
.home .service-banner + .service-banner {
  margin-top: 40px;
}
.home .service-banner__link {
  display: block;
}
.home .service-banner img {
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .home .service {
    margin-top: 60px;
  }
  .home .service .container {
    width: 100%;
    padding: 0 30px;
  }
  .home .service__title {
    font-size: 24px;
  }
  .home .service__contents {
    margin-top: 40px;
  }
  .home .service-banner + .service-banner {
    margin-top: 30px;
  }
}
@media screen and (max-width: 758px) {
  .home .service {
    margin-top: 50px;
  }
  .home .service .container {
    padding: 0 15px;
  }
  .home .service__title {
    font-size: 22px;
  }
  .home .service__contents {
    margin-top: 40px;
  }
  .home .service-banner + .service-banner {
    margin-top: 20px;
  }
}
/* ===================================

  固定ページ：page

====================================== */
.page__contents {
  margin-top: 80px;
}
.page .reservation {
  margin-top: 120px;
}
.page .reservation .container {
  width: 1200px;
  padding: 75px 100px 90px;
  background-image: url(img/top-reservation-header-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  text-align: center;
}
.page .reservation .section-title {
  color: #fff;
}
.page .reservation .section-copy {
  margin-top: 20px;
  font-weight: 500;
  color: #fff;
}
.page .reservation__contents {
  margin-top: 60px;
  padding: 45px 60px 50px;
  background-color: rgba(215, 255, 33, 0.8);
}
.page .reservation__title {
  font-size: 30px;
  font-weight: 700;
}
.page .reservation__copy {
  margin-top: 26px;
  line-height: 1.75;
}
.page .reservation .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
}
.page .reservation .contact__item {
  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;
  width: 280px;
  height: 80px;
  background-color: #fff;
}
.page .reservation .contact__ico {
  width: 21px;
}
.page .reservation .contact__text {
  margin-left: 15px;
  font-size: 21px;
  font-weight: 700;
}
.page .reservation .contact__item.tel .contact__text {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 28px;
  font-weight: 600;
}
.page .service {
  margin-top: 120px;
}
.page .service .container {
  width: 1000px;
}
.page .service__title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
.page .service__contents {
  margin-top: 60px;
}
.page .service-banner {
  width: 100%;
  margin-top: 0;
}
.page .service-banner + .service-banner {
  margin-top: 40px;
}
.page .service-banner__link {
  display: block;
}
.page .service-banner img {
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .page__contents {
    margin-top: 50px;
  }
  .page .reservation {
    margin-top: 60px;
  }
  .page .reservation .container {
    width: 100%;
    padding: 60px 30px 60px;
    background-image: url(img/top-reservation-header-80.jpg);
  }
  .page .reservation .section-copy {
    margin-top: 20px;
    font-weight: 500;
    color: #fff;
  }
  .page .reservation__contents {
    margin-top: 40px;
    padding: 40px 30px 40px;
  }
  .page .reservation__title {
    font-size: 24px;
  }
  .page .reservation__copy {
    margin-top: 20px;
  }
  .page .reservation .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
  .page .reservation .contact__item {
    width: 100%;
    height: 80px;
  }
  .page .reservation .contact__item + .contact__item {
    margin-top: 20px;
  }
  .page .reservation .contact__ico {
    width: auto;
    height: 22px;
  }
  .page .reservation .contact__text {
    margin-left: 20px;
    font-size: 20px;
  }
  .page .reservation .contact__item.tel .contact__text {
    font-size: 24px;
  }
  .page .service {
    margin-top: 60px;
  }
  .page .service .container {
    width: 100%;
    padding: 0 30px;
  }
  .page .service__title {
    font-size: 24px;
  }
  .page .service__contents {
    margin-top: 40px;
  }
  .page .service-banner + .service-banner {
    margin-top: 30px;
  }
}
@media screen and (max-width: 758px) {
  .page__contents {
    margin-top: 30px;
  }
  .page .reservation {
    margin-top: 0;
  }
  .page .reservation .container {
    padding: 40px 15px 38px;
    background-image: url(img/sp-reservation-80.jpg);
  }
  .page .reservation .section-copy {
    margin-top: 13px;
  }
  .page .reservation__contents {
    margin-top: 30px;
    padding: 25px 15px 27px;
  }
  .page .reservation__title {
    font-size: 22px;
    line-height: 1.5;
  }
  .page .reservation__copy {
    margin-top: 18px;
  }
  .page .reservation .contact {
    margin-top: 6px;
  }
  .page .reservation .contact__item {
    height: 60px;
  }
  .page .reservation .contact__item + .contact__item {
    margin-top: 10px;
  }
  .page .reservation .contact__ico {
    width: 16px;
    height: auto;
  }
  .page .reservation .contact__text {
    margin-left: 12px;
    font-size: 16px;
  }
  .page .reservation .contact__item.tel .contact__ico {
    width: 15px;
  }
  .page .reservation .contact__item.tel .contact__text {
    font-size: 21px;
  }
  .page .service {
    margin-top: 50px;
  }
  .page .service .container {
    padding: 0 15px;
  }
  .page .service__title {
    font-size: 22px;
  }
  .page .service__contents {
    margin-top: 40px;
  }
  .page .service-banner + .service-banner {
    margin-top: 20px;
  }
}
/* ===================================

  各コーズ共通：page

====================================== */
.page-diet .main,
.page-training .main,
.page-health .main,
.page-care .main {
  padding-bottom: 120px;
}
.page-diet .main .container,
.page-training .main .container,
.page-health .main .container,
.page-care .main .container {
  width: 1200px;
}

@media screen and (max-width: 1199px) {
  .page-diet .main,
  .page-training .main,
  .page-health .main,
  .page-care .main {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 758px) {
  .page-diet .main,
  .page-training .main,
  .page-health .main,
  .page-care .main {
    padding-bottom: 50px;
  }
}
/* ---------------------------------
  メインビジュアル：lower-mv
----------------------------------- */
.page-training .mv-lower {
  background-image: url(img/lower-training-mv-80.jpg);
}

.page-health .mv-lower {
  background-image: url(img/lower-health-mv-80.jpg);
}

@media screen and (max-width: 758px) {
  .page-training .mv-lower {
    background-image: url(img/sp-lower-training-mv-80.jpg);
  }
  .page-health .mv-lower {
    background-image: url(img/sp-lower-health-mv-80.jpg);
  }
}
/* ---------------------------------
  achive
----------------------------------- */
.page-diet .achieve,
.page-training .achieve,
.page-health .achieve,
.page-care .achieve {
  position: relative;
  margin-top: 95px;
}
.page-diet .achieve .container,
.page-training .achieve .container,
.page-health .achieve .container,
.page-care .achieve .container {
  width: 1200px;
}
.page-diet .achieve__bg,
.page-training .achieve__bg,
.page-health .achieve__bg,
.page-care .achieve__bg {
  position: absolute;
  top: 400px;
  right: 0;
  width: 100%;
  height: 420px;
  background-color: #f7f8f8;
  z-index: -1;
}
.page-diet .achieve .container,
.page-training .achieve .container,
.page-health .achieve .container,
.page-care .achieve .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-diet .achieve__img,
.page-training .achieve__img,
.page-health .achieve__img,
.page-care .achieve__img {
  width: 980px;
}
.page-diet .achieve__img img,
.page-training .achieve__img img,
.page-health .achieve__img img,
.page-care .achieve__img img {
  display: block;
  width: 100%;
}
.page-diet .achieve__contents,
.page-training .achieve__contents,
.page-health .achieve__contents,
.page-care .achieve__contents {
  position: relative;
  width: 630px;
  min-height: 520px;
  padding: 51px 60px 60px;
  background-color: #fff;
  z-index: 1;
  margin-top: 90px;
  margin-left: -410px;
}
.page-diet .achieve__copy,
.page-training .achieve__copy,
.page-health .achieve__copy,
.page-care .achieve__copy {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}
.page-diet .achieve__text,
.page-training .achieve__text,
.page-health .achieve__text,
.page-care .achieve__text {
  margin-top: 35px;
  line-height: 2;
}

@media screen and (max-width: 1199px) {
  .page-diet .achieve,
  .page-training .achieve,
  .page-health .achieve,
  .page-care .achieve {
    margin-top: 60px;
  }
  .page-diet .achieve .container,
  .page-training .achieve .container,
  .page-health .achieve .container,
  .page-care .achieve .container {
    display: block;
    width: 100%;
    padding: 0 30px;
  }
  .page-diet .achieve__bg,
  .page-training .achieve__bg,
  .page-health .achieve__bg,
  .page-care .achieve__bg {
    display: none;
  }
  .page-diet .achieve__img,
  .page-training .achieve__img,
  .page-health .achieve__img,
  .page-care .achieve__img {
    width: 100%;
  }
  .page-diet .achieve__img img,
  .page-training .achieve__img img,
  .page-health .achieve__img img,
  .page-care .achieve__img img {
    max-width: auto;
    width: 100%;
  }
  .page-diet .achieve__contents,
  .page-training .achieve__contents,
  .page-health .achieve__contents,
  .page-care .achieve__contents {
    width: 100%;
    min-height: auto;
    padding: 0;
    background-color: transparent;
    margin-top: 0;
    margin-left: 0;
  }
  .page-diet .achieve__copy,
  .page-training .achieve__copy,
  .page-health .achieve__copy,
  .page-care .achieve__copy {
    margin-top: 40px;
    font-size: 28px;
  }
  .page-diet .achieve__text,
  .page-training .achieve__text,
  .page-health .achieve__text,
  .page-care .achieve__text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 758px) {
  .page-diet .achieve,
  .page-training .achieve,
  .page-health .achieve,
  .page-care .achieve {
    margin-top: 40px;
  }
  .page-diet .achieve .container,
  .page-training .achieve .container,
  .page-health .achieve .container,
  .page-care .achieve .container {
    padding: 0 15px;
  }
  .page-diet .achieve__contents,
  .page-training .achieve__contents,
  .page-health .achieve__contents,
  .page-care .achieve__contents {
    padding: 0;
  }
  .page-diet .achieve__copy,
  .page-training .achieve__copy,
  .page-health .achieve__copy,
  .page-care .achieve__copy {
    margin-top: 20px;
    font-size: 24px;
    line-height: 1.75;
  }
  .page-diet .achieve__text,
  .page-training .achieve__text,
  .page-health .achieve__text,
  .page-care .achieve__text {
    margin-top: 17px;
  }
}
/* ---------------------------------
  こんな方におすすめ
----------------------------------- */
.page-diet .reco,
.page-training .reco,
.page-health .reco,
.page-care .reco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 940px;
  margin: 80px auto 0;
  padding: 38px 40px 38px 48px;
  background-color: #fff;
  border: 1px solid #c9caca;
}
.page-diet .reco__text,
.page-training .reco__text,
.page-health .reco__text,
.page-care .reco__text {
  font-size: 24px;
  font-weight: 700;
  padding-right: 40px;
}
.page-diet .reco__list,
.page-training .reco__list,
.page-health .reco__list,
.page-care .reco__list {
  padding-left: 46px;
  border-left: 1px solid #222;
}
.page-diet .reco__item,
.page-training .reco__item,
.page-health .reco__item,
.page-care .reco__item {
  position: relative;
}
.page-diet .reco__item + .reco__item,
.page-training .reco__item + .reco__item,
.page-health .reco__item + .reco__item,
.page-care .reco__item + .reco__item {
  margin-top: 16px;
}
.page-diet .reco__item::before,
.page-training .reco__item::before,
.page-health .reco__item::before,
.page-care .reco__item::before {
  position: relative;
  top: 2px;
  content: "";
  display: inline-block;
  margin-right: 12px;
  width: 16px;
  height: 16px;
  background-color: #d7ff21;
  border-radius: 50%;
}

@media screen and (max-width: 1199px) {
  .page-diet .reco,
  .page-training .reco,
  .page-health .reco,
  .page-care .reco {
    width: calc(100% - 60px);
    margin: 60px auto 0;
    padding: 40px 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .page-diet .reco__title,
  .page-training .reco__title,
  .page-health .reco__title,
  .page-care .reco__title {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .page-diet .reco__text,
  .page-training .reco__text,
  .page-health .reco__text,
  .page-care .reco__text {
    font-size: 18px;
    padding-right: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
  }
  .page-diet .reco__list,
  .page-training .reco__list,
  .page-health .reco__list,
  .page-care .reco__list {
    padding-left: 0;
    padding-top: 24px;
    border-left: none;
  }
  .page-diet .reco__item + .reco__item,
  .page-training .reco__item + .reco__item,
  .page-health .reco__item + .reco__item,
  .page-care .reco__item + .reco__item {
    margin-top: 14px;
  }
  .page-diet .reco__item::before,
  .page-training .reco__item::before,
  .page-health .reco__item::before,
  .page-care .reco__item::before {
    top: 2px;
    margin-right: 10px;
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 758px) {
  .page-diet .reco,
  .page-training .reco,
  .page-health .reco,
  .page-care .reco {
    width: calc(100% - 30px);
    margin: 50px auto 0;
    padding: 20px 20px 30px;
  }
  .page-diet .reco__text,
  .page-training .reco__text,
  .page-health .reco__text,
  .page-care .reco__text {
    font-size: 16px;
    padding-bottom: 16px;
  }
  .page-diet .reco__list,
  .page-training .reco__list,
  .page-health .reco__list,
  .page-care .reco__list {
    padding-top: 16px;
  }
  .page-diet .reco__item,
  .page-training .reco__item,
  .page-health .reco__item,
  .page-care .reco__item {
    text-indent: -1.5em;
    margin-left: 1.5em;
    line-height: 1.5;
  }
  .page-diet .reco__item + .reco__item,
  .page-training .reco__item + .reco__item,
  .page-health .reco__item + .reco__item,
  .page-care .reco__item + .reco__item {
    margin-top: 12px;
  }
  .page-diet .reco__item::before,
  .page-training .reco__item::before,
  .page-health .reco__item::before,
  .page-care .reco__item::before {
    top: 1px;
    margin-right: 6px;
    width: 12px;
    height: 12px;
  }
}
/* ---------------------------------
  REASON 選ばれる理由:reason
----------------------------------- */
.page-diet .reason,
.page-training .reason,
.page-health .reason,
.page-care .reason {
  margin-top: 168px;
}
.page-diet .reason__title,
.page-training .reason__title,
.page-health .reason__title,
.page-care .reason__title {
  text-align: center;
}
.page-diet .reason__heading,
.page-training .reason__heading,
.page-health .reason__heading,
.page-care .reason__heading {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 48px;
  font-weight: 700;
}
.page-diet .reason__subtitle,
.page-training .reason__subtitle,
.page-health .reason__subtitle,
.page-care .reason__subtitle {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 300;
}
.page-diet .reason .items,
.page-training .reason .items,
.page-health .reason .items,
.page-care .reason .items {
  margin: 110px auto 0;
  width: 1100px;
}
.page-diet .reason .item,
.page-training .reason .item,
.page-health .reason .item,
.page-care .reason .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-diet .reason .item + .item,
.page-training .reason .item + .item,
.page-health .reason .item + .item,
.page-care .reason .item + .item {
  margin-top: 150px;
}
.page-diet .reason .item__img,
.page-training .reason .item__img,
.page-health .reason .item__img,
.page-care .reason .item__img {
  width: 535px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 535px;
          flex: 0 0 535px;
}
.page-diet .reason .item__img img,
.page-training .reason .item__img img,
.page-health .reason .item__img img,
.page-care .reason .item__img img {
  width: 100%;
}
.page-diet .reason .item__body,
.page-training .reason .item__body,
.page-health .reason .item__body,
.page-care .reason .item__body {
  width: 500px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 500px;
          flex: 0 0 500px;
}
.page-diet .reason .item__number,
.page-training .reason .item__number,
.page-health .reason .item__number,
.page-care .reason .item__number {
  display: inline-block;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 21px;
  font-weight: 700;
  padding-bottom: 6px;
  border-bottom: 1px solid #222;
}
.page-diet .reason .item__title,
.page-training .reason .item__title,
.page-health .reason .item__title,
.page-care .reason .item__title {
  margin-top: 23px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}
.page-diet .reason .item__text,
.page-training .reason .item__text,
.page-health .reason .item__text,
.page-care .reason .item__text {
  margin-top: 13px;
  line-height: 2;
}
.page-diet .reason .item:nth-child(2n),
.page-training .reason .item:nth-child(2n),
.page-health .reason .item:nth-child(2n),
.page-care .reason .item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 1199px) {
  .page-diet .reason,
  .page-training .reason,
  .page-health .reason,
  .page-care .reason {
    margin-top: 60px;
  }
  .page-diet .reason__heading,
  .page-training .reason__heading,
  .page-health .reason__heading,
  .page-care .reason__heading {
    font-size: 36px;
  }
  .page-diet .reason__subtitle,
  .page-training .reason__subtitle,
  .page-health .reason__subtitle,
  .page-care .reason__subtitle {
    margin-top: 14px;
    font-size: 14px;
  }
  .page-diet .reason .items,
  .page-training .reason .items,
  .page-health .reason .items,
  .page-care .reason .items {
    margin: 40px auto 0;
    width: 100%;
    padding: 0 30px;
  }
  .page-diet .reason .item + .item,
  .page-training .reason .item + .item,
  .page-health .reason .item + .item,
  .page-care .reason .item + .item {
    margin-top: 40px;
  }
  .page-diet .reason .item__img,
  .page-training .reason .item__img,
  .page-health .reason .item__img,
  .page-care .reason .item__img {
    width: 45%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
  .page-diet .reason .item__body,
  .page-training .reason .item__body,
  .page-health .reason .item__body,
  .page-care .reason .item__body {
    width: 51%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 51%;
            flex: 0 0 51%;
  }
  .page-diet .reason .item__number,
  .page-training .reason .item__number,
  .page-health .reason .item__number,
  .page-care .reason .item__number {
    font-size: 18px;
    padding-bottom: 5px;
  }
  .page-diet .reason .item__title,
  .page-training .reason .item__title,
  .page-health .reason .item__title,
  .page-care .reason .item__title {
    margin-top: 20px;
    font-size: 24px;
  }
  .page-diet .reason .item__text,
  .page-training .reason .item__text,
  .page-health .reason .item__text,
  .page-care .reason .item__text {
    margin-top: 12px;
  }
  .page-diet .reason .item:nth-child(2n),
  .page-training .reason .item:nth-child(2n),
  .page-health .reason .item:nth-child(2n),
  .page-care .reason .item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 758px) {
  .page-diet .reason,
  .page-training .reason,
  .page-health .reason,
  .page-care .reason {
    margin-top: 50px;
  }
  .page-diet .reason__heading,
  .page-training .reason__heading,
  .page-health .reason__heading,
  .page-care .reason__heading {
    font-size: 30px;
  }
  .page-diet .reason__subtitle,
  .page-training .reason__subtitle,
  .page-health .reason__subtitle,
  .page-care .reason__subtitle {
    margin-top: 12px;
    font-size: 13px;
  }
  .page-diet .reason .items,
  .page-training .reason .items,
  .page-health .reason .items,
  .page-care .reason .items {
    padding: 0 15px;
  }
  .page-diet .reason .item,
  .page-training .reason .item,
  .page-health .reason .item,
  .page-care .reason .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-diet .reason .item + .item,
  .page-training .reason .item + .item,
  .page-health .reason .item + .item,
  .page-care .reason .item + .item {
    margin-top: 40px;
  }
  .page-diet .reason .item__img,
  .page-training .reason .item__img,
  .page-health .reason .item__img,
  .page-care .reason .item__img {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .page-diet .reason .item__body,
  .page-training .reason .item__body,
  .page-health .reason .item__body,
  .page-care .reason .item__body {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-top: 20px;
  }
  .page-diet .reason .item__number,
  .page-training .reason .item__number,
  .page-health .reason .item__number,
  .page-care .reason .item__number {
    font-size: 14px;
  }
  .page-diet .reason .item__title,
  .page-training .reason .item__title,
  .page-health .reason .item__title,
  .page-care .reason .item__title {
    margin-top: 12px;
    font-size: 21px;
  }
  .page-diet .reason .item__text,
  .page-training .reason .item__text,
  .page-health .reason .item__text,
  .page-care .reason .item__text {
    margin-top: 10px;
  }
  .page-diet .reason .item:nth-child(2n),
  .page-training .reason .item:nth-child(2n),
  .page-health .reason .item:nth-child(2n),
  .page-care .reason .item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* ---------------------------------
  PRICE
----------------------------------- */
.page-diet .price,
.page-training .price,
.page-health .price,
.page-care .price {
  position: relative;
  margin-top: 150px;
  padding-top: 78px;
}
.page-diet .price .section-title,
.page-training .price .section-title,
.page-health .price .section-title,
.page-care .price .section-title {
  text-align: center;
}
.page-diet .price .section-title__subtitle,
.page-training .price .section-title__subtitle,
.page-health .price .section-title__subtitle,
.page-care .price .section-title__subtitle {
  margin-top: 16px;
  text-align: center;
  font-weight: 300;
}
.page-diet .price__bg,
.page-training .price__bg,
.page-health .price__bg,
.page-care .price__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 280px;
  background-color: #f7f8f8;
  z-index: -1;
}
.page-diet .price__body,
.page-training .price__body,
.page-health .price__body,
.page-care .price__body {
  margin-top: 60px;
}
.page-diet .price__body .container,
.page-training .price__body .container,
.page-health .price__body .container,
.page-care .price__body .container {
  width: 980px;
}
.page-diet .price__body .adm-fee,
.page-training .price__body .adm-fee,
.page-health .price__body .adm-fee,
.page-care .price__body .adm-fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 120px;
  background-color: #fff;
}
.page-diet .price__body .adm-fee__title,
.page-training .price__body .adm-fee__title,
.page-health .price__body .adm-fee__title,
.page-care .price__body .adm-fee__title {
  display: grid;
  place-items: center;
  width: 325px;
  background-color: #222;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}
.page-diet .price__body .adm-fee__price,
.page-training .price__body .adm-fee__price,
.page-health .price__body .adm-fee__price,
.page-care .price__body .adm-fee__price {
  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;
  width: calc(100% - 325px);
  font-size: 72px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
  border-top: 1px solid #c9caca;
  border-right: 1px solid #c9caca;
  border-bottom: 1px solid #c9caca;
}
.page-diet .price__body .adm-fee__price span,
.page-training .price__body .adm-fee__price span,
.page-health .price__body .adm-fee__price span,
.page-care .price__body .adm-fee__price span {
  position: relative;
  top: 5px;
  margin-left: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 500;
}
.page-diet .price__body .cl,
.page-training .price__body .cl,
.page-health .price__body .cl,
.page-care .price__body .cl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
.page-diet .price__body .cl__title,
.page-training .price__body .cl__title,
.page-health .price__body .cl__title,
.page-care .price__body .cl__title {
  padding-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #222;
}
.page-diet .price__body .cl__copy,
.page-training .price__body .cl__copy,
.page-health .price__body .cl__copy,
.page-care .price__body .cl__copy {
  margin-top: 22px;
  font-size: 55px;
  font-weight: 700;
  font-family: futura-pt, "Futura PT", "Noto Sans JP", sans-serif;
  text-align: center;
}
.page-diet .price__body .cl__copy.lesson__text,
.page-training .price__body .cl__copy.lesson__text,
.page-health .price__body .cl__copy.lesson__text,
.page-care .price__body .cl__copy.lesson__text {
  font-size: 72px;
  font-weight: 600;
  margin-top: 10px;
}
.page-diet .price__body .cl__copy span,
.page-training .price__body .cl__copy span,
.page-health .price__body .cl__copy span,
.page-care .price__body .cl__copy span {
  margin-left: 5px;
  font-size: 36px;
  font-weight: 500;
}
.page-diet .price__body .cl__text,
.page-training .price__body .cl__text,
.page-health .price__body .cl__text,
.page-care .price__body .cl__text {
  padding: 0 48px;
  margin-top: 18px;
  line-height: 1.5;
}
.page-diet .price__body .counseling,
.page-diet .price__body .lesson,
.page-training .price__body .counseling,
.page-training .price__body .lesson,
.page-health .price__body .counseling,
.page-health .price__body .lesson,
.page-care .price__body .counseling,
.page-care .price__body .lesson {
  padding: 40px 40px 36px;
  width: 480px;
  background-color: #f7f8f8;
}
.page-diet .price__body .lesson .cl__text,
.page-training .price__body .lesson .cl__text,
.page-health .price__body .lesson .cl__text,
.page-care .price__body .lesson .cl__text {
  margin-top: 12px;
}
.page-diet .price .ticket,
.page-training .price .ticket,
.page-health .price .ticket,
.page-care .price .ticket {
  margin-top: 120px;
}
.page-diet .price .ticket__head,
.page-training .price .ticket__head,
.page-health .price .ticket__head,
.page-care .price .ticket__head {
  text-align: center;
}
.page-diet .price .ticket__title,
.page-training .price .ticket__title,
.page-health .price .ticket__title,
.page-care .price .ticket__title {
  padding-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  border-bottom: 4px solid #222;
}
.page-diet .price .ticket__desc,
.page-training .price .ticket__desc,
.page-health .price .ticket__desc,
.page-care .price .ticket__desc {
  margin-top: 37px;
}
.page-diet .price .ticket__body,
.page-training .price .ticket__body,
.page-health .price .ticket__body,
.page-care .price .ticket__body {
  margin-top: 50px;
}
.page-diet .price .ticket .price-table,
.page-training .price .ticket .price-table,
.page-health .price .ticket .price-table,
.page-care .price .ticket .price-table {
  width: 100%;
}
.page-diet .price .ticket .price-table dl,
.page-training .price .ticket .price-table dl,
.page-health .price .ticket .price-table dl,
.page-care .price .ticket .price-table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-diet .price .ticket .price-table dl > *:first-child,
.page-training .price .ticket .price-table dl > *:first-child,
.page-health .price .ticket .price-table dl > *:first-child,
.page-care .price .ticket .price-table dl > *:first-child {
  width: 140px;
  background-color: #222;
}
.page-diet .price .ticket .price-table dt,
.page-diet .price .ticket .price-table dd,
.page-training .price .ticket .price-table dt,
.page-training .price .ticket .price-table dd,
.page-health .price .ticket .price-table dt,
.page-health .price .ticket .price-table dd,
.page-care .price .ticket .price-table dt,
.page-care .price .ticket .price-table dd {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-diet .price .ticket .price-table .thead,
.page-training .price .ticket .price-table .thead,
.page-health .price .ticket .price-table .thead,
.page-care .price .ticket .price-table .thead {
  color: #fff;
  border-bottom: 1px solid #c9caca;
}
.page-diet .price .ticket .price-table .thead dt,
.page-training .price .ticket .price-table .thead dt,
.page-health .price .ticket .price-table .thead dt,
.page-care .price .ticket .price-table .thead dt {
  font-size: 30px;
  font-weight: 500;
}
.page-diet .price .ticket .price-table .thead dt,
.page-diet .price .ticket .price-table .thead dd,
.page-training .price .ticket .price-table .thead dt,
.page-training .price .ticket .price-table .thead dd,
.page-health .price .ticket .price-table .thead dt,
.page-health .price .ticket .price-table .thead dd,
.page-care .price .ticket .price-table .thead dt,
.page-care .price .ticket .price-table .thead dd {
  height: 180px;
  text-align: center;
}
.page-diet .price .ticket .price-table .thead dd,
.page-training .price .ticket .price-table .thead dd,
.page-health .price .ticket .price-table .thead dd,
.page-care .price .ticket .price-table .thead dd {
  padding: 0 30px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
  border-left: 1px solid #c9caca;
}
.page-diet .price .ticket .price-table .thead dl > *:nth-child(2),
.page-training .price .ticket .price-table .thead dl > *:nth-child(2),
.page-health .price .ticket .price-table .thead dl > *:nth-child(2),
.page-care .price .ticket .price-table .thead dl > *:nth-child(2) {
  width: 420px;
  background-color: rgb(76, 88, 111);
}
.page-diet .price .ticket .price-table .thead dl > *:nth-child(3),
.page-training .price .ticket .price-table .thead dl > *:nth-child(3),
.page-health .price .ticket .price-table .thead dl > *:nth-child(3),
.page-care .price .ticket .price-table .thead dl > *:nth-child(3) {
  width: 420px;
  background-color: rgba(76, 88, 111, 0.7);
}
.page-diet .price .ticket .price-table .thead .menu,
.page-training .price .ticket .price-table .thead .menu,
.page-health .price .ticket .price-table .thead .menu,
.page-care .price .ticket .price-table .thead .menu {
  font-size: 46px;
}
.page-diet .price .ticket .price-table .thead .menu-jp,
.page-training .price .ticket .price-table .thead .menu-jp,
.page-health .price .ticket .price-table .thead .menu-jp,
.page-care .price .ticket .price-table .thead .menu-jp {
  position: relative;
  padding-bottom: 11px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  border-bottom: 1px solid #fff;
  font-weight: 500;
}
.page-diet .price .ticket .price-table .thead .menu-price,
.page-training .price .ticket .price-table .thead .menu-price,
.page-health .price .ticket .price-table .thead .menu-price,
.page-care .price .ticket .price-table .thead .menu-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}
.page-diet .price .ticket .price-table .thead .menu-price p,
.page-training .price .ticket .price-table .thead .menu-price p,
.page-health .price .ticket .price-table .thead .menu-price p,
.page-care .price .ticket .price-table .thead .menu-price p {
  font-size: 48px;
}
.page-diet .price .ticket .price-table .thead .menu-price p span,
.page-training .price .ticket .price-table .thead .menu-price p span,
.page-health .price .ticket .price-table .thead .menu-price p span,
.page-care .price .ticket .price-table .thead .menu-price p span {
  margin-left: 3px;
  font-size: 30px;
  font-weight: 500;
}
.page-diet .price .ticket .price-table .thead .menu-price p + p,
.page-training .price .ticket .price-table .thead .menu-price p + p,
.page-health .price .ticket .price-table .thead .menu-price p + p,
.page-care .price .ticket .price-table .thead .menu-price p + p {
  margin-left: 30px;
}
.page-diet .price .ticket .price-table .tbody dl,
.page-training .price .ticket .price-table .tbody dl,
.page-health .price .ticket .price-table .tbody dl,
.page-care .price .ticket .price-table .tbody dl {
  height: 120px;
  border-right: 1px solid #c9caca;
  border-bottom: 1px solid #c9caca;
}
.page-diet .price .ticket .price-table .tbody dt,
.page-diet .price .ticket .price-table .tbody dd,
.page-training .price .ticket .price-table .tbody dt,
.page-training .price .ticket .price-table .tbody dd,
.page-health .price .ticket .price-table .tbody dt,
.page-health .price .ticket .price-table .tbody dd,
.page-care .price .ticket .price-table .tbody dt,
.page-care .price .ticket .price-table .tbody dd {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.page-diet .price .ticket .price-table .tbody dt,
.page-training .price .ticket .price-table .tbody dt,
.page-health .price .ticket .price-table .tbody dt,
.page-care .price .ticket .price-table .tbody dt {
  color: #fff;
}
.page-diet .price .ticket .price-table .tbody dt .discount,
.page-training .price .ticket .price-table .tbody dt .discount,
.page-health .price .ticket .price-table .tbody dt .discount,
.page-care .price .ticket .price-table .tbody dt .discount {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #d7ff21;
}
.page-diet .price .ticket .price-table .tbody dd,
.page-training .price .ticket .price-table .tbody dd,
.page-health .price .ticket .price-table .tbody dd,
.page-care .price .ticket .price-table .tbody dd {
  width: 420px;
}
.page-diet .price .ticket .price-table .tbody dd + dd,
.page-training .price .ticket .price-table .tbody dd + dd,
.page-health .price .ticket .price-table .tbody dd + dd,
.page-care .price .ticket .price-table .tbody dd + dd {
  border-left: 1px solid #c9caca;
}
.page-diet .price .ticket .price-table .tbody dd .onetime,
.page-training .price .ticket .price-table .tbody dd .onetime,
.page-health .price .ticket .price-table .tbody dd .onetime,
.page-care .price .ticket .price-table .tbody dd .onetime {
  margin-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #bd191c;
}
.page-diet .price .ticket .price-table .tbody .inner,
.page-training .price .ticket .price-table .tbody .inner,
.page-health .price .ticket .price-table .tbody .inner,
.page-care .price .ticket .price-table .tbody .inner {
  font-size: 48px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
}
.page-diet .price .ticket .price-table .tbody .inner span,
.page-training .price .ticket .price-table .tbody .inner span,
.page-health .price .ticket .price-table .tbody .inner span,
.page-care .price .ticket .price-table .tbody .inner span {
  margin-left: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 400;
}
.page-diet .price .ticket .price-table .tbody dd .inner span,
.page-training .price .ticket .price-table .tbody dd .inner span,
.page-health .price .ticket .price-table .tbody dd .inner span,
.page-care .price .ticket .price-table .tbody dd .inner span {
  margin-left: 8px;
}
.page-diet .price .focus,
.page-training .price .focus,
.page-health .price .focus,
.page-care .price .focus {
  margin-top: 50px;
}
.page-diet .price .focus__head,
.page-training .price .focus__head,
.page-health .price .focus__head,
.page-care .price .focus__head {
  padding: 25px 0 16px;
  background-color: #222;
  color: #fff;
  text-align: center;
}
.page-diet .price .focus__title,
.page-training .price .focus__title,
.page-health .price .focus__title,
.page-care .price .focus__title {
  font-size: 46px;
  font-weight: 500;
}
.page-diet .price .focus__desc,
.page-training .price .focus__desc,
.page-health .price .focus__desc,
.page-care .price .focus__desc {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
}
.page-diet .price .focus__body,
.page-training .price .focus__body,
.page-health .price .focus__body,
.page-care .price .focus__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #c9caca;
}
.page-diet .price .focus__body-30, .page-diet .price .focus__body-60,
.page-training .price .focus__body-30,
.page-training .price .focus__body-60,
.page-health .price .focus__body-30,
.page-health .price .focus__body-60,
.page-care .price .focus__body-30,
.page-care .price .focus__body-60 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-diet .price .focus__body-60,
.page-training .price .focus__body-60,
.page-health .price .focus__body-60,
.page-care .price .focus__body-60 {
  border-left: 1px solid #c9caca;
}
.page-diet .price .focus__time,
.page-training .price .focus__time,
.page-health .price .focus__time,
.page-care .price .focus__time {
  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;
  width: 76px;
  height: 76px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 38px;
  font-weight: 600;
  background-color: #d7ff21;
  border-radius: 50%;
  white-space: nowrap;
}
.page-diet .price .focus__time span,
.page-training .price .focus__time span,
.page-health .price .focus__time span,
.page-care .price .focus__time span {
  position: relative;
  top: 5px;
  font-size: 24px;
  font-weight: 500;
}
.page-diet .price .focus__price,
.page-training .price .focus__price,
.page-health .price .focus__price,
.page-care .price .focus__price {
  margin-left: 45px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 48px;
  font-weight: 600;
}
.page-diet .price .focus__price span,
.page-training .price .focus__price span,
.page-health .price .focus__price span,
.page-care .price .focus__price span {
  font-size: 30px;
  font-weight: 500;
  margin-left: 5px;
}
.page-diet .price .focus__footer,
.page-training .price .focus__footer,
.page-health .price .focus__footer,
.page-care .price .focus__footer {
  margin-top: 45px;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .page-diet .price,
  .page-training .price,
  .page-health .price,
  .page-care .price {
    padding-top: 60px;
  }
  .page-diet .price__body,
  .page-training .price__body,
  .page-health .price__body,
  .page-care .price__body {
    margin-top: 60px;
  }
  .page-diet .price__body .container,
  .page-training .price__body .container,
  .page-health .price__body .container,
  .page-care .price__body .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-diet .price__body .adm-fee,
  .page-training .price__body .adm-fee,
  .page-health .price__body .adm-fee,
  .page-care .price__body .adm-fee {
    height: 100px;
  }
  .page-diet .price__body .adm-fee__title,
  .page-training .price__body .adm-fee__title,
  .page-health .price__body .adm-fee__title,
  .page-care .price__body .adm-fee__title {
    width: 30%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    font-size: 30px;
  }
  .page-diet .price__body .adm-fee__price,
  .page-training .price__body .adm-fee__price,
  .page-health .price__body .adm-fee__price,
  .page-care .price__body .adm-fee__price {
    width: 70%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 70%;
            flex: 0 1 70%;
    font-size: 60px;
  }
  .page-diet .price__body .adm-fee__price span,
  .page-training .price__body .adm-fee__price span,
  .page-health .price__body .adm-fee__price span,
  .page-care .price__body .adm-fee__price span {
    font-size: 30px;
  }
  .page-diet .price__body .cl,
  .page-training .price__body .cl,
  .page-health .price__body .cl,
  .page-care .price__body .cl {
    margin-top: 40px;
  }
  .page-diet .price__body .cl__title,
  .page-training .price__body .cl__title,
  .page-health .price__body .cl__title,
  .page-care .price__body .cl__title {
    padding-bottom: 16px;
    font-size: 20px;
  }
  .page-diet .price__body .cl__copy,
  .page-training .price__body .cl__copy,
  .page-health .price__body .cl__copy,
  .page-care .price__body .cl__copy {
    margin-top: 20px;
    font-size: 48px;
  }
  .page-diet .price__body .cl__copy.lesson__text,
  .page-training .price__body .cl__copy.lesson__text,
  .page-health .price__body .cl__copy.lesson__text,
  .page-care .price__body .cl__copy.lesson__text {
    font-size: 60px;
    margin-top: 10px;
  }
  .page-diet .price__body .cl__copy span,
  .page-training .price__body .cl__copy span,
  .page-health .price__body .cl__copy span,
  .page-care .price__body .cl__copy span {
    margin-left: 5px;
    font-size: 28px;
  }
  .page-diet .price__body .cl__text,
  .page-training .price__body .cl__text,
  .page-health .price__body .cl__text,
  .page-care .price__body .cl__text {
    padding: 0 10px;
    margin-top: 14px;
  }
  .page-diet .price__body .counseling,
  .page-diet .price__body .lesson,
  .page-training .price__body .counseling,
  .page-training .price__body .lesson,
  .page-health .price__body .counseling,
  .page-health .price__body .lesson,
  .page-care .price__body .counseling,
  .page-care .price__body .lesson {
    padding: 40px 30px;
    width: 48.5%;
    background-color: #f7f8f8;
  }
  .page-diet .price__body .lesson .cl__text,
  .page-training .price__body .lesson .cl__text,
  .page-health .price__body .lesson .cl__text,
  .page-care .price__body .lesson .cl__text {
    margin-top: 12px;
  }
  .page-diet .price .ticket,
  .page-training .price .ticket,
  .page-health .price .ticket,
  .page-care .price .ticket {
    margin-top: 60px;
  }
  .page-diet .price .ticket__title,
  .page-training .price .ticket__title,
  .page-health .price .ticket__title,
  .page-care .price .ticket__title {
    padding-bottom: 18px;
    font-size: 30px;
    border-bottom: 2px solid #222;
  }
  .page-diet .price .ticket__desc,
  .page-training .price .ticket__desc,
  .page-health .price .ticket__desc,
  .page-care .price .ticket__desc {
    margin-top: 40px;
  }
  .page-diet .price .ticket__body,
  .page-training .price .ticket__body,
  .page-health .price .ticket__body,
  .page-care .price .ticket__body {
    margin-top: 40px;
  }
  .page-diet .price .ticket .price-table dl > *:first-child,
  .page-training .price .ticket .price-table dl > *:first-child,
  .page-health .price .ticket .price-table dl > *:first-child,
  .page-care .price .ticket .price-table dl > *:first-child {
    width: 22%;
  }
  .page-diet .price .ticket .price-table .thead dt,
  .page-training .price .ticket .price-table .thead dt,
  .page-health .price .ticket .price-table .thead dt,
  .page-care .price .ticket .price-table .thead dt {
    font-size: 18px;
  }
  .page-diet .price .ticket .price-table .thead dt,
  .page-diet .price .ticket .price-table .thead dd,
  .page-training .price .ticket .price-table .thead dt,
  .page-training .price .ticket .price-table .thead dd,
  .page-health .price .ticket .price-table .thead dt,
  .page-health .price .ticket .price-table .thead dd,
  .page-care .price .ticket .price-table .thead dt,
  .page-care .price .ticket .price-table .thead dd {
    height: 205px;
  }
  .page-diet .price .ticket .price-table .thead dd,
  .page-training .price .ticket .price-table .thead dd,
  .page-health .price .ticket .price-table .thead dd,
  .page-care .price .ticket .price-table .thead dd {
    padding: 0 10px;
  }
  .page-diet .price .ticket .price-table .thead dl > *:nth-child(2),
  .page-training .price .ticket .price-table .thead dl > *:nth-child(2),
  .page-health .price .ticket .price-table .thead dl > *:nth-child(2),
  .page-care .price .ticket .price-table .thead dl > *:nth-child(2) {
    width: 39%;
  }
  .page-diet .price .ticket .price-table .thead dl > *:nth-child(3),
  .page-training .price .ticket .price-table .thead dl > *:nth-child(3),
  .page-health .price .ticket .price-table .thead dl > *:nth-child(3),
  .page-care .price .ticket .price-table .thead dl > *:nth-child(3) {
    width: 39%;
  }
  .page-diet .price .ticket .price-table .thead .menu,
  .page-training .price .ticket .price-table .thead .menu,
  .page-health .price .ticket .price-table .thead .menu,
  .page-care .price .ticket .price-table .thead .menu {
    font-size: 36px;
  }
  .page-diet .price .ticket .price-table .thead .menu-jp,
  .page-training .price .ticket .price-table .thead .menu-jp,
  .page-health .price .ticket .price-table .thead .menu-jp,
  .page-care .price .ticket .price-table .thead .menu-jp {
    margin-top: 6px;
    padding-bottom: 15px;
    font-size: 22px;
  }
  .page-diet .price .ticket .price-table .thead .menu-price,
  .page-training .price .ticket .price-table .thead .menu-price,
  .page-health .price .ticket .price-table .thead .menu-price,
  .page-care .price .ticket .price-table .thead .menu-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    margin-top: 10px;
  }
  .page-diet .price .ticket .price-table .thead .menu-price p,
  .page-training .price .ticket .price-table .thead .menu-price p,
  .page-health .price .ticket .price-table .thead .menu-price p,
  .page-care .price .ticket .price-table .thead .menu-price p {
    font-size: 40px;
  }
  .page-diet .price .ticket .price-table .thead .menu-price p span,
  .page-training .price .ticket .price-table .thead .menu-price p span,
  .page-health .price .ticket .price-table .thead .menu-price p span,
  .page-care .price .ticket .price-table .thead .menu-price p span {
    margin-left: 3px;
    font-size: 16px;
  }
  .page-diet .price .ticket .price-table .thead .menu-price p + p,
  .page-training .price .ticket .price-table .thead .menu-price p + p,
  .page-health .price .ticket .price-table .thead .menu-price p + p,
  .page-care .price .ticket .price-table .thead .menu-price p + p {
    margin-left: 0;
    margin-top: 5px;
  }
  .page-diet .price .ticket .price-table .tbody dl,
  .page-training .price .ticket .price-table .tbody dl,
  .page-health .price .ticket .price-table .tbody dl,
  .page-care .price .ticket .price-table .tbody dl {
    height: 100px;
  }
  .page-diet .price .ticket .price-table .tbody dt,
  .page-training .price .ticket .price-table .tbody dt,
  .page-health .price .ticket .price-table .tbody dt,
  .page-care .price .ticket .price-table .tbody dt {
    width: 22%;
  }
  .page-diet .price .ticket .price-table .tbody dt .discount,
  .page-training .price .ticket .price-table .tbody dt .discount,
  .page-health .price .ticket .price-table .tbody dt .discount,
  .page-care .price .ticket .price-table .tbody dt .discount {
    margin-top: 7px;
    font-size: 20px;
  }
  .page-diet .price .ticket .price-table .tbody dd,
  .page-training .price .ticket .price-table .tbody dd,
  .page-health .price .ticket .price-table .tbody dd,
  .page-care .price .ticket .price-table .tbody dd {
    width: 39%;
  }
  .page-diet .price .ticket .price-table .tbody dd .onetime,
  .page-training .price .ticket .price-table .tbody dd .onetime,
  .page-health .price .ticket .price-table .tbody dd .onetime,
  .page-care .price .ticket .price-table .tbody dd .onetime {
    margin-top: 8px;
    font-size: 14px;
  }
  .page-diet .price .ticket .price-table .tbody .inner,
  .page-training .price .ticket .price-table .tbody .inner,
  .page-health .price .ticket .price-table .tbody .inner,
  .page-care .price .ticket .price-table .tbody .inner {
    font-size: 40px;
  }
  .page-diet .price .ticket .price-table .tbody .inner span,
  .page-training .price .ticket .price-table .tbody .inner span,
  .page-health .price .ticket .price-table .tbody .inner span,
  .page-care .price .ticket .price-table .tbody .inner span {
    margin-left: 6px;
    font-size: 26px;
  }
  .page-diet .price .ticket .price-table .tbody dd .inner span,
  .page-training .price .ticket .price-table .tbody dd .inner span,
  .page-health .price .ticket .price-table .tbody dd .inner span,
  .page-care .price .ticket .price-table .tbody dd .inner span {
    margin-left: 10px;
  }
  .page-diet .price .focus,
  .page-training .price .focus,
  .page-health .price .focus,
  .page-care .price .focus {
    margin-top: 40px;
  }
  .page-diet .price .focus__head,
  .page-training .price .focus__head,
  .page-health .price .focus__head,
  .page-care .price .focus__head {
    padding: 20px 0 15px;
  }
  .page-diet .price .focus__title,
  .page-training .price .focus__title,
  .page-health .price .focus__title,
  .page-care .price .focus__title {
    font-size: 36px;
  }
  .page-diet .price .focus__desc,
  .page-training .price .focus__desc,
  .page-health .price .focus__desc,
  .page-care .price .focus__desc {
    margin-top: 15px;
    font-size: 16px;
  }
  .page-diet .price .focus__body-30, .page-diet .price .focus__body-60,
  .page-training .price .focus__body-30,
  .page-training .price .focus__body-60,
  .page-health .price .focus__body-30,
  .page-health .price .focus__body-60,
  .page-care .price .focus__body-30,
  .page-care .price .focus__body-60 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    height: 130px;
  }
  .page-diet .price .focus__time,
  .page-training .price .focus__time,
  .page-health .price .focus__time,
  .page-care .price .focus__time {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .page-diet .price .focus__time span,
  .page-training .price .focus__time span,
  .page-health .price .focus__time span,
  .page-care .price .focus__time span {
    top: 3px;
    font-size: 16px;
  }
  .page-diet .price .focus__price,
  .page-training .price .focus__price,
  .page-health .price .focus__price,
  .page-care .price .focus__price {
    margin-left: 35px;
    font-size: 43px;
  }
  .page-diet .price .focus__price span,
  .page-training .price .focus__price span,
  .page-health .price .focus__price span,
  .page-care .price .focus__price span {
    font-size: 26px;
    margin-left: 5px;
  }
  .page-diet .price .focus__footer,
  .page-training .price .focus__footer,
  .page-health .price .focus__footer,
  .page-care .price .focus__footer {
    margin-top: 30px;
  }
}
@media screen and (max-width: 758px) {
  .page-diet .price,
  .page-training .price,
  .page-health .price,
  .page-care .price {
    margin-top: 50px;
    padding-top: 40px;
  }
  .page-diet .price .section-title__subtitle,
  .page-training .price .section-title__subtitle,
  .page-health .price .section-title__subtitle,
  .page-care .price .section-title__subtitle {
    margin-top: 12px;
  }
  .page-diet .price__body,
  .page-training .price__body,
  .page-health .price__body,
  .page-care .price__body {
    margin-top: 40px;
  }
  .page-diet .price__body .container,
  .page-training .price__body .container,
  .page-health .price__body .container,
  .page-care .price__body .container {
    width: 100%;
    padding: 0 15px;
  }
  .page-diet .price__body .adm-fee,
  .page-training .price__body .adm-fee,
  .page-health .price__body .adm-fee,
  .page-care .price__body .adm-fee {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-diet .price__body .adm-fee__title,
  .page-training .price__body .adm-fee__title,
  .page-health .price__body .adm-fee__title,
  .page-care .price__body .adm-fee__title {
    padding: 20px 24px;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 27px;
  }
  .page-diet .price__body .adm-fee__price,
  .page-training .price__body .adm-fee__price,
  .page-health .price__body .adm-fee__price,
  .page-care .price__body .adm-fee__price {
    padding: 30px 0;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 54px;
    border-left: 1px solid #c9caca;
  }
  .page-diet .price__body .adm-fee__price span,
  .page-training .price__body .adm-fee__price span,
  .page-health .price__body .adm-fee__price span,
  .page-care .price__body .adm-fee__price span {
    font-size: 22px;
  }
  .page-diet .price__body .cl,
  .page-training .price__body .cl,
  .page-health .price__body .cl,
  .page-care .price__body .cl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 25px;
  }
  .page-diet .price__body .cl__title,
  .page-training .price__body .cl__title,
  .page-health .price__body .cl__title,
  .page-care .price__body .cl__title {
    font-size: 18px;
  }
  .page-diet .price__body .cl__copy,
  .page-training .price__body .cl__copy,
  .page-health .price__body .cl__copy,
  .page-care .price__body .cl__copy {
    margin-top: 18px;
    font-size: 41px;
  }
  .page-diet .price__body .cl__copy.lesson__text,
  .page-training .price__body .cl__copy.lesson__text,
  .page-health .price__body .cl__copy.lesson__text,
  .page-care .price__body .cl__copy.lesson__text {
    font-size: 54px;
    margin-top: 10px;
  }
  .page-diet .price__body .cl__copy span,
  .page-training .price__body .cl__copy span,
  .page-health .price__body .cl__copy span,
  .page-care .price__body .cl__copy span {
    margin-left: 9px;
    font-size: 27px;
  }
  .page-diet .price__body .cl__text,
  .page-training .price__body .cl__text,
  .page-health .price__body .cl__text,
  .page-care .price__body .cl__text {
    padding: 0 27px;
    margin-top: 10px;
  }
  .page-diet .price__body .counseling,
  .page-diet .price__body .lesson,
  .page-training .price__body .counseling,
  .page-training .price__body .lesson,
  .page-health .price__body .counseling,
  .page-health .price__body .lesson,
  .page-care .price__body .counseling,
  .page-care .price__body .lesson {
    padding: 32px 25px 27px;
    width: 100%;
  }
  .page-diet .price__body .lesson,
  .page-training .price__body .lesson,
  .page-health .price__body .lesson,
  .page-care .price__body .lesson {
    margin-top: 25px;
  }
  .page-diet .price__body .lesson .cl__copy,
  .page-training .price__body .lesson .cl__copy,
  .page-health .price__body .lesson .cl__copy,
  .page-care .price__body .lesson .cl__copy {
    font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  }
  .page-diet .price__body .lesson .cl__text,
  .page-training .price__body .lesson .cl__text,
  .page-health .price__body .lesson .cl__text,
  .page-care .price__body .lesson .cl__text {
    margin-top: 8px;
  }
  .page-diet .price .ticket,
  .page-training .price .ticket,
  .page-health .price .ticket,
  .page-care .price .ticket {
    margin-top: 30px;
  }
  .page-diet .price .ticket__title,
  .page-training .price .ticket__title,
  .page-health .price .ticket__title,
  .page-care .price .ticket__title {
    padding-bottom: 14px;
    font-size: 27px;
    border-bottom: 4px solid #222;
  }
  .page-diet .price .ticket__desc,
  .page-training .price .ticket__desc,
  .page-health .price .ticket__desc,
  .page-care .price .ticket__desc {
    margin-top: 16px;
    text-align: left;
    line-height: 2;
  }
  .page-diet .price .ticket__body,
  .page-training .price .ticket__body,
  .page-health .price .ticket__body,
  .page-care .price .ticket__body {
    margin-top: 38px;
  }
  .page-diet .price .ticket .price-table dl > *:first-child,
  .page-training .price .ticket .price-table dl > *:first-child,
  .page-health .price .ticket .price-table dl > *:first-child,
  .page-care .price .ticket .price-table dl > *:first-child {
    width: 24%;
  }
  .page-diet .price .ticket .price-table .thead dd,
  .page-training .price .ticket .price-table .thead dd,
  .page-health .price .ticket .price-table .thead dd,
  .page-care .price .ticket .price-table .thead dd {
    padding: 0 5px;
  }
  .page-diet .price .ticket .price-table .thead dt,
  .page-training .price .ticket .price-table .thead dt,
  .page-health .price .ticket .price-table .thead dt,
  .page-care .price .ticket .price-table .thead dt {
    font-size: 18px;
  }
  .page-diet .price .ticket .price-table .thead dt,
  .page-diet .price .ticket .price-table .thead dd,
  .page-training .price .ticket .price-table .thead dt,
  .page-training .price .ticket .price-table .thead dd,
  .page-health .price .ticket .price-table .thead dt,
  .page-health .price .ticket .price-table .thead dd,
  .page-care .price .ticket .price-table .thead dt,
  .page-care .price .ticket .price-table .thead dd {
    height: 135px;
  }
  .page-diet .price .ticket .price-table .thead dl > *:nth-child(2),
  .page-training .price .ticket .price-table .thead dl > *:nth-child(2),
  .page-health .price .ticket .price-table .thead dl > *:nth-child(2),
  .page-care .price .ticket .price-table .thead dl > *:nth-child(2) {
    width: 38%;
  }
  .page-diet .price .ticket .price-table .thead dl > *:nth-child(3),
  .page-training .price .ticket .price-table .thead dl > *:nth-child(3),
  .page-health .price .ticket .price-table .thead dl > *:nth-child(3),
  .page-care .price .ticket .price-table .thead dl > *:nth-child(3) {
    width: 38%;
  }
  .page-diet .price .ticket .price-table .thead .menu,
  .page-training .price .ticket .price-table .thead .menu,
  .page-health .price .ticket .price-table .thead .menu,
  .page-care .price .ticket .price-table .thead .menu {
    font-size: 22px;
  }
  .page-diet .price .ticket .price-table .thead .menu-jp,
  .page-training .price .ticket .price-table .thead .menu-jp,
  .page-health .price .ticket .price-table .thead .menu-jp,
  .page-care .price .ticket .price-table .thead .menu-jp {
    padding-bottom: 7px;
    font-size: 12px;
  }
  .page-diet .price .ticket .price-table .thead .menu-price p,
  .page-training .price .ticket .price-table .thead .menu-price p,
  .page-health .price .ticket .price-table .thead .menu-price p,
  .page-care .price .ticket .price-table .thead .menu-price p {
    font-size: 22px;
  }
  .page-diet .price .ticket .price-table .thead .menu-price p span,
  .page-training .price .ticket .price-table .thead .menu-price p span,
  .page-health .price .ticket .price-table .thead .menu-price p span,
  .page-care .price .ticket .price-table .thead .menu-price p span {
    margin-left: 5px;
  }
  .page-diet .price .ticket .price-table .thead .menu-price p + p,
  .page-training .price .ticket .price-table .thead .menu-price p + p,
  .page-health .price .ticket .price-table .thead .menu-price p + p,
  .page-care .price .ticket .price-table .thead .menu-price p + p {
    margin-top: 5px;
  }
  .page-diet .price .ticket .price-table .tbody dl,
  .page-training .price .ticket .price-table .tbody dl,
  .page-health .price .ticket .price-table .tbody dl,
  .page-care .price .ticket .price-table .tbody dl {
    height: 90px;
  }
  .page-diet .price .ticket .price-table .tbody dt,
  .page-training .price .ticket .price-table .tbody dt,
  .page-health .price .ticket .price-table .tbody dt,
  .page-care .price .ticket .price-table .tbody dt {
    width: 24%;
  }
  .page-diet .price .ticket .price-table .tbody dt .discount,
  .page-training .price .ticket .price-table .tbody dt .discount,
  .page-health .price .ticket .price-table .tbody dt .discount,
  .page-care .price .ticket .price-table .tbody dt .discount {
    margin-top: 7px;
    font-size: 14px;
  }
  .page-diet .price .ticket .price-table .tbody dd,
  .page-training .price .ticket .price-table .tbody dd,
  .page-health .price .ticket .price-table .tbody dd,
  .page-care .price .ticket .price-table .tbody dd {
    width: 38%;
  }
  .page-diet .price .ticket .price-table .tbody dd .onetime,
  .page-training .price .ticket .price-table .tbody dd .onetime,
  .page-health .price .ticket .price-table .tbody dd .onetime,
  .page-care .price .ticket .price-table .tbody dd .onetime {
    margin-top: 5px;
    font-size: 12px;
  }
  .page-diet .price .ticket .price-table .tbody .inner,
  .page-training .price .ticket .price-table .tbody .inner,
  .page-health .price .ticket .price-table .tbody .inner,
  .page-care .price .ticket .price-table .tbody .inner {
    font-size: 22px;
  }
  .page-diet .price .ticket .price-table .tbody .inner span,
  .page-training .price .ticket .price-table .tbody .inner span,
  .page-health .price .ticket .price-table .tbody .inner span,
  .page-care .price .ticket .price-table .tbody .inner span {
    margin-left: 5px;
    font-size: 16px;
  }
  .page-diet .price .ticket .price-table .tbody dd .inner span,
  .page-training .price .ticket .price-table .tbody dd .inner span,
  .page-health .price .ticket .price-table .tbody dd .inner span,
  .page-care .price .ticket .price-table .tbody dd .inner span {
    margin-left: 8px;
  }
  .page-diet .price .focus,
  .page-training .price .focus,
  .page-health .price .focus,
  .page-care .price .focus {
    margin-top: 30px;
  }
  .page-diet .price .focus__head,
  .page-training .price .focus__head,
  .page-health .price .focus__head,
  .page-care .price .focus__head {
    padding: 19px 0 13px;
  }
  .page-diet .price .focus__title,
  .page-training .price .focus__title,
  .page-health .price .focus__title,
  .page-care .price .focus__title {
    font-size: 34px;
  }
  .page-diet .price .focus__desc,
  .page-training .price .focus__desc,
  .page-health .price .focus__desc,
  .page-care .price .focus__desc {
    margin-top: 13px;
    font-size: 13px;
  }
  .page-diet .price .focus__body,
  .page-training .price .focus__body,
  .page-health .price .focus__body,
  .page-care .price .focus__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-diet .price .focus__body-30, .page-diet .price .focus__body-60,
  .page-training .price .focus__body-30,
  .page-training .price .focus__body-60,
  .page-health .price .focus__body-30,
  .page-health .price .focus__body-60,
  .page-care .price .focus__body-30,
  .page-care .price .focus__body-60 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 16px 0;
    height: auto;
  }
  .page-diet .price .focus__body-60,
  .page-training .price .focus__body-60,
  .page-health .price .focus__body-60,
  .page-care .price .focus__body-60 {
    border-left: none;
    border-top: 1px solid #c9caca;
  }
  .page-diet .price .focus__time,
  .page-training .price .focus__time,
  .page-health .price .focus__time,
  .page-care .price .focus__time {
    width: 57px;
    height: 57px;
  }
  .page-diet .price .focus__time span,
  .page-training .price .focus__time span,
  .page-health .price .focus__time span,
  .page-care .price .focus__time span {
    font-size: 18px;
  }
  .page-diet .price .focus__price,
  .page-training .price .focus__price,
  .page-health .price .focus__price,
  .page-care .price .focus__price {
    margin-left: 33px;
    font-size: 36px;
  }
  .page-diet .price .focus__price span,
  .page-training .price .focus__price span,
  .page-health .price .focus__price span,
  .page-care .price .focus__price span {
    font-size: 22px;
  }
  .page-diet .price .focus__footer,
  .page-training .price .focus__footer,
  .page-health .price .focus__footer,
  .page-care .price .focus__footer {
    margin-top: 20px;
    text-align: left;
  }
}
/* ---------------------------------
  COURSE
----------------------------------- */
.page-diet .o-course,
.page-training .o-course,
.page-health .o-course,
.page-care .o-course {
  margin-top: 160px;
  padding: 85px 0 113px;
  background-color: #f7f8f8;
}
.page-diet .o-course__title,
.page-training .o-course__title,
.page-health .o-course__title,
.page-care .o-course__title {
  text-align: center;
}
.page-diet .o-course__heading,
.page-training .o-course__heading,
.page-health .o-course__heading,
.page-care .o-course__heading {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 48px;
  font-weight: 700;
}
.page-diet .o-course__subtitle,
.page-training .o-course__subtitle,
.page-health .o-course__subtitle,
.page-care .o-course__subtitle {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 300;
}
.page-diet .o-course .items,
.page-training .o-course .items,
.page-health .o-course .items,
.page-care .o-course .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}
.page-diet .o-course .item,
.page-training .o-course .item,
.page-health .o-course .item,
.page-care .o-course .item {
  width: 370px;
}
.page-diet .o-course .item__link,
.page-training .o-course .item__link,
.page-health .o-course .item__link,
.page-care .o-course .item__link {
  display: block;
}
.page-diet .o-course .item__link:hover,
.page-training .o-course .item__link:hover,
.page-health .o-course .item__link:hover,
.page-care .o-course .item__link:hover {
  opacity: 1;
}
.page-diet .o-course .item__head,
.page-training .o-course .item__head,
.page-health .o-course .item__head,
.page-care .o-course .item__head {
  width: 100%;
  overflow: hidden;
}
.page-diet .o-course .item__head img,
.page-training .o-course .item__head img,
.page-health .o-course .item__head img,
.page-care .o-course .item__head img {
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-diet .o-course .item__body,
.page-training .o-course .item__body,
.page-health .o-course .item__body,
.page-care .o-course .item__body {
  position: relative;
  padding: 20px 30px 42px 20px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: break-all;
}
.page-diet .o-course .item__link:hover .item__body,
.page-training .o-course .item__link:hover .item__body,
.page-health .o-course .item__link:hover .item__body,
.page-care .o-course .item__link:hover .item__body {
  background-color: #d7ff21;
}
.page-diet .o-course .item__link:hover .item__head img,
.page-training .o-course .item__link:hover .item__head img,
.page-health .o-course .item__link:hover .item__head img,
.page-care .o-course .item__link:hover .item__head img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.page-diet .o-course .item__title,
.page-training .o-course .item__title,
.page-health .o-course .item__title,
.page-care .o-course .item__title {
  padding-bottom: 17px;
  font-size: 30px;
  font-weight: 500;
  border-bottom: 1px solid #222;
}
.page-diet .o-course .item__title span,
.page-training .o-course .item__title span,
.page-health .o-course .item__title span,
.page-care .o-course .item__title span {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-left: 20px;
}
.page-diet .o-course .item__text,
.page-training .o-course .item__text,
.page-health .o-course .item__text,
.page-care .o-course .item__text {
  margin-top: 4px;
  line-height: 2;
}
.page-diet .o-course .item__ico,
.page-training .o-course .item__ico,
.page-health .o-course .item__ico,
.page-care .o-course .item__ico {
  position: absolute;
  right: 11px;
  bottom: 15px;
  width: 28px;
  height: 14px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-top: 14px solid #222;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
}

@media screen and (max-width: 1199px) {
  .page-diet .o-course,
  .page-training .o-course,
  .page-health .o-course,
  .page-care .o-course {
    margin-top: 60px;
    padding: 60px 0;
  }
  .page-diet .o-course .container,
  .page-training .o-course .container,
  .page-health .o-course .container,
  .page-care .o-course .container {
    padding: 100%;
    padding: 0 30px;
  }
  .page-diet .o-course__heading,
  .page-training .o-course__heading,
  .page-health .o-course__heading,
  .page-care .o-course__heading {
    font-size: 36px;
  }
  .page-diet .o-course__subtitle,
  .page-training .o-course__subtitle,
  .page-health .o-course__subtitle,
  .page-care .o-course__subtitle {
    margin-top: 14px;
    font-size: 14px;
  }
  .page-diet .o-course .items,
  .page-training .o-course .items,
  .page-health .o-course .items,
  .page-care .o-course .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
  }
  .page-diet .o-course .item,
  .page-training .o-course .item,
  .page-health .o-course .item,
  .page-care .o-course .item {
    width: 48.5%;
  }
  .page-diet .o-course .item:nth-child(n+3),
  .page-training .o-course .item:nth-child(n+3),
  .page-health .o-course .item:nth-child(n+3),
  .page-care .o-course .item:nth-child(n+3) {
    margin-top: 15px;
  }
  .page-diet .o-course .item__body,
  .page-training .o-course .item__body,
  .page-health .o-course .item__body,
  .page-care .o-course .item__body {
    padding: 20px 20px 40px;
  }
  .page-diet .o-course .item__link:hover .item__body,
  .page-training .o-course .item__link:hover .item__body,
  .page-health .o-course .item__link:hover .item__body,
  .page-care .o-course .item__link:hover .item__body {
    background-color: #fff;
  }
  .page-diet .o-course .item__title,
  .page-training .o-course .item__title,
  .page-health .o-course .item__title,
  .page-care .o-course .item__title {
    padding-bottom: 10px;
    font-size: 24px;
  }
  .page-diet .o-course .item__title span,
  .page-training .o-course .item__title span,
  .page-health .o-course .item__title span,
  .page-care .o-course .item__title span {
    font-size: 14px;
    margin-left: 20px;
  }
  .page-diet .o-course .item__text,
  .page-training .o-course .item__text,
  .page-health .o-course .item__text,
  .page-care .o-course .item__text {
    margin-top: 4px;
    line-height: 2;
  }
  .page-diet .o-course .item__ico,
  .page-training .o-course .item__ico,
  .page-health .o-course .item__ico,
  .page-care .o-course .item__ico {
    position: absolute;
    right: 11px;
    bottom: 15px;
    width: 28px;
    height: 14px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    border-top: 14px solid #222;
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
  }
}
@media screen and (max-width: 758px) {
  .page-diet .o-course,
  .page-training .o-course,
  .page-health .o-course,
  .page-care .o-course {
    margin-top: 50px;
    padding: 50px 0;
  }
  .page-diet .o-course .container,
  .page-training .o-course .container,
  .page-health .o-course .container,
  .page-care .o-course .container {
    width: 100%;
    padding: 0 15px;
  }
  .page-diet .o-course__heading,
  .page-training .o-course__heading,
  .page-health .o-course__heading,
  .page-care .o-course__heading {
    font-size: 30px;
  }
  .page-diet .o-course__subtitle,
  .page-training .o-course__subtitle,
  .page-health .o-course__subtitle,
  .page-care .o-course__subtitle {
    margin-top: 13px;
    font-size: 12px;
  }
  .page-diet .o-course .items,
  .page-training .o-course .items,
  .page-health .o-course .items,
  .page-care .o-course .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
  .page-diet .o-course .item,
  .page-training .o-course .item,
  .page-health .o-course .item,
  .page-care .o-course .item {
    width: 100%;
  }
  .page-diet .o-course .item:nth-child(n+3),
  .page-training .o-course .item:nth-child(n+3),
  .page-health .o-course .item:nth-child(n+3),
  .page-care .o-course .item:nth-child(n+3) {
    margin-top: 0;
  }
  .page-diet .o-course .item + .item,
  .page-training .o-course .item + .item,
  .page-health .o-course .item + .item,
  .page-care .o-course .item + .item {
    margin-top: 20px;
  }
  .page-diet .o-course .item__body,
  .page-training .o-course .item__body,
  .page-health .o-course .item__body,
  .page-care .o-course .item__body {
    padding: 20px 15px 14px;
  }
  .page-diet .o-course .item__link:hover .item__body,
  .page-training .o-course .item__link:hover .item__body,
  .page-health .o-course .item__link:hover .item__body,
  .page-care .o-course .item__link:hover .item__body {
    background-color: #fff;
  }
  .page-diet .o-course .item__title,
  .page-training .o-course .item__title,
  .page-health .o-course .item__title,
  .page-care .o-course .item__title {
    padding-bottom: 7px;
    font-size: 23px;
  }
  .page-diet .o-course .item__title span,
  .page-training .o-course .item__title span,
  .page-health .o-course .item__title span,
  .page-care .o-course .item__title span {
    font-size: 12px;
  }
  .page-diet .o-course .item__text,
  .page-training .o-course .item__text,
  .page-health .o-course .item__text,
  .page-care .o-course .item__text {
    margin-top: 3px;
  }
  .page-diet .o-course .item__ico,
  .page-training .o-course .item__ico,
  .page-health .o-course .item__ico,
  .page-care .o-course .item__ico {
    position: absolute;
    right: 10px;
    bottom: 11px;
    width: 20px;
    height: 10px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    border-top: 10px solid #222;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
}
/* ===================================

  癒すコース: page-care

====================================== */
.page-care .mv-lower {
  background-image: url(img/page-care-mv-80.jpg);
}
.page-care .medicell {
  margin-top: 120px;
  padding-top: 100px;
  background-color: #f7f8f8;
}
.page-care .medicell .container {
  width: 1260px;
}
.page-care .medicell .section-title {
  text-align: center;
}
.page-care .medicell .section-title__text {
  margin-top: 30px;
  text-align: center;
}
.page-care .medicell__contents {
  margin-top: 80px;
}
.page-care .medicell__detail {
  position: relative;
  top: -130px;
  margin: 0 auto;
  padding: 60px 70px 82px;
  width: 1100px;
  background-color: #fff;
}
.page-care .medicell img {
  display: block;
  width: 100%;
}
.page-care .medicell__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.page-care .medicell__img {
  margin-top: 43px;
}
.page-care .medicell__text {
  margin-top: 54px;
  line-height: 2;
}
.page-care .reason {
  background-color: #f7f8f8;
  margin-top: -50px;
  padding-top: 0;
  padding-bottom: 180px;
}
.page-care .reason .items {
  margin-top: 0;
}
.page-care .reason .item__title {
  margin-top: 0;
}
.page-care .lymph {
  margin-top: 160px;
}
.page-care .lymph .container {
  width: 1080px;
}
.page-care .lymph .section-title {
  text-align: center;
}
.page-care .lymph .section-title__text {
  margin-top: 30px;
  text-align: center;
}
.page-care .lymph-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 88px;
}
.page-care .lymph-item {
  width: 500px;
}
.page-care .lymph-item__title {
  margin-top: 30px;
  font-size: 30px;
  font-weight: 700;
}
.page-care .lymph-item__text {
  margin-top: 34px;
  line-height: 2;
}
.page-care .price {
  margin-top: 176px;
}
.page-care .price hr {
  margin: 100px 0;
}
.page-care .price__title {
  text-align: center;
}
.page-care .price__title h3 {
  font-size: 48px;
  font-weight: 700;
}
.page-care .price__title p {
  margin-top: 55px;
}
.page-care .price__body {
  margin-top: 140px;
}
.page-care .price__body .container {
  width: 980px;
}
.page-care .price__body .adm-fee {
  margin-top: 78px;
}
.page-care .price__body .adm-fee__title {
  display: grid;
  place-items: center;
  width: 325px;
  background-color: #222;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}
.page-care .price__body .adm-fee__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 70px;
}
.page-care .price__body .adm-fee__price span.minutes {
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 90px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: #d7ff21;
  font-size: 24px;
  font-weight: 500;
}
.page-care .price__body .adm-fee__price span.minutes .num {
  position: relative;
  top: -1px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 38px;
  font-weight: 600;
}
.page-care .price__body .adm-fee__price span.yen {
  position: relative;
  top: 5px;
  margin-left: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 500;
}
.page-care .price .ticket {
  margin-top: 78px;
}
.page-care .price .ticket .price-table {
  width: 100%;
}
.page-care .price .ticket .price-table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-care .price .ticket .price-table dl > *:first-child {
  width: 140px;
  background-color: #222;
}
.page-care .price .ticket .price-table .thead dt,
.page-care .price .ticket .price-table .thead dd {
  height: 180px;
  text-align: center;
}
.page-care .price .ticket .price-table .thead dd {
  padding: 0 30px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
  border-left: 1px solid #c9caca;
}
.page-care .price .ticket .price-table .thead dl > *:nth-child(2) {
  width: 280px;
  background-color: rgb(76, 88, 111);
}
.page-care .price .ticket .price-table .thead dl > *:nth-child(3) {
  width: 280px;
  background-color: rgba(76, 88, 111, 0.7);
}
.page-care .price .ticket .price-table .thead dl > *:nth-child(4) {
  width: 280px;
  background-color: rgba(76, 88, 111, 0.4);
}
.page-care .price .ticket .price-table .thead .menu {
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}
.page-care .price .ticket .price-table .thead .menu .num {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 48px;
  font-weight: 600;
  margin: 0 2px;
}
.page-care .price .ticket .price-table .thead .menu-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}
.page-care .price .ticket .price-table .thead .menu-price p {
  font-size: 48px;
}
.page-care .price .ticket .price-table .thead .menu-price p span {
  margin-left: 3px;
  font-size: 30px;
  font-weight: 500;
}
.page-care .price .ticket .price-table .thead .menu-price p + p {
  margin-left: 30px;
}
.page-care .price .ticket .price-table .tbody dd {
  width: 280px;
}
.page-care .lymphmsg {
  margin-top: 164px;
}
.page-care .lymphmsg .ticket {
  margin-top: 70px;
}
.page-care .lymphmsg .ticket__body {
  margin-top: 50px;
}
.page-care .lymphmsg .ticket .price-table .thead dt,
.page-care .lymphmsg .ticket .price-table .thead dd {
  height: 250px;
}
.page-care .lymphmsg .ticket .price-table .thead dt {
  line-height: 1.33;
}
.page-care .lymphmsg .ticket .price-table .thead dd .ddhead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 72px;
}
.page-care .lymphmsg .ticket .price-table .thead dd .menu {
  padding-bottom: 0;
  font-size: 24px;
  line-height: 1.5;
  border-bottom: none;
}
.page-care .lymphmsg .ticket .price-table .thead dd .time {
  margin-top: 16px;
  padding-bottom: 15px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 48px;
  font-weight: 600;
  border-bottom: 1px solid #fff;
}
.page-care .lymphmsg .ticket .price-table .thead dd .time span {
  display: inline-block;
  margin-left: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 500;
}
.page-care .lymphmsg .ticket .price-table .thead dd .menu-price {
  margin-top: 13px;
}

@media screen and (max-width: 1199px) {
  .page-care .medicell {
    margin-top: 80px;
    padding-top: 80px;
  }
  .page-care .medicell .container {
    width: 100%;
    padding: 0 15px;
  }
  .page-care .medicell .section-title {
    font-size: 36px;
  }
  .page-care .medicell .section-title__text {
    margin-top: 14px;
  }
  .page-care .medicell__contents {
    margin-top: 50px;
  }
  .page-care .medicell__detail {
    top: -60px;
    padding: 60px 30px;
    width: calc(100% - 60px);
  }
  .page-care .medicell__title {
    font-size: 28px;
  }
  .page-care .medicell__img {
    margin-top: 40px;
  }
  .page-care .medicell__text {
    margin-top: 40px;
  }
  .page-care .reason {
    margin-top: 0;
    padding-bottom: 80px;
  }
  .page-care .lymph {
    margin-top: 80px;
  }
  .page-care .lymph .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-care .lymph .section-title__text {
    margin-top: 14px;
  }
  .page-care .lymph-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
  }
  .page-care .lymph-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-care .lymph-item + .lymph-item {
    margin-top: 40px;
  }
  .page-care .lymph-item__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    width: 45%;
  }
  .page-care .lymph-item__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 51%;
            flex: 0 0 51%;
    width: 51%;
  }
  .page-care .lymph-item__title {
    margin-top: 0;
    font-size: 24px;
  }
  .page-care .lymph-item__text {
    margin-top: 12px;
  }
  .page-care .price {
    margin-top: 80px;
  }
  .page-care .price__title h3 {
    font-size: 36px;
  }
  .page-care .price__title p {
    margin-top: 14px;
  }
  .page-care .price__body {
    margin-top: 60px;
  }
  .page-care .price__body .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-care .price__body .adm-fee {
    margin-top: 50px;
  }
  .page-care .price__body .adm-fee__title {
    width: 30%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    font-size: 30px;
  }
  .page-care .price__body .adm-fee__price {
    width: 70%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 70%;
            flex: 0 1 70%;
    font-size: 60px;
    padding-left: 70px;
  }
  .page-care .price__body .adm-fee__price span.minutes {
    top: 1px;
    margin-right: 50px;
    width: 64px;
    height: 64px;
    font-size: 16px;
  }
  .page-care .price__body .adm-fee__price span.minutes .num {
    top: -1px;
    font-size: 32px;
  }
  .page-care .price__body .adm-fee__price span.yen {
    font-size: 30px;
  }
  .page-care .price .ticket {
    margin-top: 60px;
  }
  .page-care .price .ticket .price-table dl > *:first-child {
    width: 22%;
  }
  .page-care .price .ticket .price-table .thead dt,
  .page-care .price .ticket .price-table .thead dd {
    height: 150px;
  }
  .page-care .price .ticket .price-table .thead dd {
    padding: 0 10px;
  }
  .page-care .price .ticket .price-table .thead dt {
    width: 19%;
  }
  .page-care .price .ticket .price-table .thead dl > *:nth-child(2) {
    width: 27%;
  }
  .page-care .price .ticket .price-table .thead dl > *:nth-child(3) {
    width: 27%;
  }
  .page-care .price .ticket .price-table .thead dl > *:nth-child(4) {
    width: 27%;
  }
  .page-care .price .ticket .price-table .thead .menu {
    font-size: 22px;
    padding-bottom: 12px;
  }
  .page-care .price .ticket .price-table .thead .menu .num {
    font-size: 36px;
  }
  .page-care .price .ticket .price-table .thead .menu-price {
    margin-top: 10px;
  }
  .page-care .price .ticket .price-table .thead .menu-price p {
    font-size: 40px;
  }
  .page-care .price .ticket .price-table .thead .menu-price p span {
    font-size: 16px;
  }
  .page-care .price .ticket .price-table .tbody dt {
    width: 19%;
  }
  .page-care .price .ticket .price-table .tbody dd {
    width: 27%;
  }
  .page-care .price .ticket .price-table .tbody dd .inner span {
    margin-left: 3px;
  }
  .page-care .price .ticket .price-table .tbody .inner {
    font-size: 38px;
  }
  .page-care .price .ticket .price-table .tbody .inner span {
    font-size: 22px;
  }
  .page-care .lymphmsg {
    margin-top: 80px;
  }
  .page-care .lymphmsg .ticket {
    margin-top: 50px;
  }
  .page-care .lymphmsg .ticket__body {
    margin-top: 0;
  }
  .page-care .lymphmsg .ticket .price-table .thead dt,
  .page-care .lymphmsg .ticket .price-table .thead dd {
    height: 230px;
  }
  .page-care .lymphmsg .ticket .price-table .thead dd .ddhead {
    min-height: 70px;
  }
  .page-care .lymphmsg .ticket .price-table .thead dd .menu {
    font-size: 20px;
    font-weight: 500;
  }
  .page-care .lymphmsg .ticket .price-table .thead dd .time {
    margin-top: 0;
    padding-bottom: 10px;
    font-size: 36px;
  }
  .page-care .lymphmsg .ticket .price-table .thead dd .time span {
    margin-left: 4px;
    font-size: 22px;
  }
  .page-care .lymphmsg .ticket .price-table .thead dd .menu-price {
    margin-top: 15px;
  }
}
@media screen and (max-width: 758px) {
  .page-care .medicell {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .page-care .medicell .container {
    width: 100%;
    padding: 0 15px;
  }
  .page-care .medicell .section-title {
    font-size: 24px;
  }
  .page-care .medicell .section-title__text {
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.5;
  }
  .page-care .medicell__contents {
    margin-top: 30px;
  }
  .page-care .medicell__detail {
    top: -30px;
    padding: 30px 15px;
    width: calc(100% - 30px);
  }
  .page-care .medicell__title {
    font-size: 21px;
  }
  .page-care .medicell__img {
    margin-top: 30px;
  }
  .page-care .medicell__text {
    margin-top: 30px;
  }
  .page-care .reason {
    margin-top: 0;
    padding-bottom: 50px;
  }
  .page-care .lymph {
    margin-top: 50px;
  }
  .page-care .lymph .container {
    padding: 0 15px;
  }
  .page-care .lymph .section-title {
    font-size: 24px;
  }
  .page-care .lymph .section-title__text {
    margin-top: 10px;
    line-height: 1.5;
  }
  .page-care .lymph-items {
    margin-top: 30px;
  }
  .page-care .lymph-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-care .lymph-item + .lymph-item {
    margin-top: 30px;
  }
  .page-care .lymph-item__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .page-care .lymph-item__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .page-care .lymph-item__title {
    margin-top: 16px;
    font-size: 22px;
  }
  .page-care .lymph-item__text {
    margin-top: 12px;
  }
  .page-care .price {
    margin-top: 50px;
  }
  .page-care .price__title h3 {
    font-size: 24px;
  }
  .page-care .price__title p {
    margin-top: 10px;
    line-height: 1.5;
  }
  .page-care .price__body .container {
    width: 100%;
    padding: 0 15px;
  }
  .page-care .price__body .adm-fee {
    margin-top: 30px;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-care .price__body .adm-fee__title {
    padding: 20px 24px;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 27px;
  }
  .page-care .price__body .adm-fee__price {
    padding: 25px 0;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 54px;
    border-left: 1px solid #c9caca;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-care .price__body .adm-fee__price span.minutes {
    margin-right: 30px;
    padding-top: 5px;
    width: 55px;
    height: 55px;
    font-size: 12px;
  }
  .page-care .price__body .adm-fee__price span.minutes .num {
    top: -3px;
    font-size: 26px;
  }
  .page-care .price__body .adm-fee__price span.yen {
    font-size: 30px;
  }
  .page-care .price .ticket {
    margin-top: 30px;
  }
  .page-care .price .ticket__title {
    padding-bottom: 12px;
    font-size: 24px;
    border-bottom: 4px solid #222;
  }
  .page-care .price .ticket__desc {
    margin-top: 12px;
  }
  .page-care .price .ticket__body {
    margin-top: 20px;
  }
  .page-care .price .ticket .price-table dl > *:first-child {
    width: 22%;
  }
  .page-care .price .ticket .price-table .thead dt {
    font-size: 14px;
  }
  .page-care .price .ticket .price-table .thead dt,
  .page-care .price .ticket .price-table .thead dd {
    height: 110px;
  }
  .page-care .price .ticket .price-table .thead dd {
    padding: 0 5px;
  }
  .page-care .price .ticket .price-table .thead dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16%;
            flex: 0 0 16%;
    width: 16%;
  }
  .page-care .price .ticket .price-table .thead dl > *:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28%;
            flex: 0 0 28%;
    width: 28%;
  }
  .page-care .price .ticket .price-table .thead dl > *:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28%;
            flex: 0 0 28%;
    width: 28%;
  }
  .page-care .price .ticket .price-table .thead dl > *:nth-child(4) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28%;
            flex: 0 0 28%;
    width: 28%;
  }
  .page-care .price .ticket .price-table .thead .menu {
    font-size: 12px;
    padding-bottom: 10px;
  }
  .page-care .price .ticket .price-table .thead .menu .num {
    font-size: 20px;
  }
  .page-care .price .ticket .price-table .thead .menu-price {
    margin-top: 10px;
  }
  .page-care .price .ticket .price-table .thead .menu-price p {
    font-size: 20px;
  }
  .page-care .price .ticket .price-table .thead .menu-price p span {
    font-size: 12px;
  }
  .page-care .price .ticket .price-table .tbody dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16%;
            flex: 0 0 16%;
    width: 16%;
  }
  .page-care .price .ticket .price-table .tbody dt .discount {
    margin-top: 6px;
    font-size: 12px;
  }
  .page-care .price .ticket .price-table .tbody dd {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28%;
            flex: 0 0 28%;
    width: 28%;
  }
  .page-care .price .ticket .price-table .tbody dd .inner span {
    margin-left: 1px;
  }
  .page-care .price .ticket .price-table .tbody dd .onetime {
    margin-top: 5px;
    font-size: 10px;
  }
  .page-care .price .ticket .price-table .tbody .inner {
    font-size: 20px;
  }
  .page-care .price .ticket .price-table .tbody .inner span {
    font-size: 12px;
    margin-left: 2px;
  }
  .page-care .lymphmsg {
    margin-top: 50px;
  }
  .page-care .lymphmsg .ticket {
    margin-top: 30px;
  }
  .page-care .lymphmsg .ticket__body {
    margin-top: 20px;
  }
  .page-care .lymphmsg .ticket .price-table .thead dt,
  .page-care .lymphmsg .ticket .price-table .thead dd {
    height: 150px;
  }
  .page-care .lymphmsg .ticket .price-table .thead dd .ddhead {
    min-height: 70px;
  }
  .page-care .lymphmsg .ticket .price-table .thead dd .menu {
    font-size: 12px;
    font-weight: 700;
  }
  .page-care .lymphmsg .ticket .price-table .thead dd .time {
    padding-bottom: 5px;
    font-size: 20px;
  }
  .page-care .lymphmsg .ticket .price-table .thead dd .time span {
    margin-left: 4px;
    font-size: 12px;
  }
  .page-care .lymphmsg .ticket .price-table .thead dd .menu-price {
    margin-top: 8px;
  }
}
/* ===================================

  archive: 記事一覧
  archive-news: お知らせ一覧

====================================== */
.archive .main,
.blog .main {
  padding-bottom: 120px;
}
.archive .main .container,
.blog .main .container {
  width: 960px;
}
.archive .mv-lower,
.blog .mv-lower {
  background-image: url(img/lower-news-header-80.jpg);
}
.archive__contents,
.blog__contents {
  margin-top: 80px;
}
.archive .entry,
.blog .entry {
  position: relative;
  padding: 30px 30px 35px;
  background-color: #f7f8f8;
}
.archive .entry + .entry,
.blog .entry + .entry {
  margin-top: 30px;
}
.archive .entry__link,
.blog .entry__link {
  display: block;
  color: #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.archive .entry__link:hover,
.blog .entry__link:hover {
  opacity: 0.6;
}
.archive .entry__meta,
.blog .entry__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.archive .entry__cate,
.blog .entry__cate {
  display: inline-block;
  padding: 4px 10px;
  background-color: #d7ff21;
  font-size: 14px;
  border-radius: 2px;
  font-weight: 500;
}
.archive .entry__date,
.blog .entry__date {
  margin-left: 8px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 500;
}
.archive .entry__title,
.blog .entry__title {
  margin-top: 15px;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #222;
}
.archive .entry__excerpt,
.blog .entry__excerpt {
  margin-top: 17px;
  word-break: break-all;
}
.archive .entry__excerpt p,
.blog .entry__excerpt p {
  line-height: 2;
}
.archive .entry__ico,
.blog .entry__ico {
  position: absolute;
  right: 4px;
  bottom: 12px;
  width: 24px;
  height: 12px;
  border-top: 12px solid #000;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 1199px) {
  .archive .main,
  .blog .main {
    padding-bottom: 60px;
  }
  .archive .main .container,
  .blog .main .container {
    width: 100%;
    padding: 0 30px;
  }
  .archive__contents,
  .blog__contents {
    margin-top: 50px;
  }
  .archive .entry + .entry,
  .blog .entry + .entry {
    margin-top: 20px;
  }
  .archive .entry__cate,
  .blog .entry__cate {
    padding: 4px 6px;
    font-size: 11px;
  }
  .archive .entry__date,
  .blog .entry__date {
    font-size: 12px;
  }
  .archive .entry__title,
  .blog .entry__title {
    margin-top: 12px;
    padding-bottom: 4px;
    font-size: 18px;
  }
  .archive .entry__excerpt,
  .blog .entry__excerpt {
    margin-top: 15px;
  }
  .archive .entry__ico,
  .blog .entry__ico {
    width: 20px;
    height: 10px;
    border-top: 10px solid #000;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
}
@media screen and (max-width: 758px) {
  .archive .main,
  .blog .main {
    padding-bottom: 50px;
  }
  .archive .main .container,
  .blog .main .container {
    width: 100%;
    padding: 0 15px;
  }
  .archive .mv-lower,
  .blog .mv-lower {
    background-image: url(img/sp-lower-news-header-80.jpg);
  }
  .archive__contents,
  .blog__contents {
    margin-top: 30px;
  }
  .archive .entry + .entry,
  .blog .entry + .entry {
    margin-top: 20px;
  }
  .archive .entry__cate,
  .blog .entry__cate {
    padding: 3px 5px;
    font-size: 10px;
  }
  .archive .entry__date,
  .blog .entry__date {
    font-size: 11px;
  }
  .archive .entry__title,
  .blog .entry__title {
    font-size: 16px;
  }
  .archive .entry__ico,
  .blog .entry__ico {
    right: 4px;
    bottom: 12px;
    width: 20px;
    height: 10px;
    border-top: 10px solid #000;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
}
/* ===================================

  VOICE一覧：post-type-archive-voice

====================================== */
.post-type-archive-voice .main .container {
  width: 960px;
}
.post-type-archive-voice .mv-lower {
  background-image: url(img/lower-voice-header-80.jpg);
}
.post-type-archive-voice .voice-entries {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-type-archive-voice .voice-entry {
  position: relative;
  width: 280px;
  z-index: 1;
}
.post-type-archive-voice .voice-entry + .voice-entry {
  margin-left: 40px;
}
.post-type-archive-voice .voice-entry:nth-child(3n+1) {
  margin-left: 0;
}
.post-type-archive-voice .voice-entry:nth-child(n+4) {
  margin-top: 40px;
}
.post-type-archive-voice .voice-entry__link {
  display: block;
}
.post-type-archive-voice .voice-entry__thumb {
  width: 100%;
  overflow: hidden;
}
.post-type-archive-voice .voice-entry__thumb-img {
  width: 100%;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-type-archive-voice .voice-entry__link:hover .entry__thumb-img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.post-type-archive-voice .voice-entry__body {
  padding: 20px 10px 15px;
  background-color: #fff;
  word-break: break-all;
}
.post-type-archive-voice .voice-entry__meta {
  padding-bottom: 20px;
  border-bottom: 1px solid #222;
}
.post-type-archive-voice .voice-entry__name {
  font-size: 26px;
  font-weight: 500;
}
.post-type-archive-voice .voice-entry__name .title {
  margin-left: 14px;
  font-size: 18px;
  font-weight: 500;
}
.post-type-archive-voice .voice-entry__name .gender-age {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
.post-type-archive-voice .voice-entry__excerpt {
  margin-top: 12px;
  line-height: 2;
}

@media screen and (max-width: 1199px) {
  .post-type-archive-voice .main .container {
    width: 100%;
    padding: 0 30px;
  }
  .post-type-archive-voice .voice-entries {
    margin-top: 50px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .post-type-archive-voice .voice-entry {
    width: 48.5%;
  }
  .post-type-archive-voice .voice-entry + .voice-entry {
    margin-left: 0;
  }
  .post-type-archive-voice .voice-entry:nth-child(n+4) {
    margin-top: 0;
  }
  .post-type-archive-voice .voice-entry:nth-child(n+3) {
    margin-top: 35px;
  }
  .post-type-archive-voice .voice-entry__body {
    padding: 20px 20px 15px 0;
  }
  .post-type-archive-voice .voice-entry__meta {
    padding-bottom: 16px;
  }
  .post-type-archive-voice .voice-entry__name {
    font-size: 22px;
  }
  .post-type-archive-voice .voice-entry__name .title {
    margin-left: 12px;
    font-size: 16px;
  }
  .post-type-archive-voice .voice-entry__name .gender-age {
    font-size: 13px;
  }
  .post-type-archive-voice .voice-entry__excerpt {
    margin-top: 10px;
  }
}
@media screen and (max-width: 758px) {
  .post-type-archive-voice .main .container {
    width: 100%;
    padding: 0 15px;
  }
  .post-type-archive-voice .mv-lower {
    background-image: url(img/sp-lower-voice-header-80.jpg);
  }
  .post-type-archive-voice .voice-entries {
    margin-top: 30px;
  }
  .post-type-archive-voice .voice-entry:nth-child(n+3) {
    margin-top: 30px;
  }
  .post-type-archive-voice .voice-entry__body {
    padding: 15px 10px 14px 0;
  }
  .post-type-archive-voice .voice-entry__meta {
    padding-bottom: 10px;
  }
  .post-type-archive-voice .voice-entry__name {
    font-size: 18px;
  }
  .post-type-archive-voice .voice-entry__name .title {
    margin-left: 8px;
    font-size: 13px;
  }
  .post-type-archive-voice .voice-entry__name .gender-age {
    font-size: 11px;
  }
}
/* ===================================

  COLUMN：post-type-archive-column

====================================== */
.post-type-archive-column .main .container {
  width: 960px;
}
.post-type-archive-column .mv-lower {
  background-image: url(img/lower-column-header-80.jpg);
}
.post-type-archive-column .blog-entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 80px;
}
.post-type-archive-column .blog-entry {
  width: 460px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 460px;
          flex: 0 0 460px;
}
.post-type-archive-column .blog-entry:nth-child(n+3) {
  margin-top: 30px;
}
.post-type-archive-column .blog-entry__link {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}
.post-type-archive-column .blog-entry__thumb {
  overflow: hidden;
}
.post-type-archive-column .blog-entry__img {
  width: 100%;
  padding-top: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-type-archive-column .blog-entry__body {
  position: relative;
  padding: 30px 45px 25px 30px;
  background-color: #222;
}
.post-type-archive-column .blog-entry__date {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.post-type-archive-column .blog-entry__title {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.5;
}
.post-type-archive-column .blog-entry__excerpt {
  margin-top: 23px;
  line-height: 2;
  font-weight: 500;
}
.post-type-archive-column .blog-entry__foot {
  margin-top: 15px;
}
.post-type-archive-column .blog-entry__cate {
  display: inline-block;
  padding: 4px 7px;
  margin-right: 4px;
  margin-bottom: 5px;
  background-color: #d7ff21;
  font-size: 14px;
  color: #222;
  font-weight: 500;
  border-radius: 2px;
}
.post-type-archive-column .blog-entry__ico {
  position: absolute;
  right: 4px;
  bottom: 12px;
  width: 24px;
  height: 12px;
  border-top: 12px solid #fff;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.post-type-archive-column .blog-entry__link:hover .blog-entry__img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (max-width: 1199px) {
  .post-type-archive-column .main .container {
    width: 100%;
    padding: 0 30px;
  }
  .post-type-archive-column .blog-entries {
    margin-top: 50px;
  }
  .post-type-archive-column .blog-entry {
    width: 48.5%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48.5%;
            flex: 0 0 48.5%;
  }
  .post-type-archive-column .blog-entry:nth-child(n+3) {
    margin-top: 20px;
  }
  .post-type-archive-column .blog-entry__img {
    padding-top: 75%;
  }
  .post-type-archive-column .blog-entry__body {
    padding: 20px 35px 20px 20px;
  }
  .post-type-archive-column .blog-entry__date {
    font-size: 14px;
  }
  .post-type-archive-column .blog-entry__title {
    margin-top: 12px;
    font-size: 18px;
  }
  .post-type-archive-column .blog-entry__excerpt {
    margin-top: 18px;
  }
  .post-type-archive-column .blog-entry__foot {
    margin-top: 16px;
  }
  .post-type-archive-column .blog-entry__cate {
    padding: 4px 6px;
    margin-right: 3px;
    margin-bottom: 4px;
    font-size: 11px;
  }
  .post-type-archive-column .blog-entry__ico {
    width: 20px;
    height: 10px;
    border-top: 10px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
}
@media screen and (max-width: 758px) {
  .post-type-archive-column .main .container {
    width: 100%;
    padding: 0 15px;
  }
  .post-type-archive-column .mv-lower {
    background-image: url(img/sp-lower-column-header-80.jpg);
  }
  .post-type-archive-column .blog-entries {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
  .post-type-archive-column .blog-entry {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .post-type-archive-column .blog-entry:nth-child(n+3) {
    margin-top: 0;
  }
  .post-type-archive-column .blog-entry + .blog-entry {
    margin-top: 20px;
  }
  .post-type-archive-column .blog-entry__date {
    font-size: 12px;
  }
  .post-type-archive-column .blog-entry__title {
    margin-top: 12px;
    font-size: 18px;
  }
  .post-type-archive-column .blog-entry__foot {
    margin-top: 20px;
  }
  .post-type-archive-column .blog-entry__cate {
    padding: 4px 6px;
    font-size: 12px;
  }
  .post-type-archive-column .blog-entry__ico {
    right: 4px;
    bottom: 12px;
    width: 20px;
    height: 10px;
    border-top: 10px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
}
/* ===================================

  投稿詳細ページ：single

====================================== */
.single .main {
  padding-bottom: 120px;
}
.single .main .container {
  width: 1000px;
}
.single .mv-lower {
  background-image: url(img/lower-news-header-80.jpg);
}
.single .entry {
  margin-top: 80px;
}
.single .entry__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single .entry__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}
.single .entry__cate {
  display: block;
  margin-right: 5px;
  padding: 4px 10px;
  background-color: #d7ff21;
  border-radius: 2px;
  font-weight: 500;
}
.single .entry__date {
  margin-left: 18px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.single .entry__title {
  margin-top: 17px;
  padding-bottom: 35px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #222;
}
.single .entry__body {
  margin-top: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}
.single .entry__body > *:first-child {
  margin-top: 0;
}
.single .entry__body img {
  display: block;
  margin-top: 24px;
  width: 100%;
}
.single .entry__body p {
  margin-top: 20px;
  line-height: 2;
}
.single .entry__body h2 {
  position: relative;
  margin-top: 45px;
  padding-bottom: 10px;
  font-size: 28px;
  line-height: 1.3;
}
.single .entry__body h2::before, .single .entry__body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
}
.single .entry__body h2::before {
  width: 25%;
  z-index: 1;
  background-color: #222;
}
.single .entry__body h2::after {
  width: 100%;
  background-color: #cdcdcd;
}
.single .entry__body h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  background-color: #fff;
}
.single .entry__body h3::after {
  content: "";
  border-top: 1px dashed #cdcdcd;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.single .entry__body h4 {
  position: relative;
  margin-top: 50px;
  padding-left: 15px;
  font-size: 22px;
  line-height: 1.5;
}
.single .entry__body h4::before, .single .entry__body h4::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 4px;
}
.single .entry__body h4::before {
  height: 50%;
  background-color: #d7ff21;
  z-index: 1;
}
.single .entry__body h4::after {
  height: 100%;
  background-color: #222;
}
.single .entry__body h5 {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.single .entry__body h6 {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.single .entry__body ol,
.single .entry__body ul {
  margin-top: 24px;
}
.single .entry__body li {
  line-height: 2;
}
.single .entry__body ul {
  padding-left: 1.1em;
}
.single .entry__body ul li {
  text-indent: -1em;
}
.single .entry__body ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  margin-right: 5px;
  width: 12px;
  height: 12px;
  background-color: #d7ff21;
  border-radius: 50%;
}
.single .entry__body ol {
  counter-reset: num;
  list-style-type: none;
  padding: 0;
  margin-left: -3px;
}
.single .entry__body ol li {
  position: relative;
  line-height: 2;
  padding-left: 30px;
}
.single .entry__body ol li::before {
  content: counter(num);
  counter-increment: num;
  position: absolute;
  left: 0;
  top: 7px;
  display: inline-block;
  padding-left: 1px;
  width: 20px;
  height: 20px;
  background-color: #d7ff21;
  color: #222;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
}
.single .entry__body a {
  position: relative;
  color: #1a0dab;
}
.single .entry__body a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background-color: #1a0dab;
}
.single .entry__body blockquote {
  position: relative;
  background-color: #f7f8f8;
  margin-top: 40px;
  padding: 40px 35px 20px;
  border: 2px solid #222;
}
.single .entry__body blockquote::before, .single .entry__body blockquote::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 3px;
  width: 95%;
  background-color: #f7f8f8;
}
.single .entry__body blockquote::before {
  top: -2px;
}
.single .entry__body blockquote::after {
  bottom: -2px;
}
.single .entry__body blockquote * {
  line-height: 1.5;
}
.single .entry__body blockquote > * {
  margin-top: 0;
}
.single .entry__body blockquote * + * {
  margin-top: 10px;
}
.single .entry__body blockquote cite {
  margin-top: 30px;
  display: block;
  text-align: right;
}
.single .entry__body blockquote a {
  display: block;
}
.single .entry__body blockquote a::after {
  display: none;
}
.single .entry__body b,
.single .entry__body strong {
  font-weight: 700;
}
.single .entry__body i {
  -webkit-text-decoration: italic;
          text-decoration: italic;
}
.single .entry__body figure.wp-block-image > a {
  position: static;
}
.single .entry__body figure.wp-block-image > a::after {
  display: none;
}
.single .entry__foot {
  padding-top: 50px;
}
.single .nav-links .nav-previous,
.single .nav-links .nav-next {
  display: block;
  font-size: 20px;
  line-height: 1.3;
}
.single .nav-links .nav-previous a,
.single .nav-links .nav-next a {
  color: #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single .nav-links .nav-previous a:hover,
.single .nav-links .nav-next a:hover {
  opacity: 0.6;
}
.single .nav-links .nav-previous a::before {
  content: "前の投稿";
  margin-right: 30px;
}
.single .nav-links .nav-next {
  margin-top: 15px;
}
.single .nav-links .nav-next a::before {
  content: "次の投稿";
  margin-right: 30px;
}
.single .toarchive-btn {
  display: block;
  margin-top: 35px;
  font-size: 18px;
  color: #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single .toarchive-btn:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1199px) {
  .single .main {
    padding-bottom: 60px;
  }
  .single .main .container {
    width: 100%;
    padding: 0 30px;
  }
  .single .entry {
    margin-top: 50px;
  }
  .single .entry__cate {
    padding: 4px 6px;
    font-size: 12px;
  }
  .single .entry__date {
    font-size: 14px;
  }
  .single .entry__title {
    margin-top: 15px;
    padding-bottom: 24px;
    font-size: 24px;
  }
  .single .entry__body {
    margin-top: 40px;
  }
  .single .entry__body h2 {
    margin-top: 40px;
    font-size: 25px;
  }
  .single .entry__body h3 {
    margin-top: 45px;
    font-size: 21px;
  }
  .single .entry__body h4 {
    margin-top: 45px;
    font-size: 19px;
  }
  .single .entry__body h5 {
    margin-top: 35px;
    font-size: 17px;
  }
  .single .entry__body h6 {
    margin-top: 35px;
    font-size: 15px;
  }
  .single .entry__body p {
    margin-top: 20px;
  }
  .single .entry__body ol,
  .single .entry__body ul {
    margin-top: 24px;
  }
  .single .entry__body li {
    line-height: 2;
  }
  .single .entry__body ul {
    padding-left: 1.1em;
  }
  .single .entry__body ul li {
    text-indent: -1.2em;
  }
  .single .entry__body ol {
    margin-left: -3px;
  }
  .single .entry__body ol li {
    padding-left: 23px;
  }
  .single .entry__body ol li::before {
    top: 6px;
    padding-left: 1px;
    width: 16px;
    height: 16px;
    font-size: 11px;
    line-height: 16px;
  }
  .single .entry__body blockquote {
    margin-top: 40px;
    padding: 40px 30px 20px;
  }
  .single .entry__body blockquote::before, .single .entry__body blockquote::after {
    height: 3px;
    width: 92%;
  }
  .single .entry__body blockquote * + * {
    margin-top: 1em;
  }
  .single .entry__body blockquote cite {
    margin-top: 20px;
  }
  .single .entry__foot {
    padding-top: 40px;
  }
  .single .nav-links .nav-previous,
  .single .nav-links .nav-next {
    font-size: 16px;
  }
  .single .nav-links .nav-previous a::before {
    margin-right: 20px;
  }
  .single .nav-links .nav-next {
    margin-top: 12px;
  }
  .single .nav-links .nav-next a::before {
    margin-right: 20px;
  }
  .single .toarchive-btn {
    margin-top: 30px;
    font-size: 14px;
  }
}
@media screen and (max-width: 758px) {
  .single .main {
    padding-bottom: 50px;
  }
  .single .main .container {
    width: 100%;
    padding: 0 15px;
  }
  .single .mv-lower {
    background-image: url(img/sp-lower-news-header-80.jpg);
  }
  .single .entry {
    margin-top: 30px;
  }
  .single .entry__cate {
    padding: 3px 5px;
    font-size: 10px;
    margin-right: 3px;
  }
  .single .entry__date {
    font-size: 12px;
    font-weight: 600;
    margin-left: 5px;
  }
  .single .entry__title {
    margin-top: 15px;
    padding-bottom: 20px;
    font-size: 20px;
  }
  .single .entry__body {
    margin-top: 30px;
    padding-bottom: 40px;
  }
  .single .entry__body img {
    margin-top: 20px;
  }
  .single .entry__body h2 {
    margin-top: 30px;
    padding-bottom: 8px;
    font-size: 21px;
  }
  .single .entry__body h3 {
    margin-top: 35px;
    font-size: 18px;
  }
  .single .entry__body h4 {
    margin-top: 30px;
    font-size: 16px;
  }
  .single .entry__body h5 {
    margin-top: 25px;
    font-size: 14px;
  }
  .single .entry__body h6 {
    margin-top: 25px;
    font-size: 13px;
  }
  .single .entry__body ol,
  .single .entry__body ul {
    margin-top: 20px;
  }
  .single .entry__body ul li {
    text-indent: -1.2em;
  }
  .single .entry__body ul li::before {
    margin-right: 5px;
    width: 10px;
    height: 10px;
  }
  .single .entry__body ol {
    margin-left: -3px;
  }
  .single .entry__body ol li {
    padding-left: 20px;
  }
  .single .entry__body ol li::before {
    top: 5px;
    padding-left: 0;
    width: 14px;
    height: 14px;
    font-size: 10px;
    line-height: 14px;
  }
  .single .entry__body blockquote {
    margin-top: 24px;
    padding: 30px 20px 20px;
  }
  .single .entry__body blockquote cite {
    margin-top: 1em;
  }
  .single .entry__foot {
    padding-top: 40px;
  }
  .single .nav-links .nav-previous,
  .single .nav-links .nav-next {
    font-size: 14px;
  }
  .single .nav-links .nav-previous a::before {
    margin-right: 10px;
  }
  .single .nav-links .nav-next {
    margin-top: 20px;
  }
  .single .nav-links .nav-next a::before {
    margin-right: 10px;
  }
  .single .toarchive-btn {
    margin-top: 30px;
    font-size: 13px;
    font-weight: 700;
  }
}
/* ---------------------------------
  Table of contents: 目次
----------------------------------- */
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content {
  margin-top: 40px;
  background-color: #f7f8f8;
}
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content .level-2,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content .level-2 {
  padding-left: 1em;
}
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content .level-3,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content .level-3 {
  padding-left: 1em;
}
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content ul,
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content ol,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content ul,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content ol {
  padding: 0;
  margin: 0;
}
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content ul li,
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content ol li,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content ul li,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content ol li {
  text-indent: 0;
}
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content ul li::before,
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content ol li::before,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content ul li::before,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content ol li::before {
  display: none;
}
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content ul li a,
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content ol li a,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content ul li a,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content ol li a {
  text-decoration: none;
  font-weight: 500;
}
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content ul li a::after,
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content ol li a::after,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content ul li a::after,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content ol li a::after {
  display: none;
}
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content ul li a:hover,
.single #rtoc-mokuji-wrapper.rtoc-mokuji-content ol li a:hover,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content ul li a:hover,
.single-column #rtoc-mokuji-wrapper.rtoc-mokuji-content ol li a:hover {
  text-decoration: none;
}
.single .rtoc-mokuji-content.frame2::before,
.single-column .rtoc-mokuji-content.frame2::before {
  border-color: transparent;
}
.single button.rtoc_open_close,
.single-column button.rtoc_open_close {
  display: none;
}

/* ===================================

  コラム詳細：single-column

====================================== */
.single-column .mv-lower {
  background-image: url(img/lower-column-header-80.jpg);
}
.single-column .blog-entry {
  margin-top: 80px;
  padding-bottom: 24px;
  border-bottom: 1px solid #222;
}
.single-column .blog-entry__date {
  font-size: 18px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 500;
}
.single-column .blog-entry__title {
  margin-top: 19px;
  font-size: 32px;
  line-height: 1.5;
}
.single-column .blog-entry__cats {
  margin-top: 29px;
  font-weight: 500;
}
.single-column .blog-entry__cate {
  display: inline-block;
  margin-right: 5px;
  padding: 7px 10px;
  background-color: #d7ff21;
  border-radius: 2px;
}
.single-column .blog-entry__thumb {
  margin-top: 28px;
}
.single-column .blog-entry__img {
  width: 100%;
  padding-top: 59.2%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.single-column .blog-entry__body {
  margin-top: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}
.single-column .blog-entry__body > *:first-child {
  margin-top: 0;
}
.single-column .blog-entry__body img {
  display: block;
  margin-top: 24px;
  width: 100%;
}
.single-column .blog-entry__body p {
  margin-top: 20px;
  line-height: 2;
}
.single-column .blog-entry__body h2 {
  position: relative;
  margin-top: 45px;
  padding-bottom: 10px;
  font-size: 28px;
  line-height: 1.3;
}
.single-column .blog-entry__body h2::before, .single-column .blog-entry__body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
}
.single-column .blog-entry__body h2::before {
  width: 25%;
  z-index: 1;
  background-color: #222;
}
.single-column .blog-entry__body h2::after {
  width: 100%;
  background-color: #cdcdcd;
}
.single-column .blog-entry__body h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  background-color: #fff;
}
.single-column .blog-entry__body h3::after {
  content: "";
  border-top: 1px dashed #cdcdcd;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.single-column .blog-entry__body h4 {
  position: relative;
  margin-top: 50px;
  padding-left: 15px;
  font-size: 22px;
  line-height: 1.5;
}
.single-column .blog-entry__body h4::before, .single-column .blog-entry__body h4::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 4px;
}
.single-column .blog-entry__body h4::before {
  height: 50%;
  background-color: #d7ff21;
  z-index: 1;
}
.single-column .blog-entry__body h4::after {
  height: 100%;
  background-color: #222;
}
.single-column .blog-entry__body h5 {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.single-column .blog-entry__body h6 {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.single-column .blog-entry__body ol,
.single-column .blog-entry__body ul {
  margin-top: 24px;
}
.single-column .blog-entry__body li {
  line-height: 2;
}
.single-column .blog-entry__body ul {
  padding-left: 1.1em;
}
.single-column .blog-entry__body ul li {
  text-indent: -1em;
}
.single-column .blog-entry__body ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  margin-right: 5px;
  width: 12px;
  height: 12px;
  background-color: #d7ff21;
  border-radius: 50%;
}
.single-column .blog-entry__body ol {
  counter-reset: num;
  list-style-type: none;
  padding: 0;
  margin-left: -3px;
}
.single-column .blog-entry__body ol li {
  position: relative;
  line-height: 2;
  padding-left: 30px;
}
.single-column .blog-entry__body ol li::before {
  content: counter(num);
  counter-increment: num;
  position: absolute;
  left: 0;
  top: 7px;
  display: inline-block;
  padding-left: 1px;
  width: 20px;
  height: 20px;
  background-color: #d7ff21;
  color: #222;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
}
.single-column .blog-entry__body a {
  position: relative;
  color: #1a0dab;
}
.single-column .blog-entry__body a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background-color: #1a0dab;
}
.single-column .blog-entry__body blockquote {
  position: relative;
  background-color: #f7f8f8;
  margin-top: 40px;
  padding: 40px 35px 20px;
  border: 2px solid #222;
}
.single-column .blog-entry__body blockquote::before, .single-column .blog-entry__body blockquote::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 3px;
  width: 95%;
  background-color: #f7f8f8;
}
.single-column .blog-entry__body blockquote::before {
  top: -2px;
}
.single-column .blog-entry__body blockquote::after {
  bottom: -2px;
}
.single-column .blog-entry__body blockquote * {
  line-height: 1.5;
}
.single-column .blog-entry__body blockquote > * {
  margin-top: 0;
}
.single-column .blog-entry__body blockquote * + * {
  margin-top: 10px;
}
.single-column .blog-entry__body blockquote cite {
  margin-top: 30px;
  display: block;
  text-align: right;
}
.single-column .blog-entry__body blockquote a {
  display: block;
}
.single-column .blog-entry__body blockquote a::after {
  display: none;
}
.single-column .blog-entry__body b,
.single-column .blog-entry__body strong {
  font-weight: 700;
}
.single-column .blog-entry__body i {
  -webkit-text-decoration: italic;
          text-decoration: italic;
}
.single-column .blog-entry__foot {
  margin-top: 52px;
}
.single-column .toarchive-btn {
  margin-top: 35px;
}
.single-column .related {
  padding: 45px 0 50px;
}
.single-column .related__title {
  font-size: 30px;
  font-weight: 700;
}
.single-column .rentries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
}
.single-column .rentry {
  width: 32%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
}
.single-column .rentry + .rentry {
  margin-left: 2%;
}
.single-column .rentry__link {
  display: block;
  color: #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-column .rentry__thumb {
  width: 100%;
  overflow: hidden;
}
.single-column .rentry__img {
  width: 100%;
  padding-top: 59%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single-column .rentry__body {
  position: relative;
  background-color: #f7f8f8;
  padding: 20px;
}
.single-column .rentry__date {
  font-size: 14px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 500;
}
.single-column .rentry__title {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
}
.single-column .rentry__cats {
  margin-top: 19px;
  padding-right: 80px;
}
.single-column .rentry__cate {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 5px 8px;
  background-color: #d7ff21;
  font-size: 14px;
}
.single-column .rentry__ico {
  position: absolute;
  right: 25px;
  bottom: 32px;
  width: 30px;
}
.single-column .rentry__link:hover {
  opacity: 0.6;
}
.single-column .rentry__link:hover .rentry__img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (max-width: 1199px) {
  .single-column .blog-entry {
    margin-top: 50px;
    padding-bottom: 30px;
  }
  .single-column .blog-entry__date {
    font-size: 16px;
  }
  .single-column .blog-entry__title {
    margin-top: 15px;
    font-size: 24px;
  }
  .single-column .blog-entry__cats {
    margin-top: 20px;
  }
  .single-column .blog-entry__cate {
    padding: 5px 8px;
  }
  .single-column .blog-entry__thumb {
    margin-top: 25px;
  }
  .single-column .blog-entry__body {
    margin-top: 40px;
  }
  .single-column .blog-entry__body h2 {
    margin-top: 40px;
    font-size: 25px;
  }
  .single-column .blog-entry__body h3 {
    margin-top: 45px;
    font-size: 21px;
  }
  .single-column .blog-entry__body h4 {
    margin-top: 45px;
    font-size: 19px;
  }
  .single-column .blog-entry__body h5 {
    margin-top: 35px;
    font-size: 17px;
  }
  .single-column .blog-entry__body h6 {
    margin-top: 35px;
    font-size: 15px;
  }
  .single-column .blog-entry__body p {
    margin-top: 20px;
  }
  .single-column .blog-entry__body ol,
  .single-column .blog-entry__body ul {
    margin-top: 24px;
  }
  .single-column .blog-entry__body li {
    line-height: 2;
  }
  .single-column .blog-entry__body ul {
    padding-left: 1.1em;
  }
  .single-column .blog-entry__body ul li {
    text-indent: -1.2em;
  }
  .single-column .blog-entry__body ol {
    margin-left: -3px;
  }
  .single-column .blog-entry__body ol li {
    padding-left: 23px;
  }
  .single-column .blog-entry__body ol li::before {
    top: 6px;
    padding-left: 1px;
    width: 16px;
    height: 16px;
    font-size: 11px;
    line-height: 16px;
  }
  .single-column .blog-entry__body blockquote {
    margin-top: 40px;
    padding: 40px 30px 20px;
  }
  .single-column .blog-entry__body blockquote::before, .single-column .blog-entry__body blockquote::after {
    height: 3px;
    width: 92%;
  }
  .single-column .blog-entry__body blockquote * + * {
    margin-top: 1em;
  }
  .single-column .blog-entry__body blockquote cite {
    margin-top: 20px;
  }
  .single-column .blog-entry__foot {
    margin-top: 50px;
  }
  .single-column .toarchive-btn {
    margin-top: 30px;
    font-size: 14px;
  }
  .single-column .toarchive-btn img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px;
    width: 24px;
    margin-right: 12px;
  }
  .single-column .related {
    padding: 40px 0;
  }
  .single-column .related__title {
    font-size: 20px;
  }
  .single-column .rentries {
    margin-top: 40px;
  }
  .single-column .rentry__body {
    padding: 20px 15px;
  }
  .single-column .rentry__date {
    font-size: 12px;
  }
  .single-column .rentry__title {
    margin-top: 12px;
    font-size: 15px;
  }
  .single-column .rentry__cats {
    margin-top: 15px;
    padding-right: 50px;
  }
  .single-column .rentry__cate {
    margin-right: 3px;
    padding: 4px 6px;
    font-size: 11px;
  }
  .single-column .rentry__ico {
    position: absolute;
    right: 15px;
    bottom: 20px;
    width: 25px;
  }
}
@media screen and (max-width: 758px) {
  .single-column .mv-lower {
    background-image: url(img/sp-lower-column-header-80.jpg);
  }
  .single-column .blog-entry {
    margin-top: 30px;
    padding-bottom: 30px;
  }
  .single-column .blog-entry__date {
    font-size: 13px;
    font-weight: 600;
  }
  .single-column .blog-entry__title {
    font-size: 20px;
  }
  .single-column .blog-entry__cats {
    margin-top: 20px;
  }
  .single-column .blog-entry__cate {
    margin-right: 2px;
    padding: 4px 6px;
  }
  .single-column .blog-entry__thumb {
    margin-top: 30px;
  }
  .single-column .blog-entry__body {
    margin-top: 30px;
    padding-bottom: 40px;
  }
  .single-column .blog-entry__body img {
    margin-top: 20px;
  }
  .single-column .blog-entry__body h2 {
    margin-top: 30px;
    padding-bottom: 8px;
    font-size: 21px;
  }
  .single-column .blog-entry__body h3 {
    margin-top: 35px;
    font-size: 18px;
  }
  .single-column .blog-entry__body h4 {
    margin-top: 30px;
    font-size: 16px;
  }
  .single-column .blog-entry__body h5 {
    margin-top: 25px;
    font-size: 14px;
  }
  .single-column .blog-entry__body h6 {
    margin-top: 25px;
    font-size: 13px;
  }
  .single-column .blog-entry__body ol,
  .single-column .blog-entry__body ul {
    margin-top: 20px;
  }
  .single-column .blog-entry__body ul li {
    text-indent: -1.2em;
  }
  .single-column .blog-entry__body ul li::before {
    margin-right: 5px;
    width: 10px;
    height: 10px;
  }
  .single-column .blog-entry__body ol {
    margin-left: -3px;
  }
  .single-column .blog-entry__body ol li {
    padding-left: 20px;
  }
  .single-column .blog-entry__body ol li::before {
    top: 5px;
    padding-left: 0;
    width: 14px;
    height: 14px;
    font-size: 10px;
    line-height: 14px;
  }
  .single-column .blog-entry__body blockquote {
    margin-top: 24px;
    padding: 30px 20px 20px;
  }
  .single-column .blog-entry__body blockquote cite {
    margin-top: 1em;
  }
  .single-column .toarchive-btn {
    font-size: 13px;
  }
  .single-column .related__title {
    font-size: 18px;
  }
  .single-column .rentries {
    margin-top: 30px;
  }
  .single-column .rentries {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single-column .rentry {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .single-column .rentry + .rentry {
    margin-left: 0;
    margin-top: 20px;
  }
}
/* ===================================

  お客様の声：single-voice

====================================== */
.single-voice .mv-lower {
  background-image: url(img/lower-voice-header-80.jpg);
}
.single-voice .voice-entry {
  margin-top: 80px;
  width: 100%;
  word-break: break-all;
}
.single-voice .voice-entry__date {
  font-size: 18px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 500;
}
.single-voice .voice-entry__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 24px;
  padding-bottom: 23px;
  border-bottom: 1px solid #222;
}
.single-voice .voice-entry__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}
.single-voice .voice-entry__age {
  margin-left: 50px;
  font-size: 16px;
  font-weight: 500;
}
.single-voice .voice-entry__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 40px;
}
.single-voice .voice-entry__thumb {
  width: 400px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
}
.single-voice .voice-entry__img {
  width: 100%;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.single-voice .voice-entry__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-left: 96px;
  word-break: break-all;
}
.single-voice .voice-entry__contents p {
  line-height: 2;
  margin-top: -0.5em;
}
.single-voice .stuff-msg {
  margin-top: 52px;
  padding: 30px 30px 22px;
  background-color: #f7f8f8;
}
.single-voice .stuff-msg__title {
  padding-bottom: 22px;
  font-size: 18px;
  border-bottom: 1px solid #222;
}
.single-voice .stuff-msg__body {
  margin-top: 22px;
}
.single-voice .stuff-msg__body p {
  line-height: 2;
}
.single-voice .voice-entry__foot {
  margin-top: 100px;
}

@media screen and (max-width: 1199px) {
  .single-voice .voice-entry {
    margin-top: 50px;
  }
  .single-voice .voice-entry__date {
    font-size: 16px;
  }
  .single-voice .voice-entry__head {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .single-voice .voice-entry__title {
    font-size: 24px;
  }
  .single-voice .voice-entry__age {
    font-size: 14px;
  }
  .single-voice .voice-entry__body {
    margin-top: 30px;
  }
  .single-voice .voice-entry__thumb {
    width: 40%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
  .single-voice .voice-entry__contents {
    margin-left: 60px;
  }
  .single-voice .stuff-msg {
    margin-top: 40px;
    padding: 30px 20px;
  }
  .single-voice .stuff-msg__title {
    padding-bottom: 16px;
    font-size: 16px;
  }
  .single-voice .stuff-msg__body {
    margin-top: 16px;
  }
  .single-voice .voice-entry__foot {
    margin-top: 60px;
  }
}
@media screen and (max-width: 758px) {
  .single-voice .mv-lower {
    background-image: url(img/sp-lower-voice-header-80.jpg);
  }
  .single-voice .voice-entry {
    margin-top: 30px;
  }
  .single-voice .voice-entry__date {
    font-size: 12px;
    font-weight: 600;
  }
  .single-voice .voice-entry__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 16px;
    padding-bottom: 16px;
  }
  .single-voice .voice-entry__title {
    font-size: 22px;
  }
  .single-voice .voice-entry__age {
    margin-left: 0;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 500;
  }
  .single-voice .voice-entry__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 16px;
  }
  .single-voice .voice-entry__thumb {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .single-voice .voice-entry__contents {
    margin-top: 40px;
    margin-left: 0;
  }
  .single-voice .stuff-msg {
    margin-top: 40px;
    padding: 20px;
  }
  .single-voice .stuff-msg__title {
    padding-bottom: 12px;
    font-size: 14px;
  }
  .single-voice .stuff-msg__body {
    margin-top: 12px;
    font-size: 12px;
  }
}
/* ===================================

  お問い合わせ：page-contact

====================================== */
.page-contact .main {
  padding-bottom: 120px;
}
.page-contact .main .container {
  width: 1200px;
}
.page-contact .mv-lower {
  background-image: url(img/lower-contact-header-80.jpg);
}
.page-contact .fm {
  margin-top: 100px;
  font-size: 18px;
}
.page-contact .fm__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 36px;
}
.page-contact .fm__label {
  width: 350px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
}
.page-contact .fm__label label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
.page-contact .fm__label .require,
.page-contact .fm__label .any {
  display: grid;
  place-items: center;
  margin-right: 1em;
  width: 45px;
  height: 22px;
  font-size: 12px;
  color: #fff;
  border-radius: 2px;
}
.page-contact .fm__label .require {
  background-color: #7c0904;
}
.page-contact .fm__label .any {
  background-color: #898989;
}
.page-contact .fm__label .addtext {
  position: absolute;
  top: 27px;
  left: 60px;
  font-size: 15px;
  font-weight: 400;
}
.page-contact .fm__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.page-contact .fm input,
.page-contact .fm textarea {
  outline: none;
  border-radius: 0;
  color: #222;
}
.page-contact .fm input::-webkit-input-placeholder, .page-contact .fm textarea::-webkit-input-placeholder {
  opacity: 0.5;
  font-weight: 400;
}
.page-contact .fm input::-moz-placeholder, .page-contact .fm textarea::-moz-placeholder {
  opacity: 0.5;
  font-weight: 400;
}
.page-contact .fm input:-ms-input-placeholder, .page-contact .fm textarea:-ms-input-placeholder {
  opacity: 0.5;
  font-weight: 400;
}
.page-contact .fm input::-ms-input-placeholder, .page-contact .fm textarea::-ms-input-placeholder {
  opacity: 0.5;
  font-weight: 400;
}
.page-contact .fm input::placeholder,
.page-contact .fm textarea::placeholder {
  opacity: 0.5;
  font-weight: 400;
}
.page-contact .fm input[type=text],
.page-contact .fm input[type=email],
.page-contact .fm input[type=tel],
.page-contact .fm input[type=date],
.page-contact .fm select {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 10px;
  height: 48px;
  width: 100%;
  border: 1px solid #cacaca;
  border-radius: 0;
}
.page-contact .fm .select-wrap {
  position: relative;
}
.page-contact .fm .select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 6px;
  border-top: 10px solid #222;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  z-index: 1;
  pointer-events: none;
}
.page-contact .fm option {
  color: #222;
}
.page-contact .fm textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border: 1px solid #cacaca;
}
.page-contact .fm .wpcf7-list-item {
  margin-right: 18px;
}
.page-contact .fm .textarea-group {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-contact .fm .textarea-group .fm__label {
  padding-top: 12px;
}
.page-contact .fm .textarea-group textarea {
  height: 272px;
  padding: 10px;
}
.page-contact .pp {
  margin-top: 40px;
  padding: 28px 30px 30px;
  line-height: 1.33;
  background-color: #f7f8f8;
}
.page-contact .pp__box {
  overflow-y: scroll;
  margin-top: 20px;
  padding: 20px 20px 60px;
  height: 200px;
  background-color: #fff;
}
.page-contact .pp__box .privacy > *:first-child {
  margin-top: 0;
}
.page-contact .pp__box .privacy h2 {
  margin-top: 1.5em;
  font-size: 20px;
}
.page-contact .pp__box .privacy p {
  margin-top: 1em;
  line-height: 1.5;
}
.page-contact .pp__box .privacy ul,
.page-contact .pp__box .privacy ol {
  padding-left: 1.5em;
  list-style: disc;
  margin-top: 1em;
}
.page-contact .pp__box .privacy ul li,
.page-contact .pp__box .privacy ol li {
  line-height: 1.5;
}
.page-contact .pp__box .privacy ul li + li,
.page-contact .pp__box .privacy ol li + li {
  margin-top: 0.2em;
}
.page-contact .pp__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 28px;
}
.page-contact input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: grid;
  place-items: center;
  margin: 50px auto 0;
  width: 300px;
  height: 66px;
  border: 2px solid #d7ff21;
  background-color: #d7ff21;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 700;
}
.page-contact input[type=submit]:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1199px) {
  .page-contact .main {
    padding-bottom: 60px;
  }
  .page-contact .main .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-contact .fm {
    margin-top: 60px;
    font-size: 14px;
  }
  .page-contact .fm__group {
    margin-bottom: 30px;
  }
  .page-contact .fm__label {
    width: 200px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }
  .page-contact .fm__label .require,
  .page-contact .fm__label .any {
    width: 40px;
    height: 20px;
    font-size: 10px;
  }
  .page-contact .fm__label .addtext {
    top: 25px;
    left: 50px;
    font-size: 12px;
  }
  .page-contact .fm input[type=text],
  .page-contact .fm input[type=email],
  .page-contact .fm input[type=tel],
  .page-contact .fm input[type=date],
  .page-contact .fm select {
    height: 40px;
    max-width: 600px;
  }
  .page-contact .fm label input[type=checkbox] {
    position: relative;
    top: 1px;
  }
  .page-contact .fm .select-wrap {
    max-width: 600px;
  }
  .page-contact .fm .select-wrap select {
    color: inherit;
  }
  .page-contact .fm .select-wrap::after {
    right: 18px;
    width: 8px;
    height: 5px;
    border-top: 8px solid #222;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
  }
  .page-contact .fm .wpcf7-list-item {
    margin-right: 15px;
  }
  .page-contact .fm .textarea-group .fm__label {
    padding-top: 6px;
  }
  .page-contact .fm .textarea-group textarea {
    height: 230px;
  }
  .page-contact .fm .pp__box .privacy h2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .page-contact .main {
    padding-bottom: 50px;
  }
  .page-contact .main .container {
    padding: 0 15px;
  }
  .page-contact .mv-lower {
    background-image: url(img/sp-lower-contact-header-80.jpg);
  }
  .page-contact .fm {
    margin-top: 40px;
  }
  .page-contact .fm__group {
    display: block;
    margin-bottom: 15px;
  }
  .page-contact .fm__label {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .page-contact .fm__label label {
    font-weight: 400;
  }
  .page-contact .fm__label .require,
  .page-contact .fm__label .any {
    width: 30px;
    height: 15px;
    font-size: 10px;
    margin-right: 15px;
    border-radius: 8px;
  }
  .page-contact .fm__label .addtext {
    position: relative;
    top: auto;
    left: auto;
    margin-left: 24px;
    font-size: 12px;
  }
  .page-contact .fm__input {
    margin-top: 10px;
  }
  .page-contact .fm input[type=text],
  .page-contact .fm input[type=email],
  .page-contact .fm input[type=tel],
  .page-contact .fm input[type=date],
  .page-contact .fm select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    height: 40px;
  }
  .page-contact .fm input[type=text]::-webkit-input-placeholder, .page-contact .fm input[type=email]::-webkit-input-placeholder, .page-contact .fm input[type=tel]::-webkit-input-placeholder, .page-contact .fm input[type=date]::-webkit-input-placeholder, .page-contact .fm select::-webkit-input-placeholder {
    opacity: 0.75;
  }
  .page-contact .fm input[type=text]::-moz-placeholder, .page-contact .fm input[type=email]::-moz-placeholder, .page-contact .fm input[type=tel]::-moz-placeholder, .page-contact .fm input[type=date]::-moz-placeholder, .page-contact .fm select::-moz-placeholder {
    opacity: 0.75;
  }
  .page-contact .fm input[type=text]:-ms-input-placeholder, .page-contact .fm input[type=email]:-ms-input-placeholder, .page-contact .fm input[type=tel]:-ms-input-placeholder, .page-contact .fm input[type=date]:-ms-input-placeholder, .page-contact .fm select:-ms-input-placeholder {
    opacity: 0.75;
  }
  .page-contact .fm input[type=text]::-ms-input-placeholder, .page-contact .fm input[type=email]::-ms-input-placeholder, .page-contact .fm input[type=tel]::-ms-input-placeholder, .page-contact .fm input[type=date]::-ms-input-placeholder, .page-contact .fm select::-ms-input-placeholder {
    opacity: 0.75;
  }
  .page-contact .fm input[type=text]::placeholder,
  .page-contact .fm input[type=email]::placeholder,
  .page-contact .fm input[type=tel]::placeholder,
  .page-contact .fm input[type=date]::placeholder,
  .page-contact .fm select::placeholder {
    opacity: 0.75;
  }
  .page-contact .fm .small {
    font-size: 12px;
  }
  .page-contact .fm .wpcf7-form-control-wrap.wpcf7-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page-contact .fm .wpcf7-list-item {
    display: inline-block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
    width: 49%;
    margin-right: 0;
  }
  .page-contact .fm .wpcf7-list-item:nth-child(n+3) {
    margin-top: 15px;
  }
  .page-contact .fm .textarea-group .fm__label {
    padding-top: 0;
  }
  .page-contact .fm .textarea-group textarea {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    height: 120px;
  }
  .page-contact .pp {
    margin-top: 22px;
    padding: 16px 16px 27px;
    font-size: 12px;
  }
  .page-contact .pp__box {
    margin-top: 15px;
    padding: 10px 10px 30px;
    height: 180px;
  }
  .page-contact .pp__box .privacy h2 {
    font-size: 14px;
  }
  .page-contact .pp__box .privacy p {
    margin-top: 0.5em;
  }
  .page-contact .pp__btn {
    margin-top: 17px;
  }
  .page-contact .pp__btn .wpcf7-list-item {
    width: 100%;
  }
  .page-contact .pp__btn .wpcf7-list-item-label {
    position: relative;
    top: -1px;
  }
  .page-contact input[type=submit] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    margin: 28px auto 0;
    width: 80%;
    height: 50px;
    font-size: 16px;
  }
}
/* ===================================

  プライバシーポリシー：page-privacy

====================================== */
.page-privacy .main {
  padding-bottom: 120px;
}
.page-privacy .main .container {
  width: 1000px;
}
.page-privacy .mv-lower {
  background-image: url(img/lower-privacy-header-80.jpg);
}
.page-privacy .privacy > *:first-child {
  margin-top: 0;
}
.page-privacy .privacy img {
  width: 100%;
}
.page-privacy .privacy p {
  margin-top: 20px;
  line-height: 2;
}
.page-privacy .privacy h2 {
  position: relative;
  margin-top: 45px;
  padding-bottom: 10px;
  font-size: 28px;
  line-height: 1.3;
}
.page-privacy .privacy h2::before, .page-privacy .privacy h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
}
.page-privacy .privacy h2::before {
  width: 25%;
  z-index: 1;
  background-color: #222;
}
.page-privacy .privacy h2::after {
  width: 100%;
  background-color: #cdcdcd;
}
.page-privacy .privacy ol,
.page-privacy .privacy ul {
  margin-top: 24px;
}
.page-privacy .privacy li {
  line-height: 2;
}
.page-privacy .privacy ul {
  padding-left: 1.1em;
}
.page-privacy .privacy ul li {
  text-indent: -1em;
}
.page-privacy .privacy ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  margin-right: 5px;
  width: 12px;
  height: 12px;
  background-color: #d7ff21;
  border-radius: 50%;
}
.page-privacy .privacy ol {
  counter-reset: num;
  list-style-type: none;
  padding: 0;
  margin-left: -3px;
}
.page-privacy .privacy ol li {
  position: relative;
  line-height: 2;
  padding: 0.5em 0.5em 0.5em 30px;
}
.page-privacy .privacy ol li::before {
  content: counter(num);
  counter-increment: num;
  position: absolute;
  left: 0;
  top: 14px;
  display: inline-block;
  padding-left: 1px;
  width: 20px;
  height: 20px;
  background-color: #d7ff21;
  color: #222;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .page-privacy .main {
    padding-bottom: 120px;
  }
  .page-privacy .main .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-privacy .privacy p {
    margin-top: 20px;
  }
  .page-privacy .privacy h2 {
    margin-top: 40px;
    font-size: 25px;
  }
  .page-privacy .privacy h3 {
    margin-top: 45px;
    font-size: 21px;
  }
  .page-privacy .privacy h4 {
    margin-top: 45px;
    font-size: 19px;
  }
  .page-privacy .privacy h5 {
    margin-top: 35px;
    font-size: 17px;
  }
  .page-privacy .privacy h6 {
    margin-top: 35px;
    font-size: 15px;
  }
  .page-privacy .privacy ol,
  .page-privacy .privacy ul {
    margin-top: 24px;
  }
  .page-privacy .privacy li {
    line-height: 2;
  }
  .page-privacy .privacy ul {
    padding-left: 1.1em;
  }
  .page-privacy .privacy ul li {
    text-indent: -1.2em;
  }
  .page-privacy .privacy ol {
    margin-left: -3px;
  }
  .page-privacy .privacy ol li {
    padding-left: 23px;
  }
  .page-privacy .privacy ol li::before {
    top: 13px;
    padding-left: 1px;
    width: 16px;
    height: 16px;
    font-size: 11px;
    line-height: 16px;
  }
}
@media screen and (max-width: 758px) {
  .page-privacy .main {
    padding-bottom: 120px;
  }
  .page-privacy .main .container {
    padding: 0 15px;
  }
  .page-privacy .mv-lower {
    background-image: url(img/sp-lower-privacy-header-80.jpg);
  }
  .page-privacy .privacy h2 {
    margin-top: 30px;
    padding-bottom: 8px;
    font-size: 21px;
  }
  .page-privacy .privacy h3 {
    margin-top: 35px;
    font-size: 18px;
  }
  .page-privacy .privacy h4 {
    margin-top: 30px;
    font-size: 16px;
  }
  .page-privacy .privacy h5 {
    margin-top: 25px;
    font-size: 14px;
  }
  .page-privacy .privacy h6 {
    margin-top: 25px;
    font-size: 13px;
  }
  .page-privacy .privacy ol,
  .page-privacy .privacy ul {
    margin-top: 20px;
  }
  .page-privacy .privacy ul li {
    text-indent: -1.2em;
  }
  .page-privacy .privacy ul li::before {
    margin-right: 5px;
    width: 10px;
    height: 10px;
  }
  .page-privacy .privacy ol {
    margin-left: -3px;
  }
  .page-privacy .privacy ol li {
    padding-left: 20px;
  }
  .page-privacy .privacy ol li::before {
    top: 11px;
    padding-left: 0;
    width: 14px;
    height: 14px;
    font-size: 10px;
    line-height: 14px;
  }
}
/* ===================================

  サンクスページ：page-thanks

====================================== */
.page-thanks .main {
  padding-bottom: 120px;
}
.page-thanks .main .container {
  width: 1000px;
}
.page-thanks .thanks__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.33;
  text-align: center;
}
.page-thanks .thanks__text {
  margin-top: 30px;
  line-height: 2;
  text-align: center;
}
.page-thanks .morebtn {
  margin-top: 64px;
  text-align: center;
}
.page-thanks .morebtn__link {
  font-size: 20px;
  font-weight: 700;
  text-decoration: underline;
}
.page-thanks .morebtn__text {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1199px) {
  .page-thanks .main .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-thanks .thanks__title {
    font-size: 24px;
  }
  .page-thanks .morebtn {
    margin-top: 60px;
  }
  .page-thanks .morebtn__link {
    font-size: 18px;
  }
}
@media screen and (max-width: 758px) {
  .page-thanks .main .container {
    width: 100%;
    padding: 0 15px;
  }
  .page-thanks .thanks__title {
    font-size: 20px;
  }
  .page-thanks .morebtn {
    margin-top: 60px;
  }
  .page-thanks .morebtn__link {
    font-size: 14px;
  }
}
/* ===================================

  インストラクター紹介: page-staff

====================================== */
.page-instructor .mv-lower {
  background-image: url(img/page-stuff-mv-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.page-instructor .main {
  padding-bottom: 120px;
}
.page-instructor .main .container {
  width: 1200px;
}
.page-instructor .concept {
  position: relative;
}
.page-instructor .concept .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-instructor .concept__img {
  width: 980px;
}
.page-instructor .concept__img img {
  display: block;
  width: 100%;
}
.page-instructor .concept__contents {
  position: relative;
  width: 630px;
  padding: 60px 60px 90px;
  background-color: #fff;
  z-index: 1;
  margin-top: 90px;
  margin-left: -410px;
}
.page-instructor .concept__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 500;
}
.page-instructor .concept__title::before {
  content: "";
  display: block;
  margin-right: 10px;
  width: 30px;
  height: 1px;
  background-color: #222;
}
.page-instructor .concept__copy {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}
.page-instructor .concept__text {
  margin-top: 28px;
  line-height: 2;
}
.page-instructor .section-title {
  text-align: center;
}
.page-instructor .section-title__text {
  margin-top: 12px;
  text-align: center;
}
.page-instructor .inst {
  margin-top: 100px;
}
.page-instructor .items {
  margin-top: 80px;
}
.page-instructor .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 50px;
}
.page-instructor .item + .item {
  margin-top: 100px;
}
.page-instructor .item__img {
  width: 530px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 530px;
          flex: 0 0 530px;
}
.page-instructor .item__img img {
  width: 100%;
}
.page-instructor .item__contents {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 17px 0 0 70px;
}
.page-instructor .item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page-instructor .item:nth-child(2n) .item__contents {
  padding: 17px 70px 0 0;
}
.page-instructor .item__copy {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
}
.page-instructor .item__name {
  margin-top: 48px;
  padding-bottom: 24px;
  font-size: 42px;
  font-weight: 700;
  border-bottom: 1px solid #222;
}
.page-instructor .item__name span {
  position: relative;
  top: -6px;
  margin-left: 50px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.page-instructor .item__branch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  font-weight: 500;
}
.page-instructor .item__branch-title {
  display: grid;
  place-items: center;
  width: 100px;
  height: 35px;
  background-color: #222;
  color: #fff;
}
.page-instructor .item__branch-name {
  margin-left: 34px;
}
.page-instructor .item__license {
  margin-top: 30px;
}
.page-instructor .item__license li {
  text-indent: -1.25em;
  padding-left: 1.2em;
  line-height: 1.3;
}
.page-instructor .item__license li + li {
  margin-top: 15px;
}
.page-instructor .item__license li::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 10px;
  height: 10px;
  background-color: #222;
  border-radius: 50%;
}
.page-instructor .item__text {
  margin-top: 34px;
}
.page-instructor .item__text h4 {
  font-weight: 500;
  background-color: #d7ff21;
  text-align: center;
  line-height: 35px;
}
.page-instructor .item__text p {
  margin-top: 19px;
  line-height: 2;
}

@media screen and (max-width: 1199px) {
  .page-instructor .mv-lower {
    background-position: -170px center;
  }
  .page-instructor .main {
    padding-bottom: 60px;
  }
  .page-instructor .main .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-instructor .concept {
    margin-top: 60px;
  }
  .page-instructor .concept .container {
    display: block;
  }
  .page-instructor .concept__img {
    width: 100%;
  }
  .page-instructor .concept__img img {
    max-width: auto;
    width: 100%;
  }
  .page-instructor .concept__contents {
    width: 100%;
    padding: 40px 0 0;
    background-color: transparent;
    margin-top: 0;
    margin-left: 0;
  }
  .page-instructor .concept__title {
    font-size: 18px;
  }
  .page-instructor .concept__title::before {
    margin-right: 15px;
  }
  .page-instructor .concept__copy {
    font-size: 28px;
  }
  .page-instructor .concept__text {
    margin-top: 30px;
  }
  .page-instructor .section-title__text {
    margin-top: 14px;
  }
  .page-instructor .inst {
    margin-top: 80px;
  }
  .page-instructor .items {
    margin-top: 40px;
  }
  .page-instructor .item {
    padding: 0;
  }
  .page-instructor .item + .item {
    margin-top: 60px;
  }
  .page-instructor .item__img {
    width: 45%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
  .page-instructor .item__contents {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    padding: 0 0 0 30px;
  }
  .page-instructor .item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .page-instructor .item:nth-child(2n) .item__contents {
    padding: 0 30px 0 0;
  }
  .page-instructor .item__copy {
    font-size: 20px;
  }
  .page-instructor .item__name {
    margin-top: 30px;
    padding-bottom: 15px;
    font-size: 30px;
  }
  .page-instructor .item__name span {
    top: -4px;
    margin-left: 30px;
    font-size: 16px;
  }
  .page-instructor .item__branch {
    margin-top: 20px;
  }
  .page-instructor .item__branch-title {
    width: 65px;
    height: 25px;
    font-size: 12px;
  }
  .page-instructor .item__branch-name {
    margin-left: 24px;
  }
  .page-instructor .item__license {
    margin-top: 20px;
  }
  .page-instructor .item__license li + li {
    margin-top: 14px;
  }
  .page-instructor .item__text {
    margin-top: 30px;
  }
  .page-instructor .item__text h4 {
    line-height: 30px;
  }
  .page-instructor .item__text p {
    margin-top: 15px;
  }
  .page-instructor .reservation .container {
    padding: 60px 30px 60px;
  }
}
@media screen and (max-width: 758px) {
  .page-instructor .mv-lower {
    background-image: url(img/sp-page-stuff-mv-80.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .page-instructor .main {
    padding-bottom: 50px;
  }
  .page-instructor .main .container {
    width: 100%;
    padding: 0 15px;
  }
  .page-instructor .concept {
    margin-top: 50px;
  }
  .page-instructor .concept .inner {
    padding: 0;
  }
  .page-instructor .concept__contents {
    padding: 32px 0 0;
  }
  .page-instructor .concept__title {
    font-size: 12px;
  }
  .page-instructor .concept__title::before {
    width: 23px;
    margin-right: 8px;
  }
  .page-instructor .concept__copy {
    font-size: 24px;
    line-height: 1.75;
  }
  .page-instructor .concept__text {
    margin-top: 17px;
  }
  .page-instructor .section-title__text {
    margin-top: 14px;
  }
  .page-instructor .inst {
    margin-top: 50px;
  }
  .page-instructor .items {
    margin-top: 30px;
  }
  .page-instructor .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .page-instructor .item + .item {
    margin-top: 60px;
  }
  .page-instructor .item__img {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .page-instructor .item__contents {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0;
    margin-top: 20px;
  }
  .page-instructor .item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-instructor .item:nth-child(2n) .item__contents {
    padding: 0;
  }
  .page-instructor .item__copy {
    font-size: 18px;
  }
  .page-instructor .item__name {
    margin-top: 24px;
    padding-bottom: 12px;
    font-size: 32px;
  }
  .page-instructor .item__name span {
    display: block;
    top: 0;
    margin-left: 0;
    margin-top: 10px;
    font-size: 16px;
  }
  .page-instructor .item__branch {
    margin-top: 14px;
  }
  .page-instructor .item__branch-title {
    width: 60px;
    height: 24px;
    font-size: 11px;
  }
  .page-instructor .item__branch-name {
    margin-left: 20px;
  }
  .page-instructor .item__license {
    margin-top: 20px;
  }
  .page-instructor .item__license li + li {
    margin-top: 12px;
  }
  .page-instructor .item__license li::before {
    width: 8px;
    height: 8px;
    margin-right: 6px;
  }
  .page-instructor .item__text {
    margin-top: 20px;
  }
  .page-instructor .item__text h4 {
    line-height: 28px;
  }
  .page-instructor .item__text p {
    margin-top: 10px;
  }
  .page-instructor .reservation {
    margin-top: 50px;
  }
  .page-instructor .reservation .container {
    padding: 40px 15px 38px;
  }
}
/* ===================================

  店舗一覧：page-shop

====================================== */
.page-studio .mv-lower {
  background-image: url(img/page-shop-mv-80.jpg);
}
.page-studio .shop {
  width: 100%;
  padding-bottom: 40px;
}
.page-studio .shop__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1100px;
  margin: 0 auto;
}
.page-studio .shop + .shop {
  padding-top: 120px;
}
.page-studio .shop:nth-child(2) {
  background-color: #f7f8f8;
}
.page-studio .shop:nth-child(2) .shop__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page-studio .shop:last-child {
  padding-bottom: 0;
}
.page-studio .shop__thumbs {
  width: 670px;
}
.page-studio .shop__thumb {
  width: 100%;
}
.page-studio .shop__thumbs-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
.page-studio .shop__thumb-bottom {
  width: 325px;
}
.page-studio .shop__body {
  width: 360px;
}
.page-studio .shop__body-head {
  position: relative;
  padding-bottom: 30px;
}
.page-studio .shop__body-head:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  background-color: #222;
}
.page-studio .shop__name {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 64px;
  font-weight: 700;
}
.page-studio .shop__branch {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
}
.page-studio .shop__tel {
  display: block;
  margin-top: 26px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 36px;
  font-weight: 600;
}
.page-studio .shop__tel:hover {
  cursor: auto;
  opacity: 1;
}
.page-studio .shop__address {
  margin-top: 22px;
}
.page-studio .shop__googlemap {
  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: 40px;
  width: 230px;
  height: 50px;
  font-size: 14px;
  border: 1px solid #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-studio .shop__googlemap:hover {
  background-color: #222;
  color: #fff;
  opacity: 1;
}

@media screen and (max-width: 1199px) {
  .page-studio .shop {
    padding-bottom: 60px;
  }
  .page-studio .shop__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    width: 100%;
    padding: 0 30px;
  }
  .page-studio .shop + .shop {
    padding-top: 80px;
  }
  .page-studio .shop:nth-child(2) .shop__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .page-studio .shop__thumbs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
    width: 55%;
  }
  .page-studio .shop__thumbs-bottom {
    margin-top: 16px;
  }
  .page-studio .shop__thumb-bottom {
    width: 48.5%;
  }
  .page-studio .shop__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41%;
            flex: 0 0 41%;
    width: 41%;
    margin-left: 4%;
  }
  .page-studio .shop__body-head {
    padding-bottom: 20px;
  }
  .page-studio .shop__body-head:after {
    width: 36px;
  }
  .page-studio .shop__name {
    font-size: 50px;
  }
  .page-studio .shop__branch {
    margin-top: 16px;
    font-size: 20px;
  }
  .page-studio .shop__tel {
    margin-top: 24px;
    font-size: 30px;
  }
  .page-studio .shop__address {
    margin-top: 20px;
  }
  .page-studio .shop__googlemap {
    margin-top: 40px;
    width: 200px;
    height: 45px;
    font-size: 13px;
  }
}
@media screen and (max-width: 758px) {
  .page-studio .mv-lower {
    background-image: url(img/sp-page-shop-mv-80.jpg);
  }
  .page-studio .page__contents {
    padding-bottom: 50px;
  }
  .page-studio .shop {
    padding-bottom: 40px;
  }
  .page-studio .shop__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    padding: 0 15px;
  }
  .page-studio .shop + .shop {
    padding-top: 50px;
  }
  .page-studio .shop:nth-child(2) .shop__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .page-studio .shop__thumbs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .page-studio .shop__thumbs-bottom {
    margin-top: 10px;
  }
  .page-studio .shop__thumb-bottom {
    width: 49%;
  }
  .page-studio .shop__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .page-studio .shop__body-head {
    padding-bottom: 15px;
  }
  .page-studio .shop__body-head:after {
    width: 30px;
  }
  .page-studio .shop__name {
    font-size: 36px;
  }
  .page-studio .shop__branch {
    margin-top: 10px;
    font-size: 14px;
  }
  .page-studio .shop__tel {
    margin-top: 20px;
    font-size: 26px;
  }
  .page-studio .shop__address {
    margin-top: 20px;
  }
  .page-studio .shop__googlemap {
    margin-top: 20px;
    width: 200px;
    height: 45px;
    font-size: 13px;
  }
}
/* ===================================

  About：page-about

====================================== */
/* ---------------------------------
  MV
----------------------------------- */
.page-about .mv-lower {
  background-image: url(img/page-about-mv-80.jpg);
}

@media screen and (max-width: 758px) {
  .page-about .mv-lower {
    background-image: url(img/sp-page-about-mv-80.jpg);
  }
}
/* ---------------------------------
  achieve
----------------------------------- */
.page-about .achieve {
  position: relative;
  margin-top: 95px;
}
.page-about .achieve .container {
  width: 1200px;
}
.page-about .achieve .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-about .achieve__img {
  width: 980px;
}
.page-about .achieve__img img {
  display: block;
  width: 100%;
}
.page-about .achieve__contents {
  position: relative;
  width: 960px;
  min-height: 280px;
  padding: 51px 60px 60px;
  background-color: #fff;
  z-index: 1;
  margin-top: 340px;
  margin-left: -740px;
}
.page-about .achieve__copy {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}
.page-about .achieve__text {
  margin-top: 35px;
  line-height: 2;
}

@media screen and (max-width: 1199px) {
  .page-about .achieve {
    margin-top: 60px;
  }
  .page-about .achieve .container {
    display: block;
    width: 100%;
    padding: 0 30px;
  }
  .page-about .achieve__bg {
    display: none;
  }
  .page-about .achieve__img {
    width: 100%;
  }
  .page-about .achieve__img img {
    max-width: auto;
    width: 100%;
  }
  .page-about .achieve__contents {
    width: 100%;
    min-height: auto;
    padding: 0;
    background-color: transparent;
    margin-top: 0;
    margin-left: 0;
  }
  .page-about .achieve__copy {
    margin-top: 40px;
    font-size: 28px;
  }
  .page-about .achieve__text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 758px) {
  .page-about .achieve {
    margin-top: 50px;
  }
  .page-about .achieve .container {
    padding: 0 15px;
  }
  .page-about .achieve__contents {
    padding: 0;
  }
  .page-about .achieve__copy {
    margin-top: 20px;
    font-size: 24px;
    line-height: 1.75;
  }
  .page-about .achieve__text {
    margin-top: 17px;
  }
}
/* ---------------------------------
  about-imgs
----------------------------------- */
.page-about .about-imgs {
  margin-top: 110px;
}
.page-about .about-imgs .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 1200px;
}
.page-about .about-img {
  width: 380px;
}

@media screen and (max-width: 1199px) {
  .page-about .about-imgs {
    margin-top: 60px;
  }
  .page-about .about-imgs .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-about .about-img {
    width: 33%;
  }
}
@media screen and (max-width: 758px) {
  .page-about .about-imgs {
    margin-top: 40px;
  }
  .page-about .about-imgs .container {
    width: 100%;
    padding: 0 15px;
  }
  .page-about .about-img {
    width: 32.5%;
  }
}
/* ---------------------------------
  msg
----------------------------------- */
.page-about .section-title {
  text-align: center;
}
.page-about .section-subtitle {
  margin-top: 15px;
  font-weight: 300;
  text-align: center;
}
.page-about .msg {
  margin-top: 100px;
  padding: 140px 0 90px;
  background-color: #f7f8f8;
}
.page-about .msg .container {
  width: 1100px;
}
.page-about .msg__contents {
  margin-top: 35px;
  padding: 62px 50px 50px;
  background-color: #fff;
}
.page-about .msg__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
}
.page-about .msg__text {
  margin-top: 48px;
  line-height: 2;
}
.page-about .msg__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 65px;
}
.page-about .msg__position {
  position: relative;
  top: 13px;
  font-weight: 700;
}
.page-about .msg__name {
  width: 253px;
  margin-left: 43px;
}

@media screen and (max-width: 1199px) {
  .page-about .section-subtitle {
    margin-top: 14px;
  }
  .page-about .msg {
    margin-top: 80px;
    padding: 80px 0;
    background-color: #f7f8f8;
  }
  .page-about .msg .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-about .msg__contents {
    margin-top: 50px;
    padding: 50px 30px;
  }
  .page-about .msg__title {
    font-size: 26px;
  }
  .page-about .msg__text {
    margin-top: 30px;
  }
  .page-about .msg__foot {
    margin-top: 50px;
  }
  .page-about .msg__position {
    top: 6px;
  }
  .page-about .msg__name {
    width: 200px;
    margin-left: 25px;
  }
}
@media screen and (max-width: 758px) {
  .page-about .section-subtitle {
    margin-top: 12px;
  }
  .page-about .msg {
    margin-top: 50px;
    padding: 50px 0;
  }
  .page-about .msg .container {
    width: 100%;
    padding: 0 15px;
  }
  .page-about .msg__contents {
    margin-top: 30px;
    padding: 40px 20px;
  }
  .page-about .msg__title {
    font-size: 20px;
  }
  .page-about .msg__text {
    margin-top: 20px;
  }
  .page-about .msg__foot {
    margin-top: 40px;
  }
  .page-about .msg__position {
    font-size: 11px;
  }
  .page-about .msg__name {
    width: 150px;
    margin-left: 20px;
  }
}
/* ---------------------------------
  company
----------------------------------- */
.page-about .company {
  margin-top: 140px;
}
.page-about .company .container {
  width: 900px;
}
.page-about .company__contents {
  margin-top: 80px;
}
.page-about .company__contents dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #c9caca;
}
.page-about .company__contents dl:last-child {
  border-bottom: 1px solid #c9caca;
}
.page-about .company__contents dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  padding: 44px 0 40px;
  width: 300px;
  background-color: #f7f8f8;
  font-weight: 700;
  text-align: center;
}
.page-about .company__contents dd {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 44px 0 40px 50px;
}
.page-about .company__contents dd p + p {
  margin-top: 1em;
}
.page-about .company__contents dd a {
  cursor: auto;
}
.page-about .company__contents dd a:hover {
  opacity: 1;
}

@media screen and (max-width: 1199px) {
  .page-about .company {
    margin-top: 80px;
  }
  .page-about .company .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-about .company__contents {
    margin-top: 50px;
  }
  .page-about .company__contents dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    width: 30%;
    padding: 30px 0 28px;
  }
  .page-about .company__contents dd {
    padding: 30px 0 28px 50px;
  }
}
@media screen and (max-width: 758px) {
  .page-about .company {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .page-about .company .container {
    width: 100%;
    padding: 0 15px;
  }
  .page-about .company__contents {
    margin-top: 30px;
  }
  .page-about .company__contents dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-about .company__contents dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding: 20px 0 18px 15px;
    text-align: left;
  }
  .page-about .company__contents dd {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 25px 0 23px 15px;
  }
}
.page-about .service {
  margin-bottom: 120px;
}

@media screen and (max-width: 1199px) {
  .page-about .service {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 758px) {
  .page-about .service {
    margin-bottom: 50px;
  }
}
/* ===================================

  料金一覧：page-price

====================================== */
/* ---------------------------------
  MV
----------------------------------- */
.page-price .mv-lower {
  background-image: url(img/page-price-mv-80.jpg);
}

@media screen and (max-width: 758px) {
  .page-price .mv-lower {
    background-image: url(img/sp-page-price-mv-80.jpg);
  }
}
/* ---------------------------------
  パーソナルトレーニング
----------------------------------- */
.page-price .price-top {
  padding-top: 120px;
}
.page-price .price-top .section-title {
  text-align: center;
}
.page-price .price-top-header {
  margin-top: 80px;
}
.page-price .price-top-header__bg {
  height: 780px;
  background-image: url(img/price-header-80.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.page-price .price-top-header__inner {
  position: relative;
  width: 1150px;
  height: 100%;
  margin: 0 auto;
  z-index: 1;
}
.page-price .price-top-header__contents {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 45px 60px 80px;
  width: 550px;
  background-color: #fff;
}
.page-price .price-top-header__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.75;
}
.page-price .price-top-header__subtitle {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
}
.page-price .price-top-header__text {
  margin-top: 10px;
  line-height: 2;
}
.page-price .price-top-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}
.page-price .price-top-header ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-price .price-top-header ul li:nth-child(n+3) {
  margin-top: 16px;
}
.page-price .price-top-header ul li:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  position: relative;
}
.page-price .price-top-header ul li:last-child span {
  position: absolute;
  top: 25px;
  left: 30px;
}
.page-price .price-top-header ul li img {
  width: 20px;
  margin-right: 10px;
}
.page-price .price-top__body {
  margin-top: 120px;
}
.page-price .price-top__body .container {
  width: 980px;
}
.page-price .price-top__body .adm-fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 120px;
}
.page-price .price-top__body .adm-fee__title {
  display: grid;
  place-items: center;
  width: 325px;
  background-color: #222;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}
.page-price .price-top__body .adm-fee__price {
  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;
  width: calc(100% - 325px);
  font-size: 72px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
  border-top: 1px solid #c9caca;
  border-right: 1px solid #c9caca;
  border-bottom: 1px solid #c9caca;
}
.page-price .price-top__body .adm-fee__price span {
  position: relative;
  top: 5px;
  margin-left: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 500;
}
.page-price .price-top__body .cl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
.page-price .price-top__body .cl__title {
  padding-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #222;
}
.page-price .price-top__body .cl__copy {
  margin-top: 22px;
  font-size: 55px;
  font-weight: 700;
  font-family: futura-pt, "Futura PT", "Noto Sans JP", sans-serif;
  text-align: center;
}
.page-price .price-top__body .cl__copy.lesson__text {
  font-size: 72px;
  font-weight: 600;
  margin-top: 10px;
}
.page-price .price-top__body .cl__copy span {
  margin-left: 5px;
  font-size: 36px;
  font-weight: 500;
}
.page-price .price-top__body .cl__text {
  padding: 0 48px;
  margin-top: 18px;
  line-height: 1.5;
}
.page-price .price-top__body .counseling,
.page-price .price-top__body .lesson {
  padding: 40px 40px 36px;
  width: 480px;
  background-color: #f7f8f8;
}
.page-price .price-top__body .lesson .cl__text {
  margin-top: 12px;
}
.page-price .price-top .ticket {
  margin-top: 120px;
}
.page-price .price-top .ticket__head {
  text-align: center;
}
.page-price .price-top .ticket__title {
  padding-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  border-bottom: 4px solid #222;
}
.page-price .price-top .ticket__desc {
  margin-top: 37px;
}
.page-price .price-top .ticket__body {
  margin-top: 50px;
}
.page-price .price-top .ticket .price-table {
  width: 100%;
}
.page-price .price-top .ticket .price-table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-price .price-top .ticket .price-table dl > *:first-child {
  width: 140px;
  background-color: #222;
}
.page-price .price-top .ticket .price-table dt,
.page-price .price-top .ticket .price-table dd {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-price .price-top .ticket .price-table .thead {
  color: #fff;
  border-bottom: 1px solid #c9caca;
}
.page-price .price-top .ticket .price-table .thead dt {
  font-size: 30px;
  font-weight: 500;
}
.page-price .price-top .ticket .price-table .thead dt,
.page-price .price-top .ticket .price-table .thead dd {
  height: 180px;
  text-align: center;
}
.page-price .price-top .ticket .price-table .thead dd {
  padding: 0 30px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
  border-left: 1px solid #c9caca;
}
.page-price .price-top .ticket .price-table .thead dl > *:nth-child(2) {
  width: 420px;
  background-color: rgb(76, 88, 111);
}
.page-price .price-top .ticket .price-table .thead dl > *:nth-child(3) {
  width: 420px;
  background-color: rgba(76, 88, 111, 0.7);
}
.page-price .price-top .ticket .price-table .thead .menu {
  font-size: 46px;
}
.page-price .price-top .ticket .price-table .thead .menu-jp {
  position: relative;
  padding-bottom: 11px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  border-bottom: 1px solid #fff;
  font-weight: 500;
}
.page-price .price-top .ticket .price-table .thead .menu-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}
.page-price .price-top .ticket .price-table .thead .menu-price p {
  font-size: 48px;
}
.page-price .price-top .ticket .price-table .thead .menu-price p span {
  margin-left: 3px;
  font-size: 30px;
  font-weight: 500;
}
.page-price .price-top .ticket .price-table .thead .menu-price p + p {
  margin-left: 30px;
}
.page-price .price-top .ticket .price-table .tbody dl {
  height: 120px;
  border-right: 1px solid #c9caca;
  border-bottom: 1px solid #c9caca;
}
.page-price .price-top .ticket .price-table .tbody dt,
.page-price .price-top .ticket .price-table .tbody dd {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.page-price .price-top .ticket .price-table .tbody dt {
  color: #fff;
}
.page-price .price-top .ticket .price-table .tbody dt .discount {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #d7ff21;
}
.page-price .price-top .ticket .price-table .tbody dd {
  width: 420px;
}
.page-price .price-top .ticket .price-table .tbody dd + dd {
  border-left: 1px solid #c9caca;
}
.page-price .price-top .ticket .price-table .tbody dd .onetime {
  margin-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #bd191c;
}
.page-price .price-top .ticket .price-table .tbody .inner {
  font-size: 48px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
}
.page-price .price-top .ticket .price-table .tbody .inner span {
  margin-left: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 400;
}
.page-price .price-top .ticket .price-table .tbody dd .inner span {
  margin-left: 8px;
}
.page-price .price-top .focus {
  margin-top: 50px;
}
.page-price .price-top .focus__head {
  padding: 25px 0 16px;
  background-color: #222;
  color: #fff;
  text-align: center;
}
.page-price .price-top .focus__title {
  font-size: 46px;
  font-weight: 500;
}
.page-price .price-top .focus__desc {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
}
.page-price .price-top .focus__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #c9caca;
}
.page-price .price-top .focus__body-30, .page-price .price-top .focus__body-60 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-price .price-top .focus__body-60 {
  border-left: 1px solid #c9caca;
}
.page-price .price-top .focus__time {
  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;
  width: 76px;
  height: 76px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 38px;
  font-weight: 600;
  background-color: #d7ff21;
  border-radius: 50%;
  white-space: nowrap;
}
.page-price .price-top .focus__time span {
  position: relative;
  top: 5px;
  font-size: 24px;
  font-weight: 500;
}
.page-price .price-top .focus__price {
  margin-left: 45px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 48px;
  font-weight: 600;
}
.page-price .price-top .focus__price span {
  font-size: 30px;
  font-weight: 500;
  margin-left: 5px;
}
.page-price .price-top .focus__footer {
  margin-top: 45px;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .page-price .price-top {
    padding-top: 60px;
  }
  .page-price .price-top .section-title {
    font-size: 36px;
  }
  .page-price .price-top-header {
    margin-top: 40px;
  }
  .page-price .price-top-header__bg {
    height: 400px;
    background-image: url(img/price-header-80.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .page-price .price-top-header__inner {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 1;
  }
  .page-price .price-top-header__contents {
    position: static;
    right: auto;
    bottom: auto;
    padding: 40px 30px 60px;
    width: 100%;
  }
  .page-price .price-top-header__title {
    font-size: 28px;
    line-height: 1.5;
  }
  .page-price .price-top-header__subtitle {
    margin-top: 16px;
    font-size: 20px;
    line-height: 1.5;
  }
  .page-price .price-top-header__text {
    margin-top: 30px;
  }
  .page-price .price-top-header ul {
    margin-top: 30px;
  }
  .page-price .price-top-header ul li:nth-child(n+3) {
    margin-top: 20px;
  }
  .page-price .price-top-header ul li:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .page-price .price-top-header ul li:last-child span {
    top: 25px;
    left: 28px;
  }
  .page-price .price-top-header ul li img {
    width: 18px;
    margin-right: 8px;
  }
  .page-price .price-top__body {
    margin-top: 60px;
  }
  .page-price .price-top__body .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-price .price-top__body .adm-fee {
    height: 100px;
  }
  .page-price .price-top__body .adm-fee__title {
    width: 30%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    font-size: 30px;
  }
  .page-price .price-top__body .adm-fee__price {
    width: 70%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 70%;
            flex: 0 1 70%;
    font-size: 60px;
  }
  .page-price .price-top__body .adm-fee__price span {
    font-size: 30px;
  }
  .page-price .price-top__body .cl {
    margin-top: 40px;
  }
  .page-price .price-top__body .cl__title {
    padding-bottom: 16px;
    font-size: 20px;
  }
  .page-price .price-top__body .cl__copy {
    margin-top: 20px;
    font-size: 48px;
  }
  .page-price .price-top__body .cl__copy.lesson__text {
    font-size: 60px;
    margin-top: 10px;
  }
  .page-price .price-top__body .cl__copy span {
    margin-left: 5px;
    font-size: 28px;
  }
  .page-price .price-top__body .cl__text {
    padding: 0 10px;
    margin-top: 14px;
  }
  .page-price .price-top__body .counseling,
  .page-price .price-top__body .lesson {
    padding: 40px 30px;
    width: 48.5%;
    background-color: #f7f8f8;
  }
  .page-price .price-top__body .lesson .cl__text {
    margin-top: 12px;
  }
  .page-price .price-top .ticket {
    margin-top: 60px;
  }
  .page-price .price-top .ticket__title {
    padding-bottom: 18px;
    font-size: 30px;
    border-bottom: 2px solid #222;
  }
  .page-price .price-top .ticket__desc {
    margin-top: 40px;
  }
  .page-price .price-top .ticket__body {
    margin-top: 40px;
  }
  .page-price .price-top .ticket .price-table dl > *:first-child {
    width: 22%;
  }
  .page-price .price-top .ticket .price-table .thead dt {
    font-size: 30px;
  }
  .page-price .price-top .ticket .price-table .thead dt,
  .page-price .price-top .ticket .price-table .thead dd {
    height: 205px;
  }
  .page-price .price-top .ticket .price-table .thead dd {
    padding: 0 10px;
  }
  .page-price .price-top .ticket .price-table .thead dl > *:nth-child(2) {
    width: 39%;
  }
  .page-price .price-top .ticket .price-table .thead dl > *:nth-child(3) {
    width: 39%;
  }
  .page-price .price-top .ticket .price-table .thead .menu {
    font-size: 36px;
  }
  .page-price .price-top .ticket .price-table .thead .menu-jp {
    margin-top: 6px;
    padding-bottom: 15px;
    font-size: 22px;
  }
  .page-price .price-top .ticket .price-table .thead .menu-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    margin-top: 10px;
  }
  .page-price .price-top .ticket .price-table .thead .menu-price p {
    font-size: 40px;
  }
  .page-price .price-top .ticket .price-table .thead .menu-price p span {
    margin-left: 3px;
    font-size: 16px;
  }
  .page-price .price-top .ticket .price-table .thead .menu-price p + p {
    margin-left: 0;
    margin-top: 5px;
  }
  .page-price .price-top .ticket .price-table .tbody dl {
    height: 100px;
  }
  .page-price .price-top .ticket .price-table .tbody dt {
    width: 22%;
  }
  .page-price .price-top .ticket .price-table .tbody dt .discount {
    margin-top: 7px;
    font-size: 20px;
  }
  .page-price .price-top .ticket .price-table .tbody dd {
    width: 39%;
  }
  .page-price .price-top .ticket .price-table .tbody dd .onetime {
    margin-top: 8px;
    font-size: 14px;
  }
  .page-price .price-top .ticket .price-table .tbody .inner {
    font-size: 40px;
  }
  .page-price .price-top .ticket .price-table .tbody .inner span {
    margin-left: 6px;
    font-size: 26px;
  }
  .page-price .price-top .ticket .price-table .tbody dd .inner span {
    margin-left: 10px;
  }
  .page-price .price-top .focus {
    margin-top: 40px;
  }
  .page-price .price-top .focus__head {
    padding: 20px 0 15px;
  }
  .page-price .price-top .focus__title {
    font-size: 36px;
  }
  .page-price .price-top .focus__desc {
    margin-top: 15px;
    font-size: 16px;
  }
  .page-price .price-top .focus__body-30, .page-price .price-top .focus__body-60 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    height: 130px;
  }
  .page-price .price-top .focus__time {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .page-price .price-top .focus__time span {
    top: 3px;
    font-size: 16px;
  }
  .page-price .price-top .focus__price {
    margin-left: 35px;
    font-size: 43px;
  }
  .page-price .price-top .focus__price span {
    font-size: 26px;
    margin-left: 5px;
  }
  .page-price .price-top .focus__footer {
    margin-top: 30px;
  }
}
@media screen and (max-width: 758px) {
  .page-price .price-top {
    padding-top: 55px;
  }
  .page-price .price-top .section-title {
    font-size: 24px;
  }
  .page-price .price-top-header {
    margin-top: 30px;
  }
  .page-price .price-top-header__bg {
    height: 200px;
  }
  .page-price .price-top-header__contents {
    padding: 34px 15px 0;
  }
  .page-price .price-top-header__title {
    font-size: 24px;
  }
  .page-price .price-top-header__subtitle {
    margin-top: 23px;
    font-size: 18px;
    line-height: 1.33;
  }
  .page-price .price-top-header__text {
    margin-top: 20px;
  }
  .page-price .price-top-header ul {
    margin-top: 20px;
  }
  .page-price .price-top-header ul li:nth-child(n+3) {
    margin-top: 16px;
  }
  .page-price .price-top-header ul li:last-child span {
    top: 20px;
    left: 25px;
  }
  .page-price .price-top-header ul li img {
    width: 17px;
    margin-right: 6px;
  }
  .page-price .price-top__body {
    margin-top: 58px;
  }
  .page-price .price-top__body .container {
    width: 100%;
    padding: 0 15px;
  }
  .page-price .price-top__body .adm-fee {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-price .price-top__body .adm-fee__title {
    padding: 20px 24px;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 27px;
  }
  .page-price .price-top__body .adm-fee__price {
    padding: 30px 0;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 54px;
    border-left: 1px solid #c9caca;
  }
  .page-price .price-top__body .adm-fee__price span {
    font-size: 22px;
  }
  .page-price .price-top__body .cl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 25px;
  }
  .page-price .price-top__body .cl__title {
    font-size: 18px;
  }
  .page-price .price-top__body .cl__copy {
    margin-top: 18px;
    font-size: 41px;
  }
  .page-price .price-top__body .cl__copy.lesson__text {
    font-size: 54px;
    margin-top: 10px;
  }
  .page-price .price-top__body .cl__copy span {
    margin-left: 9px;
    font-size: 27px;
  }
  .page-price .price-top__body .cl__text {
    padding: 0 27px;
    margin-top: 10px;
  }
  .page-price .price-top__body .counseling,
  .page-price .price-top__body .lesson {
    padding: 32px 25px 27px;
    width: 100%;
  }
  .page-price .price-top__body .lesson {
    margin-top: 25px;
  }
  .page-price .price-top__body .lesson .cl__copy {
    font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  }
  .page-price .price-top__body .lesson .cl__text {
    margin-top: 8px;
  }
  .page-price .price-top .ticket {
    margin-top: 30px;
  }
  .page-price .price-top .ticket__title {
    padding-bottom: 14px;
    font-size: 24px;
    border-bottom: 4px solid #222;
  }
  .page-price .price-top .ticket__desc {
    margin-top: 16px;
    text-align: left;
    line-height: 2;
  }
  .page-price .price-top .ticket__body {
    margin-top: 38px;
  }
  .page-price .price-top .ticket .price-table dl > *:first-child {
    width: 24%;
  }
  .page-price .price-top .ticket .price-table .thead dd {
    padding: 0 5px;
  }
  .page-price .price-top .ticket .price-table .thead dt {
    font-size: 18px;
  }
  .page-price .price-top .ticket .price-table .thead dt,
  .page-price .price-top .ticket .price-table .thead dd {
    height: 135px;
  }
  .page-price .price-top .ticket .price-table .thead dl > *:nth-child(2) {
    width: 38%;
  }
  .page-price .price-top .ticket .price-table .thead dl > *:nth-child(3) {
    width: 38%;
  }
  .page-price .price-top .ticket .price-table .thead .menu {
    font-size: 22px;
  }
  .page-price .price-top .ticket .price-table .thead .menu-jp {
    padding-bottom: 7px;
    font-size: 12px;
  }
  .page-price .price-top .ticket .price-table .thead .menu-price p {
    font-size: 22px;
  }
  .page-price .price-top .ticket .price-table .thead .menu-price p span {
    margin-left: 5px;
  }
  .page-price .price-top .ticket .price-table .thead .menu-price p + p {
    margin-top: 5px;
  }
  .page-price .price-top .ticket .price-table .tbody dl {
    height: 90px;
  }
  .page-price .price-top .ticket .price-table .tbody dt {
    width: 24%;
  }
  .page-price .price-top .ticket .price-table .tbody dt .discount {
    margin-top: 7px;
    font-size: 14px;
  }
  .page-price .price-top .ticket .price-table .tbody dd {
    width: 38%;
  }
  .page-price .price-top .ticket .price-table .tbody dd .onetime {
    margin-top: 5px;
    font-size: 12px;
  }
  .page-price .price-top .ticket .price-table .tbody .inner {
    font-size: 22px;
  }
  .page-price .price-top .ticket .price-table .tbody .inner span {
    margin-left: 5px;
    font-size: 16px;
  }
  .page-price .price-top .ticket .price-table .tbody dd .inner span {
    margin-left: 8px;
  }
  .page-price .price-top .focus {
    margin-top: 30px;
  }
  .page-price .price-top .focus__head {
    padding: 19px 0 13px;
  }
  .page-price .price-top .focus__title {
    font-size: 34px;
  }
  .page-price .price-top .focus__desc {
    margin-top: 13px;
    font-size: 13px;
  }
  .page-price .price-top .focus__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-price .price-top .focus__body-30, .page-price .price-top .focus__body-60 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 16px 0;
    height: auto;
  }
  .page-price .price-top .focus__body-60 {
    border-left: none;
    border-top: 1px solid #c9caca;
  }
  .page-price .price-top .focus__time {
    width: 57px;
    height: 57px;
  }
  .page-price .price-top .focus__time span {
    font-size: 18px;
  }
  .page-price .price-top .focus__price {
    margin-left: 33px;
    font-size: 36px;
  }
  .page-price .price-top .focus__price span {
    font-size: 22px;
  }
  .page-price .price-top .focus__footer {
    margin-top: 20px;
    text-align: left;
  }
}
/* ---------------------------------
  メディセルケア
----------------------------------- */
.page-price .price {
  margin-top: 176px;
}
.page-price .price hr {
  margin: 100px 0;
}
.page-price .price__title {
  text-align: center;
}
.page-price .price__title h3 {
  font-size: 48px;
  font-weight: 700;
}
.page-price .price__title p {
  margin-top: 55px;
}
.page-price .price__body {
  margin-top: 140px;
}
.page-price .price__body .container {
  width: 980px;
}
.page-price .price__body .adm-fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 78px;
  height: 120px;
}
.page-price .price__body .adm-fee__title {
  display: grid;
  place-items: center;
  width: 325px;
  background-color: #222;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}
.page-price .price__body .adm-fee__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 70px;
  width: calc(100% - 325px);
  font-size: 72px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
  border-top: 1px solid #c9caca;
  border-right: 1px solid #c9caca;
  border-bottom: 1px solid #c9caca;
}
.page-price .price__body .adm-fee__price span {
  position: relative;
  top: 5px;
  margin-left: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 500;
}
.page-price .price__body .adm-fee__price span.minutes {
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 90px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: #d7ff21;
  font-size: 24px;
  font-weight: 500;
}
.page-price .price__body .adm-fee__price span.minutes .num {
  position: relative;
  top: -1px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 38px;
  font-weight: 600;
}
.page-price .price__body .adm-fee__price span.yen {
  position: relative;
  top: 5px;
  margin-left: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 500;
}
.page-price .price .ticket {
  margin-top: 78px;
}
.page-price .price .ticket__head {
  text-align: center;
}
.page-price .price .ticket__title {
  padding-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  border-bottom: 4px solid #222;
}
.page-price .price .ticket__desc {
  margin-top: 37px;
}
.page-price .price .ticket__body {
  margin-top: 50px;
}
.page-price .price .ticket .price-table {
  width: 100%;
}
.page-price .price .ticket .price-table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-price .price .ticket .price-table dl > *:first-child {
  width: 140px;
  background-color: #222;
}
.page-price .price .ticket .price-table .thead {
  color: #fff;
  border-bottom: 1px solid #c9caca;
}
.page-price .price .ticket .price-table .thead dt,
.page-price .price .ticket .price-table .thead dd {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 180px;
  text-align: center;
}
.page-price .price .ticket .price-table .thead dt {
  font-size: 30px;
  font-weight: 500;
}
.page-price .price .ticket .price-table .thead dd {
  padding: 0 30px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
  border-left: 1px solid #c9caca;
}
.page-price .price .ticket .price-table .thead dl > *:nth-child(2) {
  width: 280px;
  background-color: rgb(76, 88, 111);
}
.page-price .price .ticket .price-table .thead dl > *:nth-child(3) {
  width: 280px;
  background-color: rgba(76, 88, 111, 0.7);
}
.page-price .price .ticket .price-table .thead dl > *:nth-child(4) {
  width: 280px;
  background-color: rgba(76, 88, 111, 0.4);
}
.page-price .price .ticket .price-table .thead .menu {
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}
.page-price .price .ticket .price-table .thead .menu .num {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 48px;
  font-weight: 600;
  margin: 0 2px;
}
.page-price .price .ticket .price-table .thead .menu-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}
.page-price .price .ticket .price-table .thead .menu-price p {
  font-size: 48px;
}
.page-price .price .ticket .price-table .thead .menu-price p span {
  margin-left: 3px;
  font-size: 30px;
  font-weight: 500;
}
.page-price .price .ticket .price-table .thead .menu-price p + p {
  margin-left: 30px;
}
.page-price .price .ticket .price-table .tbody dl {
  height: 120px;
  border-right: 1px solid #c9caca;
  border-bottom: 1px solid #c9caca;
}
.page-price .price .ticket .price-table .tbody dt,
.page-price .price .ticket .price-table .tbody dd {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.page-price .price .ticket .price-table .tbody dt {
  color: #fff;
}
.page-price .price .ticket .price-table .tbody dt .discount {
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #d7ff21;
}
.page-price .price .ticket .price-table .tbody dd {
  width: 280px;
}
.page-price .price .ticket .price-table .tbody dd + dd {
  border-left: 1px solid #c9caca;
}
.page-price .price .ticket .price-table .tbody dd .onetime {
  margin-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #bd191c;
}
.page-price .price .ticket .price-table .tbody .inner {
  font-size: 48px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-weight: 600;
}
.page-price .price .ticket .price-table .tbody .inner span {
  margin-left: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 400;
}
.page-price .price .ticket .price-table .tbody dd .inner span {
  margin-left: 8px;
}
.page-price .lymphmsg {
  margin-top: 164px;
}
.page-price .lymphmsg .ticket {
  margin-top: 70px;
}
.page-price .lymphmsg .ticket__body {
  margin-top: 50px;
}
.page-price .lymphmsg .ticket .price-table .thead dt,
.page-price .lymphmsg .ticket .price-table .thead dd {
  height: 250px;
}
.page-price .lymphmsg .ticket .price-table .thead dt {
  line-height: 1.33;
}
.page-price .lymphmsg .ticket .price-table .thead dd .ddhead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 72px;
}
.page-price .lymphmsg .ticket .price-table .thead dd .menu {
  padding-bottom: 0;
  font-size: 24px;
  line-height: 1.5;
  border-bottom: none;
}
.page-price .lymphmsg .ticket .price-table .thead dd .time {
  margin-top: 16px;
  padding-bottom: 15px;
  font-family: futura-pt, "Futura PT", "Futura", sans-serif;
  font-size: 48px;
  font-weight: 600;
  border-bottom: 1px solid #fff;
}
.page-price .lymphmsg .ticket .price-table .thead dd .time span {
  display: inline-block;
  margin-left: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 500;
}
.page-price .lymphmsg .ticket .price-table .thead dd .menu-price {
  margin-top: 13px;
}

@media screen and (max-width: 1199px) {
  .page-price .price {
    margin-top: 80px;
  }
  .page-price .price__title h3 {
    font-size: 36px;
  }
  .page-price .price__title p {
    margin-top: 14px;
  }
  .page-price .price__body {
    margin-top: 60px;
  }
  .page-price .price__body .container {
    width: 100%;
    padding: 0 30px;
  }
  .page-price .price__body .adm-fee {
    margin-top: 50px;
  }
  .page-price .price__body .adm-fee__title {
    width: 30%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    font-size: 30px;
  }
  .page-price .price__body .adm-fee__price {
    width: 70%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 70%;
            flex: 0 1 70%;
    font-size: 60px;
    padding-left: 70px;
  }
  .page-price .price__body .adm-fee__price span.minutes {
    top: 1px;
    margin-right: 50px;
    width: 64px;
    height: 64px;
    font-size: 16px;
  }
  .page-price .price__body .adm-fee__price span.minutes .num {
    top: -1px;
    font-size: 32px;
  }
  .page-price .price__body .adm-fee__price span.yen {
    font-size: 30px;
  }
  .page-price .price .ticket {
    margin-top: 60px;
  }
  .page-price .price .ticket__title {
    padding-bottom: 18px;
    font-size: 30px;
    border-bottom: 2px solid #222;
  }
  .page-price .price .ticket__desc {
    margin-top: 40px;
  }
  .page-price .price .ticket .price-table dl > *:first-child {
    width: 22%;
  }
  .page-price .price .ticket .price-table .thead dt,
  .page-price .price .ticket .price-table .thead dd {
    height: 150px;
  }
  .page-price .price .ticket .price-table .thead dd {
    padding: 0 10px;
  }
  .page-price .price .ticket .price-table .thead dt {
    width: 19%;
  }
  .page-price .price .ticket .price-table .thead dl > *:nth-child(2) {
    width: 27%;
  }
  .page-price .price .ticket .price-table .thead dl > *:nth-child(3) {
    width: 27%;
  }
  .page-price .price .ticket .price-table .thead dl > *:nth-child(4) {
    width: 27%;
  }
  .page-price .price .ticket .price-table .thead .menu {
    font-size: 22px;
    padding-bottom: 12px;
  }
  .page-price .price .ticket .price-table .thead .menu .num {
    font-size: 36px;
  }
  .page-price .price .ticket .price-table .thead .menu-price {
    margin-top: 10px;
  }
  .page-price .price .ticket .price-table .thead .menu-price p {
    font-size: 40px;
  }
  .page-price .price .ticket .price-table .thead .menu-price p span {
    font-size: 16px;
  }
  .page-price .price .ticket .price-table .tbody dt {
    width: 19%;
  }
  .page-price .price .ticket .price-table .tbody dd {
    width: 27%;
  }
  .page-price .price .ticket .price-table .tbody dd .inner span {
    margin-left: 3px;
  }
  .page-price .price .ticket .price-table .tbody .inner {
    font-size: 38px;
  }
  .page-price .price .ticket .price-table .tbody .inner span {
    font-size: 22px;
  }
  .page-price .lymphmsg {
    margin-top: 80px;
  }
  .page-price .lymphmsg .ticket {
    margin-top: 60px;
  }
  .page-price .lymphmsg .ticket__body {
    margin-top: 50px;
  }
  .page-price .lymphmsg .ticket .price-table .thead dt,
  .page-price .lymphmsg .ticket .price-table .thead dd {
    height: 230px;
  }
  .page-price .lymphmsg .ticket .price-table .thead dd .ddhead {
    min-height: 70px;
  }
  .page-price .lymphmsg .ticket .price-table .thead dd .menu {
    font-size: 20px;
    font-weight: 500;
  }
  .page-price .lymphmsg .ticket .price-table .thead dd .time {
    margin-top: 0;
    padding-bottom: 10px;
    font-size: 36px;
  }
  .page-price .lymphmsg .ticket .price-table .thead dd .time span {
    margin-left: 4px;
    font-size: 22px;
  }
  .page-price .lymphmsg .ticket .price-table .thead dd .menu-price {
    margin-top: 15px;
  }
}
@media screen and (max-width: 758px) {
  .page-price .price {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .page-price .price__title h3 {
    font-size: 24px;
  }
  .page-price .price__title p {
    margin-top: 10px;
    line-height: 1.5;
  }
  .page-price .price__body .container {
    width: 100%;
    padding: 0 15px;
  }
  .page-price .price__body .adm-fee {
    margin-top: 30px;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-price .price__body .adm-fee__title {
    padding: 20px 24px;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 27px;
  }
  .page-price .price__body .adm-fee__price {
    padding: 25px 0;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 54px;
    border-left: 1px solid #c9caca;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-price .price__body .adm-fee__price span.minutes {
    margin-right: 30px;
    padding-top: 5px;
    width: 55px;
    height: 55px;
    font-size: 12px;
  }
  .page-price .price__body .adm-fee__price span.minutes .num {
    top: -3px;
    font-size: 26px;
  }
  .page-price .price__body .adm-fee__price span.yen {
    font-size: 30px;
  }
  .page-price .price .ticket {
    margin-top: 30px;
  }
  .page-price .price .ticket__title {
    padding-bottom: 12px;
    font-size: 24px;
    border-bottom: 4px solid #222;
  }
  .page-price .price .ticket__desc {
    margin-top: 12px;
    text-align: left;
    line-height: 2;
  }
  .page-price .price .ticket__body {
    margin-top: 20px;
  }
  .page-price .price .ticket .price-table dl > *:first-child {
    width: 22%;
  }
  .page-price .price .ticket .price-table .thead dt {
    font-size: 14px;
  }
  .page-price .price .ticket .price-table .thead dt,
  .page-price .price .ticket .price-table .thead dd {
    height: 90px;
  }
  .page-price .price .ticket .price-table .thead dd {
    padding: 0 5px;
  }
  .page-price .price .ticket .price-table .thead dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16%;
            flex: 0 0 16%;
    width: 16%;
  }
  .page-price .price .ticket .price-table .thead dl > *:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28%;
            flex: 0 0 28%;
    width: 28%;
  }
  .page-price .price .ticket .price-table .thead dl > *:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28%;
            flex: 0 0 28%;
    width: 28%;
  }
  .page-price .price .ticket .price-table .thead dl > *:nth-child(4) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28%;
            flex: 0 0 28%;
    width: 28%;
  }
  .page-price .price .ticket .price-table .thead .menu {
    font-size: 12px;
    padding-bottom: 10px;
  }
  .page-price .price .ticket .price-table .thead .menu .num {
    font-size: 20px;
  }
  .page-price .price .ticket .price-table .thead .menu-price {
    margin-top: 10px;
  }
  .page-price .price .ticket .price-table .thead .menu-price p {
    font-size: 20px;
  }
  .page-price .price .ticket .price-table .thead .menu-price p span {
    font-size: 12px;
  }
  .page-price .price .ticket .price-table .tbody dl {
    height: 90px;
  }
  .page-price .price .ticket .price-table .tbody dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16%;
            flex: 0 0 16%;
    width: 16%;
  }
  .page-price .price .ticket .price-table .tbody dt .discount {
    margin-top: 6px;
    font-size: 12px;
  }
  .page-price .price .ticket .price-table .tbody dd {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28%;
            flex: 0 0 28%;
    width: 28%;
  }
  .page-price .price .ticket .price-table .tbody dd .inner span {
    margin-left: 1px;
  }
  .page-price .price .ticket .price-table .tbody dd .onetime {
    margin-top: 5px;
    font-size: 10px;
  }
  .page-price .price .ticket .price-table .tbody .inner {
    font-size: 20px;
  }
  .page-price .price .ticket .price-table .tbody .inner span {
    font-size: 12px;
    margin-left: 2px;
  }
  .page-price .lymphmsg {
    margin-top: 50px;
  }
  .page-price .lymphmsg .ticket {
    margin-top: 30px;
  }
  .page-price .lymphmsg .ticket__body {
    margin-top: 20px;
  }
  .page-price .lymphmsg .ticket .price-table .thead dt,
  .page-price .lymphmsg .ticket .price-table .thead dd {
    height: 150px;
  }
  .page-price .lymphmsg .ticket .price-table .thead dd .ddhead {
    min-height: 70px;
  }
  .page-price .lymphmsg .ticket .price-table .thead dd .menu {
    font-size: 12px;
    font-weight: 700;
  }
  .page-price .lymphmsg .ticket .price-table .thead dd .time {
    padding-bottom: 5px;
    font-size: 20px;
  }
  .page-price .lymphmsg .ticket .price-table .thead dd .time span {
    margin-left: 4px;
    font-size: 12px;
  }
  .page-price .lymphmsg .ticket .price-table .thead dd .menu-price {
    margin-top: 8px;
  }
}
/* ===================================

  404エラー：error404

====================================== */
.error404 .main {
  padding-bottom: 120px;
}
.error404 .main .container {
  width: 1000px;
}
.error404 .error__text {
  text-align: center;
  line-height: 2;
}
.error404 .error__link {
  display: block;
  margin-top: 120px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .error404 .main .container {
    width: 100%;
    padding: 0 30px;
  }
  .error404 .error__link {
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .error404 .main .container {
    padding: 0 15px;
  }
  .error404 .error__text {
    text-align: left;
  }
  .error404 .error__text br {
    display: none;
  }
  .error404 .error__link {
    font-size: 14px;
  }
}