@charset "UTF-8";
/* ----------------------------------------
 * Setting
 * ---------------------------------------- */
/*    印刷時設定   */
@media print {
  .no-print {
    display: none !important;
  }
}
html {
  font-size: 62.5%;
}

body {
  font-size: 4.4vw;
}

@media print, screen and (min-width: 480px) and (max-width: 768px) {
  body {
    font-size: 3.2vw;
  }
}
@media print, screen and (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}
/* ----------------------------------------
* font 設定
* ---------------------------------------- */
@font-face {
  font-family: "Noto Sans JP Subset";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local("Noto Sans CJK JP Regular"), url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP Subset";
  font-style: normal;
  font-weight: bold;
  font-display: swap;
  src: local("Noto Sans CJK JP Bold"), url("../fonts/NotoSansCJKjp-Bold.woff") format("woff2"), url("../fonts/NotoSansCJKjp-Bold.woff") format("woff");
}
@font-face {
  font-family: "cookie";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local("cookie"), url("../fonts/Cookie-Regular.ttf") format("truetype");
}
/* ----------------------------------------
* Common
* ---------------------------------------- */
/*** ↓タブレット用記述。sectionなどの横幅はmax-width:900pxと可変対応の記述にしておく必要がある。（タブレット時に右端に余白ができてしまう。。。）PC時でも横幅はなるべく％指定が良いかも ***/
html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Noto Sans CJK JP", "Noto Sans JP Subset", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 2em;
  background: #fff;
  color: #4e4e4e;
  text-align: center;
  position: relative;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
  word-wrap: break-word;
  _display: inline;
  _zoom: 1;
}

#wrap {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  overflow: hidden;
}

a {
  color: #ff933b;
}

a:hover {
  color: #ffb923;
}

input, textarea {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* ----------------------------------------
 * Tips
 * ---------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  width: auto\9 ; /* ie8 */
}

.mov a:hover img,
.mov a:hover {
  filter: alpha(opacity=75);
  opacity: 0.75;
}

.clearline {
  clear: both;
}

hr {
  background-color: #e9e9e9;
}

.centering {
  text-align: center;
}

.al-left {
  text-align: left;
}

.al-right {
  text-align: right;
}

.sm_txt {
  font-size: 0.7em;
  line-height: 1.7em;
}

.red_txt {
  color: #f01717;
}

.blue_txt {
  color: #237cd4;
}

.pink_txt {
  color: #e473a8;
}

.pr_txt {
  color: #ff933b;
}

.bgc_txt {
  background-color: #ffb923;
}

.boder_box {
  margin: 0 auto;
  width: 88%;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 3% 0;
}

.boder_inner {
  margin: 0 auto;
  width: 88%;
}

/*     隙間調整    */
.mg_b10 {
  margin-bottom: 10px !important;
}

.mg_b20 {
  margin-bottom: 20px !important;
}

.mg_b30 {
  margin-bottom: 30px !important;
}

.mg_b40 {
  margin-bottom: 40px !important;
}

.mg_b50 {
  margin-bottom: 50px !important;
}

.mg_r10 {
  margin-right: 10px !important;
}

.mg_r20 {
  margin-right: 20px !important;
}

.dflex {
  display: flex;
}

.shadow_b {
  box-shadow: 0 32px 30px -30px rgba(53, 47, 47, 0.15);
}

/* crearfix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  font-size: 0.1em;
  line-height: 0;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
/*     sp/pc   表示切り替え    */
.spNone {
  display: none;
}

.pcNone {
  display: inherit;
}

@media print, screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
  .spNone {
    display: inherit;
  }
}
/* ----------------------------------------
 *   SP 全体 layout
 * ---------------------------------------- */
header {
  width: 100%;
}

#container {
  width: 100%;
}
#container #contents {
  width: 100%;
}

footer {
  width: 100%;
}

/* ----------------------------------------
 *   SP  header レイアウト
 * ---------------------------------------- */
header #top-head {
  height: 50px;
  top: 0;
  position: absolute;
  width: 100%;
  margin: 100px auto 0;
  padding: 0;
  line-height: 1;
  z-index: 90;
  margin-top: 0;
  text-decoration: none;
}
header #top-head .logo {
  float: left;
  font-size: 36px;
  padding-top: 5px;
  margin-left: 15px;
  height: 35px;
}
header #top-head .logo a img {
  width: auto;
  height: 100%;
}
header #top-head .head_addinfo {
  display: none;
}

/* Drawer.js 重なり */
.drawer-overlay {
  z-index: 99 !important;
}

/* header Fixed時の挙動 */
#top-head.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  transition: top 0.65s ease-in;
}

/********  トグル btn デザイン  *********/
#nav-toggle {
  display: block;
  position: absolute;
  right: 12px;
  top: 14px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}
#nav-toggle div {
  position: relative;
}
#nav-toggle div span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #ff933b;
  left: 0;
  transition: 0.35s ease-in-out;
}
#nav-toggle div span:nth-child(1) {
  top: 0;
}
#nav-toggle div span:nth-child(2) {
  top: 11px;
}
#nav-toggle div span:nth-child(3) {
  top: 22px;
}

/********  トグル btn 開いた時  *********/
.drawer-open #nav-toggle span:nth-child(1) {
  top: 11px;
  transform: rotate(315deg);
}
.drawer-open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.drawer-open #nav-toggle span:nth-child(3) {
  top: 11px;
  transform: rotate(-315deg);
}
.drawer-open #global-nav {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/********  drawer.js 横幅変えたい時  *********/
html .drawer .drawer-nav {
  left: -80%;
}

.drawer .drawer-nav {
  width: 80%;
}

/********  global-nav デザイン  *********/
#global-nav {
  -webkit-overflow-scrolling: touch;
  padding: 0;
  text-align: center;
  background: #ffffff;
  z-index: 100;
}
#global-nav ul.menu {
  list-style: none;
  overflow: scroll;
  /* iphoneなどで下部が見切れてしまうため */
  margin-bottom: 60px;
}
#global-nav ul.menu li {
  float: none;
  position: relative;
  width: 100%;
  text-align: left;
}
#global-nav ul.menu li a {
  display: block;
  padding: 18px 0 18px 24px;
  position: relative;
  text-align: left;
  font-size: 1em;
  color: #5b5b5b;
  line-height: 1.8em;
  text-decoration: none;
  border-bottom: 1px solid rgba(230, 230, 230, 0.7490196078);
}
#global-nav ul.menu li a .navi_eng {
  display: none;
}
#global-nav ul.menu li a .fas {
  color: #ff933b;
  margin-right: 20px;
}
#global-nav ul.menu li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  margin: auto 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #ff933b;
  border-right: 1px solid #ff933b;
  transform: rotate(45deg);
  left: auto;
  right: 25px;
  border-top: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
}

/*  サブメニュー   */
#global-nav ul li .sub {
  background: rgb(218, 218, 218);
  width: auto;
}
#global-nav ul li .sub a {
  padding-left: 10px;
  margin-left: 10px;
}

