@charset "utf-8";

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

　ここから全サイズ適用

================================*/
/*--------------------------------
共通
--------------------------------*/
html {
  font-size: 10px;
  font-size: 62.5%;
}
body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ",
    "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 16px;
  font-size: 1.6em;
  text-align: justify;
  line-height: 1.6;
  color: #555555;
}
#all {
  scroll-behavior: smooth;
}

/*フォント*/
.font01 {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

/*画像*/
img {
  max-width: 100%;
  height: auto;
}

/*リンク装飾*/
a {
  color: #555555;
}
a:link {
  color: #555555;
  text-decoration: none;
}
a:visited {
  color: #555555;
  text-decoration: none;
}
a:hover {
  color: #9a9b9b;
}
a:active {
  color: #9a9b9b;
  text-decoration: none;
}
a img:hover {
  opacity: 0.8;
}

/*電話*/
a.tel {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
a.tel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto 0;
  background: url(./img/icon_tel_bg03.png) no-repeat left center/16px;
}
a.tel:link {
  color: #36bdef;
}
a.tel:visited {
  color: #36bdef;
}
a.tel:hover {
  color: #78c7ff;
}
a.tel:active {
  color: #78c7ff;
}

/*タイトル*/
.ttl01 img {
  display: inline-block;
}
.ttl02 {
  line-height: 1;
  font-size: 0;
}
.ttl02 img {
  display: inline-block;
}
.ttl03 {
  color: #01b2ad;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}

/*文字装飾*/
.txt_type01 {
  font-weight: bold;
}
.txt_type02 {
  color: #36bdef;
}
.txt_type03 {
  color: #01b2ad;
}
.txt_type04 {
  display: inline-block;
  padding: 0 8px;
  background-color: #36bdef;
  border-radius: 3px;
  color: #fff;
}
.txt_type05 {
  display: inline-block;
  padding: 0 8px;
  background-color: #01b2ad;
  border-radius: 3px;
  color: #fff;
}
.txt_type06 {
  display: inline-block;
  padding: 0 8px;
  background-color: #9a9b9b;
  border-radius: 3px;
  color: #fff;
}
.txt_type07 {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50%, transparent),
    color-stop(50%, #45d6d2)
  );
  background: linear-gradient(transparent 50%, #45d6d2 50%);
  font-weight: bold;
}

/*フレックスボックス - 親要素*/
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; /*アイテムを上から下に折り返しする*/
}
.flexbox.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between; /*水平方向：両端のアイテムを余白を空けずに配置し、その他は均等配置*/
}
.flexbox.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center; /*アイテムを中央に寄せる*/
}

/*行揃え*/
.align_right {
  text-align: right !important;
}
.align_left {
  text-align: left !important;
}
.align_center {
  text-align: center !important;
}

/*余白調整*/
.mt10 {
  margin-top: 10px !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb05 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}

/*背景装飾*/
.bg01 {
  background: url(./img/bg01.png) repeat center top;
}
.bg02 {
  background: url(./img/bg02.png) repeat center top;
}

/*--------------------------------
header
--------------------------------*/
/*電話*/
#ghd a.tel {
  font-size: 24px;
  font-weight: bold;
}
/*--------------------------------
breadcrumb
--------------------------------*/
#breadcrumb {
  padding-top: 8px;
  padding-bottom: 8px;
}
#breadcrumb ul > li {
  display: inline-block;
}
#breadcrumb ul > li::after {
  content: "＞";
  margin-left: 4px;
}
#breadcrumb ul > li:last-child:after {
  content: none;
}
/*--------------------------------
mainvisual
--------------------------------*/
.mainvisual {
  position: relative;
  padding-bottom: 50px;
}
.mainvisual::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100px;
  background: url(./img/bg03.png) repeat-x left bottom;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

