@charset "UTF-8";
/*改善点

・768pxまではPC（タブレットも含む）
・767pxからSP


追加ルール
/*==================
 ▼ブレイクポイントのルール▼
 -スマホを基本設計にする-
 *〜479px：SP縦
 *480px〜：SP横
 *600px〜タブレット
 *960px〜小型PC
 *1280px〜大型PC
==================

*/
/* ----------------------------------
使う↓
---------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --color01: #FFFDF8;
  --color02: #F0EDE8;
  --color03: #C0B5A5;
  --color04: #B2BBBF;
  --color05: #7F6E5E;
  --blueColor01: #B2BBBF;
  --blueColor02: #8D989B;
}

.color01 {
  color: var(--color01);
}

.bgColor01 {
  background-color: var(--color01);
}

.color02 {
  color: var(--color02);
}

.bgColor02 {
  background-color: var(--color02);
}

.color03 {
  color: var(--color03);
}

.bgColor03 {
  background-color: var(--color03);
}

.color04 {
  color: var(--color04);
}

.bgColor04 {
  background-color: var(--color04);
}

.color05 {
  color: var(--color05);
}

.bgColor05 {
  background-color: var(--color05);
}

.grayColor {
  color: var(--grayColor);
}

.bgGrayColor {
  background-color: var(--grayColor);
}

/* ----------------------------------
使わない↓（消すと__main.scssが干渉してコンパイルできなくなる）
---------------------------------- */
:root {
  --mainColor: #C0B5A5;
  --subColor: #C0B5A5;
}

/* ---------------------
mainColor
------------------------ */
.mainColor {
  color: var(--mainColor);
}

.bgMainColor {
  background-color: var(--mainColor);
}

/* ---------------------
subColor
------------------------ */
.subColor {
  color: var(--subColor);
}

.bgsubColor {
  background-color: var(--subColor);
}

.grayColorLight {
  color: #f9f9f9;
}