/*  サブメニュー オープン   */
#global-nav ul li .open_btn {
  display: block;
  content: "";
  width: 60px;
  height: 63px;
  top: 0;
  background-color: #ff2e57;
  z-index: 100;
  cursor: pointer;
  background-image: url(../../img/common/btn_plus.png);
  background-repeat: no-repeat;
  background-position: right 20px top 21px;
  background-size: 18px auto;
  position: absolute;
  right: 0;
}
#global-nav ul li .open_btn.open {
  background-image: url(../../img/common/btn_mainasu.png);
}
#global-nav ul li.sub_open {
  cursor: pointer;
  width: 75%;
  margin-right: 60px;
}

@media print, screen and (min-width: 769px) {
  #global-nav ul li .open_btn {
    display: none;
  }
}
/* ----------------------------------------
 *     SP ベースデザイン
 * ---------------------------------------- */
/* -----------本文 基本の段落------------- */
section {
  text-align: center;
}
section p {
  margin: 0 auto;
  width: 90%;
  margin-bottom: 15px;
  text-align: left;
}
section p.img_cut {
  width: 100%;
  max-width: 1100px;
}
section .sec_wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.fa, .fab, .fal, .far, .fas {
  display: inline-block;
  margin-right: 10px;
}

h2 {
  margin: 0 auto;
  position: relative;
  width: 90%;
  font-size: 1.5em;
  font-weight: 500;
  padding: 15px;
  padding-bottom: 40px;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.15em;
}
h2 .eng_txt {
  display: block;
  font-size: 0.35em;
  font-weight: 200;
  color: #c2c2c2;
  line-height: 1em;
  letter-spacing: 0.2em;
  text-align: center;
  padding-bottom: 7px;
}
h2::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 100px;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: 0 auto;
  background-color: #000;
}

h3 {
  margin: 0 auto;
  width: 90%;
  font-size: 1.1em;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  color: #ff933b;
  letter-spacing: 0.1em;
  line-height: 1.4em;
}

h4 {
  margin: 0 auto;
  width: 90%;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: left;
}

h5 {
  margin: 0 auto;
  width: 90%;
  font-size: 1em;
  color: #333;
  margin-bottom: 5px;
  text-align: left;
}

.step_ttl {
  text-align: left;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  padding-bottom: 0;
  padding-top: 0;
  margin-bottom: 30px;
}
.step_ttl > * {
  flex-shrink: 0;
}
.step_ttl span {
  display: inline-block;
  margin-left: 4%;
  text-align: left;
  padding: 0 13px 0 15px;
  background-color: #ff933b;
  color: #fff;
  font-size: 0.7em;
  border-radius: 30px;
  letter-spacing: 0.07em;
}
.step_ttl .fas {
  padding-top: 0.26em;
  margin-right: 0;
}
.step_ttl::after {
  content: "";
  flex: 1 1 0%;
  width: 100%;
  height: 1px;
  transform: translateY(0.6em);
  border-top: 2px dotted #ffb923;
}

/* -----------ミドルボタン------------- */
.mid_btn {
  display: block;
  width: 58%;
  margin: 0 auto;
  text-align: center;
  border-radius: 50px;
  position: relative;
  background: linear-gradient(to right, #ff933b, #ffb923);
  padding: 2% 0;
  padding-left: 30px;
  color: #fff;
  font-size: 1em;
  text-decoration: none;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.mid_btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  margin: auto 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: all 0.3s;
}
.mid_btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all ease-out 0.3s;
}
.mid_btn:hover {
  color: #fff;
  cursor: pointer;
}
.mid_btn:hover::before {
  left: 28px;
}
.mid_btn:hover::after {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
}

/* -----------table ------------- */
table {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 10px;
}
table thead th {
  text-align: center;
}
table th {
  background-color: #fffde8;
}

table th, table td {
  padding: 7px;
  border: 1px solid #333;
  text-align: left;
  font-size: 0.9em;
  line-height: 1.4em;
}

/* -----------table デザインテーブル------------- */
table.ds_tb {
  border: none;
}
table.ds_tb tr {
  border: none;
}
table.ds_tb tr th, table.ds_tb tr td {
  border: none;
  line-height: 1.5em;
  padding: 3%;
}
table.ds_tb tr th {
  width: 25%;
  border-bottom: 2px solid #ff933b;
  font-weight: bold;
  color: #ff933b;
  text-align: right;
  background-color: transparent;
}
table.ds_tb tr td {
  border-bottom: 2px solid #d2d2d2;
}

/* -----------table 画面オーバーテーブル------------- */
table.ov_tb {
  display: block;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

table.ov_tb::-webkit-scrollbar {
  height: 8px;
}

table.ov_tb::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

/* -----------table 全てセンタリングテーブル------------- */
table.ct_tb th, table.ct_tb td {
  text-align: center;
  vertical-align: middle;
}

/* -----------table 小さめテーブル------------- */
table.sm_tb {
  width: auto;
  margin-left: 20px;
}

/* -----------シンプル2段組み------------- */
.simple_2dan {
  margin-bottom: 20px;
}
.simple_2dan .innner1 {
  float: left;
  width: 45%;
  margin-left: 2.5%;
}
.simple_2dan .innner2 {
  float: right;
  width: 45%;
  margin-right: 2.5%;
}

/* -----------写真ギャラリー------------- */
.photo_gal {
  width: 100%;
}
.photo_gal figure {
  margin-bottom: 0;
}
.photo_gal .big_inner {
  width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  letter-spacing: -0.4em; /* 文字間を詰めて隙間をなくす */
}
.photo_gal .big_inner > div {
  width: 100%;
  margin: 0%;
}
.photo_gal .sm_inner {
  width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  letter-spacing: -0.4em; /* 文字間を詰めて隙間をなくす */
}
.photo_gal .sm_inner > div {
  width: 50%;
  list-style: none;
  margin: 0%;
  display: inline-block;
  box-sizing: border-box;
}

/* -----------箱2段組み------------- */
.col2_set {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.col2_set .col_box {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 8% 0;
  font-size: 0.75em;
  line-height: 1.5em;
  margin-bottom: 15px;
}
.col2_set .col_box .inner {
  margin: 0 10px;
}

/* -----------左画像　段組み------------- */
.img_set {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.img_set .col_imgbox {
  width: 100%;
  margin: 0 auto;
  padding: 2% 0;
}
.img_set .col_box {
  width: 100%;
  margin: 0 auto;
  padding: 5% 0;
  line-height: 1.5em;
}
.img_set .col_box .inner {
  margin: 0 10px;
}
.img_set .col_box .inner table {
  width: 100%;
  font-size: 0.85em;
  margin-bottom: 20px;
}
.img_set .col_box .inner table th {
  width: 25%;
}

/* -----------list デザイン------------- */
section ul {
  margin: 0 auto;
  margin-bottom: 30px;
  margin-left: 35px;
}
section ul li {
  list-style-type: disc;
  text-align: left;
  margin-bottom: 7px;
  line-height: 1.6em;
}
section ol {
  margin: 0 auto;
  width: 90%;
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}
section ol li {
  text-indent: -1.3em;
  padding-left: 1.3em;
  display: block;
  text-align: left;
}
section ol li:before {
  counter-increment: item;
  content: counter(item) ".";
  /* 以下は自由に装飾... */
  padding-right: 0.5em;
  font-weight: bold;
}
section ol ol {
  padding-left: 1em;
}

/* -----------お知らせ一覧ページ------------- */
.info-listpage .infobox {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: 1px solid #dcdcdc;
}
.info-listpage .infobox .posts_info {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  font-size: 0.7em;
  color: #b6b6b6;
}
.info-listpage .infobox h2 {
  width: 100%;
  text-align: left;
  font-size: 1em;
  color: #292929;
  padding: 0;
  line-height: 1.5em;
  margin-bottom: 10px;
}
.info-listpage .infobox h2 a {
  text-decoration: underline;
  color: #292929;
}
.info-listpage .infobox h2::after {
  display: none;
}
.info-listpage .infobox .main_contents {
  width: 100%;
  font-size: 0.8em;
  line-height: 1.5em;
  text-align: left;
}
.info-listpage .infobox .main_contents p {
  width: 100%;
}

.tag_icon {
  box-sizing: border-box;
  border: 2px solid #e9e9e9;
  background-color: rgb(248, 248, 248);
  color: rgba(54, 54, 54, 0.7490196078);
  border-radius: 4px;
  width: auto;
  padding: 2px 4px;
  margin-right: 5px;
  font-size: 0.7em;
}
.tag_icon.noticeinfo {
  border: 2px solid #f02323;
  background-color: #f53535;
  color: #fff;
}

/* -----------フォームデザイン------------- */
form {
  width: 100%;
  margin: 0 auto;
}
form .contact-wrap {
  width: 90%;
  max-width: 600px;
  padding: 20px 5% 3px 5%;
  margin: 0 auto;
  text-align: center;
  border-radius: 9px;
  background-color: rgb(252, 252, 252);
}
form .contact-wrap label {
  display: block;
  text-align: left;
  margin-bottom: 14px;
  vertical-align: text-top;
}
form .contact-wrap label span {
  display: inline-block;
  vertical-align: text-top;
  max-width: 100%;
  margin-right: 3px;
}
form .contact-wrap label span input, form .contact-wrap label span textarea {
  width: auto;
  display: inline-block;
  max-width: 90%;
  padding: 4px 7px;
  font-size: 1em;
}
form .contact-wrap label .form_title {
  display: block;
}

input[type=submit] {
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  padding-left: 0;
}

/* ----------------------------------------
 *     SP トップページデザイン
 * ---------------------------------------- */
#head-contents {
  position: relative;
}

/* -----------予約ボタン------------- */
.rsrv_link {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: absolute;
  bottom: -30px;
  text-align: right;
  z-index: 10;
}
.rsrv_link .btn_resesrv {
  display: inline-block;
  margin-right: 5px;
  width: 110px;
}

/* -----------メインビジュアル------------- */
#main_v {
  padding: 0;
  border: none;
  width: 100%;
  margin: 0 auto;
}
#main_v #main_wrap {
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
  height: 100%;
  position: relative;
  z-index: 5;
}
#main_v #main_wrap #m_copy {
  position: absolute;
  width: 65%;
  max-width: 500px;
  height: 80px;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 22%;
  z-index: 10;
}

