@charset "UTF-8";
/* 変数定義---------------------------- */
/* カラー・配色 */
/* フォント */
/* デバイスサイズ */
/* ヘッダーの高さ */
/* flex */
/* コンテンツwidth */
/* ボタン */
/* 共通パーツ---------------------------- */
/* デフォルトCSS */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul li,
ol li {
  list-style: none;
}

a {
  text-decoration: none;
  display: block;
  color: #4d4d4d;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
  color: #4d4d4d;
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic";
  letter-spacing: 2px;
}

body {
  color: #4d4d4d;
  line-height: 2;
  font-feature-settings: "palt";
  background-color: #fcfbfa;
}
body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* 背景カラー */
  z-index: 20000; /* 一番手前に */
  pointer-events: none; /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0; /* 初期値 : 透過状態 */ /* アニメーション時間は 0.8秒 */
  transition: opacity 0.8s ease;
}
body .load-wrap {
  position: fixed;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 50%;
  bottom: 50%;
  z-index: 21000;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .load-wrap .load-3 {
  text-align: center;
}
body .load-wrap .load-3 img {
  margin-bottom: 32px;
}
body .load-wrap .load-3 p {
  margin-top: 24px;
  letter-spacing: 8px;
}
body .load-wrap .line {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background-color: #4d4d4d;
  margin: 0 2px;
}
body .load-wrap .load-3 .line:nth-last-child(2) {
  animation: loadingC 0.6s 0.1s linear infinite;
}
body .load-wrap .load-3 .line:nth-last-child(3) {
  animation: loadingC 0.6s 0.2s linear infinite;
}
body .load-wrap .load-3 .line:nth-last-child(4) {
  animation: loadingC 0.6s 0.3s linear infinite;
}
@keyframes loadingC {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.page-fadeout::after {
  opacity: 1;
}

.main-contents {
  overflow: hidden;
  position: relative;
}

/* sp・タブレット用 */
@media only screen and (max-width: 1040px) {
  * {
    -webkit-appearance: none;
  }
  html {
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
  }
  body {
    -webkit-text-size-adjust: 100%;
    min-width: 320px;
  }
  .pc_obj {
    display: none !important;
  }
}
/* pc用 */
@media only screen and (min-width: 1041px) {
  html {
    font-size: 15px;
  }
  body {
    min-width: 1024px;
  }
  .sp_obj {
    display: none !important;
  }
}
.flex-stay_row, .contents-frame .su-title_M, .top-ino-title, .btn-white .label_btn, .btn-white_clar .label_btn, .more {
  display: flex;
  flex-direction: row;
}

.flex-stay_clm, .contents-head .main-title, .contents-frame .su-title_L, #main-visual_u-page .mv-sec .main-title, .site-header .inner .ft-header-nav .menu .menu-list .fth-ml-link {
  display: flex;
  flex-direction: column;
}

.flex-wrap, .information .info-artcl .info-list-wrap .info-list-link {
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.flex-central {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex-wrap_prnt {
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
}
.flex-wrap_prnt .flex-wrap_chld {
  width: 48%;
}
@media only screen and (max-width: 580px) {
  .flex-wrap_prnt .flex-wrap_chld {
    width: 100%;
  }
  .flex-wrap_prnt .flex-wrap_chld:nth-child(n+2) {
    margin-top: 32px;
  }
}

.more {
  align-items: baseline;
  font-size: 0.8rem;
  font-weight: normal;
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic";
}
.more::after {
  content: "";
  display: block;
  width: 24px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../image/common/right.svg);
  margin-left: 4px;
  transition: 0.5s ease-out;
  position: relative;
  left: 0px;
}
.more:hover::after {
  left: 8px;
}

.btn-white, .btn-white_clar {
  border: 1px solid #4d4d4d;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 200px;
  padding: 0 24px;
  background-color: #ffffff;
}
.btn-white .label_btn, .btn-white_clar .label_btn {
  align-items: center;
}
.btn-white .label_btn::after, .btn-white_clar .label_btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #4d4d4d;
  border-bottom: 1.5px solid #4d4d4d;
  transform: rotate(-45deg);
  position: absolute;
  right: 16px;
  transition: 0.5s ease-out;
}
.btn-white:hover .label_btn::after, .btn-white_clar:hover .label_btn::after {
  right: 8px;
}

.btn-white_clar {
  border: 1px solid #ffffff;
  background-color: transparent;
}
.btn-white_clar .label_btn {
  align-items: center;
  color: #ffffff;
}
.btn-white_clar .label_btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  transform: rotate(-45deg);
  position: absolute;
  right: 16px;
  transition: 0.5s ease-out;
}
.btn-white_clar:hover .label_btn::after {
  right: 8px;
}

.btn-reserve {
  background-color: #6a6a6a;
  color: #ffffff;
  padding: 0 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  height: 64px;
  max-width: 440px;
  transition: 0.3s ease-out;
  border: 1px solid #6a6a6a;
}
.btn-reserve .label {
  font-size: 1.5rem;
  font-weight: bold;
}
.btn-reserve:hover {
  background-color: #ffffff;
  letter-spacing: 4px;
}
.btn-reserve:hover .label {
  color: #4d4d4d;
}

.btn-reserve_sp {
  background-color: #6a6a6a;
  color: #ffffff;
  padding: 0 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  height: 56px;
  max-width: 440px;
  transition: 0.3s ease-out;
  border: 1px solid #6a6a6a;
}
.btn-reserve_sp .label {
  font-size: 1.25rem;
  font-weight: bold;
}
.btn-reserve_sp:hover {
  background-color: #ffffff;
  letter-spacing: 4px;
}
.btn-reserve_sp:hover .label {
  color: #4d4d4d;
}

.no-active {
  pointer-events: none;
  cursor: default;
}

