@charset "utf-8";

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

共通

================================*/
/*共通
--------------------------------*/
html {
  font-size: 10px;
  font-size: 62.5%;
}
body {
  color: #725450; /*927764*/
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-size: 1.6em;
  font-weight: 400;
  font-style: normal;
  text-align: justify;
  letter-spacing: 0.03em;
}

/*リンク*/
a {
  color: #725450;
}
a:link {
  color: #725450;
  text-decoration: none;
}
a:visited {
  color: #725450;
  text-decoration: none;
}
a:hover {
  color: #c7b299;
}
a:active {
  color: #c7b299;
  text-decoration: none;
}

/*ページ内リンクの表示位置調整*/
a.anchor_link {
  display: block;
}

/*角丸リンクボタン（各色は.-●●●に記載してください）*/
a.link_btn01 {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  margin-right: 2px; /*右の影の分*/
  margin-bottom: 2px; /*下の影の分*/
  padding: 10px 36px 10px 16px;
  border-radius: 50px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  -webkit-transition: all.5s;
  transition: all.5s;
}
a.link_btn01::after {
  content: "";
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  margin: auto 0;
  width: 10px;
  height: 16px;
  background: url(../img/icon_arrow01.webp) no-repeat top left/contain;
}
a.link_btn01:hover {
  opacity: 0.8;
}

/*角丸リンクボタン（緑）*/
a.link_btn01.-green {
  background: #64ad6c;
  color: #fff;
}

/*角丸リンクボタン（オレンジ）*/
a.link_btn01.-orange {
  background-color: #f8ac3c;
  color: #fff;
}

/*角丸リンクボタン（金）*/
a.link_btn01.-gold {
  background-color: #bf9000;
  color: #fff;
}

/*角丸リンクボタン（青）*/
a.link_btn01.-blue {
  background: #043f82;
  color: #fff;
}

/*角丸リンクボタン（ダウンロードアイコン）*/
a.link_btn01.-dl::after {
  width: 16px;
  height: 14px;
  background: url(../img/icon_download01.webp) no-repeat left top / contain;
}

/*アイコンリンクボタン（各アイコンは.-●●●に記載してください）*/
a.link_btn02 {
  display: inline-block;
  position: relative;
  -webkit-transition: all.5s;
  transition: all.5s;
}
a.link_btn02::after {
  content: "";
  position: absolute;
  -webkit-transition: all.5s;
  transition: all.5s;
}
a.link_btn02:hover::after {
  opacity: 0.6;
}

/*アイコンリンクボタン（別窓）*/
a.link_btn02.-newwindow {
  padding: 0 24px 0 4px;
}
a.link_btn02.-newwindow::after {
  top: 0;
  right: 4px;
  bottom: 0;
  margin: auto 0;
  width: 16px;
  height: 16px;
  background: url(../img/icon_newwindow.webp) no-repeat top left/contain;
}

/*リンクボタンを並べる*/
.link_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.link_wrap > li {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  text-align: center;
}

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