/* -----------下層ページMV------------- */
#sub_mv #sub_mv_wrap {
  position: relative;
  z-index: 5;
}
#sub_mv #sub_mv_wrap h1 {
  color: #fff;
  position: absolute;
  width: 100%;
  z-index: 3;
  text-align: center;
  top: 45%;
  letter-spacing: 0.1em;
  font-size: 1.2em;
}
#sub_mv #sub_mv_wrap #ttl_eng {
  position: absolute;
  width: 100%;
  z-index: 2;
  text-align: center;
  bottom: 0;
  color: #fff;
  font-family: "cookie", "Noto Sans CJK JP", "Noto Sans JP Subset", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 4em;
  opacity: 0.2;
}
#sub_mv #sub_mv_wrap picture {
  position: relative;
}

/* -----------カラーブロック------------- */
.colorbg {
  background-color: #fffde8;
  background-image: url(../../img/common/logomark.png);
  background-repeat: no-repeat;
  background-position: right -21% top;
  background-size: 43% auto;
  position: relative;
}
.colorbg .sec_wrap {
  padding: 60px 0;
}
.colorbg .sec_wrap .tate_kaza {
  font-family: "cookie", "Noto Sans CJK JP", "Noto Sans JP Subset", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 6em;
  color: #ff933b;
  opacity: 0.16;
  position: absolute;
  white-space: nowrap;
  bottom: -50px;
  left: 0;
  transform-origin: 0 0;
  transform: rotate(270deg);
  z-index: 2;
  letter-spacing: 0.05em;
}

/* -----------お知らせブロック------------- */
#contents .infomation .sec_wrap h2 {
  padding-bottom: 10px;
}
#contents .infomation .sec_wrap h2::after {
  display: none;
}
#contents .infomation .sec_wrap ul {
  overflow-y: scroll;
  height: 150px;
  margin: 0 auto;
  padding: 10px 5px 10px 0;
  width: 90%;
}
#contents .infomation .sec_wrap ul li {
  list-style: none;
}
#contents .infomation .sec_wrap ul li span {
  display: inline-block;
  width: 23%;
  margin-right: 3%;
  color: rgba(116, 116, 116, 0.7490196078);
  vertical-align: top;
  font-size: 0.8em;
  line-height: 1.3em;
}
#contents .infomation .sec_wrap ul li p {
  display: inline-block;
  width: 68%;
  vertical-align: top;
  line-height: 1.5em;
  font-size: 0.8em;
}
#contents .infomation .sec_wrap ul li p .tag_icon {
  box-sizing: border-box;
  border: 2px solid #e9e9e9;
  background-color: rgb(248, 248, 248);
  color: rgba(54, 54, 54, 0.7490196078);
  border-radius: 4px;
  width: auto;
  padding: 2px 4px;
  margin-right: 5px;
  font-size: 0.7em;
}
#contents .infomation .sec_wrap ul li p .tag_icon.noticeinfo {
  border: 2px solid #f02323;
  background-color: #f53535;
  color: #fff;
}
#contents .infomation .sec_wrap ul li p a {
  color: #333333;
  text-decoration: none;
}

/* -----------グレーイメージ ブロック------------- */
.bg_grayimg {
  background-color: #ebeef1;
  background-image: url(../../img/common/bgimg_gray.jpg);
  background-size: 650px auto;
  background-position: top center;
  background-repeat: no-repeat;
}

/* -----------message_block ブロック------------- */
#contents .message_block {
  background-image: url(../../img/common/bg_dotted.gif);
  background-size: 6px 6px;
  background-repeat: repeat;
}
#contents .message_block .sec_wrap {
  position: relative;
}
#contents .message_block .sec_wrap .message_ph {
  position: absolute;
  width: 82%;
  height: 350px;
  left: 0;
  top: 20px;
  z-index: 2;
}
#contents .message_block .sec_wrap .message_txtbox {
  position: relative;
  width: 100%;
  margin-top: 53%;
  z-index: 3;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  padding: 9% 0;
}
#contents .message_block .sec_wrap .message_txtbox h2 {
  font-family: "cookie", "Noto Sans CJK JP", "Noto Sans JP Subset", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 3.4em;
  color: #ff933b;
  background: linear-gradient(to right, #ff933b, #ffb923);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
  position: absolute;
  white-space: nowrap;
  letter-spacing: 0.03em;
  top: -8%;
  width: 100%;
  height: 12%;
  transform: translateY(0);
  left: 0;
  z-index: 2;
  text-align: left;
  padding: 3px 0;
}
#contents .message_block .sec_wrap .message_txtbox h2::after {
  display: none;
}
#contents .message_block .sec_wrap .message_txtbox h4 {
  width: 85%;
  margin: 0 auto;
  font-size: 1.2em;
  margin-bottom: 12px;
}
#contents .message_block .sec_wrap .message_txtbox p {
  width: 85%;
  margin: 0 auto;
  font-size: 0.9em;
  line-height: 1.8em;
}
#contents .message_block .sec_wrap .message_txtbox .shomei {
  text-align: right;
  font-size: 1em;
}