/*flexbox - 親コンテナ*/
.vr_eria {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

/* flexbox - 子要素(360°部分) */
.vr_eria .vr_box .ricoh-theta-tour-image {
  width: 100% !important;
  height: auto !important;
}
.vr_eria .vr_box iframe {
  width: 100% !important;
  height: 710px !important;
  border: 2px solid #666464;
}

/* flexbox - 子要素(キャッチ部分) */
.vr_eria .right_box .txt .arrow {
  display: inline-block;
  position: relative;
}
.vr_eria .right_box .txt .arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background-image: url(./img/vr_bg03.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 32px;
}

/*オープン*/
.mainvisual .open {
  position: relative;
  display: inline-block;
  margin-top: 50px;
  padding-right: 100px;
  color: #01b2ad;
  font-size: 30px;
  font-weight: bold;
}
.mainvisual .open::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: url(./img/mv_open_bg01.png) no-repeat left bottom/100px;
}
/*--------------------------------
sec01
--------------------------------*/
#sec01 {
  padding-top: 200px;
  padding-bottom: 200px;
}

/*flexbox - 親コンテナ*/
#sec01 .sec01_ttl_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*設備紹介写真エリア - メイン*/
#sec01 .swiper-container {
  overflow: hidden;
  border: 2px solid #666464;
}
#sec01 .swiper-slide {
  position: relative;
}
#sec01 .slide_img01 {
  background: url(./img/slide_pic01.png?2) no-repeat center center / cover;
}
#sec01 .slide_img02 {
  background: url(./img/slide_pic02.png) no-repeat center center / cover;
}
#sec01 .slide_img03 {
  background: url(./img/slide_pic03.png?2) no-repeat center center / cover;
}
#sec01 .slide_img04 {
  background: url(./img/slide_pic04.png) no-repeat center center / cover;
}
#sec01 .slide_img05 {
  background: url(./img/slide_pic05.png) no-repeat center center / cover;
}
#sec01 .slide_img06 {
  background: url(./img/slide_pic06.png?2) no-repeat center center / cover;
}
#sec01 .catch {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
#sec01 .catch .ttl {
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
}
/* #sec01 .catch .txt {
} */

/*設備紹介写真エリア - サムネイル*/
#sec01 .thumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#sec01 .thumb-item {
  width: 33.3%;
}
#sec01 .thumb-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
#sec01 .thumb-link p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 6px 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-weight: bold;
}
/*--------------------------------
sec02
--------------------------------*/
#sec02 {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
#sec02::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 100px;
  background: url(./img/bg03.png) repeat-x left bottom;
}
#sec02::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100px;
  background: url(./img/bg03.png) repeat-x left bottom;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

/*flexbox - 親コンテナ*/
#sec02 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*先生の名前*/
#sec02 .cont {
  text-align: center;
}
#sec02 .ttl03 {
  display: inline-block;
  margin-right: 20px;
}
#sec02 .name {
  display: inline-block;
  font-size: 2.6rem;
}

/*--------------------------------
sec03
--------------------------------*/
#sec03 {
  padding-top: 200px;
  padding-bottom: 100px;
}

/*flexbox - 親コンテナ*/
#sec03 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* flexbox - 子要素(左カラム) */
#sec03 .left_box {
  text-align: center;
}

/* flexbox - 子要素(右カラム) */
#sec03 .right_box {
  padding: 20px 3%;
  background-color: #fff;
  border: 2px solid #666464;

  /*flexbox - 親コンテナ(チラシ部分)*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* flexbox - 子要素(チラシ部分) */
#sec03 .right_box a {
  position: relative;
  display: inline-block;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
#sec03 .right_box a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(./img/sec03_bg01.png) no-repeat left top/cover;
}
#sec03 .right_box a img {
  display: inline-block;
}
#sec03 .right_box a:hover {
  opacity: 0.5;
}

/*文字装飾*/
#sec03 .txt_type07 {
  font-size: 30px;
}
#sec03 .txt_type01 {
  font-size: 30px;
}
/*--------------------------------
sec04
--------------------------------*/
#sec04 {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fffded;
}