/*WEBフォント*/
.wf-mplus1p {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*文字装飾*/
.bold {
  font-weight: 700;
}
.gold {
  color: #bf9000;
}
.orange {
  color: #f8ac3c;
}
.green {
  color: #64ad6c;
}
.blue {
  color: #043f82;
}
.orange_line {
  padding-right: 4px;
  padding-left: 4px;
  background: linear-gradient(transparent 70%, #f8e59a 70%);
}
.lightbrown_rounded {
  display: inline-block;
  padding: 2px 8px;
  background-color: #725450;
  border-radius: 5px;
  color: #fff;
}
.green_rounded {
  display: inline-block;
  padding: 2px 8px;
  background-color: #64ad6c;
  border-radius: 5px;
  color: #fff;
}
.gold_rounded {
  display: inline-block;
  padding: 2px 8px;
  background-color: #bf9000;
  border-radius: 5px;
  color: #fff;
}
.white_rounded {
  display: inline-block;
  padding: 2px 8px;
  background-color: #fff;
  border-radius: 5px;
  color: #725450;
}
.disc {
  display: inline-block;
  position: relative;
  padding-left: 1em;
  text-align: left;
}
.disc.-green:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #5fb68d;
}

/*テキスト*/
.txt {
  line-height: 2; /*1.6*/
  text-align: left;
}

/*定義リスト（dt・dd横並び：dt・ddの幅など調整は各style.cssで調整してください。）*/
.txt_dl01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.txt_dl01 dt,
.txt_dl01 dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.txt_dl01 dt {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

/*定義リスト（dt・dd横並び）*/
.txt_dl01.-col2 {
  border-top: solid 1px #def0e8;
}
.txt_dl01.-col2:last-of-type {
  border-bottom: solid 1px #def0e8;
}
.txt_dl01.-col2 > dt {
  box-sizing: border-box;
  padding: 10px 3%;
  color: #725450;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}
.txt_dl01.-col2 > dd {
  box-sizing: border-box;
  padding: 10px 3%;
  background-color: #fff;
  font-size: 16px;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.2em;
}

/*定義リスト（dt・dd横並び：★評価）*/
.txt_dl01.-star {
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.txt_dl01.-star > dt {
  box-sizing: border-box;
  padding: 4px 8px;
  background-color: #e7f7d2;
  border-top: 1px solid #e7f7d2;
  border-left: 1px solid #e7f7d2;
  border-bottom: 1px solid #e7f7d2;
  border-radius: 5px 0 0 5px;
  color: #725450;
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
}
.txt_dl01.-star > dd {
  box-sizing: border-box;
  padding: 4px 8px;
  border-radius: 0 5px 5px 0;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.2em;
}

/*定義リスト（緑丸）*/
.disc_dl01 {
  line-height: 1.6;
}
.disc_dl01 > dt {
  position: relative;
  padding-left: 1em;
  text-align: left;
}
.disc_dl01.-green > dt:before {
  background-color: #5fb68d;
}
.disc_dl01 > dd {
  padding-left: 1em;
}
.disc_dl01 > dd:not(:last-child) {
  margin-bottom: 1em;
}
.disc_dl01 > dt:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/*定義リスト（下線）*/
.line_dl01 {
  line-height: 1.6;
}
.line_dl01 > dt {
  margin-bottom: 10px;
  text-align: left;
}
.line_dl01.-green > dt > span {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #e6f6ec 0%)
    repeat scroll 0 0;
}
.line_dl01.-bule > dt > span {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 75%, #d9eeff 0%)
    repeat scroll 0 0;
}
.line_dl01 > dt > span {
  padding-right: 4px;
  padding-left: 4px;
  color: #534741;
  font-size: 22px;
  font-weight: 700;
}
.line_dl01 > dd {
  font-size: 16px;
  text-align: left;
}

/*定義リスト（ポイント）*/
.point_dl01 {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 120px;
}
.point_dl01 dt {
  margin-bottom: 10px;
  color: #bf9000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}
.point_dl01 dt span.circle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  box-sizing: border-box;
  width: 100px;
  height: 100px;
  margin: auto 0;
  padding-top: 24px;
  background-color: #64ad6c;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
}
.point_dl01 dt span.circle span.number {
  display: block;
  font-size: 40px;
  font-weight: 700;
}
.point_dl01 dd {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

/*リスト（米印）*/
.asterisk01 > li {
  position: relative;
  padding-left: 1em;
  line-height: 1.6;
  text-align: left;
}
.asterisk01 > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.asterisk01 > li:not(:last-child) {
  margin-bottom: 1em;
}

/*数字リスト*/
.number_list01 {
  padding-left: 2em;
  list-style-type: decimal;
  font-size: 16px;
  line-height: 1.6;
}
.number_list01 > li:not(:last-child) {
  margin-bottom: 1em;
}

/*リスト（緑丸）*/
.disc_list01 > li {
  position: relative;
  padding-left: 1em;
  line-height: 1.6;
  text-align: left;
}
.disc_list01 > li:not(:last-child) {
  margin-bottom: 1em;
}
.disc_list01 > li:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.disc_list01.-green > li:before {
  background-color: #5fb68d;
}
.disc_list01.-lightbrown > li:before {
  background-color: #c7b299;
}

/*リスト（緑チェック）*/
.check_list01 > li {
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
  text-align: left;
}
.check_list01 > li:not(:last-child) {
  margin-bottom: 1em;
}
.check_list01 > li:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: 25px;
  height: 21px;
  background: url(../img/icon_checkbox01.png) no-repeat left top/contain;
}

/*リスト（青チェック）*/
.check_list.-blue > li {
  position: relative;
  padding: 3px 0 3px 38px;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}
.check_list.-blue > li:not(:last-child) {
  margin-bottom: 1em;
}
.check_list.-blue > li:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 32px;
  margin: auto 0;
  transform: translateY(4px);
  background: url(../img/icon_checkbox02.png) no-repeat left top/contain;
}

/*リスト（ひし形）*/
.rhombus_list01 > li {
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
  text-align: left;
}
.rhombus_list01 > li:not(:last-child) {
  margin-bottom: 1em;
}
.rhombus_list01 > li:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
.rhombus_list01.-gold > li:before {
  background-image: url(../img/icon_rhombus01.png);
}
.rhombus_list01.-silver > li:before {
  background-image: url(../img/icon_rhombus02.png);
}

/*タイトル（ロゴと緑の下線）*/
.ttl02 {
  position: relative;
  padding-top: 50px;
  padding-bottom: 5px;
  background: url(../img/ttl02_bg01.webp) no-repeat center top;
  color: #665345;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.ttl02::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 50px;
  height: 2px;
  margin: 0 auto;
  background: #64ad6c;
}

/*タイトル（緑のジグザグ下線）*/
.ttl03 {
  margin-bottom: 30px;
  padding: 0 3% 25px;
  background: url(../img/ttl03_bg01.png) no-repeat center bottom;
  color: #725450;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/*タイトル（緑の下線）*/
.ttl04 {
  margin-bottom: 30px;
}
.ttl04 span.under_line01 {
  display: inline-block;
  padding: 0 10px 10px 10px;
  border-bottom: 2px solid #5fb68d;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.5;
}

/*タイトル（模様別）*/
.ttl05 {
  background-repeat: repeat;
  background-position: left top;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.ttl05.-green {
  background-color: #dff0e8;
  color: #bf9000;
}
.ttl05.-checkered01 {
  background-image: url(../img/bg_checkered01.png);
  color: #5fb68d;
}
.ttl05.-checkered02 {
  background-image: url(../img/bg_checkered02.png);
  color: #725450;
}
.ttl05.-checkered03 {
  background-image: url(../img/bg_location.png);
  color: #725450;
}

/*タイトル（左線）*/
.ttl06 {
  padding-left: 10px;
  border-left: 5px solid #bf9000;
  color: #bf9000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

/*タイトル（数字）*/
.ttl07 {
  position: relative;
  padding: 16px 3% 16px 90px;
  color: #725450;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
.ttl07::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
.ttl07.-no01::before {
  width: 64px;
  height: 45px;
  background-image: url(../img/icon_01.webp);
}
.ttl07.-no02::before {
  width: 77px;
  height: 45px;
  background-image: url(../img/icon_02.webp);
}
.ttl07.-no03::before {
  width: 77px;
  height: 45px;
  background-image: url(../img/icon_03.webp);
}
.ttl07.-no04::before {
  width: 78px;
  height: 45px;
  background-image: url(../img/icon_04.webp);
}
.ttl07.-no05::before {
  width: 77px;
  height: 45px;
  background-image: url(../img/icon_05.webp);
}
.ttl07.-no06::before {
  width: 77px;
  height: 45px;
  background-image: url(../img/icon_06.webp);
}

/*画像（緑の影）*/
.image_box01 {
  display: inline-block;
  box-sizing: border-box;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 3px;
  background: #fff;
  border: solid 1px #e4e4e4;
  box-shadow: 10px 10px 0 rgba(172, 229, 206, 0.3);
}
.image_box01 img {
  vertical-align: bottom;
}

/*画像（グレー枠線）*/
.image_box02 {
  display: inline-block;
  box-sizing: border-box;
  padding: 10px;
  background-color: #fff;
  border: solid 1px #e4e4e4;
}
.image_box02 img {
}

/*フレックスボックス - 親要素*/
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*フレックスボックス - 親要素（反転）*/
.flexbox.re {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/*フレックスボックス - 親要素（水平方向：両端のアイテムを余白を空けずに配置し、その他は均等配置）*/
.flexbox.h_between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/*フレックスボックス - 親要素（水平方向：アイテムを中央に寄せる）*/
.flexbox.h_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

/*フレックスボックス - 親要素（垂直方向：アイテムを中央に寄せる）*/
.flexbox.v_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

/*フレックスボックス - 子要素（垂直方向：アイテムを中央に寄せる）*/
.flexbox > .flexbox_item.v_center {
  -ms-flex-item-align: center;
  align-self: center;
}

/*フレックスボックス - 子要素（矢印）*/
.flexbox.arrow {
  gap: 48px 32px;
}
.flexbox.arrow > .flexbox_item {
  position: relative;
}
.flexbox.arrow > .flexbox_item:not(:last-child)::after {
  /*必要に応じてleft、transform: translateYの値は各style.cssで調整してください。*/
  content: "";
  position: absolute;
  width: 32px;
  height: 48px;
  background: url(../img/icon_arrow02.webp) no-repeat left top/contain;
}

/*背景（緑ストライプ）*/
.stripe_bg01 {
  background: url(../img/bg_stripe01.png) repeat left top;
}

/*背景（ストライプ）*/
.stripe_bg {
  background-image: url(../img/bg_slash01.png);
  background-repeat: repeat;
  background-position: left top;
}
.stripe_bg.-lightgreen {
  background-color: #f1f8f5;
}
.stripe_bg.-green {
  background-color: #e7f7d2;
}

/*背景（市松模様）*/
.checkered_bg01 {
  background: url(../img/bg_checkered03.png) repeat left top;
}
.checkered_bg02 {
  background: url(../img/bg_checkered02.png) repeat left top;
}

/*背景（グラデ）*/
.gradation.-green {
  background: rgb(231, 247, 210);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(231, 247, 210, 1) 25%,
    rgba(231, 247, 210, 1) 75%,
    rgba(255, 255, 255, 0) 100%
  );
}
.gradation.-lightgreen {
  background: rgb(242, 242, 206);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(242, 242, 206, 1) 25%,
    rgba(242, 242, 206, 1) 75%,
    rgba(255, 255, 255, 0) 100%
  );
}

/*線（ドット）*/
.dotted_bottom01 {
  border-bottom: 1px dotted #c7b299;
}

/*ボックス（線 - 共通）*/
.line_box01 {
  box-sizing: border-box;
  padding-top: 30px;
  padding-bottom: 30px;
}

/*ボックス（線 - 緑太）*/
.line_box01.-green_thick01 {
  border: 5px solid #def0e8;
  background-color: #fff;
}
.line_box01.-green_thick01 > .inner {
  padding-right: 10px;
  padding-left: 10px;
}

/*ボックス（線 - 緑太）*/
.line_box01.-green_thick02 {
  padding-right: 3%;
  padding-left: 3%;
  border: 5px solid #def0e8;
  background-color: #fff;
}

/*ボックス（線 - 緑細）*/
.line_box01.-green_thin01 {
  border: 1px solid #def0e8;
  background-color: #fff;
}
.line_box01.-green_thin01 > .inner {
  padding-right: 10px;
  padding-left: 10px;
}

/*ボックス（線 - 緑細）*/
.line_box01.-green_thin02 {
  padding-right: 3%;
  padding-left: 3%;
  border: 1px solid #def0e8;
  background-color: #fff;
}

/*ボックス（線 - 共通）*/
.line_box02 {
  box-sizing: border-box;
}
.line_box02 > .inner {
  padding: 20px 3%;
}
.line_box02.-green_thick01 {
  border: 5px solid #def0e8;
  background-color: #fff;
}
.line_box02.-blue_thick01 {
  border: 5px solid #043f82;
  background-color: #fff;
}
.line_box02.-green_thin01 {
  border: 1px solid #def0e8;
  background-color: #fff;
}
.line_box02.-lightbrown_thin01 {
  border: 1px solid #f4ecdb;
  background-color: #fff;
}
.line_box02.-gold_thin01 {
  border: 1px solid #bf9000;
  background-color: #fff;
}
.line_box02.-silver_thin01 {
  border: 1px solid #999999;
  background-color: #fff;
}

/*ボックス（四角背景）*/
.square_box01 {
  box-sizing: border-box;
  padding: 30px 3%;
}

/*ボックス（角丸背景）*/
.rounded_box01 {
  box-sizing: border-box;
  padding: 30px 3%;
  border-radius: 5px;
}
.rounded_box01.-green {
  background-color: #def0e8; /*e7f7d2*/
}
.rounded_box01.-lightgreen {
  background-color: #f2f2ce;
}
.rounded_box01.-brown {
  background-color: #eee7df;
}
.rounded_box01.-lightbrown {
  background-color: #f4ecdb;
}
.rounded_box01.-white {
  background-color: #fff;
}
.rounded_box01.-whitegreen {
  background-color: #fff;
  border: 1px solid #def0e8;
}
.rounded_box01.-silver {
  background-color: #e6e6e6;
}

/*アコーディオン - タイトル*/
.accordion_heading {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  transition: all 0.5s ease;
  padding-right: 40px;
}

/*アコーディオン - タイトル（＋と×の共通）*/
.accordion_heading .open_close {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  margin: auto 0;
  border-radius: 5px;
  z-index: 1;
}
.accordion_heading .open_close.-blue {
  background-color: #043f82;
}
.accordion_heading .open_close.-brown {
  background-color: #725450;
}
.accordion_heading .open_close.-green {
  background-color: #64ad6c;
}

/*アコーディオン - タイトル(＋)*/
.accordion_heading::before,
.accordion_heading::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s ease;
}
.accordion_heading::before {
  top: 48%;
  right: 6px;
  transform: rotate(0deg);
  z-index: 2;
}
.accordion_heading::after {
  top: 48%;
  right: 6px;
  transform: rotate(90deg);
  z-index: 3;
}

/*アコーディオン - タイトル（closeというクラスがついたら形状が×に変化）*/
.accordion_heading.close::before {
  transform: rotate(45deg);
}
.accordion_heading.close::after {
  transform: rotate(-45deg);
}

/*アコーディオン - 現れるエリア*/
.accordion_box {
  display: none; /*はじめは非表示*/
  margin-top: 10px;
}

/*横にスクロール*/
.sp_scroll_text {
  display: none;
}

/*バナー（web予約）*/
.bnr_area {
  text-align: center;
}
.bnr_area a.bnr_rsv {
  display: inline-block;
}
.bnr_area a.bnr_rsv:hover {
  opacity: 0.8;
}

.bnr_area02 {
  text-align: center;
  margin-top: 20px;
}
.bnr_area02 a.bnr_rsv {
  display: inline-block;
}
.bnr_area02 a.bnr_rsv:hover {
  opacity: 0.8;
}




/*電話*/
.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px 10px;
  /*
  padding: 8px 10px;
  background-color: #fff;
  border-radius: 33px;
  */
}
.tel_txt {
  display: inline-block;
  color: #f8ac3c;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}
a.tel {
  position: relative;
  display: inline-block;
  padding-left: 20px; /*32px*/
  color: #f8ac3c;
  font-size: 16px; /*29px*/
  font-weight: 700;
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(102, 80, 64, 0.2);
}
a.tel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: 16px; /*25px*/
  height: 16px; /*25px*/
  background: url(../img/icon_tel02.png) no-repeat left top / contain;
}

/*住所*/
.address {
  text-align: center;
}
.address > span {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  text-align: left;
}
.address > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 16px;
  margin: auto 0;
  background: url(../img/icon_address01.webp) no-repeat left top / contain;
}

/*診療時間（ヘッダー・フッター共通）*/
.schedule > table {
  width: 100%;
  border-left: 1px solid #ac9a84;
  border-bottom: 1px solid #ac9a84;
  font-size: 14px;
}
.schedule > table th,
.schedule > table td {
  padding: 4px 8px;
  border-top: 1px solid #ac9a84;
  border-right: 1px solid #ac9a84;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1;
}
.schedule > table thead th {
  background-color: #c7b299;
  color: #fff;
  text-align: center;
}
.schedule > table tbody th {
  width: 30%;
  background-color: #fff;
  color: #725450;
  text-align: center;
}
.schedule > table tbody td {
  width: calc(70% / 8);
  background-color: #fff;
  color: #725450;
  font-size: 20px;
  text-align: center;
}
.schedule .schedule_txt {
  color: #725450;
  line-height: 1.5;
  text-align: right;
}

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

/*隙間調整*/
.mb0 {
  margin-bottom: 0 !important;
}
.mb5 {
  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;
}

/*アニメーション用CSS*/
.updown {
  animation-name: UpDown; /* アニメーションの名前 */
  animation-duration: 1.5s; /* アニメーションの１回分の長さ */
  animation-iteration-count: infinite; /* アニメーションの回数 */
  animation-timing-function: ease-in-out; /* アニメーションの進行具合 */
  animation-direction: alternate; /* アニメーション再生の向き */
}

/* アニメーションの設定 */
@keyframes UpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(30px);
  }
}

/*header
--------------------------------*/
#header {
  padding-top: 4px;
  padding-bottom: 16px;
  background: url(../img/bg_cloth01.webp) repeat center center;
}