/* -----------アクセス ブロック------------- */
.map_block .sec_wrap {
  max-width: 100%;
  padding-top: 0;
}
.map_block .sec_wrap .gmap_area {
  position: relative;
  height: 300px;
  overflow: hidden;
}
@media print, screen and (min-width: 769px) {
  .map_block .sec_wrap .gmap_area {
    height: 460px;
  }
}
.map_block .sec_wrap .gmap_area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.map_block .sec_wrap .maptxt_area {
  position: relative;
  width: 85%;
  max-width: 870px;
  margin: 0 auto;
  margin-top: -40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  padding: 20px 0;
}
@media print, screen and (min-width: 769px) {
  .map_block .sec_wrap .maptxt_area {
    padding: 20px 0 42px 0;
  }
}
.map_block .sec_wrap .maptxt_area h2 {
  padding-bottom: 15px;
}
.map_block .sec_wrap .maptxt_area h2::after {
  display: none;
}
@media print, screen and (min-width: 769px) {
  .map_block .sec_wrap .maptxt_area .maptxt_box {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: row-reverse;
    width: 85%;
    margin: 0 auto;
  }
}
.map_block .sec_wrap .maptxt_area .maptxt_box .acc_box {
  width: 85%;
  margin: 0 auto;
  padding-bottom: 30px;
}
@media print, screen and (min-width: 769px) {
  .map_block .sec_wrap .maptxt_area .maptxt_box .acc_box {
    width: unset;
    flex-basis: 60%;
    padding-bottom: 0;
    padding-left: 32px;
  }
}
.map_block .sec_wrap .maptxt_area .maptxt_box .acc_box h4 {
  color: #ff933b;
  font-size: 1em;
}
.map_block .sec_wrap .maptxt_area .maptxt_box .acc_box h4 .fas {
  margin-right: 9px;
}
.map_block .sec_wrap .maptxt_area .maptxt_box .acc_box p {
  font-size: 0.8em;
  line-height: 1.5em;
}
.map_block .sec_wrap .maptxt_area .maptxt_box .add_box {
  width: 85%;
  margin: 0 auto;
  padding-top: 10px;
}
@media print, screen and (min-width: 769px) {
  .map_block .sec_wrap .maptxt_area .maptxt_box .add_box {
    width: unset;
    flex-basis: 40%;
    padding-top: 0;
    border-right: 1px solid #c5c5c5;
    padding-right: 32px;
  }
}
.map_block .sec_wrap .maptxt_area .maptxt_box .add_box h4 {
  width: 100%;
  float: none;
  font-size: 1em;
}
.map_block .sec_wrap .maptxt_area .maptxt_box .add_box h4 .sm_txt {
  font-size: 0.6em;
  margin-left: 10px;
  color: rgb(109, 109, 109);
  font-weight: 200;
}
.map_block .sec_wrap .maptxt_area .maptxt_box .add_box address {
  display: block;
  text-align: left;
  font-size: 0.8em;
  font-style: normal;
  line-height: 1.4em;
}
.map_block .sec_wrap .maptxt_area .maptxt_box .add_box .add_tell {
  display: block;
  width: 100%;
  font-size: 0.8em;
}
.map_block .sec_wrap .maptxt_area .maptxt_box .add_box .add_tell a {
  text-decoration: none;
}

/* -----------アンカーリンク------------- */
.anchor_link .sec_wrap {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0 20px 0;
}
.anchor_link .sec_wrap ul {
  padding: 0;
  width: 100%;
  margin: 0 auto;
}
.anchor_link .sec_wrap ul li {
  display: inline-block;
  margin-right: 2.5%;
  list-style: none;
  border: 1px solid #ff933b;
  border-radius: 4px;
  margin-bottom: 12px;
}
.anchor_link .sec_wrap ul li a {
  display: block;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  padding: 10px 30px 10px 15px;
  font-size: 0.9em;
  line-height: 1em;
  transition: background-color 0.3s;
}
.anchor_link .sec_wrap ul li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 21px;
  margin: auto 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #ff933b;
  border-right: 1px solid #ff933b;
  transform: rotate(45deg);
  left: auto;
  right: 12px;
  transform: rotate(135deg);
}
.anchor_link .sec_wrap ul li a:hover {
  background-color: #fffde8;
}

/* -----------追従予約ブロック------------- */
.rsrv_sm {
  display: block;
  position: fixed;
  width: 60px;
  left: 16px;
  bottom: 20px;
  z-index: 30;
}
.rsrv_sm .btn_resesrv {
  margin-bottom: 7px;
}

/* -----------グループサイト バナー------------- */
.fcl_bunner .sec_wrap .fcl_box {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
}
.fcl_bunner .sec_wrap .fcl_box li {
  background-color: #000;
  display: inline-block;
  margin: 0;
  margin-bottom: 7px;
  vertical-align: top;
  text-align: center;
}
.fcl_bunner .sec_wrap .fcl_box li a {
  display: block;
  width: 300px;
  padding: 0;
  min-height: 130px;
  color: #fff;
  font-size: 1em;
  line-height: 1.3em;
  letter-spacing: 0.2em;
  text-decoration: none;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.fcl_bunner .sec_wrap .fcl_box li a .br_txt {
  display: block;
  position: absolute;
  z-index: 3;
  width: 100%;
  left: 0;
  right: 0;
  max-width: 0 auto;
  top: 40px;
}
.fcl_bunner .sec_wrap .fcl_box li a .br_txt .eng {
  display: block;
  font-family: "cookie", "Noto Sans CJK JP", "Noto Sans JP Subset", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 0.5em;
  letter-spacing: 0.15em;
  line-height: 1.6em;
}
.fcl_bunner .sec_wrap .fcl_box li a img {
  display: block;
  position: absolute;
  height: 100%;
  max-width: unset;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.5;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
}
.fcl_bunner .sec_wrap .fcl_box li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  margin: auto 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  left: auto;
  right: 31px;
  transition: right 0.3s;
}
.fcl_bunner .sec_wrap .fcl_box li a:hover img {
  opacity: 0.95 !important;
}
.fcl_bunner .sec_wrap .fcl_box li a:hover::before {
  right: 15px;
}

/* ----------------------------------------
 *     SP  footer
 * ---------------------------------------- */