.accordion_unit {
  border-bottom: 1px solid #4d4d4d;
  border-top: 1px solid #4d4d4d;
}
.accordion_unit .accordion_header {
  color: #4d4d4d;
  font-size: 16px;
  padding: 16px;
  text-align: justify;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.5s;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.accordion_unit .accordion_header:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.accordion_unit .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  box-sizing: border-box;
  margin: 0 0 0 24px;
}
.accordion_unit .accordion_header .i_box .one_i {
  display: block;
  width: 16px;
  height: 16px;
  position: relative;
}
.accordion_unit .accordion_header .i_box .one_i:before {
  display: flex;
  content: "";
  background-color: #4d4d4d;
  width: 2px;
  height: 10px;
  position: absolute;
  transform-origin: center center;
  transition-duration: 0.5s;
  border-radius: 100px;
}
.accordion_unit .accordion_header .i_box .one_i:after {
  display: flex;
  content: "";
  background-color: #4d4d4d;
  width: 2px;
  height: 10px;
  position: absolute;
  transform-origin: center center;
  transition-duration: 0.5s;
  border-radius: 100px;
  top: 4px;
  right: 3px;
  transform: rotate(45deg);
}
.accordion_unit .accordion_header .i_box .one_i:before {
  top: 4px;
  left: 5px;
  transform: rotate(-45deg);
}
.accordion_unit .accordion_header.open .i_box .one_i:after {
  transform: rotate(90deg);
}
.accordion_unit .accordion_header.open .i_box .one_i:before {
  transform: rotate(-90deg);
}
.accordion_unit .accordion_header.open {
  background-color: rgba(0, 0, 0, 0.05);
}
.accordion_unit .accordion_inner {
  display: none;
  padding: 24px 16px;
  text-align: justify;
}
.accordion_unit .accordion_inner p.txt_a_ac {
  margin: 0;
}

@media screen and (max-width: 440px) {
  .accordion_unit .accordion_header {
    font-size: 14px;
  }
}
/* ヘッダー ---------------------------- */
.site-header {
  border-bottom: 1px solid #e2e2e2;
  background-color: #ffffff;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 30;
  height: 72px;
}
@media only screen and (max-width: 1040px) {
  .site-header {
    height: 56px;
  }
}
.site-header .inner {
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-header .inner .header-logo {
  max-width: 200px;
  width: 100%;
}
.site-header .inner .ft-header-nav {
  width: 50%;
  max-width: 400px;
}
.site-header .inner .ft-header-nav .menu {
  justify-content: space-between;
}
.site-header .inner .ft-header-nav .menu .menu-list {
  position: relative;
  transition: all 0.5s;
}
.site-header .inner .ft-header-nav .menu .menu-list::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: transparent;
  bottom: -1px;
  position: relative;
  transition: all 0.5s;
}
.site-header .inner .ft-header-nav .menu .menu-list .fth-ml-link {
  align-items: center;
  line-height: 1.3;
  padding-top: 24px;
}
.site-header .inner .ft-header-nav .menu .menu-list .fth-ml-link .m-text {
  font-weight: bold;
}
.site-header .inner .ft-header-nav .menu .menu-list .fth-ml-link .s-text {
  font-family: "Jomolhari", serif;
  font-size: 0.75rem;
  margin-bottom: 8px;
}
.site-header .inner .ft-header-nav .menu .menu-list:hover::after {
  background-color: #4d4d4d;
  transition: all 0.5s;
}

.top-page {
  position: relative;
}
.top-page .site-header {
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.5s;
}
.top-page .visible {
  transform: translateY(0);
  display: block;
  opacity: 1;
  transition: all 0.5s;
}