/*フレックスボックス - 親要素*/
#header .flexbox {
  gap: 10px 10px;
}

/*タイトル*/
#header .ttl01 {
  display: inline;
  font-size: 14px;
}
#header .ttl01_txt {
  display: inline;
  font-size: 14px;
}
#header .ttl01 + .ttl01_txt::before {
  content: "｜";
}

/*特徴*/
#header .features li {
  position: relative;
  display: inline-block;
  padding-top: 4px;
  padding-bottom: 4px;
  letter-spacing: 0;
  text-align: left;
}
#header .features li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto 0;
  background: url(../img/icon_leaf01.png) no-repeat left top/contain;
}
#header .features li:not(:last-child) {
  border-right: 2px dotted #c7b299;
}

/*ロゴ*/
#header .logo {
  display: inline-block;
  padding-right: 23px;
}

/*診療時間*/
#header .schedule .lightbrown_rounded {
  margin-right: 10px;
}

/*footer
--------------------------------*/
/*医院情報*/
#footer #clinic_info {
  background: url(../img/bg_cloth01.webp) repeat center center;
  border-top: 2px solid #c7b299;
  border-bottom: 2px solid #c7b299;
}
#footer #clinic_info .flexbox > .flexbox_item > .inner {
  padding: 30px 3%;
}