footer {
  background: linear-gradient(to right, #ff933b, #ffb923);
}
footer #foot_inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  /* -----------予約ボタン ------------- */
}
footer #foot_inner .f_bunner { /* ３つのバナー */
  background-color: #ebeef1;
  background-image: url(../../img/common/bgimg_gray.jpg);
  background-size: 650px auto;
  background-position: top center;
  background-repeat: no-repeat;
}
footer #foot_inner .f_bunner .fb_inner {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 50px 0 90px 0;
}
footer #foot_inner .f_bunner .fb_inner p {
  background-image: url(../../img/common/footer_bunner1.jpg);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  width: 280px;
  display: inline-block;
  margin-bottom: 5px;
  vertical-align: top;
  transition: background-size 0.4s;
  text-align: center;
}
footer #foot_inner .f_bunner .fb_inner p a {
  display: block;
  padding: 40px 0 10px 0;
  min-height: 70px;
  color: #fff;
  font-size: 1em;
  line-height: 1.3em;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: background-color 0.3s;
  background-color: rgba(0, 0, 0, 0.29);
  position: relative;
  text-align: center;
}
footer #foot_inner .f_bunner .fb_inner p a span {
  display: block;
  font-family: "cookie", "Noto Sans CJK JP", "Noto Sans JP Subset", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 0.5em;
  letter-spacing: 0.15em;
  line-height: 1.6em;
}
footer #foot_inner .f_bunner .fb_inner p a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 21px;
  margin: auto 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  left: auto;
  right: 21px;
}
footer #foot_inner .f_bunner .fb_inner p a:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
@media print, screen and (min-width: 480px) and (max-width: 768px) {
  footer #foot_inner .f_bunner .fb_inner p a {
    font-size: 0.7em;
  }
}
footer #foot_inner .f_bunner .fb_inner p:hover {
  background-size: 110% auto;
}
footer #foot_inner .f_bunner .fb_inner .b_2 {
  background-image: url(../../img/common/footer_bunner2.jpg);
}
footer #foot_inner .f_bunner .fb_inner .b_2 a {
  padding: 30px 0 20px 0;
}
footer #foot_inner .f_bunner .fb_inner .b_3 {
  background-image: url(../../img/common/footer_bunner3.jpg);
}
footer #foot_inner .footer_info {
  position: relative;
  padding-top: 70%;
}
footer #foot_inner .footer_info .fi_inner {
  position: absolute;
  width: 68%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -30px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  padding: 9% 0;
}
footer #foot_inner .footer_info .fi_inner .logo {
  width: 70%;
  text-align: center;
  margin: 0 auto;
  padding-right: 4%;
  padding-bottom: 20px;
}
footer #foot_inner .footer_info .fi_inner .logo img {
  width: auto;
}
footer #foot_inner .footer_info .fi_inner .fcl_name {
  font-size: 0.8em;
  width: 80%;
  line-height: 1.4em;
  padding-bottom: 0;
}
footer #foot_inner .footer_info .fi_inner address {
  width: 80%;
  margin: 0 auto;
  line-height: 1.4em;
  font-style: normal;
  font-size: 0.7em;
  padding-bottom: 20px;
}
footer #foot_inner .footer_info .fi_inner .tel_num {
  padding-bottom: 15px;
  line-height: 1.3em;
}
footer #foot_inner .footer_info .fi_inner .tel_num .fas {
  margin-right: 3%;
}
footer #foot_inner .footer_info .fi_inner .tel_num a {
  font-size: 1.2em;
  color: #333;
  text-decoration: none;
}
footer #foot_inner .footer_info .fi_inner .fax {
  font-size: 0.9em;
  color: #333;
  line-height: 1.3em;
}
footer #foot_inner .footer_info .fi_inner .tate_kaza {
  font-family: "cookie", "Noto Sans CJK JP", "Noto Sans JP Subset", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 4em;
  letter-spacing: 0.06em;
  color: #fff;
  opacity: 0.12;
  position: absolute;
  white-space: nowrap;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  z-index: 1;
  text-align: center;
  overflow: visible;
}
footer #foot_inner .footer_link {
  text-align: center;
  padding: 20px 0 40px 0;
}
footer #foot_inner .footer_link li {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 7px;
  font-size: 0.8em;
  position: relative;
  width: auto;
}
footer #foot_inner .footer_link li a {
  color: #fff;
  text-decoration: none;
  padding-left: 40px;
}
footer #foot_inner .footer_link li:before { /*     アロー設定     */
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  margin: auto 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
footer #foot_inner .reserv_box {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 40px;
}
footer #foot_inner .reserv_box .btn_resesrv {
  max-width: 270px;
  margin: 0 auto;
  display: inline-block;
  margin-right: 5%;
  margin-left: 5%;
}
footer #foot_inner .reserv_box .btn_resesrv:first-child {
  padding-bottom: 5%;
}
footer #foot_inner .ft_btn {
  width: 100%;
  padding: 10px 0;
  text-align: center;
}
footer #foot_inner .ft_btn .mid_btn {
  background: none;
  background-color: rgba(255, 255, 255, 0.9);
  color: #ff933b;
  width: 85%;
  max-width: 500px;
  font-size: 0.9em;
  padding-left: 0;
}
footer #foot_inner .ft_btn .mid_btn .fas {
  margin-right: 10px;
}
footer #foot_inner .ft_btn .mid_btn::before {
  display: none;
}
footer #foot_inner .ft_btn .mid_btn::after {
  display: none;
}
footer #foot_inner #copyright {
  line-height: 2.8em;
  font-size: 0.7em;
  color: #fff;
  padding: 13px 0;
}

/* ----------------------------------------
 *     SP  特殊要素
 * ---------------------------------------- */
/*  診療時間 */
.prtime .sec_wrap {
  padding-top: 80px;
}
.prtime .sec_wrap .left_time {
  position: relative;
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 88%;
  margin: 0 auto;
  padding: 40px 0 28px 0;
  z-index: 4;
}
.prtime .sec_wrap .left_time h2 {
  position: absolute;
  width: 200px;
  top: -40px;
  left: 15px;
  text-align: left;
}
.prtime .sec_wrap .left_time h2::after {
  display: none;
}
.prtime .sec_wrap .left_time h2 span {
  text-align: left;
}
@media print, screen and (min-width: 480px) and (max-width: 768px) {
  .prtime .sec_wrap .left_time h2 {
    top: -30%;
  }
}
.prtime .sec_wrap .left_time table {
  border: 1px solid #ff933b;
  margin-bottom: 0;
}
.prtime .sec_wrap .left_time table th, .prtime .sec_wrap .left_time table td {
  border: 1px solid #ff933b;
  font-size: 0.7em;
  color: #ff933b;
  line-height: 1.4em;
  vertical-align: middle;
  text-align: center;
}
.prtime .sec_wrap .left_time table thead th, .prtime .sec_wrap .left_time table thead td {
  background-color: #ff933b;
  color: #fff;
}
.prtime .sec_wrap .right_txt {
  width: 85%;
  margin: 0 auto;
  padding: 13px 0;
  font-size: 0.8em;
  text-align: left;
  line-height: 1.6em;
}