/*flexbox - 親コンテナ*/
#sec04 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*バナー*/
#sec04 .bnr {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border: 6px solid #fff;
  border-radius: 50px;
}
#sec04 .bnr:nth-child(1) {
  background: #36bdef;
}
#sec04 .bnr:nth-child(2) {
  background: #01b2ad;
}
#sec04 .bnr:hover {
  opacity: 0.8;
}
#sec04 .bnr a {
  position: relative;
  display: block;
  padding: 30px 70px;
  text-align: left;
  line-height: 1;
}
#sec04 .bnr a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 24px;
  height: 30px;
  background: url(./img/icon_arrow_bg01.png) no-repeat left top/20px;
  -webkit-transform: translateY(-50%) rotateZ(90deg);
  transform: translateY(-50%) rotateZ(90deg);
}
#sec04 .bnr:nth-child(1) a::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  margin: auto 0;
  background: url(./img/icon_tel_bg02.png) no-repeat left top/40px;
}
#sec04 .bnr:nth-child(2) a::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url(./img/rzv_bg02.png) no-repeat left top/40px;
}
#sec04 .bnr img {
  margin: 0 auto;
}
/*--------------------------------
footer
--------------------------------*/
#gft {
  padding-top: 50px;
}

#gft > .inner {
  padding-top: 0;
  padding-bottom: 50px;
}

/*ページトップへ*/
#gft #pagetop {
  position: fixed;
  opacity: 0;
  z-index: 9000;
}
#gft #pagetop a {
  display: block;
  width: 60px;
  height: 60px;
  padding-top: 35px;
  background: url(./img/icon_arrow_bg01.png) #9a9b9b no-repeat center top 10px/16px;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  font-size: 10px;
}
#gft #pagetop.fade-in {
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

/*電話*/
#gft a.tel {
  font-size: 24px;
  font-weight: bold;
}

/*診療時間*/
#gft .timetable > table {
  width: 100%;
}
#gft .timetable > table thead {
  border-bottom: 1px solid #555555;
}
#gft .timetable > table thead th {
  padding: 4px 1%;
  vertical-align: middle;
}
#gft .timetable > table thead th:first-child {
  width: 30%;
}
#gft .timetable > table tbody tr {
  border-bottom: 1px solid #555555;
}
#gft .timetable > table tbody th,
#gft .timetable > table tbody td {
  padding: 8px 1%;
  vertical-align: middle;
}
#gft .timetable > table tbody th {
  text-align: center;
}
#gft .timetable > table tbody td {
  text-align: center;
}
#gft .timetable::after {
  content: "";
  clear: both;
  display: block;
}
#gft .timetable p.txt:first-of-type {
  float: right;
}
#gft .timetable p.txt:last-of-type {
  float: left;
}
#gft .timetable .txt_type06 {
  margin-right: 10px;
}
#gft .timetable .pic img {
  border-radius: 0;
  width: 16px;
  height: 16px;
}

/*Googleマップ*/
#gft .gmap iframe {
  overflow: hidden;
  width: 100%;
  height: 270px;
  border: none;
}

/*コピーライト*/
#gft .copyright {
  text-align: center;
}

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

　ここからPC・TABLET適用