/*ロゴ*/
#footer .logo {
  padding-right: 23px;
  text-align: center;
}

/*住所*/
#footer .address {
  text-align: left;
}

/*診療時間*/
#footer .schedule .lightbrown_rounded {
  margin-right: 10px;
}

/*米印リスト*/
#footer ul.asterisk {
  margin-right: auto;
  margin-left: auto;
}

/*地図*/
#footer .gmap {
  line-height: 0; /*隙間消しのため*/
}
#footer .gmap iframe {
  width: 100%;
  border: 0;
}

/*裏メニュー*/
#footer #hidden_menu {
  display: none;
  background-color: #c1e4e9;
  background-image: url(../img/bg_cloud01.webp), url("../img/bg_flower01.webp");
  background-repeat: repeat-x, no-repeat;
  background-position: left top, center bottom;
  background-size: 500px, contain;
  background-attachment: local, fixed;
}

/*アコーディオン - タイトル（click）*/
#footer #hidden_menu .accordion_heading.-click_on {
  max-width: 128px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
}
#footer #hidden_menu .accordion_heading.-click_on::before,
#footer #hidden_menu .accordion_heading.-click_on::after {
  content: none;
}
#footer #hidden_menu .accordion_heading.-click_on .updown {
  position: relative;
  padding-top: 10px;
}
#footer #hidden_menu .accordion_heading.-click_on .updown .txt {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
#footer #hidden_menu .accordion_box.-click_on {
  margin-top: 50px;
}