/* -------   診療科のご案内 -------*/
.medi_block h2::after {
  display: none;
}
.medi_block .medi_list {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.medi_block .medi_list li {
  width: 30%;
  margin-right: 2.5%;
  list-style: none;
  border: 1px solid #ff933b;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.46);
  background-image: url(../../img/common/check_orange.png);
  background-size: 15% auto;
  background-position: left 7% center;
  background-repeat: no-repeat;
  transition: background-color 0.3s;
}
.medi_block .medi_list li a {
  display: block;
  padding: 4px 0 4px 25%;
  color: #ff933b;
  text-decoration: none;
  font-size: 0.8em;
}
.medi_block .medi_list li:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/* ----------------------------------------
 *      PC Layout
 * ---------------------------------------- */
@media print, screen and (min-width: 769px) {
  #container {
    margin: 0 auto;
    text-align: center;
  }
  #container #contents {
    width: 100%;
  }
  footer {
    margin: 0 auto;
    width: 100%;
  }
  footer #foot_inner {
    width: 100%;
  }
  /* ----------------------------------------
  *     PC header
  * ---------------------------------------- */
  /* header */
  header {
    text-align: center;
  }
  header #top-head {
    max-width: 1100px;
    height: 130px;
    padding: 0px;
    line-height: 1;
    z-index: 99;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  header #top-head .logo {
    float: left;
    font-size: 36px;
    margin-bottom: 5px;
    height: 64px;
    position: static;
    padding-top: 20px;
  }
  header #top-head .head_addinfo {
    display: block;
    float: right;
    width: auto;
    max-width: 500px;
    margin: 0 auto;
    padding: 15px 0;
    top: 0;
    text-align: right;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.57);
  }
  header #top-head .head_addinfo .inner {
    letter-spacing: 0.13em;
    margin: 0 28px;
  }
  header #top-head .head_addinfo .inner .tell {
    font-size: 0.9em;
    padding-bottom: 6px;
  }
  header #top-head .head_addinfo .inner .tell a {
    font-size: 1.3em;
    color: #333;
    text-decoration: none;
  }
  header #top-head .head_addinfo .inner .tell a .fas {
    color: #ff933b;
    margin-right: 12px;
  }
  header #top-head .head_addinfo .inner address {
    font-size: 0.9em;
    font-style: normal;
  }
  header #head-contents {
    /* -----------予約ボタン------------- */
    /* -----------メインビジュアル------------- */
    /* global-nav */
  }
  header #head-contents .rsrv_link {
    max-width: 1100px;
    height: 185px;
    bottom: auto;
    top: 50px;
    right: 0;
    left: 0;
    text-align: right;
  }
  header #head-contents .rsrv_link .btn_resesrv {
    margin-right: 10px;
    width: 162px;
  }
  header #head-contents #main_v {
    padding: 0;
    border: none;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    height: 792px;
  }
  header #head-contents #main_v #main_wrap {
    max-width: none;
    z-index: 5;
    position: absolute;
    width: 1618px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
  }
  header #head-contents #main_v #main_wrap #m_copy {
    width: 1000px;
    max-width: none;
    height: 76px;
    top: 328px;
    text-align: right;
  }
  header #head-contents #global-nav {
    position: absolute;
    bottom: 0;
    z-index: 100;
    text-align: center;
    padding: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.85) 25%, white 55%);
    transition: 0.5s ease-in-out;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  header #head-contents #global-nav ul.menu {
    list-style: none;
    overflow: visible;
    margin-bottom: 0;
    white-space: nowrap;
    transition-timing-function: unset !important;
    transition-duration: unset !important;
    transform: none !important;
  }
  header #head-contents #global-nav ul.menu li {
    display: inline-block;
    border: none;
    vertical-align: top;
    position: relative;
    width: auto;
  }
  header #head-contents #global-nav ul.menu li a {
    height: 100%;
    font-size: 1em;
    padding: 25px 15px 25px 15px;
    display: block;
    letter-spacing: 0.13em;
    text-align: center;
    color: #333;
    border-bottom: none;
    transition: color 0.3s;
    position: relative;
  }
  header #head-contents #global-nav ul.menu li a .navi_eng {
    display: block;
    font-size: 0.4em;
    color: #ff933b;
    text-align: center;
    line-height: 1em;
    padding-bottom: 3px;
    letter-spacing: 0.11em;
  }
  header #head-contents #global-nav ul.menu li a .fas {
    margin-right: 10px;
  }
  header #head-contents #global-nav ul.menu li a::before {
    display: none;
  }
  header #head-contents #global-nav ul.menu li a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0%;
    max-width: 0 23px;
    height: 2px;
    left: 0;
    bottom: 15px;
    background-color: #ff933b;
    transition: width 0.3s;
  }
  header #head-contents #global-nav ul.menu li a:hover {
    color: #ff933b;
  }
  header #head-contents #global-nav ul.menu li a:hover::after {
    width: 100%;
  }
  /* Fixed  追従時の表現 */
  #top-head.fixed {
    position: absolute;
  }
  /* PC時 使わない*/
  #nav-toggle {
    display: none;
  }
  /* ----------------------------------------
   *     PC ベースデザイン
   * ---------------------------------------- */
  /* -----------本文 基本の段落------------- */
  section .sec_wrap {
    position: relative;
  }
  section .sec_wrap p {
    width: 100%;
    margin-bottom: 25px;
    letter-spacing: 0.15em;
  }
  h2 {
    font-size: 2em;
    line-height: 1.5em;
  }
  h2::after {
    bottom: 10px;
  }
  h3 {
    font-size: 1.3em;
  }
  h4 {
    width: 100%;
  }
  h5 {
    width: 100%;
  }
  /* -----------ミドルボタン------------- */
  .mid_btn {
    width: 40%;
    padding: 12px 0;
    font-size: 1.2em;
    letter-spacing: 0.15em;
    padding-left: 3%;
  }
  .mid_btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    margin: auto 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
  /* -----------テーブル------------- */
  table {
    width: 100%;
  }
  table th, table td {
    padding: 12px 12px;
  }
  /* -----------table デザインテーブル------------- */
  table.ds_tb th, table.ds_tb td {
    font-size: 1em;
  }
  /* -----------table 画面オーバーテーブル------------- */
  table.ov_tb {
    display: table;
    overflow-x: auto;
    white-space: normal;
    -webkit-overflow-scrolling: auto;
  }
  table.ov_tb::-webkit-scrollbar {
    height: 0;
  }
  table.ov_tb::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0;
  }
  /* -----------table 小さめテーブル------------- */
  table.sm_tb {
    margin-left: 0;
  }
  /* -----------フォームデザイン------------- */
  form .contact-wrap label {
    margin-bottom: 7px;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
  }
  form .contact-wrap label > span {
    display: inline-block;
    width: 67%;
  }
  form .contact-wrap label .form_title {
    display: inline-block;
    width: 30%;
  }
  /* -----------シンプル2段組み------------- */
  .simple_2danoti {
    margin-bottom: 20px;
  }
  .simple_2danoti .innner1 {
    float: left;
    width: 45%;
    margin-left: 2.5%;
  }
  .simple_2danoti .innner2 {
    float: right;
    width: 45%;
    margin-right: 2.5%;
  }
  /* -----------写真ギャラリー------------- */
  .photo_gal {
    position: relative;
    padding-top: 520px;
  }
  .photo_gal .gal_wrap {
    position: absolute;
    width: 1100px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    text-align: left;
    font-size: 0;
  }
  .photo_gal .gal_wrap .big_inner {
    width: 50%;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
  }
  .photo_gal .gal_wrap .sm_inner {
    width: 49.99%;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
  }
  /* -----------箱2段組み------------- */
  .col2_set {
    display: flex;
  }
  .col2_set .col_box {
    width: 46%;
    padding: 45px 0;
    font-size: 1em;
    line-height: 1.7em;
  }
  .col2_set .col_box .inner {
    margin: 0 45px;
  }
  .col2_set .col_box .inner .mid_btn {
    width: 80%;
    font-size: 0.9em;
    letter-spacing: 0.13em;
  }
  /* -----------左画像　段組み------------- */
  .img_set {
    display: flex;
  }
  .img_set .col_imgbox {
    width: 36%;
  }
  .img_set .col_box {
    width: 60%;
    padding: 1% 0;
  }
  .img_set .col_box .inner {
    margin: 0 10px;
  }
  /* --------------------------------
            コンテンツ部分
  --------------------------------------- */
  /* -----------下層ページMV------------- */
  #sub_mv {
    height: 318px;
  }
  #sub_mv #sub_mv_wrap {
    position: relative;
    z-index: 5;
  }
  #sub_mv #sub_mv_wrap h1 {
    position: absolute;
    width: 500px;
    height: 60px;
    top: 108px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 2em;
    text-align: center;
  }
  #sub_mv #sub_mv_wrap #ttl_eng {
    position: absolute;
    width: 800px;
    line-height: 1em;
    top: 100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 9em;
    text-align: center;
  }
  #sub_mv #sub_mv_wrap picture {
    position: absolute;
    width: 1356px;
    height: 318px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  /* -----------カラーブロック------------- */
  .colorbg {
    background-position: calc(50% + 520px) top;
    background-size: 413px auto;
  }
  .colorbg .sec_wrap {
    position: relative;
  }
  .colorbg .sec_wrap .tate_kaza {
    bottom: -90px;
  }
  /* -----------お知らせブロック------------- */
  #contents .infomation .sec_wrap {
    padding: 55px 0;
  }
  #contents .infomation .sec_wrap .info_ttlblock {
    display: inline-block;
    width: 40%;
    vertical-align: top;
  }
  #contents .infomation .sec_wrap .info_ttlblock h2 {
    font-size: 1.35em;
  }
  #contents .infomation .sec_wrap .info_ttlblock .mid_btn {
    width: 60%;
    padding: 6px 0 6px 20px;
    font-size: 1em;
  }
  #contents .infomation .sec_wrap .info_txtblock {
    display: inline-block;
    width: 58%;
    vertical-align: top;
  }
  #contents .infomation .sec_wrap .info_txtblock ul li span {
    width: 20%;
    margin-right: 1%;
    font-size: 0.9em;
  }
  #contents .infomation .sec_wrap .info_txtblock ul li p {
    width: 77%;
    font-size: 0.9em;
  }
  #contents .infomation .sec_wrap .info_txtblock ul li p .tag_icon {
    width: auto;
    padding: 2px 4px;
    margin-right: 5px;
  }
  #contents .infomation .sec_wrap .info_txtblock ul li p a:hover {
    text-decoration: underline;
    color: #ff933b;
  }
  /* -----------グレーイメージ ブロック------------- */
  .bg_grayimg {
    background-size: 900px auto;
    background-position: top -100px right;
  }
  /* -----------message_block ブロック------------- */
  #contents .message_block .sec_wrap {
    position: relative;
    text-align: right;
  }
  #contents .message_block .sec_wrap .message_ph {
    width: 80%;
    max-width: 560px;
    height: 446px;
    left: -60px;
    top: 120px;
  }
  #contents .message_block .sec_wrap .message_txtbox {
    position: relative;
    width: 60%;
    max-width: 555px;
    margin-top: 130px;
    margin-left: 40%;
    z-index: 3;
    padding: 63px 0 40px 0;
    margin-bottom: 35px;
  }
  #contents .message_block .sec_wrap .message_txtbox h2 {
    font-size: 5em;
    top: -110px;
    width: 100%;
    height: 150px;
    left: 0;
    padding: 3px 0;
  }
  #contents .message_block .sec_wrap .message_txtbox h4 {
    width: 85%;
    margin: 0 auto;
    font-size: 1.5em;
    font-weight: normal;
    letter-spacing: 0.15em;
    color: #000;
    padding-bottom: 20px;
  }
  /* -----------アクセス ブロック------------- */
  /* -----------アンカーリンク------------- */
  .anchor_link .sec_wrap ul li a {
    padding: 10px 40px 10px 25px;
    font-size: 1em;
  }
  /* -----------追従予約ブロック------------- */
  .rsrv_sm {
    width: 80px;
    z-index: 101;
  }
  /* -----------グループサイト バナー------------- */
  .fcl_bunner .sec_wrap {
    width: 100%;
    max-width: 1000px;
  }
  .fcl_bunner .sec_wrap .fcl_box {
    text-align: left;
    width: 100%;
  }
  .fcl_bunner .sec_wrap .fcl_box li {
    width: 49%;
  }
  .fcl_bunner .sec_wrap .fcl_box li a {
    width: 100%;
    min-height: 180px;
  }
  .fcl_bunner .sec_wrap .fcl_box li a .br_txt {
    top: 50px;
    font-size: 1.5em;
  }
  .fcl_bunner .sec_wrap .fcl_box li a .br_txt .eng {
    margin-bottom: 15px;
  }
  .fcl_bunner .sec_wrap .fcl_box li a img {
    height: 100%;
  }
  .fcl_bunner .sec_wrap .fcl_box li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    margin: auto 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    left: auto;
    right: 31px;
    transition: right 0.3s;
  }
  .fcl_bunner .sec_wrap .fcl_box li a:hover img {
    opacity: 0.95 !important;
    height: 102%;
    max-width: unset;
    width: auto;
  }
  .fcl_bunner .sec_wrap .fcl_box li a:hover::before {
    right: 15px;
  }
  /* ----------------------------------------
   *     PC  footer
   * ---------------------------------------- */
  footer #foot_inner {
    max-width: none;
  }
  footer #foot_inner .f_bunner { /* ３つのバナー */
    background-size: 950px auto;
  }
  footer #foot_inner .f_bunner .fb_inner {
    max-width: 1100px;
    padding: 50px 0 90px 0;
  }
  footer #foot_inner .f_bunner .fb_inner p {
    width: 320px;
    margin-bottom: 5px;
  }
  footer #foot_inner .f_bunner .fb_inner p a {
    padding: 50px 0 0 0;
    min-height: 90px;
    font-size: 1.3em;
    line-height: 1.3em;
    letter-spacing: 0.2em;
  }
  footer #foot_inner .f_bunner .fb_inner p a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    margin: auto 0;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    left: auto;
    right: 21px;
  }
  footer #foot_inner .footer_info {
    display: inline-block;
    width: 33%;
    max-width: 470px;
    padding-top: 320px;
  }
  footer #foot_inner .footer_info .fi_inner {
    width: 98%;
  }
  footer #foot_inner .footer_info .fi_inner address {
    font-size: 0.8em;
    letter-spacing: 0.13em;
    margin-bottom: 30px;
  }
  footer #foot_inner .footer_info .fi_inner .tel_num {
    line-height: 1.3em;
    letter-spacing: 0.15em;
  }
  footer #foot_inner .footer_info .fi_inner .tel_num a {
    font-size: 1.3em;
    letter-spacing: 0.15em;
  }
  footer #foot_inner .footer_info .fi_inner .fax {
    font-size: 1em;
    letter-spacing: 0.15em;
  }
  footer #foot_inner .footer_info .fi_inner .tate_kaza {
    font-size: 5.5em;
  }
  footer #foot_inner .f_right {
    display: inline-block;
    width: 65%;
    max-width: 600px;
    vertical-align: top;
    /* -----------予約ボタン ------------- */
  }
  footer #foot_inner .f_right .footer_link {
    text-align: right;
  }
  footer #foot_inner .f_right .reserv_box {
    width: 100%;
    text-align: right;
  }
  footer #foot_inner .f_right .reserv_box .btn_resesrv {
    width: 45%;
    max-width: 265px;
    margin-right: 1%;
    margin-left: 1%;
  }
  footer #foot_inner .f_right .ft_btn {
    width: 100%;
    text-align: right;
  }
  footer #foot_inner .f_right .ft_btn .mid_btn {
    width: 70%;
    display: inline-block;
    text-align: center;
  }
  footer #foot_inner .f_right .ft_btn .mid_btn::before {
    display: none;
  }
  footer #foot_inner .f_right .ft_btn .mid_btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  footer #foot_inner #copyright {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: right;
  }
  /* ----------------------------------------
   *     PC  特殊要素
   * ---------------------------------------- */
  /*  診療時間 */
  .prtime .sec_wrap {
    padding-top: 105px;
    padding-bottom: 65px;
    max-width: 1000px;
  }
  .prtime .sec_wrap .left_time {
    display: inline-block;
    width: 562px;
    padding: 45px 0 42px 0;
  }
  .prtime .sec_wrap .left_time h2 {
    width: 200px;
    top: -60px;
    left: 15px;
  }
  .prtime .sec_wrap .left_time table {
    width: 86%;
    border: 1px solid #ff933b;
  }
  .prtime .sec_wrap .left_time table th, .prtime .sec_wrap .left_time table td {
    font-size: 0.9em;
    padding: 15px 12px;
  }
  .prtime .sec_wrap .right_txt {
    display: inline-block;
    vertical-align: top;
    width: 360px;
    padding: 13px 0;
    line-height: 2em;
    margin-left: 25px;
  }
  /* -------   診療科のご案内 -------*/
  .medi_block .medi_list {
    width: 730px;
    margin: 0 auto;
  }
  .medi_block .medi_list li {
    background-size: 23px auto;
    background-position: left 19px center;
    width: 22%;
    margin-right: 2.7%;
  }
  .medi_block .medi_list li a {
    display: block;
    padding: 12px 0 12px 53px;
    color: #ff933b;
    font-size: 1.1em;
    letter-spacing: 0.18em;
  }
  .medi_block .medi_list li:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }
}
/* ----------------------------------------
 *  ◆◆◆◆◆◆◆    共通部品   ◆◆◆◆◆◆◆
 * ---------------------------------------- */