/* TOPページ---------------------------- */
/* メインビジュアル */
.main-visual {
  background-image: url(../image/top/mv.jpg);
  background-size: cover;
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-visual:before {
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.main-visual .mv-logo {
  max-width: 280px;
  position: relative;
  z-index: 5;
  width: 80%;
  margin: 0 auto;
}
.main-visual .scroll-tag {
  color: #ffffff;
  line-height: 1.3;
  position: absolute;
  bottom: 10%;
  right: 0;
  z-index: 10;
  left: 0;
  width: 104px;
  margin: 0 auto;
  text-align: center;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
  100% {
    transform: translateY(0);
  }
}
.main-visual .scroll-tag .scroll-text {
  font-size: 0.85rem;
  font-family: "Jomolhari", serif;
  font-weight: bold;
}
.main-visual .scroll-tag .pic {
  max-width: 48px;
  margin: 0 auto;
  animation: updown 2.5s ease-in-out infinite;
  -webkit-animation: updown 2.5s ease-in-out infinite;
}

/* title-パーツ */
.top-sec-title {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 48px;
}
.top-sec-title .m-text {
  font-size: 2rem;
  font-weight: bold;
}
.top-sec-title .s-text {
  font-family: "Jomolhari", serif;
  color: #6a6a6a;
  font-size: 1rem;
}

/* about */
.about {
  padding: 96px 0;
}
.about .about-wrap {
  width: 90%;
  justify-content: space-between;
}
.about .about-wrap .about-photo {
  width: 50%;
}
.about .about-wrap .about-sec {
  width: 45%;
  padding: 32px 0;
}
.about .about-wrap .about-sec .about-title {
  font-size: 1.55rem;
  margin-bottom: 40px;
}
.about .about-wrap .about-sec .cap {
  font-weight: bold;
  line-height: 2.6;
}
@media only screen and (max-width: 770px) {
  .about .about-wrap .about-sec {
    padding: 0;
  }
}
@media only screen and (max-width: 580px) {
  .about .about-wrap {
    flex-wrap: wrap-reverse;
    margin: 0 auto;
  }
  .about .about-wrap .about-photo {
    width: 100%;
  }
  .about .about-wrap .about-sec {
    width: 100%;
    margin-bottom: 40px;
  }
}

/* 診療案内 */
.departments {
  background-color: #f2f2f2;
  padding: 96px 0;
  /* 診療案内 タブ */
}
.departments .dprt-sec {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.departments .dprt-sec:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #6a6a6a;
  margin: 80px 0;
}
.departments .dprt-sec:last-child:after {
  display: none;
}
.departments .dprt-sec-title {
  font-family: "Jomolhari", serif;
  font-size: 1.8rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 16px;
}
.departments .dprt-sec-title:before {
  content: "";
  display: block;
  width: 32px;
  height: 36px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 6px;
}
.departments .dprt-sec-title.women-title:before {
  background-image: url(../image/top/women_icon.svg);
}
.departments .dprt-sec-title.men-title:before {
  background-image: url(../image/top/men_icon.svg);
}
.departments .c-unit {
  display: grid;
  grid-template-columns: 31% 31% 31%;
  justify-items: center;
  justify-content: center;
  align-content: center;
  -moz-column-gap: 3.5%;
       column-gap: 3.5%;
}
.departments .c-unit .c-unit-list {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 16px -6px;
  position: relative;
}
.departments .c-unit .c-unit-list:nth-child(n+4) {
  margin-top: 32px;
}
.departments .c-unit .c-unit-list .trc-link .thum {
  margin-bottom: 40px;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.departments .c-unit .c-unit-list .trc-link .thum .thum_img {
  transform: scale(1);
  transition: 0.5s ease-out;
}
.departments .c-unit .c-unit-list .trc-link .c-unit-sec {
  padding: 0 24px;
  margin-bottom: 80px;
}
.departments .c-unit .c-unit-list .trc-link .c-unit-sec .title {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 16px;
}
.departments .c-unit .c-unit-list .trc-link .c-unit-sec .title .m-text {
  font-size: 1.5rem;
  font-weight: bold;
}
.departments .c-unit .c-unit-list .trc-link .c-unit-sec .title .s-text {
  font-family: "Jomolhari", serif;
  color: #6a6a6a;
  font-size: 0.75rem;
}
.departments .c-unit .c-unit-list .trc-link .c-unit-sec .cap {
  text-align: justify;
}
.departments .c-unit .c-unit-list .trc-link:hover .thum .thum_img {
  transform: scale(1.3);
}
.departments .c-unit .c-unit-list .more {
  padding: 0 24px 24px;
  justify-content: right;
  position: absolute;
  bottom: 0;
  right: 0;
}
.departments .c-unit .c-unit-list .btn-wrap {
  display: flex;
  padding: 0 24px 24px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  justify-content: center;
}
@media (max-width: 960px) and (min-width: 580px) {
  .departments .c-unit {
    grid-template-columns: 48% 48%;
  }
  .departments .c-unit .c-unit-list:nth-child(n+3) {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 580px) {
  .departments .c-unit {
    display: block;
  }
  .departments .c-unit .c-unit-list {
    width: 100%;
    box-shadow: none;
  }
  .departments .c-unit .c-unit-list:nth-child(n+2) {
    margin-top: 56px;
  }
  .departments .c-unit .c-unit-list .trc-link .c-unit-sec {
    padding: 0;
    margin-bottom: 48px;
  }
  .departments .c-unit .c-unit-list .btn-wrap {
    position: relative;
    bottom: auto;
    right: auto;
  }
}
.departments .tabs {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  margin: 0 auto;
  position: relative;
}
.departments .tab-buttons {
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  height: 56px;
  align-items: flex-end;
}
.departments .tab-buttons .t-btn {
  background: #e2e2e2;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 50%;
  text-align: center;
  height: 40px;
  line-height: 40px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.departments .tab-buttons .t-btn > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  font-family: "Jomolhari", serif;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  font-weight: bold;
  width: 100%;
}
.departments .tab-buttons .t-btn > span:before {
  content: "";
  display: block;
  width: 16px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 4px;
}
.departments .tab-buttons .t-btn > span.content1:before {
  background-image: url(../image/top/women_icon.svg);
}
.departments .tab-buttons .t-btn > span.content2:before {
  background-image: url(../image/top/men_icon.svg);
}
.departments .tab-buttons .active {
  background-color: #ffffff;
  transition: 0.5s ease-out;
  height: 100%;
}
.departments .tab-content {
  padding: 40px 24px;
  background: #ffffff;
  width: 100%;
}

/* お知らせ */
.top-ino-title {
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #4d4d4d;
}
.top-ino-title .m-text {
  font-weight: normal;
  font-family: "Jomolhari", serif;
}
.top-ino-title .more {
  font-size: 0.75rem;
}

.information {
  padding: 72px 0;
  background-color: #ffffff;
}
.information .info-artcl {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.information .info-artcl .info-list-wrap .info-list-link {
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #4d4d4d;
}
.information .info-artcl .info-list-wrap .info-list-link .date {
  margin-right: 5%;
  transition: 0.5s ease-out;
}
.information .info-artcl .info-list-wrap .info-list-link .info-list-title {
  font-size: 1rem;
  font-weight: normal;
}
.information .info-artcl .info-list-wrap .info-list-link:hover .date {
  margin-right: 7%;
}

/* ごあいさつ */
.sltn-sec {
  background-color: #f2f2f2;
  padding: 72px 0;
}
.sltn-sec .inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.sltn-sec .inner .doctor-photo .doctor-photo_img {
  overflow: hidden;
  border-radius: 5px;
}
.sltn-sec .inner .doctor-sec .doctor-title {
  margin-bottom: 16px;
  line-height: 1.6;
}
.sltn-sec .inner .doctor-sec .doctor-title .name {
  line-height: 1.6;
}
.sltn-sec .inner .doctor-sec .doctor-title .name .s-text {
  font-size: 1rem;
}
.sltn-sec .inner .doctor-sec .doctor-title .name .m-text {
  font-size: 1.5rem;
}
.sltn-sec .inner .doctor-sec .doctor-title > .s-text {
  font-weight: normal;
  font-size: 1rem;
}
@media only screen and (max-width: 580px) {
  .sltn-sec .inner .doctor-sec .doctor-title {
    text-align: center;
  }
}
.sltn-sec .inner .doctor-sec .cap {
  text-align: justify;
  margin-bottom: 24px;
}

/* 提携サービス */
.ps-sec {
  background-color: #ffffff;
}
.ps-sec .ps-sec_contents {
  padding: 72px 0;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.ps-sec .ps-sec_contents .inner .flex-wrap_chld .mederi-pill,
.ps-sec .ps-sec_contents .inner .flex-wrap_chld .bobo-hair {
  align-items: flex-end;
}
.ps-sec .ps-sec_contents .inner .flex-wrap_chld .more {
  font-family: "Jomolhari", serif;
  margin-top: 8px;
}
.ps-sec .ps-sec_contents .inner .flex-wrap_chld > [class*=_sp] {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.ps-sec .ps-sec_contents .inner .flex-wrap_chld > [class*=_sp]:before {
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
}
.ps-sec .ps-sec_contents .inner .flex-wrap_chld > [class*=_sp] > [class$=_img] {
  transform: scale(1);
  transition: 0.5s ease-out;
}
.ps-sec .ps-sec_contents .inner .flex-wrap_chld > [class*=_sp]:hover > [class$=_img] {
  transform: scale(1.3);
}
.ps-sec .ps-sec_contents .inner .flex-wrap_chld > [class*=_sp] .img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.ps-sec .ps-sec_contents .inner .flex-wrap_chld > [class*=_sp] .img-wrap > [class$=_img] {
  margin-bottom: 16px;
}
.ps-sec .ps-sec_contents .inner .flex-wrap_chld > [class*=_sp] .img-wrap .img-title {
  color: #ffffff;
  font-weight: bold;
}
@media (max-width: 767px) and (min-width: 580px) {
  .ps-sec .ps-sec_contents .inner .flex-wrap_chld > [class*=_sp] .img-wrap {
    width: 160px;
  }
  .ps-sec .ps-sec_contents .inner .flex-wrap_chld > [class*=_sp] .img-wrap .img-title {
    font-size: 0.8rem;
  }
  .ps-sec .ps-sec_contents .inner .flex-wrap_chld > [class*=_sp] .img-wrap .btn-white_clar {
    height: 24px;
    padding: 0 12px;
  }
  .ps-sec .ps-sec_contents .inner .flex-wrap_chld > [class*=_sp] .img-wrap .btn-white_clar .label_btn {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 580px) {
  .ps-sec .ps-sec_contents .inner .flex-wrap_chld > [class*=_sp] .img-wrap {
    width: 180px;
  }
}

/* お知らせ */
section.news#news {
  background: #fff;
}
section.news#news .section_news_inner {
  padding: 72px 0;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
section.news#news .section_news_inner .news-list_wrapper {
  width: 100%;
  margin-bottom: 2rem;
}
section.news#news .section_news_inner .news-list_wrapper .news-list_more {
  font-size: 0.8rem;
  letter-spacing: 0;
  text-align: right;
  margin-bottom: 0.6rem;
  position: relative;
  padding-right: 28px;
}
section.news#news .section_news_inner .news-list_wrapper .news-list_more::after {
  content: "";
  display: block;
  width: 24px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../image/common/right.svg);
  margin-left: 4px;
  transition: 0.5s ease-out;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-65%);
  cursor: pointer;
}
section.news#news .section_news_inner .news-list_wrapper .news-list_more:hover::after {
  right: -8px;
}
section.news#news .section_news_inner .news-list_wrapper .news-list {
  width: 100%;
  border-top: 1px solid #ccc;
}
section.news#news .section_news_inner .news-list_wrapper .news-list li.news-list_item {
  border-bottom: 1px solid #ccc;
  padding: 1rem 3rem 1rem 0;
  position: relative;
}
section.news#news .section_news_inner .news-list_wrapper .news-list li.news-list_item > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 767px) {
  section.news#news .section_news_inner .news-list_wrapper .news-list li.news-list_item > a {
    display: block;
  }
}
section.news#news .section_news_inner .news-list_wrapper .news-list li.news-list_item .news-list_item-title {
  line-height: 1.6em;
}
section.news#news .section_news_inner .news-list_wrapper .news-list li.news-list_item .news-list_item-date {
  margin-top: 2px;
  width: 6rem;
  font-size: 0.8rem;
  letter-spacing: 0;
  color: #666;
  font-family: "Jomolhari", serif;
}
section.news#news .section_news_inner .news-list_wrapper .news-list li.news-list_item::after {
  display: block;
  position: absolute;
  content: "";
  right: 10px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: translateY(-50%) rotate(45deg);
}
section.news#news .section_news_inner .btn-wrap a {
  margin: auto;
}