.bgGrayColorLight {
  background-color: #f9f9f9;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

.bgBlueLight {
  background-color: #ECF0F3;
}

/*フォント系*/
/* ────────── Optima 代替 ────────── */
:root {
  --fontEn: "Marcellus", serif;
}

.fontEn {
  font-family: var(--fontEn);
}

/* ────────── 游ゴシック 代替 ────────── */
:root {
  --fontJp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "游ゴシック体", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.fontJp {
  font-family: var(--fontJp);
}

/* ────────── しっぽり明朝 ────────── */
:root {
  --fontSerif: "Shippori Mincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.fontSerif {
  font-family: var(--fontSerif);
}

:root {
  --fontNum: "Caudex", serif;
}

.fontNum {
  font-family: var(--fontNum);
}

:root {
  --fontJp: -apple-system, BlinkMacSystemFont, "游ゴシック体", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.fontJp {
  font-family: var(--fontJp);
}

.gothic {
  font-family: "Noto Sans JP", sans-serif;
}

.serif {
  font-family: var(--fontSerif);
}

:root {
  --fontColor: #4D4D4D;
}

body {
  font-family: var(--fontJp);
  color: var(--fontColor);
}

/*==================================================
 * リセットcss
 *================================================*/
/* a modern css reset*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
select {
  vertical-align: middle;
}

li {
  list-style-type: none;
}

/*==================================================
 * フォント
 *================================================*/
.italic {
  font-style: italic;
}

html {
  font-size: 10px;
}

html,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div {
  line-height: 1.6;
  font-weight: 400;
}

.lh_xxl {
  line-height: 2.5;
}
.lh_xxl * {
  line-height: 2.5;
}

.lh_xl {
  line-height: 2;
}
.lh_xl * {
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .lh_xl {
    line-height: 1.8;
  }
  .lh_xl * {
    line-height: 1.8;
  }
}

.lh_l {
  line-height: 1.8;
}
.lh_l * {
  line-height: 1.8;
}

.lh_m {
  line-height: 1.5;
}
.lh_m * {
  line-height: 1.5;
}

.lh_s {
  line-height: 1.1;
}
.lh_s * {
  line-height: 1.1;
}

.lh_xs {
  line-height: 0.7;
}
.lh_xs * {
  line-height: 0.7;
}

.ls_xl {
  letter-spacing: 0.2em;
}

.ls_l {
  letter-spacing: 0.15em;
}

.ls_m {
  letter-spacing: 0.1em;
}

.ls_s {
  letter-spacing: 0.05em;
}

.ls_xs {
  letter-spacing: 0.01em;
}

.ls_0 {
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.thin {
  font-weight: 100;
}

.normal {
  font-weight: 400;
}

.ave {
  font-weight: 500 !important;
}

.bold {
  font-weight: 600 !important;
}

.bold800 {
  font-weight: 800 !important;
}

.bold900 {
  font-weight: 900 !important;
}

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}

.black {
  color: #333;
}

.gray {
  color: #686868;
}

.red {
  color: #EC462F !important;
}

.fsL {
  font-size: 100px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL {
    font-size: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL {
    font-size: 42px;
  }
}

.fsL2 {
  font-size: 64px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL2 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL2 {
    font-size: 36px;
  }
}

.fsL3 {
  font-size: 56px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL3 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL3 {
    font-size: 36px;
  }
}

.fsL4 {
  font-size: 42px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL4 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL4 {
    font-size: 24px;
  }
}

.fsM {
  font-size: 34px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM {
    font-size: 21px;
  }
}

.fsM2 {
  font-size: 28px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM2 {
    font-size: 20px;
  }
}

.fsM3 {
  font-size: 24px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM3 {
    font-size: 17px;
  }
}

.fsM35 {
  font-size: 21px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM35 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM35 {
    font-size: 16px;
  }
}

.fsM4 {
  font-size: 18px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM4 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM4 {
    font-size: 14px;
  }
}

.fsM5 {
  font-size: 16px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM5 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM5 {
    font-size: 14px;
  }
}

.fsS {
  font-size: 14px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS {
    font-size: 12px !important;
  }
}

.fsS2 {
  font-size: 13px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS2 {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS2 {
    font-size: 12px;
  }
}

.fsS3 {
  font-size: 12px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS3 {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS3 {
    font-size: 11px;
  }
}

.fsS4 {
  font-size: 10px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS4 {
    font-size: 9px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS4 {
    font-size: 9px;
  }
}

@media only screen and (max-width: 767px) {
  .fsSpM5 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .fsSpS {
    font-size: 12px;
  }
}

.h000 {
  font-size: 100px;
}

.h00 {
  font-size: 64px;
}

.h0 {
  font-size: 42px;
}

.h1 {
  font-size: 32px;
}

.h2 {
  font-size: 28px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 16px;
}

.text_m {
  font-size: 14px;
}

.text_sm {
  font-size: 13px;
}

.text_s {
  font-size: 12px;
}

.text_ss {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  body {
    font-size: 14px;
  }
  .h000 {
    font-size: 64px;
  }
  .h00 {
    font-size: 36px;
  }
  .h0 {
    font-size: 25px;
  }
  .h1 {
    font-size: 24px;
  }
  .h2 {
    font-size: 24px;
  }
  .h3 {
    font-size: 20px;
  }
  .h4 {
    font-size: 15px;
  }
  .h5 {
    font-size: 14px;
  }
  .text_m {
    font-size: 13px;
  }
  .text_s {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .h000 {
    font-size: 42px;
  }
  .h00 {
    font-size: 36px;
  }
  .h0 {
    font-size: 24px;
  }
  .h1 {
    font-size: 22px;
  }
  .h2 {
    font-size: 20px;
  }
  .h3 {
    font-size: 17px;
  }
  .h4 {
    font-size: 15px;
  }
  .h5 {
    font-size: 15px;
  }
  .text_m {
    font-size: 13px;
  }
  .text_s {
    font-size: 11px;
  }
}
/*==================================================
 * 独自リセット
 *================================================*/
/*リセット関係*/
*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  width: 100%;
}

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

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0;
  font-weight: 100;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

hr {
  margin: 10px auto;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

/*==================================================
 * 独自クラス（どのサイトでも）
 *================================================*/
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.remove {
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 0;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

.inlineFlex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.inlineBlockUl li {
  display: inline-block;
}

.disNone {
  display: none !important;
}

.bgCenter {
  background-position: center center;
  background-size: cover;
}

.opa {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

a:hover .opa {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

.overHidden {
  overflow: hidden;
}

.tra,
.tra:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

.text-center {
  text-align: center;
}

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

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

.text-justify {
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  .text-center-sp {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .text-right-sp {
    text-align: right;
  }
}

@media only screen and (max-width: 767px) {
  .text-left-sp {
    text-align: left;
  }
}

.linkA {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color05);
}
.linkA.white {
  color: #fff;
}
.linkA.fontColor {
  color: var(--fontColor);
}
.linkA:hover {
  color: var(--color05);
  text-decoration: underline;
}
.linkA:hover.white {
  color: #fff;
}
.linkA:hover.fontColor {
  color: var(--fontColor);
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .notTab {
    display: none !important;
  }
}
@media screen and (min-width: 960px) {
  .tab {
    display: none !important;
  }
}
@media screen and (min-width: 961px) {
  .pc-show {
    display: block !important;
  }
  .tab-hide,
  .sp-hide {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .tab-show {
    display: block !important;
  }
  .pc-hide,
  .sp-hide {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .sp-show {
    display: block !important;
  }
  .pc-hide,
  .tab-hide {
    display: none !important;
  }
}
/*余白*/
.m0 {
  margin: 0;
}

.p0 {
  padding: 0;
}

.mtAuto {
  margin-top: auto;
}

.mrAuto {
  margin-right: auto;
}

.mbAuto {
  margin-bottom: auto;
}

.mlAuto {
  margin-left: auto;
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .mb30 {
    margin-bottom: 20px;
  }
}

.mb40 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .mb40 {
    margin-bottom: 30px;
  }
}

.mb50 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .mb50 {
    margin-bottom: 30px;
  }
}

.mb60 {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .mb60 {
    margin-bottom: 40px;
  }
}

.mb70 {
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .mb70 {
    margin-bottom: 40px;
  }
}

.mb80 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .mb80 {
    margin-bottom: 40px;
  }
}

.mb90 {
  margin-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .mb90 {
    margin-bottom: 50px;
  }
}

.mb100 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .mb100 {
    margin-bottom: 50px;
  }
}

.mb200 {
  margin-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  .mb200 {
    margin-bottom: 70px;
  }
}

.ml0 {
  margin-left: 0 !important;
}

.ml05 {
  margin-left: 0.5em;
}

.ml1 {
  margin-left: 1em;
}

.ml2 {
  margin-left: 2em;
}

.ml3 {
  margin-left: 3em;
}

@media only screen and (max-width: 767px) {
  .mlSp0 {
    margin-left: 0;
  }
  .mlSp1 {
    margin-left: 1em;
  }
  .mlSp2 {
    margin-left: 2em;
  }
  .mlSp3 {
    margin-left: 3em;
  }
}
.mtL {
  margin-top: 30%;
}

.mtL2 {
  margin-top: 25%;
}

.mtL3 {
  margin-top: 20%;
}

.mtL4 {
  margin-top: 15%;
}

.mtM {
  margin-top: 10%;
}

.mtM2 {
  margin-top: 7.5%;
}

.mtM3 {
  margin-top: 5%;
}

.mtS {
  margin-top: 3.5%;
}

.mtS2 {
  margin-top: 2%;
}

.mtS3 {
  margin-top: 1%;
}

@media only screen and (max-width: 767px) {
  .mtSpL {
    margin-top: 30%;
  }
  .mtSpL2 {
    margin-top: 25%;
  }
  .mtSpL3 {
    margin-top: 20%;
  }
  .mtSpL4 {
    margin-top: 15%;
  }
  .mtSpM {
    margin-top: 10%;
  }
  .mtSpM2 {
    margin-top: 7.5%;
  }
  .mtSpM3 {
    margin-top: 5%;
  }
  .mtSpS {
    margin-top: 3.5%;
  }
  .mtSpS2 {
    margin-top: 2%;
  }
  .mtSpS3 {
    margin-top: 1%;
  }
}
.mbL {
  margin-bottom: 30%;
}

.mbL2 {
  margin-bottom: 25%;
}

.mbL3 {
  margin-bottom: 20%;
}

.mbL4 {
  margin-bottom: 15%;
}

.mbM {
  margin-bottom: 10%;
}

.mbM2 {
  margin-bottom: 7.5%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS3 {
  margin-bottom: 1%;
}

@media only screen and (max-width: 767px) {
  .mbSpL {
    margin-bottom: 30%;
  }
  .mbSpL2 {
    margin-bottom: 25%;
  }
  .mbSpL3 {
    margin-bottom: 20%;
  }
  .mbSpL4 {
    margin-bottom: 15%;
  }
  .mbSpM {
    margin-bottom: 10%;
  }
  .mbSpM2 {
    margin-bottom: 7.5%;
  }
  .mbSpM3 {
    margin-bottom: 5%;
  }
  .mbSpS {
    margin-bottom: 3.5%;
  }
  .mbSpS2 {
    margin-bottom: 2%;
  }
  .mbSpS3 {
    margin-bottom: 1%;
  }
}
.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .pt30 {
    padding-top: 20px;
  }
}

.pt40 {
  padding-top: 40px;
}
@media only screen and (max-width: 767px) {
  .pt40 {
    padding-top: 30px;
  }
}

.pt50 {
  padding-top: 50px;
}
@media only screen and (max-width: 767px) {
  .pt50 {
    padding-top: 30px;
  }
}

.pt60 {
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .pt60 {
    padding-top: 40px;
  }
}

.pt70 {
  padding-top: 70px;
}
@media only screen and (max-width: 767px) {
  .pt70 {
    padding-top: 40px;
  }
}

.pt80 {
  padding-top: 80px;
}
@media only screen and (max-width: 767px) {
  .pt80 {
    padding-top: 40px;
  }
}

.pt90 {
  padding-top: 90px;
}
@media only screen and (max-width: 767px) {
  .pt90 {
    padding-top: 50px;
  }
}

.pt100 {
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .pt100 {
    padding-top: 50px;
  }
}

.pt200 {
  padding-top: 200px;
}
@media only screen and (max-width: 767px) {
  .pt200 {
    padding-top: 70px;
  }
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .pb30 {
    padding-bottom: 20px;
  }
}

.pb40 {
  padding-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .pb40 {
    padding-bottom: 30px;
  }
}

.pb50 {
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .pb50 {
    padding-bottom: 30px;
  }
}

.pb60 {
  padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .pb60 {
    padding-bottom: 40px;
  }
}

.pb70 {
  padding-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .pb70 {
    padding-bottom: 40px;
  }
}

.pb80 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .pb80 {
    padding-bottom: 40px;
  }
}

.pb90 {
  padding-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .pb90 {
    padding-bottom: 50px;
  }
}

.pb100 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .pb100 {
    padding-bottom: 50px;
  }
}

.pb200 {
  padding-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  .pb200 {
    padding-bottom: 70px;
  }
}

.pl0 {
  padding-left: 0 !important;
}

.pl1 {
  padding-left: 1em;
}

.pl2 {
  padding-left: 2em;
}

.pl3 {
  padding-left: 3em;
}

@media only screen and (max-width: 767px) {
  .plSp0 {
    padding-left: 0;
  }
  .plSp1 {
    padding-left: 1em;
  }
  .plSp2 {
    padding-left: 2em;
  }
  .plSp3 {
    padding-left: 3em;
  }
}
.pbL {
  padding-bottom: 30%;
}

.pbL2 {
  padding-bottom: 25%;
}

.pbL3 {
  padding-bottom: 20%;
}

.pbL4 {
  padding-bottom: 15%;
}

.pbM {
  padding-bottom: 10%;
}

.pbM2 {
  padding-bottom: 7.5%;
}

.pbM3 {
  padding-bottom: 5%;
}

.pbS {
  padding-bottom: 3.5%;
}

.pbS2 {
  padding-bottom: 2%;
}

.pbS3 {
  padding-bottom: 1%;
}

@media only screen and (max-width: 767px) {
  .pbSpL {
    padding-bottom: 30%;
  }
  .pbSpL2 {
    padding-bottom: 25%;
  }
  .pbSpL3 {
    padding-bottom: 20%;
  }
  .pbSpL4 {
    padding-bottom: 15%;
  }
  .pbSpM {
    padding-bottom: 10%;
  }
  .pbSpM2 {
    padding-bottom: 7.5%;
  }
  .pbSpM3 {
    padding-bottom: 5%;
  }
  .pbSpS {
    padding-bottom: 3.5%;
  }
  .pbSpS2 {
    padding-bottom: 2%;
  }
  .pbSpS3 {
    padding-bottom: 1%;
  }
}
/*flex・グリッド系*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.justCenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justEnd {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justBetween {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .justBetweenSp {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.alignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.alignStart {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.alignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flexReverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

.flexWrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.grid {
  display: grid;
}
.grid.__col2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.__col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 767px) {
  .grid.__col3 {
    grid-template-columns: 0.8fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.grid.__col4 {
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 767px) {
  .grid.__colSp1 {
    grid-template-columns: 0.85fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .grid.__colSp2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.__colSp3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.__colSp4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gap10 {
  gap: 10px;
}

.gap-row10 {
  row-gap: 10px;
}

.gap-column10 {
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.gap20 {
  gap: 20px;
}

.gap-row20 {
  row-gap: 20px;
}

.gap-column20 {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.gap30 {
  gap: 30px;
}

.gap-row30 {
  row-gap: 30px;
}

.gap-column30 {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.gap40 {
  gap: 40px;
}

.gap-row40 {
  row-gap: 40px;
}

.gap-column40 {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.gap50 {
  gap: 50px;
}

.gap-row50 {
  row-gap: 50px;
}

.gap-column50 {
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.gap60 {
  gap: 60px;
}

.gap-row60 {
  row-gap: 60px;
}

.gap-column60 {
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.gap70 {
  gap: 70px;
}

.gap-row70 {
  row-gap: 70px;
}

.gap-column70 {
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
}

.gap80 {
  gap: 80px;
}

.gap-row80 {
  row-gap: 80px;
}

.gap-column80 {
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}

.gap90 {
  gap: 90px;
}

.gap-row90 {
  row-gap: 90px;
}

.gap-column90 {
  -webkit-column-gap: 90px;
     -moz-column-gap: 90px;
          column-gap: 90px;
}

.gap100 {
  gap: 100px;
}

.gap-row100 {
  row-gap: 100px;
}

.gap-column100 {
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
}

.flexCol {
  width: 100%;
}

.col1 {
  width: 100%;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 33.3333%;
}

.col-3 {
  width: 66.6666%;
}

.col4 {
  width: 25%;
}

.col-4 {
  width: 75%;
}

.col5 {
  width: 20%;
}

.col-5 {
  width: 80%;
}

.col6 {
  width: 16.666%;
}

.col-6 {
  width: 83.333%;
}

.col3-2 {
  width: 60%;
}

.col-3-2 {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .flexSplit {
    width: 100%;
  }
  .flexPc {
    display: block;
  }
  .flexWrapSp {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .bgFixed {
    background-attachment: unset;
  }
  .flexReverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
  }
  .flexSp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .colSp1 {
    width: 100%;
  }
  .colSp2 {
    width: 50%;
  }
  .colSp3 {
    width: 33.3333%;
  }
  .colSp-3 {
    width: 66.6666%;
  }
  .colSp4 {
    width: 25%;
  }
  .colSp-4 {
    width: 75%;
  }
  .colSp5 {
    width: 20%;
  }
  .colSp-5 {
    width: 80%;
  }
  .colSp6 {
    width: 16.666%;
  }
  .colSp-6 {
    width: 83.333%;
  }
  .colSp3-2 {
    width: 60%;
  }
  .colSp-3-2 {
    width: 40%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .colMd1 {
    width: 100%;
  }
  .colMd2 {
    width: 50%;
  }
  .colMd3 {
    width: 33.3333%;
  }
  .colMd-3 {
    width: 66.6666%;
  }
  .colMd4 {
    width: 25%;
  }
  .colMd-4 {
    width: 75%;
  }
  .colMd5 {
    width: 20%;
  }
  .colMd-5 {
    width: 80%;
  }
  .colMd6 {
    width: 16.666%;
  }
  .colMd-6 {
    width: 83.333%;
  }
  .colMd3-2 {
    width: 60%;
  }
  .colMd-3-2 {
    width: 40%;
  }
}
/*横幅*/
@media only screen and (max-width: 767px) {
  .spPadding {
    padding-inline: 15px;
  }
}

.w100 {
  width: 100%;
}

.maxWS {
  max-width: 500px;
}

.maxWM {
  max-width: 600px;
}

.maxWL {
  max-width: 700px;
}

.cnt {
  width: 100%;
  max-width: 1190px;
  padding-inline: 15px;
  margin-inline: auto;
}

.cntS {
  max-width: 830px;
  margin-inline: auto;
  padding-inline: 15px;
}
@media only screen and (max-width: 767px) {
  .cntS.spPadding {
    padding-inline: 30px;
  }
  .cnt .cntS {
    padding-inline: 0;
  }
  .cntL .cntS {
    padding-inline: 0;
  }
}

.cntM {
  max-width: 950px;
  margin-inline: auto;
  padding-inline: 15px;
}

.cntL {
  max-width: 1110px;
  margin-inline: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.cntML {
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 15px;
}

.cntXl {
  max-width: 1280px;
  margin-right: 2%;
  margin-left: 2%;
}
@media screen and (min-width: 1740px) {
  .cntXl {
    margin-inline: auto;
  }
}

.cntWide {
  max-width: 1280px;
  margin-inline: auto;
}

.cntWideL {
  max-width: 1920px;
  margin-inline: auto;
}

.paNone {
  padding: 0;
}

.rw {
  margin-inline: -15px;
}

:root {
  --spaceSizeS: clamp(25px, 10vw, 50px);
  --spaceSize: clamp(50px, 10vw, 100px);
  --spaceSizeWide: clamp(90px, 15vw, 180px);
}

.padding {
  padding-top: var(--spaceSize);
  padding-bottom: var(--spaceSize);
}

.paddingS {
  padding-top: var(--spaceSizeS);
  padding-bottom: var(--spaceSizeS);
}

.paddingW {
  padding-top: var(--spaceSizeWide);
  padding-bottom: var(--spaceSizeWide);
}

.margin {
  margin-top: var(--spaceSize);
  margin-bottom: var(--spaceSize);
}

.marginS {
  margin-top: var(--spaceSizeS);
  margin-bottom: var(--spaceSizeS);
}

.marginW {
  margin-top: var(--spaceSizeWide);
  margin-bottom: var(--spaceSizeWide);
}

.marginInlineNone {
  margin-inline: 0 !important;
}

.marginCenter {
  margin-inline: auto;
}

@media only screen and (max-width: 767px) {
  .spMargin {
    margin-block: 100px;
  }
}

/*背景系*/
.bgImg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bgImgHeight {
  padding-bottom: 67%;
}

.bgImgParallax {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.bgFixed {
  background-attachment: fixed;
}
@media only screen and (max-width: 767px) {
  .bgFixed {
    background-attachment: inherit;
  }
}

.bgImgCircle {
  border-radius: 50%;
  padding-bottom: 100%;
}

.bgBlur {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.bgBlur:before {
  content: "";
  background: inherit;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}

.bgWhite {
  background-color: #ffffff;
}

.bgZoom {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.bgZoomImg {
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
          transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  will-change: transform;
  height: 100%;
  top: 0;
  left: 0;
}

a:hover .bgZoomImg {
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.9);
          transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.9);
}

.bgZoomText {
  position: relative;
  pointer-events: none;
  width: 100%;
  z-index: 1;
}

/*テーブルboostrap*/
table {
  border-collapse: collapse;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th {
  text-align: inherit;
  font-weight: normal;
}
.table td,
.table th {
  padding: 1.2rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #e8edf0;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered td,
.table-bordered th {
  border: 1px solid #dee2e6;
}

/*マスクアニメーション*/
.maskCenter .maskWrap {
  margin-left: auto;
  margin-right: auto;
}

.maskWrap {
  display: table;
  overflow: hidden;
}

.maskWrap .mask {
  display: table;
  position: relative;
  margin-bottom: 0.25em;
  left: -100%;
  overflow: hidden;
}

.maskWrap .maskBg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ae9373;
}

/*角丸*/
.radiusS {
  border-radius: 10px;
}

.radiusM {
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .radiusM {
    border-radius: 8px;
  }
}

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

.radiusCircle {
  border-radius: 50%;
}

/*影*/
.shadowS {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
@media only screen and (max-width: 767px) {
  .shadowS {
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  }
}

.shadowM {
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
@media only screen and (max-width: 767px) {
  .shadowM {
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }
}

.shadowL {
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
@media only screen and (max-width: 767px) {
  .shadowL {
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 30px 90px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 30px 90px;
  }
}

.shadowLL {
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
          box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

/*マウスストーカー*/
#pageHeader {
  margin-block: var(--spaceSize);
}
#pageHeader .pageHeaderTitleBox {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 1.8em;
  margin-bottom: 1em;
  gap: 30px;
}
#pageHeader .pageHaederTitleEn {
  font-size: clamp(42px, 6.3vw, 80px);
  line-height: 0.8;
}
@media only screen and (max-width: 767px) {
  #pageHeader {
    margin-block: calc(var(--spaceSize) + 60px) calc(var(--spaceSize) + 30px);
  }
  #pageHeader .pageHeaderTitleBox {
    gap: 15px;
  }
  #pageHeader .pageHaederTitleJp {
    font-size: 14px;
  }
}

/*==================================================
 * 独自クラス（このサイトだけ）
 *================================================*/
.zIndex-1 {
  z-index: 1;
}

.zIndex-2 {
  z-index: 2;
}

.zIndex-3 {
  z-index: 3;
}

.zIndex-4 {
  z-index: 4;
}

.zIndex-5 {
  z-index: 5;
}

.zIndex-6 {
  z-index: 6;
}

.zIndex-7 {
  z-index: 7;
}

.zIndex-8 {
  z-index: 8;
}

.zIndex-9 {
  z-index: 9;
}

.zIndex-10 {
  z-index: 10;
}

@media only screen and (max-width: 767px) {
  .zIndex-1_sp {
    z-index: 1;
  }
  .zIndex-2_sp {
    z-index: 2;
  }
  .zIndex-3_sp {
    z-index: 3;
  }
  .zIndex-4_sp {
    z-index: 4;
  }
  .zIndex-5_sp {
    z-index: 5;
  }
  .zIndex-6_sp {
    z-index: 6;
  }
  .zIndex-7_sp {
    z-index: 7;
  }
  .zIndex-8_sp {
    z-index: 8;
  }
  .zIndex-9_sp {
    z-index: 9;
  }
  .zIndex-10_sp {
    z-index: 10;
  }
}
/*==================================================
 * header
 *================================================*/
/*------------モーダルウィンドウ------------*/
/*オーバーレイメニュー*/
@media only screen and (max-width: 767px) {
  .overRayBox {
    padding-left: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
  }
  .open .overRayBox {
    cursor: url(../images/cross.svg), auto;
    visibility: visible;
    opacity: 1;
  }
}

html.open, html.m-open {
  overflow-y: hidden !important;
}

/*ハンバーガーメニュー*/
:root {
  --menuline: 3.5em;
}
@media only screen and (max-width: 767px) {
  :root {
    --menuline: 2.5em;
  }
}

.h-menu {
  cursor: pointer;
  position: relative;
  z-index: 9999;
}

.h-menuTrigger {
  position: relative;
  font-size: 14px;
  height: 2em;
  width: 100%;
}
.h-menuTrigger span {
  position: absolute;
  background-color: var(--fontColor);
  font-size: 14px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 1px;
  width: var(--menuline);
}
.h-menuTrigger span:nth-child(1) {
  top: calc(50% + 5px);
}
.h-menuTrigger span:nth-child(2) {
  top: calc(50% - 5px);
}
.h-menuTrigger.active span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(15deg) !important;
          transform: translate(-50%, -50%) rotate(15deg) !important;
  top: 50%;
}
.h-menuTrigger.active span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-15deg) !important;
          transform: translate(-50%, -50%) rotate(-15deg) !important;
  top: 50%;
}
@media print, screen and (min-width: 768px) {
  .h-menu:hover .h-menuTrigger span:nth-child(1) {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 50%;
  }
  .h-menu:hover .h-menuTrigger span:nth-child(2) {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 50%;
  }
}

.h-nav {
  background-color: var(--color02);
  border-radius: 0 0 0 16px;
  position: fixed;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
  opacity: 0;
  visibility: hidden;
  top: 0;
  right: -5%;
  padding: 20px 80px;
  height: 100%;
  width: 65%;
  overflow-y: auto;
  z-index: 999;
}
.open .h-nav {
  opacity: 1;
  visibility: visible;
  right: 0;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .h-nav {
    padding: 20px 25px;
    width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  .h-nav {
    left: 0;
    right: 0;
    padding: 17px 15px 0 15px;
    height: 100%;
    width: 100%;
  }
}

.h-navBlock {
  height: 100%;
  overflow-y: auto;
}
@media only screen and (max-width: 767px) {
  .h-navBlock {
    padding-bottom: 45px;
  }
}

.h-navHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 35px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 30px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .h-navHead {
    padding-right: 50px;
  }
}

.snsLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.snsLink li a {
  background-color: var(--color01);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px;
  height: 50px;
  width: 50px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .snsLink li a {
    height: 30px;
    width: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .snsLink li a {
    height: 40px;
    width: 40px;
  }
}

.h-navInner {
  margin-bottom: 40px;
}

.h-navUl li {
  border-bottom: 1px solid var(--color04);
}
.h-navUl li a {
  font-size: 26px;
  font-family: var(--fontEn);
  line-height: 1;
  letter-spacing: 0.08em;
  display: block;
  padding-block: 0.8em;
  position: relative;
}
.h-navUl li a::before {
  content: "";
  position: absolute;
  -webkit-mask-image: url("../img/btnarw.svg");
          mask-image: url("../img/btnarw.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: var(--fontColor);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  right: 20px;
  height: 20px;
  width: 22px;
}
.h-navUl li a:hover::before {
  right: 15px;
}
@media only screen and (max-width: 767px) {
  .h-navUl li a {
    font-size: 20px;
  }
  .h-navUl li a::before {
    height: 13px;
    width: 15px;
  }
}

/*------------モーダルウィンドウ終わり------------*/
/*==================================================
 * footer
 *================================================*/
/*==================================================
 * トップページ
 *================================================*/
/*==================================================
 * 下層ページ
 *================================================*/
/*共通部分------------------------------------*/
/*パンくず*/
.breadcrumbs {
  margin-block: 10px;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs {
    margin-block: 3px;
  }
}

.breadcrumbsInner span {
  font-size: 14px;
  font-family: var(--fontSerif);
}
.breadcrumbsInner span span:not(.current-item) {
  color: var(--color05);
}
@media only screen and (max-width: 767px) {
  .breadcrumbsInner span {
    font-size: 11px;
  }
}

/*パンくず終わり*/
/*新着情報------------------------------------*/
.newsCardImgBox {
  -webkit-box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 10px;
}

.newsCardImg {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.8s;
  transition: 0.8s;
  padding-bottom: 100%;
  width: 100%;
}
.newsCardLink:hover .newsCardImg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.newsCardInnerHead {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.newsCardTime {
  color: var(--color04);
  font-family: var(--fontEn);
}

.newsCardCate {
  background-color: var(--color03);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  padding-inline: 0.5em;
  padding-block: 0.3em;
  border-radius: 8px;
}

.newsCardTitle {
  font-family: var(--fontSerif);
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.n-cateBlock {
  background-color: var(--color03);
  padding: 1em;
  border-radius: 6px;
}
.n-cateBlock ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.n-cateBlock ul li a {
  color: #fff;
  font-family: var(--fontSerif);
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .n-cateBlock ul {
    gap: 5px 20px;
  }
}

.n-listBlock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}
.n-listBlock .newsCardTitle {
  font-size: 24px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .n-listBlock {
    gap: 20px;
  }
  .n-listBlock .newsCardTitle {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .n-listBlock {
    grid-template-columns: 0.8fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
  .n-listBlock .newsCardTitle {
    font-size: 18px;
  }
}

/*症例写真------------------------------------*/
.caseCard {
  max-width: 340px;
}

.caseCardlink {
  display: block;
}

.caseCardImgBox {
  -webkit-box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 10px;
}

.caseCardImg {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.8s;
  transition: 0.8s;
  padding-bottom: 133%;
  width: 100%;
}
.caseCardlink:hover .caseCardImg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.caseCardTitle {
  font-size: 24px;
  font-family: var(--fontSerif);
  line-height: 1.4;
  margin-bottom: 0.3em;
}

.caseCardMode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.caseCardMoreArw {
  -webkit-filter: brightness(0.3) saturate(0) invert(0.3);
          filter: brightness(0.3) saturate(0) invert(0.3);
  width: 1em;
}

.caseCardFoot {
  border-top: 1px solid var(--color04);
  margin-top: 10px;
}

.caseCardFootTorriger {
  cursor: pointer;
  padding-block: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
}
.caseCardFootTorriger span {
  background-color: var(--color03);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 1em;
  width: 1em;
  position: relative;
}
.caseCardFootTorriger span::before, .caseCardFootTorriger span::after {
  content: "";
  position: absolute;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 65%;
}
.caseCardFootTorriger span::before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.caseCardFoot.open .caseCardFootTorriger span::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.caseCardFootTorriger span::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.caseCardDetail {
  -webkit-box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding: 20px 15px;
  display: none;
}
.caseCardDetail dl + dl {
  margin-top: 15px;
}
.caseCardDetail dt {
  font-size: 18px;
  font-family: var(--fontSerif);
}
.caseCardDetail dd {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .caseCardDetail {
    padding: 15px;
  }
}

/*お問い合わせページ------------------------------------*/
.cform {
  width: 100%;
  margin-inline: auto;
}
.cform tr {
  margin-bottom: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cform tr th,
.cform tr td {
  letter-spacing: 0.01em;
  display: block;
  width: 100%;
  text-align: left;
}
.cform tr th {
  margin-bottom: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 15px;
  width: 230px;
}
.cform tr td {
  width: calc(100% - 230px);
}
.cform tr td + td {
  margin-top: 3%;
}
@media only screen and (max-width: 767px) {
  .cform tr {
    display: block;
  }
  .cform tr th {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
  .cform tr td {
    width: 100%;
  }
}
.cform label {
  cursor: pointer;
  margin-right: 1.5em;
}
.cform label span {
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
}
.cform select {
  cursor: pointer;
}
.cform option,
.cform textarea,
.cform select,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
  background-color: #F9F9F9;
  width: 100%;
  border: none;
  border-radius: 2px;
  padding: 1em;
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 1.4;
  border-radius: 7px;
}
.cform option::-webkit-input-placeholder,
.cform textarea::-webkit-input-placeholder,
.cform select::-webkit-input-placeholder,
.cform input[type=text]::-webkit-input-placeholder,
.cform input[type=email]::-webkit-input-placeholder,
.cform input[type=search]::-webkit-input-placeholder,
.cform input[type=url]::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cform option::-moz-placeholder,
.cform textarea::-moz-placeholder,
.cform select::-moz-placeholder,
.cform input[type=text]::-moz-placeholder,
.cform input[type=email]::-moz-placeholder,
.cform input[type=search]::-moz-placeholder,
.cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option:-ms-input-placeholder,
.cform textarea:-ms-input-placeholder,
.cform select:-ms-input-placeholder,
.cform input[type=text]:-ms-input-placeholder,
.cform input[type=email]:-ms-input-placeholder,
.cform input[type=search]:-ms-input-placeholder,
.cform input[type=url]:-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::-ms-input-placeholder,
.cform textarea::-ms-input-placeholder,
.cform select::-ms-input-placeholder,
.cform input[type=text]::-ms-input-placeholder,
.cform input[type=email]::-ms-input-placeholder,
.cform input[type=search]::-ms-input-placeholder,
.cform input[type=url]::-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::-webkit-input-placeholder, .cform textarea::-webkit-input-placeholder, .cform select::-webkit-input-placeholder, .cform input[type=text]::-webkit-input-placeholder, .cform input[type=email]::-webkit-input-placeholder, .cform input[type=search]::-webkit-input-placeholder, .cform input[type=url]::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cform option::-moz-placeholder, .cform textarea::-moz-placeholder, .cform select::-moz-placeholder, .cform input[type=text]::-moz-placeholder, .cform input[type=email]::-moz-placeholder, .cform input[type=search]::-moz-placeholder, .cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option:-ms-input-placeholder, .cform textarea:-ms-input-placeholder, .cform select:-ms-input-placeholder, .cform input[type=text]:-ms-input-placeholder, .cform input[type=email]:-ms-input-placeholder, .cform input[type=search]:-ms-input-placeholder, .cform input[type=url]:-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::-ms-input-placeholder, .cform textarea::-ms-input-placeholder, .cform select::-ms-input-placeholder, .cform input[type=text]::-ms-input-placeholder, .cform input[type=email]::-ms-input-placeholder, .cform input[type=search]::-ms-input-placeholder, .cform input[type=url]::-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::placeholder,
.cform textarea::placeholder,
.cform select::placeholder,
.cform input[type=text]::placeholder,
.cform input[type=email]::placeholder,
.cform input[type=search]::placeholder,
.cform input[type=url]::placeholder {
  color: #c1c1c1;
}
.cform .zip {
  max-width: 200px;
}
.cform .title {
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cform input[type=radio] {
  display: none;
}
.cform input[type=radio] + span {
  padding-left: 2em;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.08em;
}
.cform input[type=radio] + span::before {
  content: "";
  position: absolute;
  border: 1px solid #333;
  background-color: #fff;
  top: -1px;
  left: 0;
  border-radius: 50%;
  height: 16px;
  width: 16px;
}
.cform input[type=radio] + span::after {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  border-radius: 50%;
  top: 45%;
  left: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 8px;
  width: 8px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .cform input[type=radio] + span::after {
    top: 47%;
  }
}
.cform input[type=radio]:checked + span::after {
  display: block;
}
.cform input[type=checkbox] {
  display: none;
}
.cform input[type=checkbox] + span {
  cursor: pointer;
  padding-left: 1.7em;
  position: relative;
}
.cform input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  border: 1px solid #333;
  background-color: #fff;
  top: 0;
  left: 0;
  height: 1em;
  width: 1em;
}
.cform input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  border-left: 2px solid var(--mainColor);
  border-bottom: 2px solid var(--mainColor);
  top: 2px;
  left: 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  height: 8px;
  width: 14px;
  display: none;
}
.cform input[type=checkbox]:checked + span::after {
  display: block;
}
@media only screen and (max-width: 767px) {
  .cform tr {
    margin-bottom: 2em;
  }
  .cform .title {
    font-size: 14px;
  }
}

.contactFormPrivacyAlertBox {
  background-color: #f9f9f9;
  padding: 5%;
}

.mwform-checkbox-field {
  cursor: pointer;
  margin-bottom: 1%;
  display: inline-block;
}
.mwform-checkbox-field input {
  cursor: pointer;
  margin-top: 1px;
}
@media only screen and (max-width: 767px) {
  .mwform-checkbox-field {
    margin-bottom: 3%;
  }
}

.mwform-radio-field {
  cursor: pointer;
  margin-bottom: 0.5%;
  display: inline-block;
}
.mwform-radio-field input {
  cursor: pointer;
  margin: 0;
  margin-right: 0 !important;
  display: inline-block;
  vertical-align: middle;
}

.mw_wp_form_confirm .hopeBlock div {
  width: 200px;
}
.mw_wp_form_confirm .hopeBlock div + div {
  width: calc(100% - 200px);
}

.required-srt {
  background-color: #FF5B5B;
  color: #fff;
  font-size: 14px;
  font-family: var(--fontJp);
  margin-left: 1em;
  padding: 0.1em 0.8em;
}
@media only screen and (max-width: 767px) {
  .required-srt {
    font-size: 12px;
    padding: 0.2em 1em;
  }
}

.cform [type=submit] {
  display: inline-block;
  font-size: 20px;
  padding: 10px 30px;
  text-decoration: none;
  background: #ff8f00;
  color: #fff;
  border-bottom: solid 4px #b17c00;
  border-radius: 3px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.contactAlertBox {
  background-color: #fff;
  padding: 8% 5%;
  margin: 0 0 5%;
}
@media only screen and (max-width: 767px) {
  .contactAlertBox {
    padding: 12% 5%;
    margin: 0 0 6%;
  }
}

.contactAlertTitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 1.5em;
}

.submit-btn {
  text-align: center;
  margin-top: 4%;
}
.submit-btn input {
  border: 1px solid var(--mainColor);
  background-color: var(--mainColor);
  border-radius: 70px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: var(--fontJp);
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-block: 1.2em;
  position: relative;
  margin-inline: auto;
  letter-spacing: 0.15em;
  text-align: center;
  width: 300px;
}
.submit-btn input:hover {
  background-color: #fff;
  color: var(--mainColor);
}
.submit-btn input[name=submitBack] {
  background-color: #838383;
  border-color: #838383;
  width: 250px;
}
.submit-btn input[name=submitBack]:hover {
  background-color: #fff;
  color: var(--fontColor);
}

.contactHr {
  margin: 7% 0;
}
@media only screen and (max-width: 767px) {
  .contactHr {
    margin: 12% 0;
  }
}

.mw_wp_form_confirm .confirm-none {
  display: none;
}

.mw_wp_form_complete .complete-none {
  display: none;
}

/*下層ページ共通------------------------------------*/
/*投稿詳細ページ------------------------------------*/
li.widget {
  list-style-type: none;
  margin-bottom: 20%;
}

.widgettitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 3%;
}

li.widget li {
  color: #a7a7a7;
  margin-bottom: 3%;
}

/*タグクラウド*/
.tagCloud li {
  list-style: none;
  background: #db4a39;
  display: inline-block;
  color: #fff;
  padding: 0.5% 2%;
  font-size: 12px;
}

.tagCloud li .glyphicon {
  right: 5px;
}

.tagCloud li a {
  color: #fff;
  font-weight: 100;
  text-decoration: none;
}

.tagcloud a {
  color: #808080;
  border: 1px solid #808080;
  border-radius: 25px;
  padding: 2%;
  margin-bottom: 5%;
  display: inline-block;
}

.entry {
  line-height: 1.8;
  letter-spacing: 0.15em;
  float: none;
  margin-inline: auto;
}
.entry figcaption {
  font-size: 13px;
  color: gray;
}
.entry a {
  display: inline;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
  color: var(--mainColor);
}
.entry blockquote {
  padding: 2em 4em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #e6e6e6;
  color: #7b7b7b;
  background-color: #f6f7f9;
  font-style: italic;
  margin-bottom: 1.5em;
}
.entry blockquote p {
  font-size: 14px;
}
.entry strong {
  font-style: normal;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgba(64, 27, 23, 0.1)));
  background: linear-gradient(transparent 50%, rgba(64, 27, 23, 0.1) 50%);
}
.entry p {
  margin: 0.5em 0 1em 0;
  line-height: 1.8;
  letter-spacing: 0.2em;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .entry p {
    font-size: 14px;
    line-height: 1.6;
  }
}
.entry h1 span,
.entry h2 span,
.entry h3 span,
.entry h4 span,
.entry h5 span {
  font-weight: bold;
}
.entry h1 {
  background-color: var(--mainColor);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin: 8% auto 3%;
  padding: 0.5em 1.3em;
}
@media only screen and (max-width: 767px) {
  .entry h1 {
    font-size: 20px;
    padding: 0.6em 1.2em;
  }
}
.entry h2 {
  background-color: #F9F9F9;
  position: relative;
  font-size: 22px;
  font-weight: 600;
  padding-left: 1.3em;
  padding-block: 0.3em;
  margin-bottom: 3%;
}
.entry h2::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content: "";
  width: 8px;
  height: 100%;
  background-color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h2 {
    font-size: 20px;
    margin: 12% auto 6%;
    padding-block: 0.3em;
  }
}
.entry h3 {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  padding-left: 1.3em;
  padding-block: 0.3em;
  margin-bottom: 3%;
}
.entry h3::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content: "";
  width: 8px;
  height: 100%;
  background-color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    font-size: 20px;
    margin: 12% auto 6%;
    padding-block: 0.3em;
  }
}
.entry h4 {
  position: relative;
  border-bottom: 2px solid #b8b8b8;
  font-size: 22px;
  font-weight: 600;
  padding-left: 0.3em;
  padding-bottom: 0.3em;
  margin-bottom: 2%;
}
.entry h4::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 15%;
  height: 3px;
  background-color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h4 {
    font-size: 20px;
    margin: 10% auto 6%;
  }
  .entry h4::after {
    width: 35%;
  }
}
.entry h5 {
  font-size: 21px;
  font-weight: 600;
  padding-left: 0.3em;
  padding-block: 0.3em;
  margin-block: 3%;
  border-block: 1px solid var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h5 {
    font-size: 20px;
    margin: 5% auto 3%;
  }
}
.entry h6 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: var(--fontSerif);
  margin-bottom: 1%;
}
@media only screen and (max-width: 767px) {
  .entry h6 {
    font-size: 18px;
  }
}
.entry table {
  margin-bottom: 2%;
}
.entry table tr:nth-child(2n) td {
  background-color: #f7f6f9;
  color: #515151;
}
.entry table th,
.entry table td {
  padding: 1rem 2rem;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 767px) {
  .entry table th,
  .entry table td {
    padding: 0.5em 0.5em;
    border-bottom: 1px solid var(--mainColor);
  }
}
.entry table tr {
  border-bottom: 1px solid var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry table tr {
    border-bottom: none;
  }
}
.entry table tr:first-child {
  border-top: 1px solid var(--mainColor);
}
.entry table td {
  border: 1px solid var(--mainColor);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .entry table {
    width: 500px;
  }
}
.entry ul {
  margin-bottom: 2%;
  background-color: #f9f9f9;
  padding: 3% 5%;
}
.entry li {
  list-style-type: none;
  line-height: 1.8;
  font-weight: normal;
  margin-bottom: 0.3em;
  position: relative;
  padding-left: 1.5em;
}
.entry li:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f14a";
  color: var(--mainColor);
  position: absolute;
  left: 0;
  font-weight: 400;
}

/*目次*/
.toc_number {
  font-family: var(--fontNum);
  font-size: 18px;
  line-height: 1;
  color: #cacaca;
  font-weight: normal;
}

#toc_container {
  background: #ececec;
  border: none !important;
  margin: 0 auto;
  padding: 4% 6%;
  border-radius: 10px;
}
#toc_container a {
  color: var(--mainColor);
}