================================*/
@media (min-width: 897px) {
  /*--------------------------------
  共通
  --------------------------------*/
  .pc-none {
    display: none !important;
  }
  .pcTab-none {
    display: none !important;
  }
  .inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
  }
  /*--------------------------------
  header
  --------------------------------*/
  #ghd {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #ghd .inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* flexbox - 子要素 */
  #ghd .flexbox.between .col:nth-child(odd) {
    -ms-flex-preferred-size: 32%;
    flex-basis: 32%;
  }
  #ghd .flexbox.between .col:nth-child(even) {
    -ms-flex-preferred-size: 66%;
    flex-basis: 66%;
  }

  /*テキスト*/
  #ghd .flexbox.between .col:nth-child(2) .txt {
    margin-bottom: 10px;
    text-align: right;
  }
  /*--------------------------------
  グローバルナビ
  --------------------------------*/
  /*flexbox - 親コンテナ*/
  #slide_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  #slide_menu > li {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin-right: 16px;
  }
  #slide_menu > li:last-child {
    margin-right: 0;
  }
  #slide_menu > li > a:link {
    color: #666464;
    font-size: 2rem;
    font-weight: bold;
  }
  #slide_menu > li > a:visited {
    color: #666464;
  }
  #slide_menu > li > a:hover {
    color: #9a9b9b;
  }
  #slide_menu > li > a:active {
    color: #9a9b9b;
  }
  /*--------------------------------
  サイドバナー
  --------------------------------*/
  .rzv_box {
    position: fixed;
    top: 150px;
    right: 0;
    z-index: 10;
  }
  .rzv_box li {
    margin-bottom: 10px;
  }
  .rzv_box li:last-child {
    margin-bottom: 0;
  }
  .rzv_box a {
    display: inline-block;
    width: 50px;
    padding: 50px 10px 20px 0;
    border: 1px solid #666464;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  .rzv_box a.rzv01:link {
    background: url(./img/icon_tel_bg02.png) #36bdef no-repeat center top 10px/20px;
  }
  .rzv_box a.rzv01:visited {
    background-color: #36bdef;
  }
  .rzv_box a.rzv01:hover {
    background-color: #6fccef;
  }
  .rzv_box a.rzv01:active {
    background-color: #6fccef;
  }
  .rzv_box a.rzv02:link {
    background: url(./img/rzv_bg02.png) #01b2ad no-repeat center top 10px/28px;
    background-color: #01b2ad;
  }
  .rzv_box a.rzv02:visited {
    background-color: #01b2ad;
  }
  .rzv_box a.rzv02:hover {
    background-color: #3dc7c3;
  }
  .rzv_box a.rzv02:active {
    background-color: #3dc7c3;
  }
  /*--------------------------------
  mainvisual
  --------------------------------*/
  /*画像*/
  .vr_eria img {
    display: inline-block;
  }

  /* flexbox - 子要素(360°部分) */
  .vr_eria .vr_box {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-top: 20px;
  }

  /* flexbox - 子要素(キャッチ部分) */
  .vr_eria .right_box {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    position: relative;
  }
  .vr_eria .right_box .ttl {
    display: inline-block;
    padding: 160px 45px 195px 80px;
    background: url(./img/vr_bg01.png) no-repeat right top/140px,
      url(./img/vr_bg02.png) no-repeat right bottom/150px;
  }
  .vr_eria .right_box .txt {
    position: absolute;
    top: 160px;
    left: 20px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  .vr_eria .right_box .txt .arrow {
    padding: 40px 8px 0;
  }
  /*--------------------------------
  sec01
  --------------------------------*/
  /*flexbox - 親コンテナ*/
  #sec01 .sec01_ttl_box {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
  }

  /* flexbox - 子要素(タイトル) */
  #sec01 .ttl02 {
    margin-right: 20px;
  }

  /* flexbox - 子要素(テキスト) */
  #sec01 .sec01_ttl_box p {
    margin-top: 40px;
    font-size: 2rem;
  }

  /*設備紹介写真エリア*/
  #sec01 .slide_eria {
    width: 90%;
    max-width: 1500px;
  }

  /*設備紹介写真エリア - メイン*/
  #sec01 .swiper-container {
    float: left;
    width: 50%;
    height: 500px;
  }
  #sec01 .swiper-slide {
    width: 100%;
    height: 500px;
  }

  /*設備紹介写真エリア - サムネイル*/
  #sec01 .thumb-list {
    float: left;
    width: 50%;
    height: 400px;
    padding: 0;
  }
  #sec01 .thumb-item {
    border-top: 2px solid #666464;
    border-right: 2px solid #666464;
  }
  #sec01 .thumb-item:nth-last-child(-n + 3) {
    border-bottom: 2px solid #666464;
  }
  /*--------------------------------
  sec02
  --------------------------------*/
  /*flexbox - 親コンテナ*/
  #sec02 .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  /* flexbox - 子要素(左カラム) */
  #sec02 .left_box {
    -ms-flex-preferred-size: 59%;
    flex-basis: 59%;
  }

  /* flexbox - 子要素(右カラム) */
  #sec02 .right_box {
    -ms-flex-preferred-size: 39%;
    flex-basis: 39%;
    padding-top: 50px;
  }

  /*タイトル*/
  #sec02 .ttl02 {
    float: right;
    display: inline-block;
    margin-left: 20px;
  }

  /*テキスト*/
  #sec02 .txt {
    float: right;
    display: inline-block;
    height: 550px;
    padding-top: 60px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  /*--------------------------------
  sec03
  --------------------------------*/
  /*flexbox - 親コンテナ*/
  #sec03 .inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  /* flexbox - 子要素(左カラム) */
  #sec03 .left_box {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
  }

  /* flexbox - 子要素(右カラム) */
  #sec03 .right_box {
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
    margin-top: 60px;

    /*flexbox - 親コンテナ(チラシ部分)*/
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  /* flexbox - 子要素(チラシ部分) */
  #sec03 .right_box a {
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;
  }
  #sec03 .right_box a::before {
    width: 100px;
    height: 34px;
  }

  /*タイトル*/
  #sec03 .ttl02 {
    margin-bottom: 20px;
  }
  /*--------------------------------
  sec04
  --------------------------------*/
  /*flexbox - 親コンテナ*/
  #sec04 .inner {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  /* flexbox - 子要素() */
  #sec04 .right_box {
    padding-top: 60px;
  }

  /*タイトル*/
  #sec04 .ttl02 {
    margin-left: 20px;
  }
  /*--------------------------------
  footer
  --------------------------------*/
  /*ページトップへ*/
  #gft #pagetop {
    right: 10px;
    bottom: 20px;
  }

  /*フレックスボックス - 子要素*/
  #gft .flexbox .col {
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;
  }
  #gft .cont:first-of-type .flexbox .col:first-of-type {
    -ms-flex-preferred-size: 15%;
    flex-basis: 15%;
  }
  #gft .cont:first-of-type .flexbox .col:nth-last-child(-n + 2) {
    padding-top: 60px;
  }
  #gft .cont:first-of-type .flexbox .col:nth-of-type(2) {
    -ms-flex-preferred-size: 34%;
    flex-basis: 34%;
  }

  /*タイトル*/
  #gft .ttl02 {
    margin-right: 20px;
  }

  /*コピーライト*/
  #gft .copyright {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

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