main.under-page section.news#news .section_news_inner {
  padding: 144px 0;
}

/* スライドメニュー */
.sd-menu-container {
  position: fixed;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  transition: all 0.3s ease;
  background-color: #fcfbfa;
  overflow: auto;
  z-index: 1;
  padding: 64px 0 114px;
  opacity: 0;
}
.sd-menu-container .sld-nav-title {
  border-left: 5px solid #4d4d4d;
  width: 90%;
  margin: 0 auto 32px;
  line-height: 1.2;
  padding-left: 12px;
}
.sd-menu-container .menu-g-nav-container {
  width: 90%;
  margin: 0 auto;
}
.sd-menu-container .menu-g-nav-container .manu-title {
  font-family: "Jomolhari", serif;
  font-size: 1.1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.sd-menu-container .menu-g-nav-container .manu-title:before {
  content: "";
  display: block;
  width: 16px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 6px;
}
.sd-menu-container .menu-g-nav-container .manu-title.women-title:before {
  background-image: url(../image/top/women_icon.svg);
}
.sd-menu-container .menu-g-nav-container .manu-title.men-title:before {
  background-image: url(../image/top/men_icon.svg);
}
.sd-menu-container .menu-g-nav-container .menu {
  padding-left: 0;
  display: block;
  width: 100%;
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
  right: -100%;
}
.sd-menu-container .menu-g-nav-container .menu > .menu-item {
  font-size: 1rem;
}
.sd-menu-container .menu-g-nav-container .menu > .menu-item:first-of-type {
  border-top: 0;
}
.sd-menu-container .menu-g-nav-container .menu-item {
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  letter-spacing: 1px;
  transition: all 1.2s ease;
  opacity: 0;
}
.sd-menu-container .menu-g-nav-container .menu-item a {
  color: #4d4d4d;
  padding: 20px;
  border-bottom: 1px solid #e2e2e2;
  padding: 16px 48px 16px 16px;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.6;
}
.sd-menu-container .menu-g-nav-container .menu-item a:after {
  content: "";
  display: block;
  width: 24px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../image/common/right.svg);
  margin-left: 4px;
  transition: 0.5s ease-out;
  position: absolute;
  right: 0;
  top: 45%;
}
.sd-menu-container .menu-g-nav-container .menu-item a .en-text {
  display: block;
  font-size: 0.75rem;
  font-family: "Jomolhari", serif;
  color: #6a6a6a;
}
.sd-menu-container .menu-g-nav-container .menu-item a.no-active::after {
  content: "Coming soon…";
  display: block;
  font-family: "Jomolhari", serif;
  background-image: none;
  width: auto;
  height: auto;
  font-size: 0.75rem;
}
.sd-menu-container .menu-g-nav-container .sub-menu {
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  letter-spacing: 1px;
  display: none;
}
.sd-menu-container .menu-g-nav-container .sub-menu.open > .menu-item:nth-last-child(1) a {
  border-bottom: 1px solid transparent;
}
.sd-menu-container .menu-g-nav-container .menu-item-has-children > a {
  pointer-events: none;
}
.sd-menu-container .menu-g-nav-container .menu-item-has-children > a:before, .sd-menu-container .menu-g-nav-container .menu-item-has-children > a:after {
  top: 36px;
  width: 12px;
}
.sd-menu-container .menu-g-nav-container .menu-item-has-children > a:after {
  transform: rotate(0deg);
  bottom: auto;
}
.sd-menu-container .menu-g-nav-container .menu-item-has-children > a:before {
  transform: rotate(-90deg);
}
.sd-menu-container .menu-g-nav-container .menu-item-has-children.active-tab {
  background: #3c3c3c;
  transition: all 0.3s ease;
  border-top: none;
}
.sd-menu-container .menu-g-nav-container .menu-item-has-children.active-tab > a {
  color: #ffffff;
  font-weight: bold;
  background-color: #2b2b2b;
  border-top: 1px solid #e2e2e2;
}
.sd-menu-container .menu-g-nav-container .menu-item-has-children.active-tab .sub-menu {
  font-weight: normal;
}
.sd-menu-container .menu-g-nav-container .menu-item-has-children.active-tab .sub-menu a {
  color: #ffffff;
}
.sd-menu-container .menu-g-nav-container .menu-item-has-children .active:before {
  transform: rotate(0deg);
  background: #fff !important;
}
.sd-menu-container .menu-g-nav-container .menu-item-has-children .active:after {
  transform: rotate(180deg);
  background: #fff !important;
  opacity: 0;
}
.sd-menu-container > .menu-g-nav-container + .menu-g-nav-container {
  /* 2番目以降の .menu-g-nav-container に適用するスタイル */
}
.sd-menu-container > .menu-g-nav-container + .menu-g-nav-container:nth-child(n+2) {
  margin-top: 56px;
}
.sd-menu-container .sns-list_nav {
  border-top: 1px solid #e2e2e2;
}
.sd-menu-container .sns-list_nav .sns-icon {
  width: 33.3%;
}
.sd-menu-container .sns-list_nav .sns-icon a {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 72px;
}
.sd-menu-container .sns-list_nav .sns-icon a .sns-name {
  font-size: 0.625rem;
}
.sd-menu-container .btn-wrap {
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  padding: 16px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sd-open {
  z-index: 50;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 16px -6px;
  opacity: 1;
}
.sd-open .menu-g-nav-container .menu-item {
  opacity: 1;
}
.sd-open .menu-g-nav-container .menu-item a {
  word-break: break-all;
}

#menu-wrapper {
  overflow: hidden;
  max-width: 100%;
  cursor: pointer;
  text-align: center;
  padding: 4px 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15000;
  line-height: 1.5;
  height: 56px;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#menu-wrapper #hamburger-menu {
  position: relative;
  width: 25px;
  height: 20px;
  margin: 15px;
}
#menu-wrapper #hamburger-menu span {
  opacity: 1;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  color: black;
  background-color: #4d4d4d;
  position: absolute;
  transform: rotate(0deg);
  transition: 0.4s ease-in-out;
}
#menu-wrapper #hamburger-menu span:nth-child(1) {
  top: 0;
}
#menu-wrapper #hamburger-menu span:nth-child(2) {
  top: 9px;
}
#menu-wrapper #hamburger-menu span:nth-child(3) {
  top: 18px;
}
#menu-wrapper #hamburger-menu.open span:nth-child(1) {
  transform: translateY(9px) rotate(135deg);
}
#menu-wrapper #hamburger-menu.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-60px);
}
#menu-wrapper #hamburger-menu.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-135deg);
}