.toc_list li:before {
  display: none;
}

.toc_title {
  border-bottom: 1px solid var(--mainColor);
  font-size: 21px;
  font-weight: bold;
  padding-bottom: 0.3em;
}

.toc_toggle {
  font-size: 14px;
}

.wp-caption {
  max-width: 100% !important;
  padding: 2%;
  margin: auto auto 3% auto;
}

.wp-caption-text {
  background: rgba(195, 184, 177, 0.67);
  width: 100%;
  text-align: left;
  padding: 1% 3%;
  word-wrap: break-word;
  font-size: 10px;
  color: white !important;
  position: relative !important;
  z-index: 1;
  top: -35px;
  display: block;
  left: 5%;
}

.wp-caption-text a {
  color: white;
}

@media screen and (max-width: 767px) {
  .wp-caption-text {
    background: hsla(330, 50%, 60%, 0.48);
    width: 100%;
    text-align: left;
    padding: 1% 3%;
    word-wrap: break-word;
    font-size: 10px;
    color: white !important;
    position: relative !important;
    z-index: 1;
    top: -50px;
    display: block;
    left: 5%;
  }
}
.entry img {
  margin: 2% auto 3%;
}

/*リンクカードプラグイン*/
.lkc-title-text {
  font-weight: normal;
  letter-spacing: 0.15em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover .lkc-title-text {
  color: var(--mainColor);
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .lkc-title-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

.lkc-excerpt {
  display: none;
}

.lkc-url {
  display: none;
}

.lkc-external-wrap,
.lkc-internal-wrap {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 2px solid var(--mainColor);
  border-radius: 10px;
}

.lkc-external-wrap,
.lkc-internal-wrap,
.lkc-this-wrap {
  max-width: none;
}

.lkc-thumbnail-img {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover .lkc-thumbnail-img {
  opacity: 0.7;
}

.lkc-thumbnail {
  margin-right: 3%;
}

.lkc-date {
  position: absolute;
  bottom: 10%;
  right: 3%;
  color: var(--mainColor);
  font-family: var(--fontNum);
  font-size: 14px;
  display: none !important;
}

.lkc-info {
  background-color: var(--mainColor);
  display: inline-block !important;
  position: absolute;
  right: 3%;
  top: -5%;
  padding: 0.5em 1em;
  border-radius: 5px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .lkc-info {
    top: -11%;
  }
}

.lkc-domain {
  color: #fff;
}

.lkc-card {
  padding: 2rem 1rem 1rem;
}
.lkc-card img {
  vertical-align: middle;
}

.lkc-content {
  overflow: auto !important;
  height: inherit !important;
}

.lkc-sns-fb {
  padding: 1%;
}

/*コメント*/
div#respond textarea,
div#respond input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #cacaca;
  padding: 10px;
}

#respond input#submit {
  background: #0a0a0a;
  color: #fff;
  border-radius: 0;
  font-size: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#respond input#submit:hover {
  background: #cc6699;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*記事詳細-----------------------------------*/
/*記事コンテンツ周り*/
.singleColumnArticle {
  margin-bottom: 10%;
}

.singleColumnArticleContent {
  margin-top: 5%;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .singleColumnArticleContent {
    border-radius: 8px;
  }
}

.singleColumnTitle {
  font-family: var(--fontSerif);
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--color03);
}
@media only screen and (max-width: 767px) {
  .singleColumnTitle {
    font-size: 22px;
  }
}

.cateCss {
  display: block;
  font-size: 18px;
  font-family: var(--fontSerif);
  padding: 0.5em 0.6em;
  line-height: 1;
}

.singleColumnInfoUl .date {
  margin-right: 0.6em;
  font-family: var(--fontSerif);
  color: var(--color04);
}
.singleColumnInfoUl .cateUl {
  display: inline-block;
}
.singleColumnInfoUl .cateUl li {
  display: block;
  font-size: 18px;
  font-family: var(--fontSerif);
  padding: 0.5em 0.6em;
  line-height: 1;
}
.singleColumnInfoUl .cateUl li + li {
  margin-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 12px;
  }
}