　ここからタブレット横

================================*/
@media (max-width: 1112px) and (min-width: 897px) {
  /*--------------------------------
  共通
  --------------------------------*/
  /*タイトル*/
  .ttl01 img {
    max-width: 300px;
  }
  /*--------------------------------
  header
  --------------------------------*/
  /*電話*/
  #ghd .flexbox.between .col:nth-child(3) .txt {
    margin-left: 25%;
  }
  /*--------------------------------
  mainvisual
  --------------------------------*/
  /* flexbox - 子要素(360°部分) */
  .vr_eria .vr_box iframe {
    height: 597px !important;
  }

  .copy01 {
    width: 140px;
  }

  .main_right_img {
    width: 45px;
    margin-top: 80px;
    margin-left: 10px;
  }
  /*--------------------------------
  sec01
  --------------------------------*/
  #sec01 .sec01_ttl_box p {
    font-size: 1.6rem;
  }
  /*--------------------------------
  sec04
  --------------------------------*/
  #sec04 .left_box {
    padding: 40px 20px;
  }
}

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

　ここからPC適用

================================*/
@media (min-width: 1113px) {
  /*--------------------------------
  header
  --------------------------------*/
  /*電話*/
  #ghd .flexbox.between .col:nth-child(3) .txt {
    margin-left: 24%;
  }
  #ghd a.tel {
    font-size: 32px;
  }
  /*--------------------------------
  sec02
  --------------------------------*/
  #sec02 .left_box {
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;
  }
  #sec02 .right_box {
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;
  }
}

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

　ここからTABLET・SP適用