.fix-sp-menu {
  color: #6a6a6a;
  text-align: center;
  padding: 4px 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15000;
  line-height: 1.5;
  height: 56px;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fix-sp-menu .menu_icon {
  display: block;
  float: left;
  cursor: pointer;
  transition: all 0.2s ease-in;
  width: 30px;
}
.fix-sp-menu .menu_icon span {
  display: block;
  width: 30px;
  height: 2px;
  background: #4d4d4d;
  margin-bottom: 4px;
  transition: all 0.4s ease-out;
}
.fix-sp-menu.open {
  visibility: visible;
  opacity: 1;
}
.fix-sp-menu.open .menu_icon .line1 {
  transform: translateY(6px) rotate(45deg);
}
.fix-sp-menu.open .menu_icon .line2 {
  opacity: 0;
  width: 150px;
  transform: translateX(-60px);
}
.fix-sp-menu.open .menu_icon .line3 {
  transform: translateY(-6px) rotate(135deg);
}
.fix-sp-menu .menu-title {
  font-size: 0.625rem;
  width: 40px;
  text-align: center;
  color: #6a6a6a;
  z-index: 99999;
}

.spm-hidden {
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-out;
}

.spm-visible {
  visibility: visible !important;
  opacity: 1;
  transition: all 1s ease-out;
}

#responsive-sd-sd-menu-container #responsive-menu-wrapper {
  width: 90%;
  margin: 0 auto;
}
#responsive-sd-sd-menu-container #responsive-menu-wrapper #responsive-menu-title {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
#responsive-sd-sd-menu-container #responsive-menu-additional-content .sns-link {
  margin: 24px 0;
  color: #4d4d4d;
}
#responsive-sd-sd-menu-container #responsive-menu-additional-content .sns-link dt {
  padding: 0 12px 0 0 !important;
}
#responsive-sd-sd-menu-container #responsive-menu-additional-content .btn_stl_01 {
  margin: 0 auto 16px;
  color: #ffffff !important;
  z-index: 100;
}
#responsive-sd-sd-menu-container #responsive-menu > .responsive-menu-item > .responsive-menu-item-link {
  border-bottom: none;
}
#responsive-sd-sd-menu-container #responsive-menu .responsive-menu-item-has-children .responsive-menu-submenu {
  width: 95%;
  margin-left: 5%;
}
#responsive-sd-sd-menu-container #responsive-menu .responsive-menu-item-has-children .responsive-menu-submenu .responsive-menu-item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#responsive-sd-sd-menu-container #responsive-menu .responsive-menu-item-has-children .responsive-menu-submenu .responsive-menu-item:before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: #6a6a6a;
  position: absolute;
  left: 16px;
  z-index: 1;
}
#responsive-sd-sd-menu-container #responsive-menu .responsive-menu-item-has-children .responsive-menu-submenu .responsive-menu-item > .responsive-menu-item-link {
  border-bottom: none;
  padding-left: 40px;
}
#responsive-sd-sd-menu-container #responsive-menu .responsive-menu-item-has-children .responsive-menu-submenu-open {
  margin-bottom: 16px;
}
#responsive-sd-sd-menu-container .btn_stl_cv {
  margin: 0 auto;
}