/*裏メニュー フレックスボックス - 子要素*/
#footer #hidden_menu .flexbox {
  gap: 20px;
}

/*ナビ*/
#footer .bg_lightbrown {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #c7b299;
}
#footer .bg_lightbrown > .inner {
  padding-right: 3%;
  padding-left: 3%;
}
#footer .ft_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px 16px;
}
#footer .ft_nav li {
  color: #fff;
  text-align: center;
}
#footer .ft_nav li a {
  color: #fff;
}

/*コピーライト*/
#footer #copyright {
  padding: 20px 3%;
  background-color: #c7b299;
  border-top: 1px dashed #ac9a84;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

/*ページトップへ*/
#footer #page-top {
  position: fixed;
  z-index: 8998;
}
#footer #page-top a {
  position: relative;
  display: block;
  box-sizing: border-box;
  background-color: #64ad6c;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
}
#footer #page-top a::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  transform: rotateZ(-90deg);
  width: 21px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/icon_arrow01.webp) no-repeat left top/ contain;
}
#footer #page-top a:hover {
  background-color: #8bca92;
  text-decoration: none;
}

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

タブレット横、ノートパソコン（1024px〜MAX）

================================*/
@media (min-width: 1024px) {
  /*共通
  ------------------------------*/
  /*表示・非表示*/
  .pc-none {
    display: none !important;
  }
  .pcTab-none {
    display: none !important;
  }

  /*ページ内リンクの表示位置調整*/
  a.anchor_link {
    padding-top: 70px;
    margin-top: -70px;
  }

  /*タイトル（ロゴと緑の下線）*/
  .ttl02 {
    margin-bottom: 40px;
    font-size: 23px;
  }

  /*タイトル（緑のジグザグ下線）*/
  .ttl03 {
    font-size: 28px;
  }

  /*タイトル（模様別）*/
  .ttl05 {
    padding: 15px 10px;
    font-size: 18px;
  }

  /*フレックスボックス - 子要素（右矢印）*/
  .flexbox.arrow.-right > .flexbox_item:not(:last-child)::after {
    /*必要に応じてleft、transform: translateYの値は各style.cssで調整してください。*/
    top: 50%;
  }

  /*背景（グラデ）*/
  .gradation {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    padding: 20px 3%;
  }

  /*header
  ------------------------------*/
  #header > .inner {
    padding-right: 10px;
    padding-left: 10px;
  }

  /*タイトル*/
  #header .ttl01_wrap {
    text-align: right;
  }

  /*フレックスボックス - 親要素*/
  #header .flexbox {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  /*フレックスボックス - 子要素*/
  #header .flexbox > .flexbox_item:nth-child(1) {
    order: 2;
    -ms-flex-preferred-size: 17%;
    flex-basis: 17%;
  }
  #header .flexbox > .flexbox_item:nth-child(2) {
    order: 1;
    -ms-flex-preferred-size: 37%;
    flex-basis: 37%;
  }
  #header .flexbox > .flexbox_item:nth-child(3) {
    order: 3;
    -ms-flex-preferred-size: 43%;
    flex-basis: 43%;
  }

  /*特徴*/
  #header .features li {
    padding-left: 20px;
  }
  #header .features li:not(:last-child) {
    margin-right: 1%;
    padding-right: 2%;
  }

  /*電話
  #header .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  */

  /*side_tab
  ------------------------------*/
  /*右側固定表示タブ（共通）*/
  #side_tab {
    z-index: 10000;
    position: fixed;
    top: 15%;
    right: 0;
  }
  #side_tab ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  #side_tab ul li > a {
    display: inline-block;
    box-sizing: border-box;
    transition: all 0.5s ease;
  }

  /*右側固定表示タブ（WEB予約）*/
  #side_tab a.rsv {
    padding: 16px 8px;
    background-color: #f8ca3c;
    border-radius: 5px 0 0 5px;
  }
  #side_tab a.rsv:hover,
  #side_tab a.rsv:active {
    opacity: 1;
    background-color: #f8dc85;
  }

  /*グローバルナビ
  ------------------------------*/
  /*ナビ - 第1階層*/
  #menu {
    background-color: rgba(255, 255, 255, 0.96);
  }
  #menu ul.menu_first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 8px;
    padding-right: 15px;
    padding-left: 15px;
  }
  #menu ul.menu_first > li {
    position: relative;
    -ms-flex-preferred-size: calc(100% / 8 - 8px);
    flex-basis: calc(100% / 8 - 8px);
  }
  #menu ul.menu_first > li::after,
  #menu ul.menu_first > li:first-child:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -4px;
    margin: auto 0;
    width: 1px;
    height: 100px;
    background: url(../img/gnav_line01.png) no-repeat left top/contain;
  }
  #menu ul.menu_first > li:first-child::before {
    left: -4px;
  }

  /*ナビ - 第1階層のリンク*/
  #menu ul.menu_first > li > a {
    display: block;
    padding: 86px 4px 6px;
    color: #64ad6c;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s linear;
    background-size: contain;
  }
  #menu ul.menu_first > li > a.home {
    background: url("../img/gnav_icon01_off.png") no-repeat center top 20px;
  }
  #menu ul.menu_first > li > a.services {
    background: url("../img/gnav_icon02_off.png") no-repeat center top 10px /
      38px 60px;
  }
  #menu ul.menu_first > li > a.staffs {
    background: url("../img/gnav_icon03_off.png") no-repeat center top 20px;
  }
  #menu ul.menu_first > li > a.clinic {
    background: url("../img/gnav_icon04_off.png") no-repeat center top 25px;
  }
  #menu ul.menu_first > li > a.price {
    background: url("../img/gnav_icon05_off.png") no-repeat center top 20px;
  }
  #menu ul.menu_first > li > a.access {
    background: url("../img/gnav_icon06_off.png") no-repeat center top 25px;
  }
  #menu ul.menu_first > li > a.question {
    background: url("../img/gnav_icon07_off.webp") no-repeat center top 22px;
  }
  #menu ul.menu_first > li > a.case {
    background: url("../img/gnav_icon08_off.webp") no-repeat center top 10px;
  }
  #menu ul.menu_first > li > a:hover {
    color: #c7b299;
  }
  #menu ul.menu_first > li > a.home:hover {
    background-image: url("../img/gnav_icon01_on.png");
  }
  #menu ul.menu_first > li > a.services:hover {
    background-image: url("../img/gnav_icon02_on.png");
  }
  #menu ul.menu_first > li > a.staffs:hover {
    background-image: url("../img/gnav_icon03_on.png");
  }
  #menu ul.menu_first > li > a.clinic:hover {
    background-image: url("../img/gnav_icon04_on.png");
  }
  #menu ul.menu_first > li > a.price:hover {
    background-image: url("../img/gnav_icon05_on.png");
  }
  #menu ul.menu_first > li > a.access:hover {
    background-image: url("../img/gnav_icon06_on.png");
  }
  #menu ul.menu_first > li > a.question:hover {
    background-image: url("../img/gnav_icon07_on.webp");
  }
  #menu ul.menu_first > li > a.case:hover {
    background-image: url("../img/gnav_icon08_on.webp");
  }

  /*ナビ - 第1階層（下へスクロールすると、グローバルナビを固定表示にする時）*/
  #menu.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #c7b299;
  }
  #menu.fixed ul.menu_first > li::after,
  #menu.fixed ul.menu_first > li:first-child:before {
    height: 32px;
  }

  /*ナビ - 第1階層のリンク（下へスクロールすると、グローバルナビを固定表示にする時）*/
  #menu.fixed ul.menu_first > li > a {
    padding: 20px 4px 20px;
    background-position: center top -100px;
  }

  /*ナビ - 第2階層*/
  #menu ul.menu_second {
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    z-index: 1000;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-90px);
    width: 180px;
  }
  #menu ul.menu_first > li:hover ul.menu_second {
    visibility: visible;
    opacity: 1;
  }
  #menu ul.menu_second > li {
  }

  /*ナビ - 第2階層のリンク*/
  #menu ul.menu_second > li > a {
    display: block;
    box-sizing: border-box;
    min-height: 40px;
    padding: 5px;
    background-color: #fff;
    border: 1px solid #f4ecdb;
    color: #64ad6c;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s linear;
  }
  #menu ul.menu_second > li + li > a {
    border-top: none;
  }
  #menu ul.menu_second > li > a:hover {
    color: #c7b299;
    box-shadow: 0 -3px 0 #c7b299 inset;
  }

  /*footer
  ------------------------------*/
  /*フレックスボックス - 子要素*/
  #footer #clinic_info .flexbox > .flexbox_item {
    -ms-flex-preferred-size: calc(100% / 2);
    flex-basis: calc(100% / 2);
  }

  /*米印リスト*/
  #footer ul.asterisk {
    max-width: 85%;
  }

  /*地図*/
  #footer .gmap iframe {
    height: 642px;
  }

  /*裏メニュー*/
  #footer #hidden_menu {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #footer #hidden_menu > .inner {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 50px;
    padding-left: 50px;
  }

  /*ナビ*/
  #footer .ft_nav li {
  }

  /*ページトップへ*/
  #footer #page-top {
    bottom: 20px;
    right: 20px;
    width: 100px;
  }
  #footer #page-top a {
    padding: 40px 4px 16px;
  }
  #footer #page-top a::before {
    top: 6px;
  }
}

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