/*この記事をシェアするボタン*/
.singleColumnShareButton {
  border-radius: 10px;
  padding: 0.7rem 1rem;
  width: 20%;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.singleColumnShareButton + .singleColumnShareButton {
  margin-left: 3%;
}
@media only screen and (max-width: 959px) {
  .singleColumnShareButton {
    width: 31.33333%;
  }
}
.singleColumnShareButton > * {
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .singleColumnShareButton > * {
    font-size: 12px;
  }
}
.singleColumnShareButton i {
  font-size: 22px;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .singleColumnShareButton i {
    font-size: 16px;
  }
}
.singleColumnShareButton.twitter {
  background: #000;
  border: 1px solid #000;
}
.singleColumnShareButton.twitter:hover {
  background: #fff;
  color: #000;
}
.singleColumnShareButton.facebook {
  background: #1877f2;
  border: 1px solid #1877f2;
}
.singleColumnShareButton.facebook:hover {
  background: #fff;
  color: #1877f2;
}
.singleColumnShareButton.line {
  background: #4CC764;
  border: 1px solid #4CC764;
}
.singleColumnShareButton.line:hover {
  background: #fff;
  color: #4CC764;
}

.singleColumnShareTitle {
  font-size: 16px;
  font-weight: 600;
  width: 27%;
}
@media only screen and (max-width: 959px) {
  .singleColumnShareTitle {
    width: 100%;
    margin-bottom: 3%;
  }
}

/*この記事を書いた人*/
.singleColumnWriterImg {
  padding-bottom: 100%;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .singleColumnWriterImgBox {
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4%;
  }
}

.singleColumnWriter {
  padding: 5% 3%;
  margin: 6% 0 6% 0;
  background-color: #f9f9f9;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    margin: 12% 0 6% 0;
  }
}

.singleColumnWriterTitle {
  font-weight: 600;
  letter-spacing: 0.15em;
  position: relative;
}
.singleColumnWriterTitle::before {
  content: "";
  position: absolute;
  background: #afafaf;
  top: 50%;
  right: 0;
  height: 1px;
  width: calc(100% - 11em);
}

.singleColumnWriterButton {
  background: #fff;
  border: 1px solid var(--mainColor);
  border-radius: 25px;
  padding: 0.25em;
  max-width: 280px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--mainColor);
}
.singleColumnWriterButton:hover {
  background: var(--mainColor);
  color: #fff;
}

.singleColumnWriterInnerHead .leftbox {
  width: 65%;
}
.singleColumnWriterInnerHead .rightbox {
  width: 35%;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriterInnerHead .leftbox {
    width: 70%;
  }
  .singleColumnWriterInnerHead .rightbox {
    width: 30%;
  }
}

.sidebarWriterSns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sidebarWriterSns li {
  margin-bottom: 4%;
  width: 20%;
}
.sidebarWriterSns li + li {
  margin-left: 5%;
}
.sidebarWriterSns li a {
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .sidebarWriterSns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sidebarWriterSns li {
    width: 45%;
    margin-bottom: 10%;
  }
  .sidebarWriterSns li + li {
    margin-left: 0;
  }
}

/*次のページを見る*/
.s-linkBox.next {
  text-align: right;
}
.s-linkBox .s-link {
  background-color: var(--color03);
  border-radius: 16px;
  display: block;
  padding: 30px;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.s-linkBox .s-link:hover {
  background-color: var(--color04);
}
@media only screen and (max-width: 767px) {
  .s-linkBox .s-link {
    padding: 20px 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .s-linkBox {
    min-width: 300px;
    max-width: 320px;
  }
}
@media only screen and (max-width: 767px) {
  .s-linkBox {
    width: 50%;
  }
}

.s-linkArwTitle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #fff;
  margin-bottom: 10px;
}

.s-linkArw {
  background-color: var(--color01);
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  width: 30px;
}
.s-linkArw i {
  color: var(--color03);
}
@media only screen and (max-width: 767px) {
  .s-linkArw {
    height: 25px;
    width: 25px;
  }
}

.s-linkPostTitle {
  color: #fff;
  font-family: var(--fontSerif);
  text-align: center;
  line-height: 1.4;
}

/*アーカイブページ------------------------------------*/
.cmNewsListUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 30px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.cmNewsListUl > li {
  width: calc(50% - 15px);
}
.cmNewsListUl a {
  display: block;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cmNewsListUl {
    row-gap: 15px;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
  .cmNewsListUl > li {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .cmNewsListUl {
    row-gap: 0;
    -moz-column-gap: 0;
    -webkit-column-gap: 0;
            column-gap: 0;
  }
  .cmNewsListUl > li {
    width: 100%;
    margin: 0 2%;
    margin-bottom: 10%;
  }
}

.cmNewsListCard {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover .cmNewsListCard {
  opacity: 0.7;
}

.cNewsDate {
  margin-right: 0.8em;
  letter-spacing: 0.1em;
  color: var(--mainColor);
  font-size: 13px;
}

.cmNewsTitle {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .cmNewsTitle {
    font-size: 16px;
  }
}

.cmNewsDescri {
  font-size: 13px;
  margin-bottom: 3%;
  color: #a0a0a0;
}
@media only screen and (max-width: 767px) {
  .cmNewsDescri {
    font-size: 12px;
    line-height: 1.5;
  }
}

.cmNewsListImgFrame {
  border: 1px solid var(--mainColor);
}

.cmNewsListImg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 70%;
}
a:hover .cmNewsListImg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.cmNewsListImgWrap {
  overflow: hidden;
  border-radius: 8px;
  width: 30%;
}

.cmNewsListtextBox {
  padding-left: 5%;
  width: 70%;
}

.cmNewsListInfoUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4em 0.5em;
  line-height: 1;
}
.cmNewsListInfoUl li {
  display: block;
  font-size: 18px;
  font-family: var(--fontSerif);
  padding: 0.5em 0.6em;
  line-height: 1;
}

.sidebarBlock {
  padding-left: 8%;
}
@media only screen and (max-width: 959px) {
  .sidebarBlock {
    padding-left: 15px;
  }
}

.pagenation {
  margin-top: 8%;
}
.pagenation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagenation ul li {
  margin-inline: 0.4em;
}
.pagenation ul li.active,
.pagenation ul li a {
  background-color: var(--color02);
  text-align: center;
  color: var(--fontColor);
  font-size: 22px;
  font-family: var(--fontNum);
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  width: 60px;
}
@media only screen and (max-width: 767px) {
  .pagenation ul li.active,
  .pagenation ul li a {
    font-size: 18px;
    height: 40px;
    width: 40px;
  }
}
.pagenation ul li.active {
  background-color: var(--color03);
  color: #fff;
}
.pagenation ul .prev a,
.pagenation ul .next a {
  display: block;
  position: relative;
}
.pagenation ul .prev a::before,
.pagenation ul .next a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  border-top: 2px solid var(--fontColor);
  border-right: 2px solid var(--fontColor);
  height: 10px;
  width: 10px;
}
.pagenation ul .prev a::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
  margin-left: 0.1em;
}
@media only screen and (max-width: 767px) {
  .pagenation {
    margin-top: 15%;
  }
}

/*ページャー、ページネーション------------------------------------*/
.page-numbers {
  padding: 0.7% 1%;
}

span.page-numbers {
  color: var(--mainColor);
  font-weight: bold;
}

a.page-numbers {
  color: #c5c5c5;
}

/*==================================================
 * サイドバー
 *================================================*/
@media only screen and (max-width: 767px) {
  #sidebar {
    margin-top: 15%;
  }
}

.sidebarBox {
  margin-bottom: 15%;
  margin-left: 5%;
}
@media only screen and (max-width: 767px) {
  .sidebarBox {
    margin-left: 0;
    margin-bottom: 8%;
  }
}

.sidebarNewsUl .cat-item {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #DCDCDC;
}
.sidebarNewsUl .cat-item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebarNewsUl .cat-item a:hover {
  opacity: 0.7;
}
.sidebarNewsUl .cat-item .date {
  font-family: var(--fontSerif);
  color: var(--color04);
}
.sidebarNewsUl .cat-item .title {
  font-size: 15px;
  margin-bottom: 3%;
}
@media only screen and (max-width: 767px) {
  .sidebarNewsUl .cat-item {
    padding-bottom: 0.75em;
    margin-bottom: 0.75em;
  }
}

.popularCount {
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  font-family: var(--fontEn);
  font-weight: 600;
  font-size: 19px;
  top: -10px;
  left: calc(35% - 10px);
  height: 25px;
  width: 25px;
  z-index: 2;
}
.popularCount.__popular1 {
  background-color: #D1AA3A;
}
.popularCount.__popular2 {
  background-color: #B8B9BA;
}
.popularCount.__popular3 {
  background-color: #BA7E4C;
}
.popularCount.__popular4 {
  background-color: #89A5FF;
}
.popularCount.__popular5 {
  background-color: #89A5FF;
}