#responsive-menu-button .responsive-menu-box .responsive-menu-inner {
  border-radius: 0;
}
#responsive-menu-button .responsive-menu-box .responsive-menu-inner:after, #responsive-menu-button .responsive-menu-box .responsive-menu-inner:before {
  border-radius: 0;
}

/* 下層ページ---------------------------- */
#main-visual_u-page {
  margin: 72px 0 32px;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: end;
  padding: 48px 0;
  align-items: center;
  position: relative;
}
#main-visual_u-page .mv-sec {
  position: absolute;
  right: 0;
  left: 0;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
#main-visual_u-page .mv-sec .main-title {
  line-height: 1.6;
  margin-bottom: 48px;
  width: 48%;
}
#main-visual_u-page .mv-sec .main-title .m-text {
  font-size: 2rem;
  font-weight: bold;
}
#main-visual_u-page .mv-sec .main-title .s-text {
  font-family: "Jomolhari", serif;
  color: #6a6a6a;
  font-size: 1rem;
}
#main-visual_u-page .mv-sec .cap {
  font-weight: bold;
  width: 48%;
}
@media only screen and (max-width: 580px) {
  #main-visual_u-page .mv-sec .main-title {
    text-align: center;
  }
  #main-visual_u-page .mv-sec .cap {
    text-align: justify;
  }
  #main-visual_u-page .mv-sec .cap br {
    display: none;
  }
}
#main-visual_u-page .mv-photo {
  width: 48%;
}
@media only screen and (max-width: 770px) {
  #main-visual_u-page {
    margin: 0 auto;
    width: 100%;
  }
  #main-visual_u-page .mv-sec {
    position: relative;
  }
  #main-visual_u-page .mv-sec .main-title {
    width: 100%;
  }
  #main-visual_u-page .mv-sec .cap {
    width: 100%;
  }
  #main-visual_u-page .mv-photo {
    width: 100%;
    margin-bottom: 48px;
  }
}
@media only screen and (min-width: 1901px) {
  #main-visual_u-page .mv-sec {
    max-width: 100%;
  }
  #main-visual_u-page .mv-photo {
    width: 60%;
  }
}