パソコン（1366px〜MAX）

================================*/
@media (min-width: 1366px) {
  /*header
  ------------------------------*/
  #header > .inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  /*フレックスボックス - 子要素*/
  #header .flexbox > .flexbox_item:nth-child(1) {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  #header .flexbox > .flexbox_item:nth-child(2) {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  #header .flexbox > .flexbox_item:nth-child(3) {
    -ms-flex-preferred-size: 450px;
    flex-basis: 450px;
  }

  /*特徴*/
  #header .features li {
    padding-left: 25px;
  }
  #header .features li:not(:last-child) {
    margin-right: 13px;
    padding-right: 15px;
  }

  /*電話
  #header .contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  */

  /*グローバルナビ
  ------------------------------*/
  #menu ul.menu_first {
    gap: 0 30px;
  }
  #menu ul.menu_first > li {
    position: relative;
    -ms-flex-preferred-size: calc(100% / 8 - 30px);
    flex-basis: calc(100% / 8 - 30px);
  }
  #menu ul.menu_first > li::after,
  #menu ul.menu_first > li:first-child:before {
    right: -15px;
  }
  #menu ul.menu_first > li:first-child::before {
    left: -15px;
  }

  /*footer
  ------------------------------*/
  /*医院情報*/
  #footer #clinic_info .flexbox > .flexbox_item > .inner {
    max-width: 600px;
    margin-left: auto;
  }

  /*米印リスト*/
  #footer ul.asterisk {
    max-width: 80%;
  }
}

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

パソコン（1920px〜MAX）

================================*/
@media (min-width: 1920px) {
  /*side_tab
  ------------------------------*/
  /*右側固定表示タブ（WEB予約）*/
  #side_tab a.rsv {
    padding: 16px 16px;
  }

  /*グローバルナビ
  ------------------------------*/
  /*ナビ - 第1階層（タブレット横〜PC表示用のグローバルナビ）*/
  #menu ul.menu_first {
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
  }

  /*footer
  ------------------------------*/
  /*裏メニュー*/
  #footer #hidden_menu > .inner {
    max-width: 1280px;
    padding-right: 10px;
    padding-left: 10px;
  }
}

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

