@charset "UTF-8";

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/* =====================
  fonts
===================== */

/*  Yu Gothic
------------------------*/

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

/*  Yu Mincho
------------------------*/

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/* =====================
  base
===================== */

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

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

svg {
  width: 100%;
  height: 100%;
  display: block;
}

:root {
  --color-black: #4E5467;
  --color-gray: #F8F8F8;
  --color-green: #25AD93;
  --color-green-sub: #E1F5F1;
  --color-blue: #57A1D3;
  --color-blue-sub: #EAF6FF;
  --color-red: #D35064;
}

/*-------------------------------------------*/
/*	SP
/*-------------------------------------------*/

  /* =====================
    base
  ===================== */

  body {
    font-family: "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", 'Hiragino Sans','ヒラギノ角ゴシック','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic', sans-serif;
    color: var(--color-black);
    background: #fff;
    font-size: 16px;
    line-height: 2;
    font-weight: 500;
    letter-spacing: 0.015em;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .sp_none {
    display: none !important;
  }

  a {
    text-decoration: none;
    color: #000;
  }

  a.link {
    color: #1989CF;
    text-decoration: underline;
  }

  .flx {
    display: flex;
  }

  #wrapper {
    position: relative;
    overflow: clip;
    padding-top: 55px;
    padding-bottom: 60px;
  }

  #page_error #wrapper,
  #page_thanks #wrapper {
    padding-bottom: 0;
  }

  .inner {
    width: 83%;
    max-width: 500px;
    margin: 0 auto;
  }

  /* =====================
    header
  ===================== */

  #header {
    justify-content: space-between;
    align-items: center;
    background: #fff;
    width: 100%;
    height: 55px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    padding: 0 7px 0 10px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }
  
  #header .logo {
    width: 35px;
  }

  /*  menu_btn
  ------------------------*/

  .menu_btn {
    padding-top: 10px;
  }
  
  .menu_bar {
    width: 20px;
    height: 14px;
    position: relative;
    margin: 0 auto;
  }

  .menu_bar span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    left: 0;
    transition: .3s;
  }

  .menu_bar span:nth-child(1) {
    background: #F58431;
    top: 0;
  }

  .menu_bar span:nth-child(2) {
    background: #95C258;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu_bar span:nth-child(3) {
    background: #57A1D3;
    bottom: 0;
  }

  .menu_text {
    font-size: 10px;
    font-weight: 600;
    transform: scale(0.9);
    text-align: center;
    letter-spacing: -0.05em;
  }

  .menu_btn.active .menu_bar span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu_btn.active .menu_bar span:nth-child(2) {
    opacity: 0;
  }

  .menu_btn.active .menu_bar span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  #page_error .menu_btn,
  #page_thanks .menu_btn {
    display: none;
  }

  /*  facility_select
  ------------------------*/
  
  #header .facility_select {
    display: none;
    width: calc( 100% - 120px );
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 800px;
  }

  #header .select_text {
    line-height: 1;
    margin-bottom: 2px;
  }

  #header .select_text span {
    font-size: 10px;
    padding: 0 15px;
    color: var(--color-black);
  }

  #header .select_text span::before,
  #header .select_text span::after {
    width: 1.5px;
    height: 13px;
    background: var(--color-black);
    top: 0;
  }

  #header .select_choice {
    font-size: 12px;
    padding: 4px 25px;
  }

  #header .facility_select_acc {
    width: 100%;
    position: fixed;
    top: 55px;
    left: 0;
    z-index: 999;
  }

  /* =====================
    menu
  ===================== */

  #menu {
    display: none;
    width: 100%;
    background: #fff;
    padding-bottom: 25px;
    position: fixed;
    top: 55px;
    left: 0;
    z-index: 1000;
  }

  .menu_bg {
    display: none;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .4;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
  }

  /*  g_nav
  ------------------------*/
  
  #g_nav li {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.1em;
    border-bottom: 1px dashed #D8D8D8;
  }

  #g_nav li:first-child {
    border-top: 1px dashed #D8D8D8;
  }

  #g_nav li a {
    display: block;
    padding: 12.5px 45px;
    position: relative;
  }

  #g_nav li a::before {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    background: var(--color-green);
    position: absolute;
    top: 19px;
    left: 20px;
  }

  #g_nav li:nth-child(even) a::before {
    background: var(--color-blue);
  }

  /* =====================
    btn
  ===================== */
  
  .btn {
    width: 240px;
    height: 60px;
    margin: 0 auto;
    background: var(--color-black);
    border: 2px solid var(--color-black);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.05em;
  }

  .btn a,
  .btn.send {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    padding: 0 35px;
  }

  .btn a::after,
  .btn.send::after {
    content: '';
    width: 21px;
    height: 7px;
    display: block;
    background: url(../img/icon_arrow_w.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    margin-top: -2.5px;
  }

  .btn.tel a::before {
    content: '';
    width: 24px;
    height: 24px;
    display: block;
    background: url(../img/icon_tel.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
  }

  /*  cv_btns
  ------------------------*/

  .cv_btns {
    margin-top: 20px;
  }

  .cv_btns .btn a {
    padding: 0;
  }

  .cv_btns .btn.dial {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1;
  }  

  .cv_btns .btn.dial strong {
    display: block;
    font-size: 18px;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0 15px 0 35px;
    margin: 3px 0;
  }

  .cv_btns .btn.dial strong::before {
    content: '';
    width: 30px;
    height: 17px;
    display: block;
    background: url(../img/icon_dial.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .cv_btns .btn.dial .time {
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    transform: scale(0.9);
  }

  .cv_btns .btn.contact { 
    border-color: var(--color-black);
    background: #fff;
  }

  .cv_btns .btn.contact a {
    color: var(--color-black);
  }

  .cv_btns .btn.contact a::before {
    content: '';
    width: 27px;
    height: 19px;
    display: block;
    background: url(../img/icon_contact.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
  }

  .cv_btns .btn.contact a::after {
    background: url(../img/icon_arrow.svg) no-repeat center;
    background-size: contain;
  }

  /* =====================
    fv
  ===================== */
  
  #fv {
    flex-direction: column;
  }

  .fv_text {
    flex-direction: column;
    background: var(--color-blue-sub);
    flex-direction: column;
    padding: 25px 0 30px;
    text-align: center;
  }

  .fv_ttl {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.1;
    margin-bottom: 5px;
  }

  .fv_ttl strong {
    display: block;
    font-size: 45px;
    letter-spacing: 0;
  }

  .fv_area {
    order: -1;
    line-height: 1;
  }

  .fv_area span {
    display: inline-block;
    background: var(--color-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 5px 10px;
    margin-bottom: 15px;
  }

  .fv_sub {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.6;
  }

  .fv_img:nth-of-type(2) {
    order: -1;
  }

  .fv_img figure {
    width: 50%;
  }

  .fv_bnr {
    padding: 30px 30px 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .fv_bnr img{
    width: 70%;
  }
  @media screen and (max-width:900px) {
    .fv_bnr img{
      width: 100%;
    }
  }

  /* =====================
    contents
  ===================== */

  .contents {
    padding: 25px 0;
  }

  /*  ttl
  ------------------------*/
  
  .ttl {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.5;
    padding: 15px;
    background: var(--color-green-sub);
    color: var(--color-green);
    position: relative;
    margin-bottom: 30px;
  }

  .ttl::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: var(--color-green) transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
  }

  .ttl span {
    display: inline-block;
    background: #fff;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1;
    padding: 5px;
    margin-bottom: 2px;
  }

  .contents:nth-of-type(even) .ttl {
    background: var(--color-blue-sub);
    color: var(--color-blue);
  }

  .contents:nth-of-type(even) .ttl::before {
    border-color: var(--color-blue) transparent transparent transparent;
  }

  /*  lead_text
  ------------------------*/
  
  .lead_text {
    background: var(--color-gray);
    padding: 30px 0 40px;
    margin-top: -30px;
  }

  .ttl_sub {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    color: var(--color-green);
  }

  .lead_text .text {
    font-size: 18px;
    line-height: 1.95;
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .contents:nth-of-type(even) .ttl_sub {
    color: var(--color-blue);
  }

  /*  marker
  ------------------------*/
  
  .marker {
    display: inline-block;
    background:linear-gradient(transparent 70%, var(--color-green-sub) 70%);
  }

  .contents:nth-of-type(even) .marker {
    background:linear-gradient(transparent 70%, var(--color-blue-sub) 70%);
  }

  /* =====================
    box
  ===================== */

  .box {
    margin: 30px 0;
  }

  .box_ttl {
    font-size: 18px;
    letter-spacing: 0.05em;
    text-align: center;
    font-weight: 700;
    background: var(--color-green);
    color: #fff;
    line-height: 1.5;
    padding: 8px;
  }

  .box_ttl span {
    font-size: 12px;
    display: block;
    line-height: 1.2;
    padding-top: 5px;
  }

  .box_text {
    padding: 20px 35px 30px;
    background: var(--color-gray);
  }

  .box_sub {
    font-size: 25px;
    color: var(--color-green);
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
  }

  .box_sub span {
    font-size: 20px;
  }

  .box_text .text {
    text-align: left;
    font-weight: 600;
    line-height: 1.65;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
  }
 
  .box_dial {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }

  .box_dial a {
    display: inline-block;
    position: relative;
    padding-left: 50px;
    color: var(--color-green);
  }

  .box_dial a::before {
    content: '';
    width: 44px;
    height: 25px;
    display: block;
    background: url(../img/icon_dial_g.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .box_dial_time {
    font-size: 12px;
    margin-bottom: 15px;
    text-align: center;
  }

  .contents:nth-of-type(even) .box_ttl {
    background: var(--color-blue);
  }

  .contents:nth-of-type(even) .box_dial a,
  .contents:nth-of-type(even) .box_sub {
    color: var(--color-blue);
  }

  .contents:nth-of-type(even) .box_dial a::before {
    background: url(../img/icon_dial_b.svg) no-repeat center;
    background-size: contain;
  }

  /* =====================
    msg_box
  ===================== */
  
  .msg_box {
    margin-top: 30px;
    padding-top: 30px;
    position: relative;
  }

  .msg_box::before {
    content: '';
    width: 100vw;
    height: 100%;
    display: block;
    background: var(--color-green-sub);
    position: absolute;
    top: 0;
    left: calc( 50% - 50vw );
    z-index: -1;
  }

  .msg_box .msg_text {
    line-height: 1.8;
    background: #fff;
    padding: 25px 30px;
    position: relative;
  }

  .msg_box .msg_text::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    border-width: 0 23px 17px 0;
    position: absolute;
    top: 100%;
    left: 85px;
  }

  .msg_box .msg_text strong {
    font-weight: 600;
    color: var(--color-green);
  }

  .msg_img {
    width: 136px;
    margin: -15px auto 0;
    position: relative;
    z-index: 1;
  }

  .contents:nth-of-type(even) .msg_box::before {
    background: var(--color-blue-sub);
  }

  .contents:nth-of-type(even) .msg_box .msg_text strong {
    color: var(--color-blue);
  }  

  /* =====================
    cv_conts
  ===================== */
  
  .cv_conts {
    border: 3px solid var(--color-green);
    padding: 40px 0;
  }

  .cv_conts_ttl {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 2.2;
    margin-bottom: 25px;
    position: relative;
  }

  .cv_conts_ttl::before {
    content: '';
    width: 32px;
    height: 52px;
    display: block;
    background: url(../img/cv_area_img_g.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: 5px;
    right: -7px;
  }

  .cv_conts_ttl span {
    display: block;
    border-bottom: 1px dashed rgba(79, 85, 104, .5);
  }

  .cv_conts_ttl strong {
    border: 2px solid var(--color-green);
    font-weight: 600;
    display: inline-block;
    color: var(--color-green);
    line-height: 1;
    margin: 0 4px 0 2px;
    padding: 3px 3px;
  }

  .cv_conts_check {
    padding-bottom: 40px;
    position: relative;
  }

  .cv_conts_check::before,
  .cv_conts_check::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 19px solid transparent;
    border-left: 19px solid transparent;
    border-bottom: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .cv_conts_check::before {
    border-top: 10px solid var(--color-green-sub);
    bottom: 10px;
  }

  .cv_conts_check::after {
    border-top: 10px solid var(--color-green);
    bottom: 0;
  }

  .cv_conts_check li {
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
  }

  .cv_conts_check li:last-child {
    margin-bottom: 0;
  }

  .cv_conts_check li::before {
    content: '';
    width: 18px;
    height: 18px;
    display: block;
    background: url(../img/icon_check_g.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 3.5px;
    left: 0;
  }

  .cv_conts .box {
    margin: 20px 0 0;
  }

  .contents:nth-of-type(even) .cv_conts,
  .contents:nth-of-type(even) .cv_conts_ttl strong {
    border-color: var(--color-blue);
  }

  .contents:nth-of-type(even) .cv_conts_ttl::before {
    background: url(../img/cv_area_img_b.svg) no-repeat center;
    background-size: contain;
  }

  .contents:nth-of-type(even) .cv_conts_ttl strong {
    color: var(--color-blue);
  }

  .contents:nth-of-type(even) .cv_conts_check::before {
    border-top-color: var(--color-blue-sub);
  }

  .contents:nth-of-type(even) .cv_conts_check::after {
    border-top-color: var(--color-blue);
  }

  .contents:nth-of-type(even) .cv_conts_check li::before {
    background: url(../img/icon_check_b.svg) no-repeat center;
    background-size: contain;
  }

  /* =====================
    feature
  ===================== */

  .feature_list {
    counter-reset: number 0;
  }
  
  .feature_item {
    counter-increment: number 1;
    margin-bottom: 20px;
  }

  .feature_item:last-of-type {
    margin-bottom: 0;
  }

  .feature_ttl_area {
    width: 100vw;
    height: 0;
    padding-bottom: 73.575%;
    margin: 0 calc( 50% - 50vw ) 20px;
    position: relative;
  }

  .feature_ttl_area::before {
    content: counter(number, decimal-leading-zero) '';
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
    background: var(--color-green);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .feature_ttl {
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: var(--color-green);
    text-align: right;
    position: absolute;
    right: 0;
    bottom: 45px;
    z-index: 1;
  }

  .feature_ttl span {
    display: inline-block;
    background: #fff;
    padding: 2px 8px;
    position: relative;
  }

  .feature_ttl span:nth-last-of-type(2) {
    margin-bottom: -2px;
  }

  .feature_ttl span::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: var(--color-green);
    position: absolute;
    left: -3px;
    bottom: -3px;
    z-index: -1;
  }

  .feature_ttl span .mini {
    font-size: 12px;
    display: block;
  }

  .feature_item:nth-of-type(even) .feature_ttl {
    text-align: left;
    right: auto;
    left: 0;
  }

  .feature_item:nth-of-type(even) .feature_ttl span::before {
    left: auto;
    right: -3px;
  }

  .feature_img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .feature_img img {
    height: 100%;
    object-fit: cover;
  }

  .contents:nth-of-type(even) .feature_ttl_area::before,
  .contents:nth-of-type(even) .feature_ttl span::before {
    background: var(--color-blue);
  }

  .contents:nth-of-type(even) .feature_ttl {
    color: var(--color-blue);
  }

  /* =====================
    alignment
  ===================== */

  .alignment_list {
    margin-top: 20px;
  }

  .alignment_item {
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .alignment_item:nth-of-type(odd) {
    flex-direction: row-reverse;
  }

  .alignment_item:last-of-type {
    margin-bottom: 0;
  }

  .alignment_img_area {
    position: relative;
    margin-right: -8.5vw;
  }

  .alignment_item:nth-of-type(odd) .alignment_img_area {
    margin-left: -8.5vw;
    margin-right: auto;
  }
  
  .alignment_img_area::before {
    content: '';
    width: 130px;
    height: 130px;
    display: block;
    background: var(--color-green-sub);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .alignment_img {
    width: 130px;
  }

  .alignment_img img {
    height: 160px;
    object-fit: contain;
    object-position: bottom;
  }

  .alignment_poti {
    width: 55px;
    height: 55px;
    background: var(--color-green);
    font-size: 10px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -10px;
    left: -10px;
  }

  .alignment_item:nth-of-type(odd) .alignment_poti {
    left: auto;
    right: -10px;
  }

  .alignment_poti span {
    display: block;
    line-height: 1.3;
  }

  .alignment_text {
    width: calc( 100% - 130px );
    padding-top: 30px;
  }

  .alignment_name {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .alignment_name span {
    font-size: 12px;
    margin-left: 3px;
  }

  .alignment_prof {
    font-size: 13px;
    line-height: 1.8;
  }

  .contents:nth-of-type(even) .alignment_img_area::before {
    background: var(--color-blue-sub);
  }

  .contents:nth-of-type(even) .alignment_poti {
    background: var(--color-blue);
  }
  
  /* =====================
    rehabilitation
  ===================== */
  
  #rehabilitation .ttl_sub strong {
    font-size: 45px;
    font-weight: 600;
    display: block;
    line-height: 1.3;
  }

  #rehabilitation .ttl_sub strong span {
    font-size: 22px;
  }
  
  .rehabilitation_item {
    margin-bottom: 35px;
  }

  .rehabilitation_item:last-of-type {
    margin-bottom: 0;
  }

  .rehabilitation_img {
    width: 100vw;
    margin: 0 calc( 50% - 50vw );
    margin-bottom: 30px;
  }

  .rehabilitation_ttl_area {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .rehabilitation_ttl {
    width: calc( 100% - 75px );
    font-size: 22px;
    letter-spacing: 0.1em;
    color: var(--color-green);
    font-weight: 700;
    line-height: 1.7;
  }

  .rehabilitation_ttl > span {
    font-size: 16px;
    color: var(--color-black);
    display: block;
  }

  .rehabilitation_ttl > span span {
    display: inline-block;
    border-bottom: 1px dotted var(--color-green);
  }

  .rehabilitation_num {
    width: 60px;
    height: 60px;
    background: var(--color-green);
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.1em;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .contents:nth-of-type(even) .rehabilitation_ttl {
    color: var(--color-blue);
  }

  .contents:nth-of-type(even) .rehabilitation_ttl > span span {
    border-color: var(--color-blue);
  }

  .contents:nth-of-type(even) .rehabilitation_num {
    background: var(--color-blue);
  }

  /* =====================
    facility
  ===================== */

  /*  facility_select
  ------------------------*/
    
  .select_text {
    color: var(--color-red);
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
  }

  .select_text span {
    display: inline-block;
    padding: 0 25px;
    position: relative;
  }

  .select_text span::before,
  .select_text span::after {
    content: '';
    width: 2px;
    height: 25px;
    display: block;
    background: var(--color-red);
    position: absolute;
    top: 5px;
    transform: rotate(-40deg);
  }

  .select_text span::before {
    left: 0;
  }

  .select_text span::after {
    right: 0;
    transform: scale(1, -1) rotate(-40deg);
  }

  .select_choice {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    color: #fff;
    background: var(--color-green);
    border: 2px solid var(--color-green-sub);
    border-radius: 4px;
    padding: 9px 25px;
    position: relative;
  }

  .select_choice::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 7px solid var(--color-green-sub);
    border-bottom: 0;
    position: absolute;
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
  }

  .contents:nth-of-type(even) .select_choice {
    background: var(--color-blue);
  }

  .contents:nth-of-type(even) .select_choice {
    border-color: var(--color-blue-sub);
  }

  .contents:nth-of-type(even) .select_choice::before {
    border-top: 7px solid var(--color-blue-sub);
  }

  /*  facility_select_acc
  ------------------------*/
  
  .facility_select_acc {
    display: none;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .facility_select_list_ttl {
    background: var(--color-gray);
    padding: 5px 8px;
    font-size: 14px;
    font-weight: 600;
  }

  .facility_select_list_ttl::before {
    content: '▼';
    margin-right: 2px;
  }

  .facility_select_list ul li {
    border-bottom: 1px dashed #D8D8D8;
    font-weight: 600;
    padding: 9px 10px;
    line-height: 1.4;
    display: flex;
    align-items: center;
  }

  .facility_select_list:last-of-type ul li:last-child {
    border-bottom: none;
  }

  .facility_select_list ul li span {
    min-width: 60px;
    text-align: center;
    display: inline-block;
    background: var(--color-black);
    color: #fff;
    font-size: 11px;
    margin-right: 10px;
    line-height: 20px;
    white-space: nowrap;
  }

  /*  facility_container
  ------------------------*/

  .facility_container {
    display: none;
  }

  .facility_conts {
    padding-top: 35px;
  }

  .facility_ttl {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    letter-spacing: 0.1em;
    color: var(--color-green);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
  }

  .facility_ttl span {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1;
    padding: 7px 10px;
    background: var(--color-green-sub);
    color: var(--color-green);
    margin-bottom: 10px;
    position: relative;
  }

  .facility_ttl span::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
    border-top: 5px solid var(--color-green-sub);
    border-bottom: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }

  .contents:nth-of-type(even) .facility_ttl,
  .contents:nth-of-type(even) .facility_ttl span {
    color: var(--color-blue);
  }
  
  .contents:nth-of-type(even) .facility_ttl span {
    background: var(--color-blue-sub);
  }

  .facility_ttl span::before {
    border-top: 5px solid var(--color-blue-sub);
  }

  /*  facility_photo
  ------------------------*/

  .facility_photo_swiper {
    position: relative;
  }

  .facility_photo_swiper .swiper-slide {
    width: 83% !important;
  }

  .facility_photo {
    width: 100%;
    height: 0;
    padding-bottom: 61.148%;
    position: relative;
    margin-bottom: 10vw;
  }

  .facility_photo img {
    object-fit: cover;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .pagination_facility_photo {
    text-align: center;
  }

  .swiper_pagination.pagination_facility_photo {
    width: 100%;
    height: 7px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 55.5vw;
    left: 0;
    transform: translateY(-50%);
}

  .pagination_facility_photo .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 2.5px !important;
    background: #7f7f7f;
  }
  
  .facility_photo_swiper .swiper-slide .facility_ttl {
    margin-bottom: 10px;
  }

  .facility_photo_swiper .swiper-slide .text {
    padding: 0 9%;
  }

  .facility_photo_swiper .icon_arrow {
    width: 35px;
    height: 35px;
    background-color: var(--color-green);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    position: absolute;
    top: 32vw;
    z-index: 2;
    transform: translateY(-50%);
    margin-top: -25px;
  }

  .facility_photo_swiper .swiper-button-disabled {
    opacity: 0;
  }

  .prev_facility_photo {
    background-image: url(../img/icon_prev.svg);
    left: 0;
  }

  .next_facility_photo {
    background-image: url(../img/icon_next.svg);
    right: 0;
  }
  
  .pagination_facility_photo .swiper-pagination-bullet-active {
    background: var(--color-green);
  }

  .contents:nth-of-type(even) .pagination_facility_photo .swiper-pagination-bullet-active,
  .contents:nth-of-type(even) .facility_photo_swiper .icon_arrow {
    background-color: var(--color-blue);
  }

  /*  facility_room
  ------------------------*/

  #facility_room {
    padding-top: 0;
  }
  
  .facility_room_list {
    position: relative;
    padding: 40px 0;
    margin-top: 35px;
  }

  .facility_room_list::before {
    content: '';
    width: 100vw;
    height: 100%;
    display: block;
    background: var(--color-gray);
    position: absolute;
    top: 0;
    left: calc( 50% - 50vw );
    z-index: -1;
  }

  .facility_room_item {
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .facility_room_item:nth-of-type(even) {
    flex-direction: row-reverse;
  }

  .facility_room_item:last-of-type {
    margin-bottom: 0;
  }
  
  .facility_room_text {
    width: calc( 100% - 120px );
  }

  .facility_room_ttl {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }

  .facility_room_text .text {
    font-size: 13px;
    line-height: 1.85;
    letter-spacing: 0.04em;
  }

  .facility_room_att_text {
    text-align: center;
    font-size: 11px;
    padding-top: 20px;
  }

  .facility_room_img {
    width: 130px;
    margin-right: -8.5vw;
  }

  .facility_room_item:nth-of-type(even) .facility_room_img {
    margin-right: auto;
    margin-left: -8.5vw;
  }

  .facility_room_img img {
    height: 130px;
    object-fit: cover;
  }

  /*  facility_price
  ------------------------*/
  
  #facility_price .text {
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .facility_price_table {
    border: 2px solid var(--color-green);
  }

  .facility_price_table table {
    width: 100%;
  }

  .facility_price_table th,
  .facility_price_table td {
    padding: 13px 10px;
    line-height: 1.3;
    vertical-align: middle;
    text-align: center;
  }

  .facility_price_table th {
    font-size: 13px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--color-green);
    border-right: 1px solid var(--color-green);
    color: var(--color-green);
    background: var(--color-gray);
  }

  .facility_price_table th span {
    font-size: 10px;
    display: block;
  }

  .facility_price_table th:first-child {
    width: 70px;
    background: var(--color-green);
    color: #fff !important;
    border-color: #fff !important;
  }

  .facility_price_table td {
    border-bottom: 1px solid var(--color-green);
    border-right: 1px solid var(--color-green);
    font-size: 18px;
    font-weight: 600;
  }

  .facility_price_table th:last-of-type,
  .facility_price_table td:last-of-type {
    border-right: none;
  }

  .facility_price_table tr:last-of-type th,
  .facility_price_table tr:last-of-type td {
    border-bottom: none;
  }

  .facility_price_kome {
    font-size: 11px;
    margin-top: 15px;
    line-height: 1.6;
  }

  .contents:nth-of-type(even) .facility_price_table,
  .contents:nth-of-type(even) .facility_price_table th,
  .contents:nth-of-type(even) .facility_price_table td {
    border-color: var(--color-blue);
  }

  .contents:nth-of-type(even) .facility_price_table th:first-child {
    background: var(--color-blue);
  }

  .contents:nth-of-type(even) .facility_price_table th {
    color: var(--color-blue);
  }
  
  /*  facility_subject
  ------------------------*/

  .facility_subject_list {
    border: 2px solid var(--color-green);
    padding: 30px 25px;
    margin-top: -30px;
    position: relative;
  }

  .facility_subject_list::before {
    content: '';
    width: 185px;
    height: 35px;
    display: block;
    background: #fff;
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .facility_subject_list li {
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 7px;
    position: relative;
    padding-left: 28px;
  }

  .facility_subject_list li:last-child {
    margin-bottom: 0;
  }

  .facility_subject_list li::before {
    content: '';
    width: 18px;
    height: 18px;
    display: block;
    background: url(../img/icon_check_g.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 3.5px;
    left: 0;
  }

  .contents:nth-of-type(even) .facility_subject_list {
    border-color: var(--color-blue);
  }

  .contents:nth-of-type(even) .facility_subject_list li::before {
    background: url(../img/icon_check_b.svg) no-repeat center;
    background-size: contain;
  }

  /*  facility_terms
  ------------------------*/
  
  #facility_terms {
    background: var(--color-gray);
    margin-top: 35px;
    padding-bottom: 35px;
  }

  .facility_terms_list li {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
    padding: 8px 10px;
    position: relative;
    padding-right: 25px;
  }

  .facility_terms_list li:nth-child(odd) {
    background: #fff;
  }

  .facility_terms_list li::before {
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }

  .facility_terms_list li.maru::before {
    background-image: url(../img/icon_maru_g.svg);
  }

  .facility_terms_list li.sankaku::before {
    background-image: url(../img/icon_sankaku.svg);
  }

  .facility_terms_list li.batsu::before {
    background-image: url(../img/icon_batsu.svg);
  }

  .facility_terms_list li.kome::after {
    content: '※';
    color: var(--color-red);
  }

  .facility_disc {
    margin-top: 35px;
    font-size: 12px;
  }

  .contents:nth-of-type(even) .facility_terms_list li.maru::before {
    background-image: url(../img/icon_maru_b.svg);
  }

  /*  more_conts
  ------------------------*/

  .more_conts {
    position: relative;
  }
  
  .more_conts .more_hidden {
    margin-top: 25px;
    position: relative;
    height: auto;
    max-height: 220px;
    overflow: hidden;
    transition: max-height 1s;
  }

  .more_conts .more_hidden::after {
    content: '';
    display: block;
    width: 100%;
    height: 130px;
    transition: 1s;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .more_conts .more_hidden.open::after {
    z-index: -1;
    opacity: 0;
  }

  .btn_more {
    width: 240px;
    height: 60px;
    margin: 0 auto;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    background: var(--color-green);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .btn_more::before,
  .btn_more::after {
    content: '';
    display: block;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .btn_more::before {
    width: 15px;
    height: 1px;
    right: 15px;
  }

  .btn_more::after {
    width: 1px;
    height: 15px;
    right: 22px;
  }

  .btn_more span span {
    display: block;
    font-size: 10px;
  }

  .contents:nth-of-type(even) .btn_more {
    background: var(--color-blue);
  }

  /*  facility_summary
  ------------------------*/

  .facility_summary_table {
    width: 100%;
  }

  .facility_summary_table th,
  .facility_summary_table td {
    font-size: 12px;
    text-align: left;
    vertical-align: top;
    padding: 8px 10px;
  }

  .facility_summary_table th {
    font-weight: 600;
    width: 105px;
  }

  .facility_summary_table td {
    width: calc( 100% - 105px );
  }
  
  .facility_summary_table tr:nth-of-type(odd) th,
  .facility_summary_table tr:nth-of-type(odd) td {
    background: var(--color-gray);
  }

  /*  facility_access
  ------------------------*/

  #facility_access {
    background: var(--color-gray);
    margin-top: 35px;
    padding: 35px 0;
  }
  
  .facility_access_map {
    width: 100vw;
    height: 0;
    margin: 0 calc( 50% - 50vw );
    padding-bottom: 65%;
    position: relative;
    margin-bottom: 20px;
  }

  .facility_access_map iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .facility_access_ttl {
    font-size: 16px;
    font-weight: 600;
    padding-left: 28px;
    position: relative;
  }

  .facility_access_ttl::before {
    content: '';
    width: 20px;
    height: 22px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 5px;
    left: 0;
  }

  .facility_access_ttl.car::before {
    background-image: url(../img/facility_access_car_g.svg);
  }

  .facility_access_ttl.train::before {
    background-image: url(../img/facility_access_train_g.svg);
  }

  .facility_access_text .text {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .facility_access_text:last-of-type {
    margin-bottom: 0;
  }

  .contents:nth-of-type(even) .facility_access_ttl.car::before  {
    background-image: url(../img/facility_access_car_b.svg);
  }

  .contents:nth-of-type(even) .facility_access_ttl.train::before  {
    background-image: url(../img/facility_access_train_b.svg);
  }

  /*  facility_msg
  ------------------------*/

  #facility_msg {
    padding-top: 0;
  }

  #facility_msg .inner {
    position: relative;
  }

  #facility_msg .msg_box {
    margin-top: 0;
  }
  
  #facility_msg .facility_ttl span {
    background: #fff;
  }

  #facility_msg .facility_ttl span::before {
    border-top: 5px solid #fff;
  }

  .facility_msg_name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.1em;
    position: absolute;
    bottom: 15px;
    right: 0;
  }

  .facility_msg_name span {
    font-size: 10px;
    display: block;
  }

  /* =====================
    about
  ===================== */
  
  .about_text {
    text-align: center;
    margin-bottom: 20px;
  }

  .about_text strong {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin-top: 10px;
  }

  .about_img_area {
    position: relative;
  }

  .about_img {
    width: 100vw;
    margin: 0 calc( 50% - 50vw );
    padding-bottom: 30px;
  }

  .about_jpx {
    width: 60px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .about_pr_text {
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .about_pr_text .pr {
    color: var(--color-green);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
  }

  .about_pr_text .pr strong {
    font-size: 35px;
    font-weight: 700;
    display: inline-block;
    margin: 0 3px;
  }

  .about_pr_text .kome {
    font-size: 12px;
  }

  #about .box {
    margin-bottom: 0;
  }

  .contents:nth-of-type(even) .about_pr_text .pr {
    color: var(--color-blue);
  }

  /* =====================
    flow
  ===================== */
  
  .flow_step li {
    display: flex;
    align-items: center;
    min-height: 60px;
    font-size: 16px;
    font-weight: 600;
    background: var(--color-gray);
    padding: 15px 20px 15px 80px;
    margin-bottom: 10px;
    position: relative;
  }

  .flow_step li:last-child {
    margin-bottom: 0;
  }

  .flow_step li::before {
    content: '';
    width: 60px;
    height: 100%;
    display: block;
    background-color: var(--color-green);
    background-repeat: no-repeat;
    background-size: 33px;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
  }

  .flow_step li:nth-child(1):before {
    background-image: url(../img/flow_step1.svg);
  }

  .flow_step li:nth-child(2):before {
    background-image: url(../img/flow_step2.svg);
  }

  .flow_step li:nth-child(3):before {
    background-image: url(../img/flow_step3.svg);
  }

  .flow_step li:nth-child(4):before {
    background-image: url(../img/flow_step4.svg);
  }

  .flow_step li::after {
    content: '';
    width: 13px;
    height: 11px;
    display: block;
    background: url(../img/flow_arrow_g.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 100%;
    left: 30px;
    transform: translateX(-50%);
  }

  .flow_step li:last-child:after {
    display: none;
  }
  
  #flow .msg_text {
    text-align: center;
  }

  #flow .msg_img {
    width: 205px;
    margin-right: -8.5vw;
  }
  
  .contents:nth-of-type(even) .flow_step li::before {
    background-color: var(--color-blue);
  }

  .contents:nth-of-type(even) .flow_step li::after {
    background: url(../img/flow_arrow_b.svg) no-repeat center;
    background-size: contain;
  }
  
  /* =====================
    contact
  ===================== */
  
  #contact {
    background: var(--color-gray);
    padding-top: 0;
  }
  
  #contact .ttl {
    background: var(--color-black);
    color: #fff;
  }

  /*  form
  ------------------------*/

  .form {
    margin-top: 35px;
  }
  
  .form input,
  .form select {
    margin: 0;
    padding: 0;
    background: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .form button {
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .form input[type="text"],
  .form input[type="email"] {
    width: 100%;
    display: block;
    padding: 12px;
    background: #fff;
    border: 2px solid #D6D6D6;
    border-radius: 4px;
    font-family : inherit;
    font-size : 14px;
    min-height: 47px;
  }

  .input.radio input,
  .input.check input,
  .input.check_facility input {
    display: none;
    cursor: pointer;
  }

  :-moz-placeholder {
    color: #C3C3C3;
    opacity: 1;
  }

  ::-moz-placeholder {
    color: #C3C3C3;
    opacity: 1;
  }

  :-ms-input-placeholder {
    color: #C3C3C3;
  }

  ::-ms-input-placeholder {
    color: #C3C3C3;
  }

  ::-webkit-input-placeholder {
    color: #C3C3C3;
  }

  ::placeholder {
    color: #C3C3C3;
  }

  .input_area li {
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .input_area li:last-child {
    margin-bottom: 0;
  }

  .input_area li .label {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding-left: 52px;
    margin-bottom: 11px;
    position: relative;
  }

  .input_area li .label .tag {
    width: 44px;
    height: 18px;
    line-height: 18px;
    font-size: 10px;
    display: inline-block;
    text-align: center;
    background: #D6D6D6;
    color: #fff;
    letter-spacing: 0.1em;
    position: absolute;
    top: 2px;
    left: 0;
  }

  .input_area li .label .tag.required {
    background: var(--color-red);
  }

  .input_area li .label .mini {
    font-size: 13px;
  }

  .input_area li .input {
    position: relative;
  }

  .input_area li .input.check {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .input_area li .input.check .mwform-checkbox-field {
    width: 48%;
    margin: 0;
  }

  .input_area li .input.check .mwform-checkbox-field-text {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    border: 2px solid var(--color-black);
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    padding-left: 45px;
    position: relative;
  }

  .input_area li .input.check .mwform-checkbox-field-text::before,
  .input_area li .input.check_facility .mwform-checkbox-field-text::before,
  .check_area li .mwform-checkbox-field-text::before {
    content: '';
    width: 18px;
    height: 18px;
    display: block;
    background: url(../img/icon_check_none.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
  }

  .input_area li .input.check input:checked + .mwform-checkbox-field-text {
    background: var(--color-black);
    color: #fff;
  }

  .input_area li .input.check input:checked + .mwform-checkbox-field-text::before {
    background: url(../img/icon_check_w.svg) no-repeat center;
    background-size: contain;
  }

  .input_area li .input.check_facility {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 0;
  }

  .input_area li .input.check_facility .mwform-checkbox-field-text {
    position: relative;
    padding-left: 27px;
    font-size: 14px;
  }

  .input_area li .input.check_facility .mwform-checkbox-field {
    display: inline-block;
    flex: 1 1 50%;
    margin: 0;
    white-space: nowrap;
  }

  .input_area li .input.check_facility .mwform-checkbox-field-text::before {
    left: 0;
  }

  .check_area {
    margin-top: 30px;
  }

  .check_area li {
    font-size: 12px;
    line-height: 1.8;
    position: relative;
    padding-left: 25px;
    letter-spacing: 0.04em;
    text-indent: -0.7em;
    margin-bottom: 2px;
  }

  .check_area li:last-child {
    margin-bottom: 0;
  }

  .check_area li a {
    text-decoration: underline;
  }

  .check_area li .mwform-checkbox-field-text::before {
    top: 1px;
    left: 0;
    transform: none;
  }

  .check_area li input:checked + .mwform-checkbox-field-text::before,
  .input_area li .input.check_facility input:checked + .mwform-checkbox-field-text::before {
    background: url(../img/icon_check_bl.svg) no-repeat center;
    background-size: contain;
  }

  .btn_area .btn.send {
    height: 60px;
    margin-top: 20px;
  }

  .mw_wp_form .form .error {
    display: block;
    width: 100%;
    color: var(--color-red);
    font-size: 10px;
    font-weight: 600;
    text-indent: 0;
    margin-top: 3px;
  }

  .mw_wp_form .form .error::before {
    content: '※';
  }

  .form p.error-red input[type="text"],
  .form p.error-red input[type="email"],
  .form p.error-red input[type="tel"] {
    border-color: var(--color-red) !important;
  }

  .p-country-name {
    display: none;
  }

  .input_for_type1 {
    display: none;
  }

  .input_for_type2 {
    display: none;
  }

  /* =====================
    fixed_menu
  ===================== */
  
  #fixed_menu {
    width: 100%;
    height: 60px;
    background: #fff;
    padding: 0 6px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 998;
    opacity: 0;
    visibility: hidden; /* 最初は非表示 */
    transition: opacity .2s ease, visibility .2s ease;
  }

  #fixed_menu .fixed_btn {
    width: 49%;
    height: 45px;
    border-radius: 6px;
    background: var(--color-black);
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    font-weight: 600;
  }

  #fixed_menu .fixed_btn a {
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-left: 10px;
    position: relative;
  }
  
  #fixed_menu .fixed_btn a span {
    width: 80px;
    display: inline-block;
    background: #fff;
    color: var(--color-black);
    font-size: 10px;
    transform: scale(0.9);
    line-height: 1;
    padding: 1px 0;
    margin-bottom: 2px;
  }

  #fixed_menu .fixed_btn a::before {
    content: '';
    width: 24px;
    height: 24px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
  }

  #fixed_menu .fixed_btn.tel a::before {
    background-image: url(../img/icon_tel.svg);
  }

  #fixed_menu .fixed_btn.contact a::before {
    background-image: url(../img/icon_contact_w.svg);
  }

  .grecaptcha-badge {
    bottom: 70px !important;
    z-index: 997;
  }

  /* =====================
    page_thanks
  ===================== */
  
  #page_thanks .btn {
    margin-top: 30px;
  }

  #page_thanks #contact {
    min-height: 85vh;
  }

  /* =====================
    footer
  ===================== */
  
  #footer {
    background: #fff;
  }

  address {
    font-size: 10px;
    font-style: normal;
    text-align: center;
    padding: 10px 0;
  }

  /* =====================
    SP調整
  ===================== */

  @media screen and (min-width:600px) {

    .feature_ttl_area {
      width: 100%;
      height: 305.55px;
      padding-bottom: 0;
      margin: 0 auto 20px;
    }

    .alignment_img_area {
      margin-right: 0;
    }

    .alignment_item:nth-of-type(odd) .alignment_img_area {
      margin-left: 0;
    }

    .alignment_text {
      width: calc( 100% - 160px );
    }

    .rehabilitation_img {
      width: 100%;
      height: 305.55px;
      padding-bottom: 0;
      margin: 0 auto 30px;
    }
  }


/*-------------------------------------------*/
/*	PC
/*-------------------------------------------*/

@media screen and (min-width:900px) {

  /* =====================
    base
  ===================== */

  body {
    font-size: 18px;
  }

  .pc_none {
    display: none !important;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }

  #wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-right: solid 1px #CCCCCC;
    border-left: solid 1px #CCCCCC;    
  }

  #fixed_menu {
    justify-content: center;
  }

  #fixed_menu .fixed_btn {
    width: 395px;
    margin: 0 5px;
  }

  .about_img {
    width: 100%;
    margin: 0 auto;
  }

  .facility_photo {
    margin-bottom: 50px;
  }

  .swiper_pagination.pagination_facility_photo {
    top: 77%;
  }

  .facility_photo_swiper .icon_arrow {
    top: 40%;
  }

  .facility_room_img,
  .facility_room_item:nth-of-type(even) .facility_room_img {
    margin: 0;
  }

  .facility_room_text {
    width: calc(100% - 160px);
  }

  .facility_room_att_text {
    text-align: center;
    font-size: 11px;
    padding-top: 30px;
  }

}