================================*/
@media (max-width: 896px) {
  /*--------------------------------
  共通
  --------------------------------*/
  .tabSp-none {
    display: none !important;
  }
  .inner {
    width: 100%;
    padding: 0 10px;
  }

  /*タイトル*/
  .ttl01 img {
    max-width: 260px;
  }
  .ttl02 {
    margin-bottom: 20px;
    text-align: center;
  }
  .ttl02 img {
    max-width: 150px;
  }

  /*フレックスボックス - 子要素*/
  .flexbox .col {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 20px;
  }
  .flexbox .col:last-child {
    margin-bottom: 0;
  }
  /*--------------------------------
  header
  --------------------------------*/
  #ghd {
    padding-top: 10px;
    padding-bottom: 20px;
  }

  /* flexbox - 子要素 */
  #ghd .flexbox.between .col {
    margin-bottom: 10px;
  }
  #ghd .flexbox.between .col:last-child {
    margin-bottom: 0;
  }
  #ghd .flexbox.between .col:nth-child(3) .txt {
    text-align: center;
  }
  /*--------------------------------
  グローバルナビ
  --------------------------------*/
  .hm_menu_check {
    /* チェックボックスを隠す */
    display: none;
  }

  .hm_wrap {
    display: inline-block;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 100%;
    z-index: +9999999999;
    opacity: 0.8;
  }

  .hm_title {
    /* ハンバーガーメニューオープン時の見出し */
    position: relative;
    color: #fff;
    display: inline-block;
    float: left;
    font-weight: 100;
    line-height: 30px;
    margin: 0 0 0 15px;
    opacity: 0;
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    -webkit-transition: -webkit-transform 0.6s, opacity 0.5s;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.6s;
    transition: opacity 0.5s, -webkit-transform 0.6s;
    transition: transform 0.6s, opacity 0.5s;
    transition: transform 0.6s, opacity 0.5s, -webkit-transform 0.6s;
    z-index: +9999999999;
  }

  /* ▽▽メニューボタン▽▽ */
  .hm_btn {
    position: relative;
    width: 30px;
    height: 26px;
    cursor: pointer;
    display: block;
    float: right;
    z-index: +9999999999;
  }

  .hm_btn::before {
    -webkit-box-shadow: #333 0 8px 0;
    box-shadow: #333 0 12px 0;
  }

  .hm_btn::after {
    bottom: 0;
  }

  .hm_btn::before,
  .hm_btn::after {
    width: 30px;
    height: 2px;
    background: #333;
    display: block;
    content: "";
    position: absolute;
    -webkit-transition: -webkit-box-shadow 0.2s linear,
      -webkit-transform 0.2s 0.2s;
    transition: -webkit-box-shadow 0.2s linear, -webkit-transform 0.2s 0.2s;
    -webkit-transition: -webkit-box-shadow 0.2s linear,
      -webkit-transform 0.2s 0.2s;
    transition: box-shadow 0.2s linear, transform 0.2s 0.2s;
    transition: box-shadow 0.2s linear, transform 0.2s 0.2s,
      -webkit-box-shadow 0.2s linear, -webkit-transform 0.2s 0.2s;
    transition: box-shadow 0.2s linear, transform 0.2s 0.2s,
      -webkit-box-shadow 0.2s linear, -webkit-transform 0.2s 0.2s;
  }

  /* △△メニューボタン△△ */
  .hm_menu_wrap {
    margin-left: 45%;
    width: 60%;
    height: 10000px;
    background: rgb(255, 255, 255);
    position: absolute;
    left: 100%;
    top: 0;
    -webkit-transition: left 0.4s;
    transition: left 0.4s;
  }

  /* ▽▽開閉時のアニメーション▽▽ */
  .hm_menu_check:checked ~ .hm_title {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }

  .hm_menu_check:checked ~ .hm_btn::before {
    background: #333;
    -webkit-box-shadow: transparent 0 0 0;
    box-shadow: transparent 0 0 0;
    -webkit-transform: rotate(45deg) translate3d(6px, 11px, 0);
    transform: rotate(45deg) translate3d(6px, 11px, 0);
  }

  .hm_menu_check:checked ~ .hm_btn::after {
    background: #333;
    -webkit-transform: rotate(-45deg) translate3d(6px, -11px, 0);
    transform: rotate(-45deg) translate3d(6px, -11px, 0);
  }

  .hm_menu_check:checked ~ .hm_menu_wrap {
    left: 0;
  }

  /* △△開閉時のアニメーション△△ */
  /* ▽▽メニュー内のリストスタイル▽▽ */
  .hm_list {
    list-style-type: none;
    margin: 50px 0 0;
    padding: 0;
  }

  .hm_list li {
    clear: both;
    font-size: 16px;
    text-align: left;
    border-bottom: 1px dotted #666464;
    padding: 8px 22px;
    color: #666464;
  }

  /* ページ完成後外す */
  .hm_list li a {
    font-size: 16px;
    color: #000;
    display: block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    z-index: +99999999;
  }

  .hm_list li a::before {
    /* aタグマウスオーバー時の背景 */
    background: #fff;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 100%;
    right: 0;
    -webkit-transition: bottom 0.4s;
    transition: bottom 0.4s;
    z-index: +99999999;
  }

  .hm_list li a:hover::before {
    bottom: 0;
  }

  .hm_list li a:hover::after {
    opacity: 0.5;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .menu_recruit {
    display: block;
    position: absolute;
    margin-top: -35px;
    left: 50%;
    margin-left: 50px;
  }
  /*--------------------------------
  mainvisual
  --------------------------------*/
  /*画像*/
  .vr_eria img {
    margin: 0 auto;
  }

  /*flexbox - 親コンテナ*/
  .vr_eria {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* flexbox - 子要素(360°部分) */
  .vr_eria .vr_box .ricoh-theta-tour-image {
    height: 400px !important;
  }
  .vr_eria .vr_box iframe {
    height: 400px !important;
    border: 2px solid #333;
  }

  /* flexbox - 子要素(キャッチ部分) */
  .vr_eria .right_box {
    margin-bottom: 20px;
  }
  .vr_eria .right_box .ttl {
    max-width: 80%;
    margin: 0 auto;
    padding: 0px 100px 40px 18%;
    background: url(./img/vr_bg01_sp.png) no-repeat left 10px top/20%,
      url(./img/vr_bg02_sp.png) no-repeat right 10px top/contain;
  }
  .vr_eria .right_box .txt {
    text-align: center;
  }
  .vr_eria .right_box .txt .arrow {
    padding: 4px 0 4px 40px;
  }
  .vr_eria .right_box .txt .arrow::before {
    -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
  }

  /*オープン*/
  .mainvisual .txt {
    text-align: center;
  }
  /*--------------------------------
  sec01
  --------------------------------*/
  /*flexbox - 親コンテナ*/
  #sec01 .sec01_ttl_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
  }

  /* flexbox - 子要素(テキスト) */
  #sec01 .sec01_ttl_box p {
    margin-top: 0;
    font-size: 1.6rem;
  }

  /*設備紹介写真エリア*/
  #sec01 .slide_eria {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  /*設備紹介写真エリア - メイン*/
  #sec01 .swiper-container {
    width: 100%;
    height: 350px;
  }
  #sec01 .swiper-slide {
    width: 100%;
    height: 350px;
  }
  #sec01 .catch .txt {
    font-size: 14px;
  }

  /*設備紹介写真エリア - サムネイル*/
  #sec01 .thumb-list {
    width: 100%;
    height: auto;
    padding: 0;
  }
  #sec01 .thumb-item {
    border-left: 2px solid #666464;
    border-bottom: 2px solid #666464;
    box-sizing: border-box;
  }
  #sec01 .thumb-item:nth-child(3n) {
    border-right: 2px solid #666464;
    box-sizing: border-box;
  }
  #sec01 .thumb-link {
    padding-top: 100%;
  }
  #sec01 .thumb-link p {
    font-size: 12px;
  }
  /*--------------------------------
  sec02
  --------------------------------*/
  /*flexbox - 親コンテナ*/
  #sec02 .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* flexbox - 子要素(左カラム) */
  #sec02 .left_box {
    margin-bottom: 20px;
  }

  /* flexbox - 子要素(右カラム) */
  #sec02 .right_box {
  }
  /*--------------------------------
  sec03
  --------------------------------*/
  /*flexbox - 親コンテナ*/
  #sec03 .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* flexbox - 子要素(左カラム) */
  #sec03 .left_box {
    margin-bottom: 20px;
  }

  /* flexbox - 子要素(右カラム) */
  #sec03 .right_box {
    padding-top: 10px;
    padding-bottom: 10px;

    /*flexbox - 親コンテナ(チラシ部分)*/
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  /* flexbox - 子要素(チラシ部分) */
  #sec03 .right_box a {
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;
  }
  #sec03 .right_box a::before {
    width: 73px;
    height: 28px;
  }
  /*--------------------------------
  sec04
  --------------------------------*/
  /*flexbox - 親コンテナ*/
  #sec04 .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #sec04 .bnr a {
    padding: 20px 60px 20px 50px;
    background: url(img/bnr_arrow.png) right 20px center/30px auto no-repeat;
  }
  /*--------------------------------
  footer
  --------------------------------*/
  /*ページトップへ*/
  #gft #pagetop {
    right: 10px;
    bottom: 60px;
  }

  /*フレックスボックス - 子要素*/
  #gft .flexbox .col {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  /*コピーライト*/
  #gft .copyright {
    padding-top: 20px;
    padding-bottom: 70px;
  }

  /*固定表示*/
  #gft .ft_fixed {
    position: fixed;
    right: 0;
    bottom: 0;
    display: table;
    width: 100%;
    z-index: 100;
  }
  #gft .ft_fixed li {
    display: table-cell;
    vertical-align: middle;
  }
  #gft .ft_fixed li a {
    display: block;
    border-top: 1px solid #9a9b9b;
    text-align: center;
    line-height: 1.3;
    color: #555555;
    font-size: 12px;
    height: 50px;
  }
  #gft .ft_fixed li a > span {
    font-size: 16px;
  }
  /*電話番号の場合
  #gft .ft_fixed li.first_btn {
    width: 52%;
  }
  #gft .ft_fixed li.first_btn a {
    padding-top: 8px;
    background-color: #e3f1f5;
    border-right: 1px dashed #9a9b9b;
  }
  */
  #gft .ft_fixed li.first_btn {
    width: 24%;
  }
  #gft .ft_fixed li.first_btn a {
    padding-top: 28px;
    background-color: #e3f1f5;
    background: url(./img/icon_tel_bg01.png) #e3f1f5 no-repeat center top 8px/16px;
    border-right: 1px dashed #9a9b9b;
  }
  #gft .ft_fixed li.second_btn {
    width: 24%;
  }
  #gft .ft_fixed li.second_btn a {
    padding-top: 28px;
    background: url(./img/rzv_bg01.png?2) #e3f1f5 no-repeat center top 6px/20px;
    border-right: 1px dashed #9a9b9b;
  }
  #gft .ft_fixed li.third_btn {
    width: 24%;
  }
  #gft .ft_fixed li.third_btn a {
    padding-top: 28px;
    background: url(./img/map_bg01.png) #e3f1f5 no-repeat center top 8px/16px;
  }
}

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

　ここからTABLETのみ適用
　※この中には基本的に書き込まないでください

================================*/
@media (max-width: 896px) and (min-width: 481px) {
  /*--------------------------------
  共通
  --------------------------------*/
  .pcTab-none {
    display: none !important;
  }
  .tab-none {
    display: none !important;
  }
}

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

　ここからSP適用

================================*/
@media (max-width: 480px) {
  /*--------------------------------
  共通
  --------------------------------*/
  .tabSp-none {
    display: none !important;
  }
  .sp-none {
    display: none !important;
  }

  /*--------------------------------
  mainvisual
  --------------------------------*/
  /* flexbox - 子要素(キャッチ部分) */
  .vr_eria .right_box .ttl {
    max-width: 100%;
    padding-right: 22%;
    padding-left: 25%;
    background-size: 20%, 90%;
  }

  /*--------------------------------
  footer
  --------------------------------*/
  /*ページトップへ*/
  #gft #pagetop a {
    width: 40px;
  }
}