.section-nav {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.section-nav .sn-menu {
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
}
.section-nav .sn-menu .menu-list {
  border-right: 1px solid #e2e2e2;
}
.section-nav .sn-menu .menu-list:nth-last-child(1) {
  border-right: none;
}
.section-nav .sn-menu .menu-list .ml-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-nav .sn-menu .menu-list .ml-link .ml-label {
  font-weight: bold;
}
.section-nav .sn-menu .menu-list .ml-link .ml-label::after {
  width: 8px;
  height: 8px;
  content: "";
  display: block;
  border-bottom: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
  transform: rotate(45deg);
  margin: 0 auto;
  position: relative;
  bottom: 0;
  transition: 0.5s ease-out;
}
.section-nav .sn-menu .menu-list .ml-link:hover .ml-label::after {
  bottom: -4px;
}
.section-nav .sn-menu.column-4 .menu-list {
  width: 25%;
}
.section-nav .sn-menu.column-5 .menu-list {
  width: 20%;
}
@media only screen and (max-width: 1040px) {
  .section-nav {
    border-radius: 5px;
    background-color: #ffffff;
    padding: 32px;
    border: 1px solid #4d4d4d;
  }
  .section-nav .nav-title {
    font-family: "Jomolhari", serif;
    text-align: center;
    font-weight: normal;
    font-size: 1.25rem;
    margin-bottom: 32px;
  }
  .section-nav .sn-menu .menu-list {
    border-right: none;
    width: 100% !important;
  }
  .section-nav .sn-menu .menu-list .ml-link {
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: normal;
    /* Firefox */
  }
  .section-nav .sn-menu .menu-list .ml-link::before {
    width: 12px;
    height: 12px;
    content: "";
    display: inline-block;
    background-color: #e2e2e2;
    position: relative;
    top: 8px;
    margin-right: 8px;
    border-radius: 100px;
  }
  .section-nav .sn-menu .menu-list .ml-link .ml-label {
    display: flex;
    flex-direction: row;
    width: calc(100% - 20px);
    text-align: justify;
  }
  .section-nav .sn-menu .menu-list .ml-link .ml-label::after {
    display: none;
  }
  @-moz-document url-prefix() {
    .section-nav .sn-menu .menu-list .ml-link .ml-label {
      width: 100%;
      max-width: 100%;
    }
  }
}

.btn-reserve_sp_wrap {
  width: 90%;
  margin: 0 auto 80px;
}
.btn-reserve_sp_wrap .btn-reserve_sp {
  margin: 0 auto;
}

.btn-reserve_fix_wrap {
  max-width: 440px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  position: fixed;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 80px;
  z-index: -10;
}
@media only screen and (max-width: 770px) {
  .btn-reserve_fix_wrap {
    bottom: 8px;
  }
}
.btn-reserve_fix_wrap .btn-reserve_sp {
  margin: 0 auto;
  width: 90%;
}
.btn-reserve_fix_wrap.active-fix {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  z-index: 30;
}
.contents-frame {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.contents-frame .su-title_L {
  line-height: 1.6;
  margin-bottom: 32px;
}
.contents-frame .su-title_L .m-text {
  font-size: 1.35rem;
  font-weight: bold;
  border-left: 5px solid #4d4d4d;
  line-height: 1;
  padding-left: 12px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.contents-frame .su-title_L .s-text {
  font-family: "Jomolhari", serif;
  color: #6a6a6a;
  font-size: 0.75rem;
  margin-left: 17px;
}
.contents-frame .su-title_L .a-text {
  font-size: 0.8rem;
}
.contents-frame .su-title_M {
  margin-bottom: 24px;
  line-height: 1.6;
}
.contents-frame .su-title_M::before {
  width: 12px;
  height: 12px;
  content: "";
  display: block;
  background-color: #4d4d4d;
  position: relative;
  top: 6px;
}
.contents-frame .su-title_M .m-text {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.6;
  margin-left: 8px;
}
.contents-frame .sec-unit {
  padding-top: 104px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 104px;
}
.contents-frame .sec-unit:first-child {
  border-top: none;
}
.contents-frame .sec-unit .inner-sec {
  margin-top: 72px;
}
.contents-frame .sec-unit .cf-cap {
  text-align: justify;
}
.contents-frame .sec-unit .cf-cap .annotation {
  color: #6a6a6a;
  display: block;
  margin-top: 24px;
  font-size: 0.7rem;
}
.contents-frame .sec-unit .cf-cap .link-text {
  display: inline;
  text-decoration: underline;
}
.contents-frame .sec-unit .cf-pic {
  margin-bottom: 24px;
}
@media only screen and (max-width: 1040px) {
  .contents-frame .sec-unit {
    padding-top: 80px;
  }
  .contents-frame .sec-unit:nth-last-child(1) {
    margin-bottom: 0;
  }
  .contents-frame .sec-unit.no-mb {
    margin-bottom: 104px;
  }
}
.contents-frame sup {
  font-size: 0.65rem;
}
.contents-frame .c-list-style_01 {
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-bottom: 24px;
}
.contents-frame .c-list-style_01 .c-list {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 8px;
}
.contents-frame .c-list-style_01 .c-list .text {
  line-height: 1.6;
  text-align: center;
}
.contents-frame .c-list-style_01.colmun_4 .c-list {
  width: 23.8%;
  margin-right: 1.5%;
}
.contents-frame .c-list-style_01.colmun_4 .c-list:nth-of-type(4n) {
  margin-right: 0;
}
.contents-frame .c-list-style_01.colmun_4 .c-list:nth-of-type(n + 5) {
  margin-top: 1.5%;
}
@media only screen and (max-width: 1040px) {
  .contents-frame .c-list-style_01.colmun_4 .c-list {
    width: 32.3%;
    font-size: 0.85rem;
  }
  .contents-frame .c-list-style_01.colmun_4 .c-list:nth-of-type(4n) {
    margin-right: 1.5%;
  }
  .contents-frame .c-list-style_01.colmun_4 .c-list:nth-of-type(3n) {
    margin-right: 0;
  }
  .contents-frame .c-list-style_01.colmun_4 .c-list:nth-of-type(n + 4) {
    margin-top: 1.5%;
  }
}
@media only screen and (max-width: 580px) {
  .contents-frame .c-list-style_01.colmun_4 .c-list {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 580px) {
  .contents-frame .c-list-style_01.colmun_4.sp-colmun_2 .c-list {
    width: 49.2%;
  }
  .contents-frame .c-list-style_01.colmun_4.sp-colmun_2 .c-list:nth-of-type(2n) {
    margin-right: 0;
  }
  .contents-frame .c-list-style_01.colmun_4.sp-colmun_2 .c-list:nth-of-type(3n) {
    margin-right: 1.5%;
  }
  .contents-frame .c-list-style_01.colmun_4.sp-colmun_2 .c-list:nth-of-type(n + 3) {
    margin-top: 1.5%;
  }
}
.contents-frame .c-list-style_01.colmun_2 .c-list {
  width: 49.2%;
  margin-right: 1.5%;
  height: 120px;
}
.contents-frame .c-list-style_01.colmun_2 .c-list:nth-of-type(2n) {
  margin-right: 0;
}
.contents-frame .c-list-style_01.colmun_2 .c-list:nth-of-type(n + 3) {
  margin-top: 1.5%;
}
.contents-frame .c-list-style_01.colmun_2 .c-list .title {
  font-size: 1.15rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 580px) {
  .contents-frame .c-list-style_01.colmun_2 .c-list {
    width: 100%;
    margin-right: 0;
  }
  .contents-frame .c-list-style_01.colmun_2 .c-list .text {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  .contents-frame .c-list-style_01.colmun_2 .c-list:nth-of-type(n + 2) {
    margin-top: 1.5%;
  }
}
.contents-frame .c-list-style_02 {
  margin-bottom: 24px;
  padding-left: 16px;
}
.contents-frame .c-list-style_02 .c-list {
  list-style: disc;
}
.online-reserve {
  padding: 96px 0;
}
.online-reserve .inner_top {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 64px;
}
.online-reserve .inner_top .ib-title {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 16px;
}
.online-reserve .inner_top .ib-title .m-text {
  position: relative;
  padding: 0 16px;
}
.online-reserve .inner_top .ib-title .m-text::after, .online-reserve .inner_top .ib-title .m-text::before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #4d4d4d;
  position: absolute;
  bottom: 0;
}
.online-reserve .inner_top .ib-title .m-text::after {
  left: 0;
  transform: rotate(-45deg);
}
.online-reserve .inner_top .ib-title .m-text::before {
  right: 0;
  transform: rotate(45deg);
}
.online-reserve .inner_top .btn-reserve {
  margin: 0 auto;
}
.online-reserve .inner_bottom {
  border: 1px solid #6a6a6a;
  border-radius: 5px;
  padding: 56px;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.online-reserve .inner_bottom .ib-title {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 16px;
}
.online-reserve .inner_bottom .cap {
  text-align: justify;
}
@media only screen and (max-width: 580px) {
  .online-reserve .inner_bottom {
    padding: 24px;
  }
  .online-reserve .inner_bottom .ib-title {
    font-size: 1rem;
  }
}

.ps-sec_page {
  padding: 96px 0;
  background-color: #f2f2f2;
}
.ps-sec_page .ps-contents {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 16px -6px;
  overflow: hidden;
}
.ps-sec_page .ps-contents .ps-cap .psc-title {
  line-height: 2.5;
}
.ps-sec_page .ps-contents .ps-cap .psc-title .s-text {
  font-size: 1rem;
}
.ps-sec_page .ps-contents .ps-cap .psc-title .m-text {
  font-size: 1.5rem;
}
.ps-sec_page .ps-contents .ps-cap .cap {
  margin-bottom: 32px;
  text-align: justify;
}
@media only screen and (max-width: 770px) {
  .ps-sec_page .ps-contents .ps-cap .cap br {
    display: none;
  }
}
@media only screen and (max-width: 580px) {
  .ps-sec_page .ps-contents {
    padding: 0;
  }
  .ps-sec_page .ps-contents .ps-cap {
    padding: 0 24px 24px;
  }
  .ps-sec_page .ps-contents .ps-cap .psc-title {
    text-align: center;
  }
  .ps-sec_page .ps-contents .ps-cap .btn-white, .ps-sec_page .ps-contents .ps-cap .btn-white_clar {
    margin: 0 auto;
  }
}

/* コンテンツヘッド */
.contents-head {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  margin: 72px auto 32px;
  padding-top: 80px;
}
.contents-head .main-title {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 32px;
}
.contents-head .main-title .m-text {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.contents-head .main-title .s-text {
  font-size: 0.75rem;
}

.scta-wrap .stca-list {
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding: 24px 8px;
  border-top: 1px solid #e2e2e2;
  justify-content: space-between;
  text-align: justify;
}
.scta-wrap .stca-list:nth-last-child(1) {
  border-bottom: 1px solid #e2e2e2;
}
.scta-wrap .stca-list .title {
  width: 30%;
  font-weight: bold;
}
.scta-wrap .stca-list .c-area {
  width: 66%;
}
.scta-wrap .stca-list .c-area > a {
  display: inline;
  text-decoration: underline;
}
@media only screen and (max-width: 580px) {
  .scta-wrap .stca-list .title {
    width: 100%;
    margin-bottom: 8px;
  }
  .scta-wrap .stca-list .c-area {
    width: 100%;
  }
}

/* フッター ---------------------------- */
.main-footer {
  border-top: 1px solid #e2e2e2;
  padding: 96px 0 24px;
  background-color: #ffffff;
}
.main-footer .inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 120px;
}
.main-footer .inner .footer-logo {
  max-width: 200px;
}
.main-footer .inner .ft-medicai-nav h3.fmn-title {
  position: relative;
  line-height: 1.2;
  margin-bottom: 16px;
}
.main-footer .inner .ft-medicai-nav h3.fmn-title::before {
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  background-color: #4d4d4d;
  position: absolute;
  left: -16px;
}
.main-footer .inner .ft-medicai-nav .menu .menu-list {
  margin-right: 3%;
}
.main-footer .inner .ft-medicai-nav .menu .menu-list:nth-last-child(1) {
  margin-right: 0;
}
@media only screen and (max-width: 940px) {
  .main-footer .inner .ft-medicai-nav .menu {
    font-size: 0.8rem;
  }
}
.main-footer .footer-bottom {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
  font-size: 0.75rem;
}
.main-footer .footer-bottom .ft-bottom-nav .menu {
  justify-content: space-between;
  max-width: 400px;
}
.main-footer .footer-bottom .copy-light {
  text-align: right;
  font-family: "Jomolhari", serif;
}
.main-footer .footer-bottom .copy-light a {
  display: inline-block;
}
@media only screen and (max-width: 770px) {
  .main-footer {
    padding: 96px 0;
  }
  .main-footer .flex-wrap_chld {
    width: 100%;
  }
  .main-footer .flex-wrap_chld:nth-child(n+2) {
    margin-top: 32px;
  }
  .main-footer .inner {
    margin-bottom: 72px;
    justify-content: center;
  }
  .main-footer .inner .footer-logo {
    max-width: 200px;
  }
  .main-footer .inner .ft-medicai-nav {
    display: none;
  }
  .main-footer .inner .ft-medicai-nav .menu {
    justify-content: space-between;
  }
  .main-footer .footer-bottom .ft-bottom-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .main-footer .footer-bottom .ft-bottom-nav .menu {
    width: 100%;
  }
  .main-footer .footer-bottom .copy-light {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .main-footer .footer-bottom {
    font-size: 0.65rem;
  }
}
@media only screen and (max-width: 360px) {
  .main-footer .footer-bottom {
    font-size: 0.55rem;
  }
}/*# sourceMappingURL=style.css.map */