スマホ横、タブレット縦（0〜1023pxまで）

================================*/
@media (max-width: 1023px) {
  /*共通
  ------------------------------*/
  /*表示・非表示*/
  .tabSp-none {
    display: none !important;
  }

  /*ページ内リンクの表示位置調整*/
  a.anchor_link {
    padding-top: 20px;
    margin-top: -20px;
  }

  /*リンクボタン*/
  a.link_btn01 {
    display: block;
  }

  /*タイトル（ロゴと緑の下線）*/
  .ttl02 {
    margin-bottom: 30px;
    font-size: 20px;
  }

  /*タイトル（緑のジグザグ下線）*/
  .ttl03 {
    font-size: 20px;
    background-size: auto 20px;
  }

  /*タイトル（模様別）*/
  .ttl05 {
    padding: 15px 3%;
    font-size: 18px;
  }

  /*フレックスボックス - 子要素（右矢印）*/
  .flexbox.arrow.-right > .flexbox_item:not(:last-child)::after {
    top: 100%;
    right: 0;
    left: 0;
    margin: 0 auto;
    transform: rotateZ(90deg);
  }

  /*背景（グラデ）*/
  .gradation {
    padding: 10px 3%;
  }

  /*header
  ------------------------------*/
  #header > .inner {
    padding-right: 3%;
    padding-left: 3%;
  }

  /*タイトル*/
  #header .ttl01_wrap {
    padding-right: 50px;
    text-align: left;
  }

  /*フレックスボックス - 子要素*/
  #header .flexbox > .flexbox_item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  #header .flexbox > .flexbox_item:nth-child(3) {
    display: none;
  }

  /*特徴*/
  #header .features {
    text-align: center;
  }
  #header .features li {
    padding-left: 20px;
  }
  #header .features li:not(:last-child) {
    margin-right: 1%;
    padding-right: 2%;
  }

  /*電話
  #header .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  */

  /*住所
  #header .address {
    text-align: center;
  }
  */

  /*診療時間*/
  #header .schedule {
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
  }

  /*side_tab
  ------------------------------*/
  /*右側固定表示タブ（共通）*/
  #side_tab {
    display: none;
  }

  /*グローバルナビ
  ------------------------------*/
  /*タブレット横〜PC表示用のグローバルナビ*/
  #menu {
    display: none;
  }

  /*黒の半透明*/
  #menuOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9997;
  }

  /*スマホ〜タブレット縦表示用のグローバルナビ*/
  #switchBtnArea {
    position: relative;
    width: 100%;
  }
  #switchBtnArea #switchBtn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 44px;
    height: 50px;
    z-index: 10000;
    background: rgba(100, 173, 108, 0.9);
    cursor: pointer;
  }

  /*3本線ボタン*/
  #switchBtnArea #switchBtn span {
    display: block;
    position: absolute;
    right: 20%;
    width: 60%;
    height: 4px;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.2s linear;
  }
  #switchBtnArea #switchBtn span:nth-of-type(1) {
    top: 15px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  #switchBtnArea #switchBtn span:nth-of-type(2) {
    top: 23px;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  #switchBtnArea #switchBtn span:nth-of-type(3) {
    bottom: 15px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  /*閉じるボタン*/
  #switchBtnArea #switchBtn.btnClose {
    /*background: transparent;*/
  }
  #switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {
    top: 23px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #switchBtnArea #switchBtn.btnClose span:nth-of-type(2) {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  #switchBtnArea #switchBtn.btnClose span:nth-of-type(3) {
    bottom: 23px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /*ナビ*/
  #rwdMenuWrap {
    position: fixed;
    top: 0;
    left: -241px;
    width: 241px;
    height: 100%;
    background: #fff;
    overflow: auto;
    z-index: 10000;
  }

  /*ナビ - 第1階層*/
  #rwdMenuWrap ul.menu_first {
    width: 100%;
    box-sizing: border-box;
  }
  #rwdMenuWrap ul.menu_first > li {
    width: 100%;
    border-bottom: #dddddd 1px solid;
  }

  /*ナビ - 第2階層*/
  #rwdMenuWrap ul.menu_first > li ul.menu_second {
    padding: 10px;
    background: #f2f2ce; /*f4f4f4*/
  }
  #rwdMenuWrap ul.menu_first > li ul.menu_second li {
    border-bottom: none;
  }
  #rwdMenuWrap ul.menu_first > li ul.menu_second li + li {
    border-top: #dddddd 1px solid;
  }

  /*右矢印のリンクボタン*/
  #rwdMenuWrap ul li a {
    position: relative;
    display: block;
    padding: 10px 15px;
    background: #ffffff;
    color: #725450;
    text-align: left;
    text-decoration: none;
  }
  #rwdMenuWrap ul li a:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    width: 8px;
    height: 8px;
    margin: auto 0;
    border-top: 2px solid #b0b0b0;
    border-right: 2px solid #b0b0b0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 1em;
    font-weight: 700;
    line-height: 1.2em;
  }

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

  /*米印リスト*/
  #footer ul.asterisk {
    max-width: 60%;
  }

  /*地図*/
  #footer .gmap iframe {
    height: 300px;
  }

  /*裏メニュー*/
  #footer #hidden_menu {
    padding-top: 50px;
    padding-bottom: 50px;
    background-size: 400px, contain;
  }
  #footer #hidden_menu > .inner {
    max-width: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }

  /*裏メニュー - フレックスボックス - 子要素*/
  #footer #hidden_menu .flexbox > .flexbox_item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  /*ナビ*/
  #footer .ft_nav li {
  }

  /*コピーライト*/
  #footer #copyright {
    padding-bottom: 90px;
  }

  /*ページ下部固定表示*/
  #footer #bottom-tap {
    z-index: 8999;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px;
    background-color: rgba(100, 173, 108, 0.8);
  }
  #footer #bottom-tap .flexbox {
    gap: 10px;
  }

  /*ページ下部固定表示 - flexbox子要素*/
  #footer #bottom-tap .flexbox > .flexbox_item {
    background-color: #ffffff;
    border-radius: 3px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  }
  
  #footer #bottom-tap .flexbox > .flexbox_item.-tel {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
  }
  
  #footer #bottom-tap .flexbox > .flexbox_item.-rsv {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
  }
  #footer #bottom-tap .flexbox > .flexbox_item.-access {
    -ms-flex-preferred-size: 7%;
    flex-basis: 7%;
  }

  /*ページ下部固定表示 - リンク*/
  #footer #bottom-tap .flexbox > .flexbox_item a {
    /*other*/
    box-sizing: border-box;
    display: block;
    height: 48px;
    line-height: 1;
    text-align: center;
  }
  
  #footer #bottom-tap .flexbox > .flexbox_item.-tel a {
    padding: 4px;
    background: url("../img/icon_tel01.png") no-repeat center/37px;

  }
  #footer #bottom-tap .flexbox > .flexbox_item.-tel a span.tel {
    display: inline-block;
    /*
    padding: 4px 0 4px 35px;
    color: #64ad6c;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    */
  }
  
  #footer #bottom-tap .flexbox > .flexbox_item.-rsv a {
    padding: 8px 4px;
  }
  #footer #bottom-tap .flexbox > .flexbox_item.-rsv a > span {
    display: inline-block;
    padding: 4px 0 4px 40px;
    background: url("../img/icon_rzv01.webp?2") no-repeat left center/31px;
    color: #225094;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
  }

  #footer #bottom-tap .flexbox > .flexbox_item.-access a {
    padding: 8px 4px;
    background: url("../img/gnav_icon06_off.png") no-repeat center center/32px;
  }

  /*ページトップへ*/
  #footer #page-top {
    bottom: 75px;
    right: 1%;
    width: 100px;
  }
  #footer #page-top a {
    padding: 30px 4px 8px;
  }
  #footer #page-top a::before {
    top: 6px;
    width: 11px;
    height: 16px;
  }
}

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