.sidebarCategoryBlock li a {
  display: block;
  font-size: 18px;
  font-family: var(--fontSerif);
  padding: 0.5em 0.6em;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebarCategoryBlock li a:hover {
  opacity: 0.7;
}

.sidebarTitle {
  font-family: var(--fontEn);
  line-height: 1.4;
  margin-bottom: 5%;
}
.sidebarTitle span {
  line-height: 1.4;
  font-size: 42px;
  font-weight: 600;
  color: var(--mainColor);
  display: inline-block;
  margin-right: 0.1em;
  letter-spacing: 0.06em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarTitle {
    font-size: 14px;
  }
  .sidebarTitle span {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .sidebarTitle {
    margin-bottom: 1em;
  }
}

.sidebarRankingImg {
  width: 40%;
  padding-bottom: 26%;
  margin-right: 5%;
  border-radius: 5px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarRankingImg {
    display: none;
  }
}

.sidebarRankingText {
  width: 60%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarRankingText {
    width: 100%;
  }
}

.sidebarRankingNum {
  background: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: var(--mainColor);
  right: 10px;
  top: 10px;
  position: absolute;
  font-size: 14px;
}

#sidebar select {
  border-color: var(--mainColor);
  width: 100%;
  padding: 0.7em;
}

.archive-block {
  border-bottom: 1px solid #ccc;
}

.archive-year {
  cursor: pointer;
  padding-block: 0.5em;
  position: relative;
}
.archive-year::before {
  content: "";
  position: absolute;
  top: 1em;
  border-top: 1px solid var(--mainColor);
  border-right: 1px solid var(--mainColor);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: 20px;
  height: 0.7em;
  width: 0.7em;
}
.archive-year.active::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.archive-months {
  display: none;
}

.archive-months-list {
  border-bottom: 1px solid #ccc;
  display: block;
  padding: 0.5em;
  padding-left: 1em;
}
.archive-months-list:first-of-type {
  border-top: 1px solid #ccc;
}
.archive-months-list:last-of-type {
  border-bottom: none;
}

.sidebarTagWrap a {
  font-size: 14px !important;
  color: var(--mainColor);
}
.sidebarTagWrap a:before {
  content: "#";
}
.sidebarTagWrap a:after {
  content: "/";
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 0.5em;
  color: var(--grayColor);
}
@media only screen and (max-width: 767px) {
  .sidebarTagWrap a {
    font-size: 12px !important;
  }
}

/*==================================================
 * 全サイト共通
*================================================*/
/*共通部分*/
body {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

body {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

main {
  background-color: var(--color01);
  position: relative;
  z-index: 2;
}
main::before {
  isolation: isolate;
  content: "";
  background-image: url("../img/mainBg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: absolute;
  opacity: 0.2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

/*==================================================
 * 当サイト共通
*================================================*/
:root {
  --floatH: 40px;
}

main {
  contain: paint;
}
main.c-cnt {
  position: relative;
  background-color: var(--color01);
  isolation: isolate;
  mix-blend-mode: screen;
  position: relative;
  z-index: 2;
}
main.c-cnt::before {
  isolation: isolate;
  content: "";
  background-image: url("../img/mainBg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: absolute;
  opacity: 0.2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.c-bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
}

.telLink {
  text-decoration: none !important;
}
@media print, screen and (min-width: 768px) {
  .telLink {
    pointer-events: none;
  }
}
.telLink:hover {
  text-decoration: none !important;
}

.vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.scrollTxt {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.scrollTxt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: ticker 60s linear infinite;
          animation: ticker 60s linear infinite;
  mix-blend-mode: color-dodge;
}
.scrollTxt ul li {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(65px, 13.3vw, 170px);
  font-family: var(--fontEn);
  line-height: 1;
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.fade-show {
  -webkit-transform: translate(5px, -5px);
          transform: translate(5px, -5px);
  opacity: 0;
  visibility: hidden;
}
.fade-show.on {
  -webkit-transition: 1.7s;
  transition: 1.7s;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.secTitleEn {
  color: var(--color03);
  font-family: var(--fontEn);
  font-size: 60px;
  line-height: 1;
  display: inline-block;
  letter-spacing: 0.1em;
}
.__bigTitle .secTitleEn {
  font-size: clamp(62px, 8.6vw, 110px);
}
.secTitleEn.fontColor {
  color: var(--fontColor);
}
.secTitleEn.gradeColor {
  background: linear-gradient(45deg, #8E999B 0%, #E0D4C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.secTitleEn.ls_m {
  letter-spacing: 0.05em;
}

.secTitleJp {
  font-size: 18px;
  font-family: var(--fontSerif);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.__bigTitle .secTitleJp {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .__bigTitle .secTitleJp {
    font-size: 16px;
  }
}

.commonTitle {
  font-size: clamp(24px, 3.2vw, 40px);
  font-family: var(--fontSerif);
  font-weight: 600;
  line-height: 1.4;
}
.commonTitle.mSize {
  font-size: clamp(22px, 2.7vw, 34px);
}
.commonTitle.sSize {
  font-size: clamp(18px, 1.9vw, 24px);
}
.commonTitle.slSize {
  font-size: clamp(20px, 2.2vw, 28px);
}

.commonTxt {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.13em;
}
@media only screen and (max-width: 959px) {
  .commonTxt {
    font-size: 16px;
    line-height: 1.8;
  }
}

.borderTitle {
  border-bottom: 1px solid var(--color02);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-bottom: 0.7em;
}
.borderTitle::before {
  content: "";
  position: absolute;
  background-color: var(--color03);
  left: 0;
  bottom: 0;
  height: 3px;
  width: 5em;
}
.borderTitle.simple::before {
  content: none;
}

.borderTitleEn {
  color: var(--color03);
  line-height: 1;
  font-size: 40px;
  font-family: var(--fontEn);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .borderTitleEn {
    font-size: 30px;
  }
}

.borderTitleJp {
  line-height: 1.2;
  font-size: 18px;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .borderTitleJp {
    font-size: 16px;
  }
}

.commonBtn {
  border: 1px solid var(--blueColor02);
  background-color: var(--blueColor02);
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-inline: 1.5em;
  padding-block: 1.5em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  gap: 17px;
}
.commonBtn:hover {
  color: var(--fontColor);
  background-color: #fff;
}
.commonBtn.__bigBtn {
  padding-inline: 2.5em;
  padding-block: 2.3em;
  gap: 30px;
}
.commonBtn.gradeBtn {
  background: linear-gradient(45deg, #8E999B 0%, #E0D4C0 100%);
}
@media only screen and (max-width: 767px) {
  .commonBtn.__bigBtn {
    padding-inline: 2em;
    padding-block: 2em;
  }
}

.btnTxt {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 400;
}
.commonBtn.__bigBtn .btnTxt {
  font-size: 30px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .btnTxt {
    font-size: 16px;
  }
  .commonBtn.__bigBtn .btnTxt {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .btnTxt {
    font-size: 14px;
  }
  .commonBtn.__bigBtn .btnTxt {
    font-size: 23px;
  }
}

.btnArw {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 16px;
}
.commonBtn.__bigBtn .btnArw {
  width: 22px;
}
.commonBtn:hover .btnArw {
  -webkit-filter: brightness(0.3) saturate(0) invert(0.3);
          filter: brightness(0.3) saturate(0) invert(0.3);
}

.bnrBlock {
  background-color: var(--blueColor01);
  border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .bnrBlock {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .bnrBlock .bnrTxtBox {
    padding: 5%;
    width: 50%;
  }
  .bnrBlock .bnrImgBox {
    width: 50%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .bnrBlock .bnrTxtBox {
    padding: 3%;
  }
}
@media only screen and (max-width: 767px) {
  .bnrBlock .bnrTxtBox {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    width: 100%;
    z-index: 2;
  }
  .bnrBlock .bnrImgBox {
    opacity: 0.2;
  }
}

.bnrTxtTitleEn {
  color: #fff;
  font-family: var(--fontEn);
  font-size: 24px;
  letter-spacing: 0.13em;
}
@media only screen and (max-width: 767px) {
  .bnrTxtTitleEn {
    font-size: 18px;
  }
}

.bnrTxtTitleJp {
  color: #fff;
  font-family: var(--fontSerif);
  font-size: clamp(34px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-block: 0.4em 0.6em;
}

.bnrImg {
  padding-bottom: 79%;
}

.specialBnrBtn {
  background-color: #fff;
  color: var(--blueColor01);
}

.floatBox {
  position: fixed;
  right: 30px;
  bottom: 60px;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .floatBox {
    bottom: 10px;
    right: 10px;
  }
}

.floatCircle {
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  height: 170px;
  width: 170px;
}
.floatCircle.leaveTop {
  height: 120px;
  width: 120px;
}
@media only screen and (max-width: 767px) {
  .floatCircle {
    height: 100px;
    width: 100px;
  }
  .floatCircle.leaveTop {
    height: 80px;
    width: 80px;
  }
}

.floatBg {
  -webkit-animation: circle-anime 20s linear infinite;
          animation: circle-anime 20s linear infinite;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.floatCircle:hover .floatBg {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

@-webkit-keyframes circle-anime {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes circle-anime {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.floatTx {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.8s;
  transition: 0.8s;
  color: #fff;
  font-family: var(--fontSerif);
  font-size: 22px;
  text-align: center;
  line-height: 1;
  width: 100%;
}
.floatTx span {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  font-size: 16px;
  line-height: 1;
}
.leaveTop .floatTx {
  font-size: 16px;
}
.leaveTop .floatTx span {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .floatTx {
    font-size: 16px;
  }
  .floatTx span {
    font-size: 12px;
  }
  .leaveTop .floatTx {
    font-size: 14px;
  }
  .leaveTop .floatTx span {
    font-size: 10px;
  }
}

.floatLinks {
  width: 100%;
}
.floatLinks div {
  background-color: var(--color05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  padding-inline: 1em;
  gap: 15px;
}

.floatLinkIcon {
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px;
  height: 25px;
  width: 25px;
}
.floatLinkIcon img {
  width: 100%;
}

.floatLinkArw {
  width: 1em;
}

.modalOverray,
.modalMenuOverray {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
}
.modalOverray.open,
.modalMenuOverray.open {
  display: block;
}

.modalBlockInner {
  display: none;
  background-color: var(--color02);
  padding: 60px;
  border-radius: 16px;
  overflow: hidden;
  max-width: 750px;
  margin-inline: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 30px);
  z-index: 10000;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .modalBlockInner {
    max-width: 700px;
  }
}
@media only screen and (max-width: 767px) {
  .modalBlockInner {
    padding: 30px 15px;
  }
}

.modalClose {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 40px;
}
.modalClose i {
  font-size: 50px;
  line-height: 1;
  font-weight: 200;
}
@media only screen and (max-width: 767px) {
  .modalClose {
    top: 10px;
    right: 11px;
  }
  .modalClose i {
    font-size: 33px;
  }
}

.modalBtn {
  display: grid;
  grid-template-columns: 90px auto 25px;
  margin-block: 20px;
  padding-inline: 1.7em !important;
  padding-block: 1.3em !important;
  margin-inline: auto;
  max-width: 460px;
  width: 100%;
}
.modalBtn .btnIcon {
  border: 1px solid var(--blueColor01);
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px;
  height: 90px;
  width: 90px;
}
.modalBtn .btnIcon img {
  width: 100%;
}
.modalBtn:hover {
  color: #fff;
  background-color: var(--blueColor01);
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
.modalBtn:hover .btnArw {
  -webkit-filter: none;
          filter: none;
}
.modalBtn.lineBtn .btnIcon {
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .modalBtn {
    grid-template-columns: 50px auto 14px;
    gap: 10px !important;
  }
  .modalBtn .btnIcon {
    padding: 10px;
    height: 50px;
    width: 50px;
  }
  .modalBtn .btnArw {
    width: 1em !important;
  }
  .modalBtn.lineBtn .btnIcon {
    padding: 7px;
  }
}

.c-blend-item {
  position: absolute;
  left: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  height: 100vh;
  width: 100%;
  z-index: -1;
}
.c-blend-item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  isolation: isolate;
  mix-blend-mode: screen;
}
.c-blend-item.c-blend-item-01 {
  top: 0;
}
.c-blend-item.c-blend-item-02 {
  top: var(--concept-y);
}
.c-blend-item.c-blend-item-03 {
  top: calc(var(--doctor-y) + 50rem);
}
@media only screen and (max-width: 767px) {
  .c-blend-item.c-blend-item-03 {
    top: calc(var(--doctor-y) + 0rem);
  }
}
.c-blend-item.c-blend-item-04 {
  top: calc(var(--menu-y) + 50rem);
}
@media only screen and (max-width: 767px) {
  .c-blend-item.c-blend-item-04 {
    top: calc(var(--menu-y) - 80rem);
  }
}

.c-opening-cover {
  overflow: hidden;
  opacity: 0;
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
  will-change: filter, mask-position, mask-image;
  -webkit-mask-image: radial-gradient(#fff 0%, #fff 25%, #fff 30%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
          mask-image: radial-gradient(#fff 0%, #fff 25%, #fff 30%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask-position: 100% 100%;
          mask-position: 100% 100%;
  -webkit-mask-size: 500% 500%;
          mask-size: 500% 500%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: filter 2000ms 100ms, mask-position 2000ms ease-out, -webkit-mask-position 2000ms ease-out;
}
.c-opening-cover.is-show {
  opacity: 1;
  -webkit-filter: brightness(1);
          filter: brightness(1);
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
}
.c-opening-cover.is-show::after {
  -webkit-animation: mv-move-light 2000ms 100ms ease-out forwards, move-light-opacity 2000ms 100ms forwards;
          animation: mv-move-light 2000ms 100ms ease-out forwards, move-light-opacity 2000ms 100ms forwards;
}
.page-top .c-opening-cover {
  -webkit-perspective: 500px;
          perspective: 500px;
  -webkit-transform: translate3d(0, 5rem, 0) rotateY(-30deg) skewY(-3deg);
          transform: translate3d(0, 5rem, 0) rotateY(-30deg) skewY(-3deg);
  transition: opacity 400ms 100ms, filter 1500ms 100ms, transform 1500ms 100ms var(--ease-power1-out), mask-position 1500ms ease-out, -webkit-mask-position 1500ms ease-out;
}
.page-top .c-opening-cover.is-show {
  -webkit-transform: translate3d(0, 0, 0) rotateY(0deg) skewY(0deg);
          transform: translate3d(0, 0, 0) rotateY(0deg) skewY(0deg);
}

/*==================================================
 * ヘッダー
*================================================*/
header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 30px;
  padding-block: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  z-index: 999;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  header {
    padding-inline: 15px;
  }
}
@media only screen and (max-width: 767px) {
  header {
    padding-inline: 10px;
    padding-block: 5px;
  }
}

.headerOver {
  position: fixed;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  height: 100vh;
  width: 100vw;
  z-index: 998;
}
.open .headerOver {
  opacity: 1;
  visibility: visible;
}

.h-title {
  font-size: 12px;
  font-family: var(--fontEn);
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .h-title {
    font-size: 10px;
  }
}

.h-logoLink {
  position: relative;
  z-index: 997;
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .h-logoImg {
    width: 330px;
  }
}
@media only screen and (max-width: 767px) {
  .h-logoImg {
    width: 290px;
  }
}

.h-menuTxt {
  font-family: var(--fontEn);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .h-menuTxt {
    font-size: 13px;
  }
}

/*==================================================
 * フッター
*================================================*/
.specialBanner {
  position: relative;
}

footer {
  background-color: var(--blueColor01);
  padding-top: 90px;
}
@media only screen and (max-width: 767px) {
  footer {
    padding-top: 45px;
  }
}

.f-box {
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .f-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .f-box .f-leftBox {
    width: 50%;
  }
  .f-box .f-rightBox {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .f-box {
    margin-bottom: 20px;
  }
  .f-box .f-leftBox {
    margin-bottom: 8%;
  }
}

.f-title {
  font-size: 14px;
  font-family: var(--fontEn);
  letter-spacing: 0.13em;
}

.f-logo {
  margin-bottom: 30px;
}

.f-logoImg {
  width: 200px;
}
.f-logoImg.humber {
  width: 310px;
}

.f-dlBlock {
  margin-bottom: 30px;
}
.f-dlBlock dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-block: 0.8em;
}
.f-dlBlock dl dt, .f-dlBlock dl dd {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.f-dlBlock dl dt {
  width: 7em;
}
.f-dlBlock dl dd {
  width: calc(100% - 7em);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .f-dlBlock dl dt, .f-dlBlock dl dd {
    font-size: 16px;
  }
  .f-dlBlock dl dt {
    width: 6em;
  }
  .f-dlBlock dl dd {
    width: calc(100% - 6em);
  }
}
@media only screen and (max-width: 767px) {
  .f-dlBlock dl dt, .f-dlBlock dl dd {
    font-size: 15px;
  }
  .f-dlBlock dl dt {
    width: 6em;
  }
  .f-dlBlock dl dd {
    width: calc(100% - 6em);
  }
  .f-dlBlock.humber dl dt, .f-dlBlock.humber dl dd {
    color: var(--fontColor);
  }
}

.f-gmap {
  border-radius: 16px;
  overflow: hidden;
}
.f-gmap .commonFrameWrap {
  position: relative;
  width: 100%;
  padding-top: 60%;
}
.f-gmap .commonFrameWrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.copyright {
  background-color: var(--blueColor02);
  text-align: center;
  padding-block: 10px;
}
.copyright p {
  color: #fff;
  line-height: 1;
  font-family: var(--fontEn);
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .copyright {
    padding-block: 5px;
  }
  .copyright p {
    font-size: 12px;
  }
}

/*==================================================
 * トップページ
*================================================*/
.t-fv {
  background: -webkit-gradient(linear, left top, left bottom, from(#F0EDE8), color-stop(108%, rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #F0EDE8 0%, rgba(255, 255, 255, 0) 108%);
}

:root {
  --fvH: clamp(205px,20.1vw,257px);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  :root {
    --fvH: 155px;
  }
}

.t-fvTxt {
  text-align: center;
  font-family: var(--fontEn);
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: 0.3em;
  line-height: 1.3;
  padding-block: 1em 2.3em;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1.2s 1s;
  transition: 1.2s 1s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  height: var(--fvH);
}
.t-fvTxt.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media only screen and (max-width: 767px) {
  .t-fvTxt {
    padding-block: 1.3em 2.5em;
  }
}

.t-fvSlide {
  height: calc(100vh - var(--fvH) - var(--spaceSize));
}
.t-fvSlide .slick-track,
.t-fvSlide .slick-list {
  height: 100%;
  width: 100%;
}

.t-fvSlideImg {
  -webkit-box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.14);
          box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}
.t-fvSlideImg img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-animation: none;
          animation: none;
  aspect-ratio: 1220/643;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.t-fvSlideImg.is-animating img {
  -webkit-animation: zoom-up 8s linear forwards;
          animation: zoom-up 8s linear forwards;
}
@media only screen and (max-width: 767px) {
  .t-fvSlideImg img {
    aspect-ratio: 2/1.9;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@-webkit-keyframes zoom-up {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes zoom-up {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.t-fvScrollTxt {
  position: absolute;
  top: -8em;
  z-index: 2;
}
@media only screen and (max-width: 959px) {
  .t-fvScrollTxt {
    top: -4em;
  }
}

@media print, screen and (min-width: 768px) {
  .t-newsBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .t-newsBlock .t-newsLeft {
    width: 30%;
  }
  .t-newsBlock .t-newsRight {
    width: 70%;
  }
}

.t-newsrightInner {
  width: 120%;
}
@media only screen and (max-width: 767px) {
  .t-newsrightInner {
    width: 140%;
  }
}

.t-newsLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.t-newsSlide .newsCard {
  margin-right: 30px;
}
.t-newsSlide .slick-prev {
  display: none !important;
}
.t-newsSlide .slick-next {
  position: absolute;
  background-color: var(--color03);
  top: 50%;
  right: 150px;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  z-index: 2;
}
.t-newsSlide .slick-next::before {
  content: "\f105";
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
}
.t-newsSlide .slick-next:hover, .t-newsSlide .slick-next:focus {
  background-color: var(--color03);
}
@media only screen and (max-width: 767px) {
  .t-newsSlide .slick-next {
    right: calc(50% - 100px);
  }
}

.t-conceptBg {
  background-color: var(--color02);
  position: relative;
  z-index: 2;
}
.t-conceptBg::before {
  content: "";
  background-image: url("../img/topConceptBg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
}
.t-conceptBg::after {
  content: "";
  background-color: #fff;
  opacity: 0.25;
  mix-blend-mode: darken;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.t-conceptTx {
  line-height: 1.5;
}

.t-promiseBlock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .t-promiseBlock {
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .t-promiseBlock {
    grid-template-columns: 0.8fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}

.t-promisCard {
  background-color: var(--color01);
  border-radius: 16px;
  -webkit-box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.1);
  padding: 5% 8%;
}

.t-promisCardNum {
  color: var(--color03);
  font-family: var(--fontSerif);
  font-size: 32px;
  line-height: 1;
}
.t-promisCardNum span {
  font-size: 16px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .t-promisCardNum {
    font-size: 27px;
  }
  .t-promisCardNum span {
    font-size: 14px;
  }
}

.t-promisCardImg {
  overflow: hidden;
  border-radius: 50%;
  margin-inline: auto;
  height: 145px;
  width: 145px;
}
@media only screen and (max-width: 767px) {
  .t-promisCardImg {
    height: 115px;
    width: 115px;
  }
}

.t-promisCardTitle {
  text-align: center;
  font-size: 26px;
  font-family: var(--fontSerif);
  margin-bottom: 0.6em;
  line-height: 1.2;
}

.t-promisCardTx {
  font-size: 16px;
}
@media only screen and (max-width: 959px) {
  .t-promisCardTx {
    font-size: 14px;
  }
}

.t-doctorBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width: 768px) {
  .t-doctorBlock .t-doctorTxtBox {
    padding-right: 10%;
    width: 65%;
  }
  .t-doctorBlock .t-doctorImgBox {
    width: 30%;
  }
  .t-doctorBlock .t-doctorImgBox .t-doctorImg {
    width: 150%;
  }
}
@media only screen and (max-width: 767px) {
  .t-doctorBlock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .t-doctorBlock .t-doctorImgBox {
    margin-inline: auto;
    margin-bottom: 8%;
    width: 75%;
  }
}

.t-doctorImg {
  -webkit-box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.1);
  border-radius: 16px 0 0 16px;
  overflow: hidden;
}

.doctorNameBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}
@media only screen and (max-width: 767px) {
  .doctorNameBox {
    gap: 50px;
  }
}

.doctorName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  font-family: var(--fontSerif);
  font-size: 38px;
  line-height: 1;
}
.doctorName span {
  color: var(--color04);
  display: inline-block;
  margin-bottom: 0.3em;
  font-size: 20px;
  font-family: var(--fontEn);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .doctorName {
    font-size: 24px;
  }
  .doctorName span {
    font-size: 14px;
  }
}

.doctorNameSign {
  max-width: 300px;
  width: 100%;
}
@media only screen and (max-width: 959px) {
  .doctorNameSign {
    max-width: 200px;
  }
}

.t-featureBg {
  background-color: var(--color02);
  position: relative;
  z-index: 2;
}
.t-featureBg::before, .t-featureBg::after {
  content: "";
  position: absolute;
  background-color: var(--color02);
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 50vw;
  width: 150vw;
  z-index: -1;
}
.t-featureBg::before {
  top: -10vw;
}
.t-featureBg::after {
  bottom: -10vw;
}

.t-featureBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px;
}
@media only screen and (max-width: 767px) {
  .t-featureBlock {
    margin-inline: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.t-featureCardNum {
  text-align: center;
  color: var(--color03);
  font-family: var(--fontNum);
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0.4em;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .t-featureCardNum {
    font-size: 38px;
  }
}

.t-featureCardImg {
  -webkit-box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  overflow: hidden;
  margin-inline: auto;
  margin-top: -8%;
  width: 65%;
}
@media only screen and (max-width: 767px) {
  .t-featureCardImg {
    width: 60%;
  }
}

.t-featureCardTitle {
  text-align: center;
  font-size: 29px;
  letter-spacing: 0.05em;
  font-family: var(--fontSerif);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .t-featureCardTitle {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .t-featureCardTitle {
    font-size: 18px;
  }
}

@media print, screen and (min-width: 768px) {
  .t-menuBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .t-menuBlock .t-menuTitleBox {
    position: relative;
    width: 33%;
  }
  .t-menuBlock .t-menuCnt {
    padding-left: 5%;
    width: 67%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .t-menuBlock .t-menuTitleBox {
    width: 37%;
  }
  .t-menuBlock .t-menuCnt {
    padding-left: 3%;
    width: 63%;
  }
}
@media only screen and (max-width: 767px) {
  .t-menuBlock .t-menuTitleBox {
    margin-bottom: 10%;
  }
}

.t-menuTitleBoxInner {
  position: sticky;
  top: 150px;
}

#t-menu .t-menuItem + .t-menuItem {
  margin-top: 20px;
}
.m-pickupSlideInner .t-menuItem {
  margin-right: 20px;
}

.t-menuItemlink {
  background-color: #F8EFDF;
  border-radius: 16px;
  display: block;
  padding: 3% 5%;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.t-menuItemlink.t-pickItemlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #C9B8A1;
}
.t-menuItemlink.t-pickItemlink.beColor {
  position: relative;
  background-color: transparent;
  overflow: hidden;
  z-index: 2;
}
.t-menuItemlink.t-pickItemlink.beColor::before {
  content: "";
  position: absolute;
  background-color: #C9B8A1;
  opacity: 0.8;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.t-menuItemlink:hover {
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
}
@media only screen and (max-width: 767px) {
  .t-menuItemlink {
    padding: 5%;
  }
}

.t-pickItemTag {
  border-radius: 0 0 8px 8px;
  background-color: #fff;
  color: var(--color03);
  font-family: var(--fontEn);
  font-size: 20px;
  line-height: 1;
  top: 0;
  right: 60px;
  position: absolute;
  padding-inline: 0.8em;
  padding-block: 0.3em;
}
@media only screen and (max-width: 767px) {
  .t-pickItemTag {
    font-size: 14px;
    right: 30px;
  }
}

.t-menuItem_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.t-menuItem_head.t-pickItem_head {
  border-bottom: 1px solid #fff;
  padding-bottom: 0.4em;
  margin-bottom: 0.8em;
}

.t-pickItem_num {
  color: #fff;
  font-family: var(--fontNum);
  font-size: clamp(28px, 5vw, 64px);
  line-height: 1;
}

.t-menuItem_name {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(23px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-family: var(--fontSerif);
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}
.t-menuItem_name .t-menuItem_nameEn {
  color: #8C8C8C;
  text-transform: capitalize;
  font-size: 24px;
  font-family: var(--fontEn);
  line-height: 1.4;
  display: inline-block;
  letter-spacing: 0.05em;
}
.t-menuItem_name.t-pickItem_name {
  color: #fff;
  display: block;
}
@media only screen and (max-width: 767px) {
  .t-menuItem_name .t-menuItem_nameEn {
    font-size: 20px;
  }
}

.t-menuItem_title {
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 0.3em;
}
.t-menuItem_title.t-pickItem_title {
  color: #fff;
  font-family: var(--fontSerif);
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .t-menuItem_title {
    font-size: 18px;
  }
  .t-menuItem_title.t-pickItem_title {
    font-size: 18px;
  }
}

.t-pickItem_txt {
  color: #fff;
  letter-spacing: 0.13em;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .t-pickItem_txt {
    font-size: 13px;
  }
}

.t-menuItem_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
.t-menuItem_more.t-pickItem_more {
  position: static;
}

.t-menuItem_moretTxt {
  font-size: 18px;
  letter-spacing: 0.13em;
}
.t-menuItem_moretTxt.t-pickItem_moretTxt {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .t-menuItem_moretTxt {
    font-size: 13px;
  }
}

.t-menuItem_moreArw {
  -webkit-filter: brightness(0.3) saturate(0) invert(0.3);
          filter: brightness(0.3) saturate(0) invert(0.3);
  width: 1em;
}
.t-menuItem_moreArw.t-pickItem_moreArw {
  -webkit-filter: none;
          filter: none;
}

.t-menuBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .t-menuBtns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

@media print, screen and (min-width: 768px) {
  .t-caseBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .t-caseBlock .t-caseLeft {
    width: 20%;
  }
  .t-caseBlock .t-caseRight {
    padding-left: 5%;
    width: 80%;
  }
}

.t-caseRightInner {
  width: 120%;
}
@media only screen and (max-width: 767px) {
  .t-caseRightInner {
    width: 170%;
  }
}

.t-caseSlide .caseCard {
  margin-right: 30px;
}
.t-caseSlide .slick-prev {
  display: none !important;
}
.t-caseSlide .slick-next {
  position: absolute;
  background-color: var(--color03);
  top: 230px;
  right: 150px;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  z-index: 2;
}
.t-caseSlide .slick-next::before {
  content: "\f105";
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
}
.t-caseSlide .slick-next:hover, .t-caseSlide .slick-next:focus {
  background-color: var(--color03);
}
@media only screen and (max-width: 767px) {
  .t-caseSlide .slick-next {
    right: calc(50% - 50px);
  }
}

/*==================================================
 * サイクリニックについて
*================================================*/
.a-conceptBlock .a-concetpImgBox {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .a-conceptBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .a-conceptBlock .a-concetpTxtBox {
    padding-right: 10%;
    width: 70%;
  }
  .a-conceptBlock .a-concetpImgBox {
    width: 30%;
  }
}

.a-conceptImg {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.14);
          box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.14);
}
.a-conceptImg.concept-1 {
  margin-left: 50px;
  z-index: 2;
}
.a-conceptImg.concept-2 {
  margin-top: -40px;
  margin-left: -20px;
  width: 194px;
  opacity: 0.5;
  z-index: 1;
}
.a-conceptImg.concept-3 {
  margin-top: 60px;
  margin-left: 150px;
  width: 275px;
  z-index: 2;
}
.a-conceptImg.concept-4 {
  margin-top: -80px;
  margin-left: -70px;
  width: 260px;
  opacity: 0.5;
  z-index: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .a-conceptImg.concept-1 {
    margin-left: 0px;
    margin-right: -30px;
  }
  .a-conceptImg.concept-2 {
    margin-top: -40px;
    margin-left: -40px;
    width: 164px;
  }
  .a-conceptImg.concept-3 {
    margin-left: 50px;
    width: 195px;
  }
  .a-conceptImg.concept-4 {
    margin-top: -20px;
    margin-left: -50px;
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .a-conceptImg {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 1.2s;
    transition: 1.2s;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  .a-conceptImg.is-show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .a-conceptImg.concept-1 {
    margin-left: 80px;
    margin-top: 40px;
    width: 70%;
  }
  .a-conceptImg.concept-2 {
    margin-top: -30px;
    margin-left: 10px;
    opacity: 0.5;
    width: 164px;
  }
  .a-conceptImg.concept-3 {
    margin-top: 70px;
    width: 225px;
  }
  .a-conceptImg.concept-4 {
    margin-top: -59px;
    margin-left: -2px;
    opacity: 0.5;
    width: 170px;
  }
}

.a-featureItem + .a-featureItem {
  margin-top: 10%;
}

.a-featureHead .a-featureHeadImg {
  border-radius: 16px;
  -webkit-box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.14);
          box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .a-featureHead {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .a-featureHead .a-featureHeadImg {
    border-radius: 16px;
    -webkit-box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.14);
            box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    width: 40%;
  }
  .a-featureHead .a-featureHeadTxtBox {
    padding-left: 5%;
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .a-featureHead .a-featureHeadImg {
    margin-inline: auto;
    margin-bottom: 5%;
    width: 75%;
  }
}

.a-featureNeck p {
  font-size: 24px;
  position: relative;
  padding-inline: 4em;
}
.a-featureNeck p::before, .a-featureNeck p::after {
  color: var(--color03);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 120px;
  font-family: var(--fontSerif);
  line-height: 1;
}
.a-featureNeck p::before {
  content: "(";
  left: 0;
}
.a-featureNeck p::after {
  content: ")";
  right: 0;
}
.a-featureNeck span {
  color: #a27e69;
  font-size: 125%;
  font-weight: 600;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .a-featureNeck {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .a-featureNeck p {
    font-size: 14px;
    padding-inline: 2em;
  }
  .a-featureNeck p::before, .a-featureNeck p::after {
    font-size: 100px;
  }
  .a-featureNeck p::before {
    left: -0.1em;
  }
  .a-featureNeck p::after {
    right: -0.1em;
  }
}

.a-featureFoot {
  background-color: var(--color01);
  border-radius: 16px;
  padding: 5%;
}

.a-featureFootTItleBox {
  margin-top: -5.7em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .a-featureFootTItleBox {
    margin-top: -3.7em;
  }
}
@media only screen and (max-width: 767px) {
  .a-featureFootTItleBox {
    margin-top: -2.7em;
  }
}

.a-featureFootTitle {
  background-color: var(--color03);
  color: #fff;
  text-align: center;
  font-family: var(--fontSerif);
  font-size: 28px;
  font-weight: 600;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
  display: inline-block;
  border-radius: 50px;
  padding-inline: 1.5em;
  padding-block: 0.6em;
  margin-bottom: 1.3em;
}
@media only screen and (max-width: 767px) {
  .a-featureFootTitle {
    font-size: 18px;
    padding-inline: 1em;
  }
}

.a-featureFootBoxTitle {
  background-color: var(--color02);
  text-align: center;
  font-size: 20px;
  font-family: var(--fontSerif);
  font-weight: 600;
  line-height: 1.2;
  padding-block: 0.7em;
  padding-inline: 0.5em;
  margin-bottom: 30px;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .a-featureFootBoxTitle {
    font-size: 16px;
  }
}

.a-featureFootInner {
  display: grid;
  grid-template-columns: 0.6fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .a-featureFootInner {
    grid-template-columns: 1fr;
  }
}

.a-featureFootList {
  background-color: var(--color02);
  border-radius: 8px;
  overflow: hidden;
}
.a-featureFootList + .a-featureFootList {
  margin-top: 15px;
}
@media print, screen and (min-width: 768px) {
  .a-featureFootList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .a-featureFootList .a-featureFootListImg {
    padding-bottom: 23%;
    width: 30%;
  }
  .a-featureFootList .a-featureFootListinner {
    padding: 20px 3%;
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .a-featureFootList .a-featureFootListImg {
    padding-bottom: 65%;
  }
  .a-featureFootList .a-featureFootListinner {
    padding: 5%;
  }
}

.a-featureFootListTitle {
  font-size: 25px;
  font-family: var(--fontSerif);
  line-height: 1.2;
  text-indent: -1.6em;
  margin-left: 1.6em;
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 959px) {
  .a-featureFootListTitle {
    font-size: 21px;
  }
}

.a-featureFootListtxt {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.a-featureFootListtxt span {
  color: #CE9D8C;
}
@media only screen and (max-width: 767px) {
  .a-featureFootListtxt {
    font-size: 15px;
  }
}

.a-featureListRecommendBox {
  text-align: center;
}
.a-featureListRecommendBox .a-featureListRecommendImg {
  overflow: hidden;
  border-radius: 50%;
}
@media print, screen and (min-width: 768px) {
  .a-featureListRecommendBox {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .a-featureListRecommendBox .a-featureListRecommendImg {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .a-featureListRecommendBox .a-featureListRecommendImg {
    margin-inline: auto;
    margin-bottom: 6%;
    width: 56%;
  }
}

.a-featureListRecommendList {
  padding-left: 6%;
  text-align: left;
  display: inline-block;
  width: auto;
}
.a-featureListRecommendList li {
  display: block;
  position: relative;
  padding-left: 2em;
  margin-block: 0.5em;
  font-size: 20px;
}
.a-featureListRecommendList li::before {
  color: #C9B8A1;
  content: "\f14a";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  left: 0;
  top: 0.1em;
  font-size: 1.3em;
  line-height: 1;
  letter-spacing: 0;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .a-featureListRecommendList li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .a-featureListRecommendList {
    padding-left: 0;
  }
  .a-featureListRecommendList li {
    font-size: 16px;
  }
}

@media print, screen and (min-width: 768px) {
  .a-doctorSubBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .a-doctorSubBlock .a-doctorSubImgBox {
    width: 30%;
  }
  .a-doctorSubBlock .a-doctorSubTxtBox {
    padding-left: 5%;
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .a-doctorSubBlock .a-doctorSubImgBox {
    margin-left: -5%;
    margin-bottom: 8%;
    width: 70%;
  }
}

.a-doctorSubImg {
  -webkit-box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.a-doctorSubTxtBox dl + dl {
  margin-top: 20px;
}
.a-doctorSubTxtBox dt {
  color: #fff;
  background-color: var(--color03);
  font-family: var(--fontSerif);
  font-weight: 600;
  display: inline-block;
  padding-inline: 0.7em;
  padding-block: 0.3em;
  border-radius: 4px;
  line-height: 1;
  margin-bottom: 0.4em;
}
.a-doctorSubTxtBox dd .inner li {
  margin-block: 0.6em;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.a-doctorSubTxtBox dd .list {
  border-bottom: 1px solid var(--color03);
  margin-bottom: 1em;
  padding-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 30px;
  width: 70%;
}

.a-gallerySlide {
  width: 100%;
  margin: 0 auto;
}
.a-gallerySlide .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.a-gallerySlide .swiper-slide {
  border-radius: 16px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
@media print, screen and (min-width: 768px) {
  .a-gallerySlide .swiper-slide.swiper-slide-active {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  .a-gallerySlide .swiper-slide:not(.swiper-slide-active) {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0.5;
  }
}

.gallery-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2em;
}
.gallery-nav button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  background: none;
  border: none;
  font-size: 18px;
  color: #666;
  margin: 0 4em;
  cursor: pointer;
}
.gallery-nav button:hover {
  color: #333;
}
.gallery-nav .arwBt {
  background-color: var(--color03);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  height: 30px;
  width: 30px;
}
.gallery-nav .arwBt i {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .gallery-nav button {
    font-size: 16px;
    margin: 0 2em;
  }
  .gallery-nav .arwBt {
    height: 25px;
    width: 25px;
  }
}

/*==================================================
 * 予約〜診察の流れ
*================================================*/
:root {
  --flowW: 90px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  :root {
    --flowW: 60px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --flowW: 45px;
  }
}

.g-flowBlock {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  position: relative;
}
.g-flowBlock::before {
  content: "";
  position: absolute;
  background-color: var(--color03);
  top: calc(50% + 25px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 70px;
  height: 1px;
  width: calc(var(--flowW) * 2 * 5 + 120px);
  z-index: -1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .g-flowBlock {
    gap: 20px;
  }
  .g-flowBlock::before {
    content: none;
  }
}
@media only screen and (max-width: 767px) {
  .g-flowBlock {
    gap: 15px;
  }
  .g-flowBlock::before {
    content: none;
  }
}

.g-flowItemTitle {
  color: var(--color03);
  font-family: var(--fontNum);
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 0.3em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .g-flowItemTitle {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .g-flowItemTitle {
    font-size: 30px;
  }
}

.g-flowItemCircle {
  color: #fff;
  border-radius: 50%;
  background-color: var(--color03);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  height: calc(var(--flowW) * 2);
  width: calc(var(--flowW) * 2);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .g-flowItemCircle {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .g-flowItemCircle {
    font-size: 14px;
    height: calc(var(--flowW) * 2.3);
    width: calc(var(--flowW) * 2.3);
  }
}

.g-flow {
  position: relative;
}
.g-flow::before {
  content: "";
  position: absolute;
  background-color: var(--color03);
  left: calc(var(--flowW) / 2);
  -webkit-transition: 6s;
  transition: 6s;
  height: 0%;
  width: 1px;
  z-index: -1;
}
.g-flow.show-line::before {
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .g-flow::before {
    left: calc((var(--flowW) + 15px) / 2);
  }
}

.g-flowBox {
  display: grid;
  grid-template-columns: calc(var(--flowW) * 2) auto 370px;
  gap: 60px;
}
.g-flowBox + .g-flowBox {
  padding-top: 4%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .g-flowBox {
    grid-template-columns: calc(var(--flowW)) auto 250px;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .g-flowBox {
    grid-template-columns: calc(var(--flowW) * 1.2) auto;
    gap: 20px 10px;
  }
  .g-flowBox + .g-flowBox {
    padding-top: 15%;
  }
  .g-flowBox .g-flowBoxNumCnt {
    grid-row: 1/2;
    grid-column: 1/2;
    position: relative;
    z-index: 2;
  }
  .g-flowBox .g-flowBoxTxtBox {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}

.g-flowBoxNum {
  border-radius: 50%;
  background-color: var(--color03);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--flowW);
  width: var(--flowW);
}
.g-flowBoxNum .t-promisCardNum {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
}
.g-flowBoxNum .t-promisCardNum span {
  font-size: 13px;
  font-weight: 600;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .g-flowBoxNum .t-promisCardNum {
    font-size: 18px;
  }
  .g-flowBoxNum .t-promisCardNum span {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .g-flowBoxNum {
    height: calc(var(--flowW) + 30px);
    width: calc(var(--flowW) + 30px);
    margin-left: -5px;
  }
  .g-flowBoxNum .t-promisCardNum {
    font-size: 18px;
  }
  .g-flowBoxNum .t-promisCardNum span {
    font-size: 11px;
  }
}

.g-flowBoxImg {
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 767px) {
  .g-flowBoxImg {
    border-radius: 8px;
  }
}

.g-flowNote {
  border-radius: 16px;
  background-color: var(--color01);
  padding: 3%;
}
@media only screen and (max-width: 767px) {
  .g-flowNote {
    border-radius: 8px;
    padding: 6%;
  }
}

.g-flowNoteList li {
  margin-block: 0.8em;
  letter-spacing: 0.1em;
  text-indent: -0.6em;
  margin-left: 0.6em;
}

/*==================================================
 * 症例写真
*================================================*/
.cate {
  color: #fff;
  background-color: var(--color03);
  font-weight: 600;
  line-height: 1;
  padding-inline: 0.5em;
  padding-block: 0.2em;
  letter-spacing: 0.1em;
  border-radius: 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.cate:hover {
  color: #fff;
  background-color: var(--color04);
}

.c-cateBlcok {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .c-cateBlcok {
    grid-template-columns: 1fr;
  }
}

.c-cateBoxTITle {
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-left: 8px solid var(--color03);
  padding-block: 0.6em;
  padding-left: 1.5em;
  margin-bottom: 1em;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .c-cateBoxTITle {
    border-left-width: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-block: 0.2em;
  }
}

.c-cateBoxTitleTxt {
  font-size: 24px;
  font-family: var(--fontSerif);
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 959px) {
  .c-cateBoxTitleTxt {
    font-size: 20px;
  }
}

.c-cateBoxTitleIcon {
  background-color: var(--color03);
  border-radius: 50%;
  position: relative;
  height: 1.5em;
  width: 1.5em;
}
.c-cateBoxTitleIcon::before, .c-cateBoxTitleIcon::after {
  content: "";
  position: absolute;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 0.8em;
}
.c-cateBoxTitleIcon::before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.open .c-cateBoxTitleIcon::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}
.c-cateBoxTitleIcon::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-cateBoxBox {
  display: none;
}

.c-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .c-grid {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .c-grid {
    grid-template-columns: 0.8fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}

@media print, screen and (min-width: 768px) {
  .c-detailHeadCnt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-detailHeadCnt .c-detailImgBox {
    width: 40%;
  }
  .c-detailHeadCnt .c-detailTxtBox {
    padding-left: 5%;
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .c-detailHeadCnt .c-detailImgBox {
    margin-inline: auto;
    margin-bottom: 8%;
    width: 65%;
  }
}

.c-detailImg,
.c-detailBodyImg {
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-detailImg,
  .c-detailBodyImg {
    border-radius: 8px;
  }
}

.c-detailBody {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .c-detailBody {
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .c-detailBody {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .c-detailBody.is-slider {
    width: calc(100% + 15px);
  }
  .c-detailBody.is-slider .slick-prev {
    display: none !important;
  }
  .c-detailBody.is-slider .slick-next {
    position: absolute;
    background-color: var(--color03);
    top: 50%;
    right: calc(50% - 180px);
    border-radius: 50%;
    height: 30px;
    width: 30px;
    z-index: 2;
  }
  .c-detailBody.is-slider .slick-next::before {
    content: "\f105";
    color: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
  }
  .c-detailBody.is-slider .slick-next:hover, .c-detailBody.is-slider .slick-next:focus {
    background-color: var(--color03);
  }
}

.c-detailTable {
  border-collapse: collapse;
}
.c-detailTable th, .c-detailTable td {
  border: solid 1px var(--fontColor);
  padding: 0.5em 1.5em;
  vertical-align: middle;
}
.c-detailTable th {
  background-color: var(--color02);
  font-weight: 600;
  font-size: 20px;
  text-align: left;
  width: 17em;
}
.c-detailTable td {
  background-color: var(--color01);
  font-size: 18px;
  width: calc(100% - 17em);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .c-detailTable th, .c-detailTable td {
    padding: 0.4em 0.7em;
  }
  .c-detailTable th {
    font-size: 18px;
    width: 12em;
  }
  .c-detailTable td {
    font-size: 16px;
    width: calc(100% - 12em);
  }
}
@media only screen and (max-width: 767px) {
  .c-detailTable th, .c-detailTable td {
    padding: 0.4em 0.7em;
  }
  .c-detailTable th {
    font-size: 16px;
    width: 9em;
  }
  .c-detailTable td {
    font-size: 14px;
    width: calc(100% - 9em);
  }
}

.c-detailFootInfo .c-detailFootInfoDl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-detailFootInfo .c-detailFootInfoDl + .c-detailFootInfoDl {
  margin-top: 1em;
}
.c-detailFootInfo .c-detailFootInfoDl dt, .c-detailFootInfo .c-detailFootInfoDl dd {
  font-family: var(--fontSerif);
}
.c-detailFootInfo .c-detailFootInfoDl dt {
  line-height: 1.2;
  width: 10em;
}
.c-detailFootInfo .c-detailFootInfoDl dd {
  font-size: 14px;
  width: calc(100% - 10em);
}
@media only screen and (max-width: 767px) {
  .c-detailFootInfo .c-detailFootInfoDl dt {
    width: 7em;
  }
  .c-detailFootInfo .c-detailFootInfoDl dd {
    font-size: 12px;
    width: calc(100% - 7em);
  }
}

/*==================================================
 * 施術メニュー / 料金
*================================================*/
.m-pickupSlideInner {
  padding-left: 60px;
}
@media only screen and (max-width: 767px) {
  .m-pickupSlideInner {
    padding-left: 30px;
  }
}
.m-pickupSlideInner .t-menuItemlink {
  padding: 3% 5%;
  padding-bottom: 2%;
}
.m-pickupSlideInner .t-pickItemTag {
  font-size: 15px;
  right: 20px;
}
.m-pickupSlideInner .t-pickItem_num {
  font-size: clamp(24px, 2.9vw, 36px);
}
.m-pickupSlideInner .t-menuItem_name {
  font-size: clamp(20px, 2.1vw, 26px);
}
.m-pickupSlideInner .t-pickItem_title {
  font-size: 21px;
}
.m-pickupSlideInner .t-menuItem_more {
  margin-top: auto;
  gap: 15px;
}
.m-pickupSlideInner .t-menuItem_moretTxt {
  font-size: 15px;
}
.m-pickupSlideInner .t-menuItem_moreArw {
  width: 0.8em;
}
@media only screen and (max-width: 767px) {
  .m-pickupSlideInner .t-pickItemTag {
    font-size: 14px;
  }
  .m-pickupSlideInner .t-menuItemlink {
    padding: 10% 5% 2%;
  }
  .m-pickupSlideInner .t-pickItem_title {
    font-size: 18px;
  }
}
.m-pickupSlideInner .slick-prev,
.m-pickupSlideInner .slick-next {
  position: absolute;
  background-color: var(--color03);
  top: 50%;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  z-index: 2;
}
.m-pickupSlideInner .slick-prev::before,
.m-pickupSlideInner .slick-next::before {
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
}
.m-pickupSlideInner .slick-prev:hover, .m-pickupSlideInner .slick-prev:focus,
.m-pickupSlideInner .slick-next:hover,
.m-pickupSlideInner .slick-next:focus {
  background-color: var(--color03);
}
.m-pickupSlideInner .slick-prev {
  left: 40px;
}
.m-pickupSlideInner .slick-prev::before {
  content: "\f104";
}
.m-pickupSlideInner .slick-next {
  right: 40px;
}
.m-pickupSlideInner .slick-next::before {
  content: "\f105";
}
@media only screen and (max-width: 767px) {
  .m-pickupSlideInner .slick-prev {
    left: 10px;
  }
  .m-pickupSlideInner .slick-next {
    right: 30px;
  }
}

.menuBlockTab {
  border-radius: 16px;
  overflow: hidden;
}

.menuTabBtnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menuTabBtnBox.child {
  padding-inline: 0.6em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuTabBtnBox.child {
    padding-inline: 0;
    gap: 8px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .menuTabBtnBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .menuTabBtnBox.child {
    padding-inline: 0;
    gap: 8px 10px;
  }
}

.menuTabBtn {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  gap: 10px;
}
.parents .menuTabBtn {
  width: 50%;
}
.parents .menuTabBtn.cate1 {
  background-color: #72848C;
  color: #fff;
}
.parents .menuTabBtn.cate2 {
  background-color: #A89A87;
  color: #fff;
}
.child .menuTabBtn {
  border-radius: 8px 8px 0 0;
  background-color: #fff;
  color: var(--fontColor);
  padding: 10px 15px;
}
.child .menuTabBtn.active {
  background-color: #8D989B;
  color: #fff;
}
.menuBlockTabInner[data-index="1"] .child .menuTabBtn.active {
  background-color: #7F6E5E;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuTabBtn {
    padding: 15px;
  }
  .child .menuTabBtn {
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .menuTabBtn {
    padding: 15px 8px;
    gap: 5px;
  }
  .child .menuTabBtn {
    border-radius: 8px;
    padding: 10px 8px;
    width: 48%;
  }
}

.menuTabBtnIcon {
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  width: 50px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuTabBtnIcon {
    height: 35px;
    width: 35px;
  }
  .child .menuTabBtnIcon {
    height: 25px;
    width: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .menuTabBtnIcon {
    height: 20px;
    width: 20px;
  }
}

.menuTabBtnOpener {
  margin-left: auto;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 35px;
  width: 35px;
}
.menuTabBtnOpener::before, .menuTabBtnOpener::after {
  content: "";
  position: absolute;
  background-color: var(--color04);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 15px;
}
.menuTabBtnOpener::before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.active .menuTabBtnOpener::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.menuTabBtnOpener::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuTabBtnOpener {
    height: 20px;
    width: 20px;
  }
  .menuTabBtnOpener::before, .menuTabBtnOpener::after {
    height: 1px;
    width: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .menuTabBtnOpener {
    height: 15px;
    width: 15px;
  }
  .menuTabBtnOpener::before, .menuTabBtnOpener::after {
    height: 1px;
    width: 8px;
  }
}
.parents .menuTabBtn .menuTabBtnOpener::before, .parents .menuTabBtn .menuTabBtnOpener::after {
  background-color: var(--color03);
}
.child .menuTabBtnOpener {
  background-color: var(--color04);
}
.child .menuTabBtnOpener::before, .child .menuTabBtnOpener::after {
  background-color: #fff;
}
.menuBlockTabInner[data-index="1"] .child .menuTabBtnOpener {
  background-color: var(--color03);
}

.menuTabBtnTxt {
  font-size: 24px;
  font-family: var(--fontSerif);
  font-weight: 600;
  line-height: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .child .menuTabBtnTxt {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .menuTabBtnTxt {
    font-size: 17px;
    letter-spacing: -0.03em;
  }
  .child .menuTabBtnTxt {
    font-size: 15px;
    white-space: nowrap;
  }
}

.menuBlockTabInner {
  background-color: #72848C;
  padding: 20px 15px;
  display: none;
}
.menuBlockTabInner[data-index="1"] {
  background-color: #A89A87;
}
.menuBlockTabInner.is-active {
  display: block;
}

.menuTabContentsBox {
  border-radius: 8px;
  background-color: #8D989B;
}
.menuBlockTabInner[data-index="1"] .menuTabContentsBox {
  background-color: #7F6E5E;
}

.menuTabContentslist:not(.is-active) {
  display: none;
}
.menuTabContentslist ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px;
  gap: 5px 20px;
}
.menuTabContentslist li {
  padding-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 10px;
}
.menuTabContentslist li a {
  display: inline-block;
  line-height: 1.4;
  color: #fff;
  padding-left: 1em;
  position: relative;
  font-size: 20px;
  font-weight: 600;
}
.menuTabContentslist li a::before {
  content: "";
  position: absolute;
  background-color: var(--color04);
  border-radius: 50%;
  left: 0;
  top: 0.3em;
  width: 0.7em;
  height: 0.7em;
}
.menuBlockTabInner[data-index="1"] .menuTabContentslist li a::before {
  background-color: var(--color03);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuTabContentslist ul {
    padding: 20px 15px;
  }
  .menuTabContentslist li a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .menuTabContentslist ul {
    padding: 15px 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .menuTabContentslist li a {
    font-size: 14px;
  }
}

.menuBlockListCnt {
  display: none;
}
.menuBlockListCnt.is-active {
  display: block;
}

.menuItemTitleBox {
  cursor: pointer;
  background-color: var(--color04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 30px;
  border-radius: 16px;
}
.treatmentItem .menuItemTitleBox {
  background-color: var(--color03);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuItemTitleBox {
    padding: 15px;
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .menuItemTitleBox {
    padding: 15px 10px;
    gap: 10px;
  }
}

.menuItemTitleIcon {
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 75px;
  width: 75px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuItemTitleIcon {
    height: 55px;
    width: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .menuItemTitleIcon {
    height: 40px;
    width: 40px;
  }
}

.menuItemTitletxt {
  color: #fff;
  font-size: 36px;
  font-family: var(--fontSerif);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuItemTitletxt {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .menuItemTitletxt {
    font-size: 20px;
    width: calc(100% - 60px);
  }
}

.menuItemTitleOpener {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.menuItemTitleOpener .menuItemTitleOpenerTxt {
  font-size: 18px;
  color: #fff;
}
.menuItemTitleOpener .menuItemTitleOpenerIcon {
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 35px;
  width: 35px;
}
.menuItemTitleOpener .menuItemTitleOpenerIcon::before, .menuItemTitleOpener .menuItemTitleOpenerIcon::after {
  content: "";
  position: absolute;
  background-color: var(--color04);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 15px;
}
.menuItemTitleOpener .menuItemTitleOpenerIcon::before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.active .menuItemTitleOpener .menuItemTitleOpenerIcon::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.menuItemTitleOpener .menuItemTitleOpenerIcon::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuItemTitleOpener .menuItemTitleOpenerIcon {
    height: 20px;
    width: 20px;
  }
  .menuItemTitleOpener .menuItemTitleOpenerIcon::before, .menuItemTitleOpener .menuItemTitleOpenerIcon::after {
    height: 1px;
    width: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .menuItemTitleOpener .menuItemTitleOpenerIcon {
    height: 15px;
    width: 15px;
  }
  .menuItemTitleOpener .menuItemTitleOpenerIcon::before, .menuItemTitleOpener .menuItemTitleOpenerIcon::after {
    height: 1px;
    width: 8px;
  }
}
.treatmentItem .menuItemTitleOpener .menuItemTitleOpenerIcon::before, .treatmentItem .menuItemTitleOpener .menuItemTitleOpenerIcon::after {
  background-color: var(--color03);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuItemTitleOpener .menuItemTitleOpenerTxt {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .menuItemTitleOpener .menuItemTitleOpenerIcon {
    height: 20px;
    width: 20px;
  }
}

.menuItemInner {
  display: none;
}

.menuItemDl {
  padding-block: 1em;
  border-bottom: 1px solid var(--color03);
}

.menuItemDt {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.menuItemDtTxt {
  font-size: 24px;
  letter-spacing: 0.13em;
  font-weight: 600;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuItemDtTxt {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .menuItemDtTxt {
    font-size: 18px;
  }
}

.menuItemDtOpener {
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 35px;
  width: 35px;
  margin-inline: auto 20px;
  background-color: var(--color04);
}
.menuItemDtOpener::before, .menuItemDtOpener::after {
  content: "";
  position: absolute;
  background-color: var(--color04);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 15px;
}
.menuItemDtOpener::before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.active .menuItemDtOpener::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.menuItemDtOpener::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuItemDtOpener {
    height: 20px;
    width: 20px;
  }
  .menuItemDtOpener::before, .menuItemDtOpener::after {
    height: 1px;
    width: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .menuItemDtOpener {
    height: 15px;
    width: 15px;
  }
  .menuItemDtOpener::before, .menuItemDtOpener::after {
    height: 1px;
    width: 8px;
  }
}
.menuItemDtOpener::before, .menuItemDtOpener::after {
  background-color: #fff;
}
.treatmentItem .menuItemDtOpener {
  background-color: var(--color03);
}
@media only screen and (max-width: 767px) {
  .menuItemDtOpener {
    margin-inline: auto 10px;
    height: 20px;
    width: 20px;
  }
}

.menuItemDd {
  display: none;
}

.menuItemDdinner {
  padding-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 10px;
}
.menuItemDdinner .cate {
  font-size: 18px;
  display: block;
  padding-block: 0.9em;
  width: 100%;
}
@media only screen and (max-width: 959px) {
  .menuItemDdinner .cate {
    font-size: 16px;
  }
}

.menuModalBlockInner {
  display: none;
  background-color: var(--color01);
  padding: 60px;
  border-radius: 16px;
  overflow: hidden;
  margin-inline: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 1190px;
  max-height: 90vh;
  overflow-y: auto;
  width: calc(100% - 30px);
  z-index: 10000;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuModalBlockInner {
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .menuModalBlockInner {
    padding: 20px 15px;
  }
}

.menuModalClose {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 40px;
}
.menuModalClose i {
  font-size: 50px;
  line-height: 1;
  font-weight: 200;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuModalClose {
    top: 15px;
    right: 20px;
  }
  .menuModalClose i {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .menuModalClose {
    top: 7px;
    right: 12px;
  }
  .menuModalClose i {
    font-size: 34px;
  }
}

.menuItemDdinner .menuInfoTable {
  display: none;
}

.menuItemDdinner .menuNote {
  display: none;
}

.menuModalTable table {
  background-color: var(--color01);
  width: 100%;
}
.menuModalTable table th,
.menuModalTable table td {
  border: solid 1px var(--color04);
  width: 30%;
}
.menuModalTable table th:nth-child(2),
.menuModalTable table td:nth-child(2) {
  width: 40%;
}
.menuModalTable table th {
  background-color: var(--color02);
  padding: 0.1em;
  font-size: 18px;
}
.menuModalTable table td {
  padding: 0.5em 1.2em;
  font-size: 15px;
}
.menuModalTable table td:last-of-type {
  text-align: right;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menuModalTable .tableBox {
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .menuModalTable table {
    width: 768px;
  }
  .menuModalTable table th {
    font-size: 16px;
  }
  .menuModalTable table td {
    font-size: 14px;
    padding: 0.4em 1em;
  }
  .menuModalTable table td:nth-child(2) {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .menuModalTable .tableBox {
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .menuModalTable table {
    width: 768px;
  }
  .menuModalTable table th {
    font-size: 16px;
  }
  .menuModalTable table td {
    font-size: 12px;
    padding: 0.2em 1em;
  }
  .menuModalTable table td:nth-child(2) {
    font-size: 12px;
  }
}

.menuOptionItem + .menuOptionItem {
  border-top: 1px solid var(--color03);
  margin-top: 1em;
  padding-top: 1em;
}
.menuOptionItem:last-of-type {
  border-bottom: 1px solid var(--color03);
  margin-bottom: 1em;
  padding-bottom: 1em;
}

.menuOptionItemLink {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
}

.menuOptionTxt {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .menuOptionTxt {
    font-size: 16px;
  }
}

.menuOptionIcon {
  border-radius: 50%;
  background-color: var(--color05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 30px;
  width: 30px;
}
.menuOptionIcon i {
  color: #fff;
}
.menuOptionItemLink:hover .menuOptionIcon {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
@media only screen and (max-width: 767px) {
  .menuOptionIcon {
    height: 25px;
    width: 25px;
  }
}

@media only screen and (max-width: 959px) {
  .menuSingleTable {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}

.scheduleNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 120px;
}

.scheduleArw {
  background-color: var(--color03);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  width: 30px;
}
.scheduleArw i {
  color: #fff;
}

.schedulePrev,
.scheduleNext {
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.schedulePrev.swiper-button-disabled,
.scheduleNext.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.scheduleSwiperImg {
  -webkit-box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.04);
          box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.04);
}

.topBannerGuide {
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  text-align: center;
  max-width: 400px;
  width: 100%;
  z-index: 2;
  padding-block: 2.2em;
  padding-inline: 1em;
}
.topBannerGuide::before {
  content: "";
  position: absolute;
  background-color: var(--color05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0;
  left: 0;
  opacity: 0.45;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.topBannerGuide:hover::before {
  opacity: 0.65;
}

.bannerTitleEn {
  color: #fff;
  font-size: 56px;
  line-height: 1;
  font-family: var(--fontEn);
}

.bannerTitleJp {
  color: #fff;
  font-size: 18px;
}

/* ==========================================================================
   印刷用
   ========================================================================== */
/* -------------------------------------------------------------- 
 
 Hartija CSS Print Framework -MIT License
   * Version:   1.0
 
-------------------------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
    /*chrome用*/
    zoom: 0.8;
    border-top: none;
  }
  .bgImg {
    display: list-item; /* 該当箇所の表示方法をlist-itemに */
    list-style-image: url(print_bg.png); /* 表示させたい画像 */
    list-style-position: inside; /* マーカーの位置を内側に */
  }
  header {
    display: none;
  }
  footer {
    display: none;
  }
  .footerTelSp {
    display: none;
  }
  .menu-btn {
    display: none;
  }
  .fixBar {
    display: none !important;
  }
  .parallax-mirror {
    display: none;
    height: 0 !important;
  }
  .rellax {
    -webkit-transform: none !important;
            transform: none !important;
  }
  .PrintHidden {
    display: none;
  }
  .printArea {
    margin: 0;
    padding: 0;
  }
}