.btn-big {
  display: block;
  width: 100%;
  text-align: center;
}
.btn-big a {
  display: block;
  width: 90%;
  margin: 10px auto;
  background: #425238;
  padding: 40px 0;
}

/************  パララックスな背景 *********/
.parabg {
  background: url(../../img/sky.jpg) no-repeat center top;
  padding: 50px 5%;
  border: 1px solid #399;
}
.parabg p {
  background: rgba(0, 0, 0, 0.75);
  padding: 5%;
  margin: 0;
  color: #fff;
}

/************  アコーディオン *********/
.accord_box {
  background: #f3f3f3;
  padding: 0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.accord_box .accord_btn {
  background-color: #fff;
  background-image: url(../../img/common/btn_plus.png);
  background-repeat: no-repeat;
  background-position: right 8px top 8px;
  background-size: 25px auto;
  padding: 10px;
  border: 1px solid #ccc;
  cursor: pointer;
}
.accord_box .accord_btn.open {
  background-image: url(../../img/common/btn_mainasu.png);
}
.accord_box .accord_contents {
  background: rgb(216, 216, 216);
  padding: 10px;
  display: none;
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

/************  トップへもどるボタン  ******** フェードはIE9から作動 *********/
.page-top {
  margin: 0;
  padding: 0;
  filter: inherit;
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ff933b;
  position: fixed;
  right: 16px;
  margin-bottom: 16px !important;
  cursor: pointer;
  transition: bottom 0.5s ease;
  z-index: 997;
}
.page-top:hover {
  opacity: 0.7;
}
.page-top:before { /*     アロー設定     */
  content: "";
  display: block;
  position: relative;
  top: 20px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
}
.page-top .move-page-top {
  display: block;
  font-size: 0.5em;
  color: #fff;
  line-height: 50px;
  text-decoration: none;
  text-align: center;
  padding-top: 5px;
  transition: filter 0.3s;
}
.page-top .move-page-top:hover {
  opacity: 0.7;
  z-index: 5000;
}

/************ スクロール位置によるフェードイン *********/
/* 画面外にいる状態 */
.fadein {
  transform: translate(0, 50px);
  transition: all 800ms;
  /* 画面内に入った状態 */
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0);
}

/************ Swiper　へのズームイン *********/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoomUp 6s linear 0s 1 normal both;
}