スマホ横〜タブレット縦のみ
※この中には基本的に書き込まないでください

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

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

スマホ横（0〜700pxまで）

================================*/
@media (max-width: 700px) {
}

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

スマホ縦（0〜480pxまで）

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

  /*タイトル（数字）*/
  .ttl07 {
    padding-left: 60px;
    font-size: 18px;
  }
  .ttl07.-no01::before {
    width: 43px;
    height: 30px;
  }
  .ttl07.-no02::before {
    width: 51px;
    height: 30px;
  }
  .ttl07.-no03::before {
    width: 51px;
    height: 30px;
  }
  .ttl07.-no04::before {
    width: 52px;
    height: 30px;
  }
  .ttl07.-no05::before {
    width: 51px;
    height: 30px;
  }
  .ttl07.-no06::before {
    width: 51px;
    height: 30px;
  }

  /*診療時間（ヘッダー・フッター共通）*/
  .schedule > table th,
  .schedule > table td {
    padding: 4px 1px;
  }
  .schedule > table tbody th {
    width: auto;
  }
  .schedule > table tbody td {
    width: auto;
  }

  /*リンクボタンを並べる*/
  .link_wrap > li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  /*定義リスト（ポイント）*/
  .point_dl01 {
    padding-top: 120px;
    padding-left: 0;
  }
  .point_dl01:not(:last-child) {
    margin-bottom: 40px;
  }
  .point_dl01:last-child {
    padding-bottom: 0;
  }
  .point_dl01 dt span.circle {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    margin: 0 auto;
  }

  /*横にスクロール*/
  .sp_scroll_text {
    display: block;
    margin-bottom: 20px;
    padding: 5px;
    background-color: #c7b299;
    border-radius: 20px;
    color: #fff;
    font-size: 16px;
    text-align: center;
  }
  .sp_scroll {
    overflow-x: scroll;
    position: relative;
    z-index: 1;
    -webkit-overflow-scrolling: touch;
    /* スムーズなスクロールを有効にするためのプロパティ（iOS対応） */
  }
  .sp_scroll .scroll_wrapper {
    display: inline-block;
    /* 横スクロール対応のために要素をインライン表示 */
  }
  .sp_scroll .table table th,
  .sp_scroll .table table td {
    white-space: nowrap;
  }
  .sp_scroll img {
    max-width: none;
  }

  /*header
  ------------------------------*/
  /*特徴*/
  #header .features li:not(:last-child) {
    margin-right: 0;
  }

  /*footer
  ------------------------------*/
  電話
  #footer .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  

  /*米印リスト*/
  #footer ul.asterisk {
    max-width: 100%;
  }

  /*裏メニュー*/
  #footer #hidden_menu {
    background-size: 200px, 800px;
  }

  /*ページ下部固定表示 - flexbox子要素*/
  
  
  #footer #bottom-tap .flexbox > .flexbox_item.-rsv {
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
  }
  #footer #bottom-tap .flexbox > .flexbox_item.-tel {
    -ms-flex-preferred-size: 15%;
    flex-basis: 15%;
  }
  #footer #bottom-tap .flexbox > .flexbox_item.-access {
    -ms-flex-preferred-size: 14%;
    flex-basis: 14%;
  }

  /*ページ下部固定表示 - リンク*/
  
  #footer #bottom-tap .flexbox > .flexbox_item.-tel a span.tel {
    font-size: 20px;
  }
  
  #footer #bottom-tap .flexbox > .flexbox_item.-rsv a span.rsv {
    font-size: 20px;
  }

  /*ページトップへ*/
  #footer #page-top {
    width: auto;
  }
  #footer #page-top a {
    padding: 24px 4px 8px;
  }
  #footer #page-top a::before {
    top: 5px;
  }
}

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

スマホ縦最小（0〜320pxまで）

================================*/
@media (max-width: 320px) {
  /*グローバルナビ
  ------------------------------*/
  /*ナビ*/
  #rwdMenuWrap {
    left: -186px;
    width: 186px;
  }
}