/************  wp-pagenavi ************/
.wp-pagenavi {
  clear: both;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  padding: 6px 15px;
  margin: 0 2px 30px 2px;
  white-space: nowrap;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  line-height: 1.4em;
}
.wp-pagenavi a {
  color: #fff;
  background-color: #ff933b;
}
.wp-pagenavi a:hover {
  background-color: #ffb923;
}
.wp-pagenavi .first, .wp-pagenavi .last, .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  color: #ff933b;
  background-color: #ececec;
}
.wp-pagenavi .first:hover, .wp-pagenavi .last:hover, .wp-pagenavi .previouspostslink:hover, .wp-pagenavi .nextpostslink:hover {
  text-decoration: underline;
  background-color: #ffffff;
}
.wp-pagenavi span {
  color: #5e5e5e;
  background-color: #ececec;
}
.wp-pagenavi span.current, .wp-pagenavi span.pages {
  color: #5e5e5e;
  background-color: #fcfcfc;
  font-weight: bold;
}

/************  wp-ブロックエディタ　横幅制限 ************/
[class^=wp-block] {
  max-width: 1000px;
  margin: 0 auto;
}

.wp-block-file a.wp-block-file__button {
  display: inline-block;
}

/*   例外上書き   */
/*   MVコピー 位置調整   */
header #head-contents #main_v #main_wrap #m_copy {
  width: 92%;
  max-width: 600px;
  height: auto;
  right: unset;
  left: 15px;
  top: unset;
  bottom: 40px;
}
@media print, screen and (min-width: 769px) {
  header #head-contents #main_v #main_wrap #m_copy {
    top: 150px;
    left: 39%;
  }
}

/*   下層ページのヘッダーカラー   */
#sub_mv {
  background-color: #c1e9cd;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
/*◆◆◆◆◆◆ PC レイアウト ◆◆◆◆◆◆*/
/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
@media print, screen and (min-width: 769px) {
  header #head-contents #global-nav ul.menu li a {
    font-size: 1.1em;
    padding: 25px 30px;
  }
}
/*   PCの閉じタグ   *//*# sourceMappingURL=fcl9.css.map */