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

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


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

*/
/* ----------------------------------
使う↓
---------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Unicase:wght@300;400;500;600;700&family=Shippori+Mincho:wght@400;500;600;700;800&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=Shippori+Mincho&display=swap");
:root {
  --mainColor: #9E6995;
  --subColor: #C2A276;
  --grayColor: #898188;
}

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

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

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

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

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

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

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

.bgGrayColorLight {
  background-color: #f9f9f9;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

.bgBlueLight {
  background-color: #ECF0F3;
}

/*フォント系*/
:root {
  --fontEn: "Cormorant Unicase", serif;
}

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

:root {
  --fontJp: "Shippori Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "游明朝体", "MS PMincho", "ＭＳ Ｐ明朝", serif;
}

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

.serif {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "游明朝体", "MS PMincho", "ＭＳ Ｐ明朝", serif;
}

:root {
  --fontColor: #2C2C2C;
}

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(--mainColor);
}
.linkA:hover {
  color: var(--mainColor);
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px), screen and (min-width: 960px) {
  .tab {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .notTab {
    display: none !important;
  }
}
@media screen and (min-width: 1280px) {
  .desk {
    display: none !important;
  }
}
@media screen and (max-width: 1279px) {
  .notDesk {
    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;
  }
}

@media only screen and (max-width: 767px) {
  .mbSp0 {
    margin-bottom: 0 !important;
  }
}
.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・グリッド系*/
.grid {
  display: grid;
}

.rowGap-10 {
  row-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .rowGap-10 {
    row-gap: 5px;
  }
}

.rowGap-20 {
  row-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .rowGap-20 {
    row-gap: 10px;
  }
}

.rowGap-30 {
  row-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .rowGap-30 {
    row-gap: 15px;
  }
}

.rowGap-40 {
  row-gap: 40px;
}
@media only screen and (max-width: 767px) {
  .rowGap-40 {
    row-gap: 20px;
  }
}

.rowGap-50 {
  row-gap: 50px;
}
@media only screen and (max-width: 767px) {
  .rowGap-50 {
    row-gap: 25px;
  }
}

.rowGap-60 {
  row-gap: 60px;
}
@media only screen and (max-width: 767px) {
  .rowGap-60 {
    row-gap: 30px;
  }
}

.rowGap-70 {
  row-gap: 70px;
}
@media only screen and (max-width: 767px) {
  .rowGap-70 {
    row-gap: 35px;
  }
}

.rowGap-80 {
  row-gap: 80px;
}
@media only screen and (max-width: 767px) {
  .rowGap-80 {
    row-gap: 40px;
  }
}

.rowGap-90 {
  row-gap: 90px;
}
@media only screen and (max-width: 767px) {
  .rowGap-90 {
    row-gap: 45px;
  }
}

.rowGap-100 {
  row-gap: 100px;
}
@media only screen and (max-width: 767px) {
  .rowGap-100 {
    row-gap: 50px;
  }
}

.columnGap-10 {
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .columnGap-10 {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
}

.columnGap-20 {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .columnGap-20 {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

.columnGap-30 {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .columnGap-30 {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}

.columnGap-40 {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media only screen and (max-width: 767px) {
  .columnGap-40 {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

.columnGap-50 {
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
@media only screen and (max-width: 767px) {
  .columnGap-50 {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
}

.columnGap-60 {
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media only screen and (max-width: 767px) {
  .columnGap-60 {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}

.columnGap-70 {
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
}
@media only screen and (max-width: 767px) {
  .columnGap-70 {
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
}

.columnGap-80 {
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}
@media only screen and (max-width: 767px) {
  .columnGap-80 {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}

.columnGap-90 {
  -webkit-column-gap: 90px;
     -moz-column-gap: 90px;
          column-gap: 90px;
}
@media only screen and (max-width: 767px) {
  .columnGap-90 {
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
  }
}

.columnGap-100 {
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
}
@media only screen and (max-width: 767px) {
  .columnGap-100 {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}

.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;
}

.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%;
}

:root {
  --cntWide: 60px;
}

.cnt {
  width: 100%;
  max-width: calc(1280px - var(--cntWide) * 2 + 30px);
  margin-inline: auto;
  padding-inline: 15px;
}

.cntS {
  max-width: calc(1280px - var(--cntWide) * 8 + 30px);
  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: calc(1280px - var(--cntWide) * 6 + 30px);
  margin-inline: auto;
  padding-inline: 15px;
}

.cntL {
  max-width: calc(1280px - var(--cntWide) * 4 + 30px);
  margin-inline: auto;
  padding-inline: 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;
}

.padding-none {
  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: 8px;
}

.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;
}

/*==================================================
 * 独自クラス（このサイトだけ）
 *================================================*/
.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
 *================================================*/
/*------------モーダルウィンドウ------------*/
/*オーバーレイメニュー*/
html.open {
  overflow-y: hidden;
}

/*ハンバーガーメニュー*/
@media only screen and (max-width: 767px) {
  .menu-btn {
    background-color: var(--mainColor);
    border-radius: 50%;
    border: none;
    position: relative;
    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;
    width: 40px;
    padding-inline: 6px;
    z-index: 1000;
  }
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --menuTrigeHeight: 22px;
}

.menu-trigger {
  position: relative;
  height: var(--menuTrigeHeight);
  width: 23px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 4px;
}
.menu-trigger span:nth-of-type(2) {
  top: calc(var(--menuTrigeHeight) / 2);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 4px;
}
.menu-trigger.active span {
  background-color: #fff;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 0.8s forwards;
  animation: active-menu-bar02 0.8s forwards;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(45deg);
          transform: translateY(-7px) rotate(45deg);
}
.menu-trigger.active span:nth-of-type(4) {
  background: none !important;
}

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
/*------------モーダルウィンドウ終わり------------*/
/*==================================================
 * footer
 *================================================*/
/*==================================================
 * トップページ
 *================================================*/
/*==================================================
 * 下層ページ
 *================================================*/
/*共通部分------------------------------------*/
#pageHeader .pageHeaderRipple {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(var(--rippleW) - (var(--rippleW) + var(--rippleW) / 2.5));
  z-index: -1;
}

.pageHeaderBlock {
  padding-block: 16.5vw 9vw;
}

.pageHeaderTitleEn {
  color: var(--subColor);
  font-family: var(--fontEn);
  font-size: clamp(56px, 7.5vw, 96px);
  line-height: 1;
  margin-bottom: 0.1em;
}

.pageHeaderTitleJa {
  color: var(--subColor);
  font-size: clamp(16px, 1.9vw, 24px);
  line-height: 1;
}

/*パンくず*/
.breadcrumbs {
  margin-block: 10px;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs {
    margin-block: 3px;
  }
}

.breadcrumbsInner a {
  text-decoration: underline;
}
.breadcrumbsInner span {
  font-size: 18px;
  font-family: var(--fontJp);
  margin-inline: 0.1em;
}
@media only screen and (max-width: 959px) {
  .breadcrumbsInner span {
    font-size: 12px;
  }
}

/*パンくず終わり*/
/*新着情報------------------------------------*/
.topicsItemBox > div {
  gap: 5px 10px;
}

.topicsItemImgBox {
  overflow: hidden;
}
.topicsItemImgBox img {
  aspect-ratio: 2/1.32;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topicsCard:hover .topicsItemImgBox img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.topTopicsItemTitle {
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.4;
}
.topicsCard:hover .topTopicsItemTitle {
  color: var(--mainColor);
}

.otherNewsBlockTitle {
  background-color: var(--mainColor);
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  padding: 0.3em 1.2em;
  letter-spacing: 0.08em;
}

/*お問い合わせページ------------------------------------*/
.cform {
  width: 100%;
  margin-inline: auto;
}
.cform tr {
  margin-bottom: 1em;
  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;
  padding-right: 15px;
  width: 300px;
}
.cform tr td {
  width: calc(100% - 300px);
}
.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] {
  border: 1px solid #BDBBBC;
  background-color: #F9F9F9;
  width: 100%;
  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);
  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;
  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%;
  padding-top: 5%;
  border-top: 1px solid #BDBBBC;
}

.singleColumnTitle {
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.15em;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .singleColumnTitle {
    font-size: 20px;
  }
}

.cateCss {
  display: inline-block;
  font-size: 14px;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  padding: 0.3em 0.6em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .cateCss {
    font-size: 11px;
  }
}

.singleColumnInfoUl .date {
  margin-right: 0.6em;
  font-size: 18px;
  font-family: var(--fontEn);
  color: var(--mainColor);
}
.singleColumnInfoUl .cateUl {
  display: inline-block;
}
.singleColumnInfoUl .cateUl li {
  display: inline-block;
  font-size: 14px;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  padding: 0.3em 0.6em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 11px;
  }
}
.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%;
  }
}

/*この記事を書いた人*/
.writerBlock {
  background-color: #fff;
  border-radius: 8px;
  padding-inline: 30px;
  padding-block: 40px;
}
@media only screen and (max-width: 767px) {
  .writerBlock {
    padding: 20px;
  }
}

.writerBlockTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.writerBlockTitle .writerBlockTitleEn {
  color: var(--subColor);
  font-family: var(--fontEn);
  font-size: 32px;
}
.writerBlockTitle .writerBlockTitleJa {
  color: var(--subColor);
  font-size: 18px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .writerBlockTitle {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .writerBlockTitle {
    gap: 10px;
  }
  .writerBlockTitle .writerBlockTitleEn {
    font-size: 26px;
  }
  .writerBlockTitle .writerBlockTitleJa {
    font-size: 16px;
  }
}

.writerBlockInner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.writerBlockInner .writerBlockImgBox {
  aspect-ratio: 1/1;
  width: 200px;
}
.writerBlockInner .writerBlockImgBox .writerBlockImg {
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
  width: 100%;
}
.writerBlockInner .writerBlockTxBox {
  padding-left: 3%;
  width: calc(100% - 200px);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .writerBlockInner .writerBlockImgBox {
    width: 130px;
  }
  .writerBlockInner .writerBlockTxBox {
    width: calc(100% - 130px);
  }
}
@media only screen and (max-width: 767px) {
  .writerBlockInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .writerBlockInner .writerBlockImgBox {
    margin-inline: auto;
    margin-bottom: 5%;
    width: 55%;
  }
  .writerBlockInner .writerBlockTxBox {
    padding-left: 0;
    width: 100%;
  }
}

.writerBlockInTitle {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 1em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .writerBlockInTitle {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .writerBlockInTitle {
    font-size: 16px;
    margin-bottom: 0.5em;
  }
}

.writerBlockInTx {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .writerBlockInTx {
    font-size: 12px;
  }
}

.writerBlockSns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.writerBlockSns li a {
  display: inline-block;
  background-color: #DBC3D7;
  line-height: 1;
  padding-inline: 1em;
  padding-block: 0.4em;
}
@media only screen and (max-width: 959px) {
  .writerBlockSns li a {
    font-size: 13px;
  }
}

/*次のページを見る*/
.singlePageLinkBox + .singlePageLinkBox {
  margin-left: 5em;
}
@media only screen and (max-width: 767px) {
  .singlePageLinkBox + .singlePageLinkBox {
    margin-left: 2.5em;
  }
}
.singlePageLinkBox + .singlePageLink.next {
  margin-left: 5em;
}
@media only screen and (max-width: 767px) {
  .singlePageLinkBox + .singlePageLink.next {
    margin-left: 2.5em;
  }
}

.singlePageLink.prev + .singlePageLinkBox {
  margin-left: 5em;
}
@media only screen and (max-width: 767px) {
  .singlePageLink.prev + .singlePageLinkBox {
    margin-left: 2.5em;
  }
}

.cmNewsText {
  padding-top: 10px;
  margin-top: 15px;
  border-top: 1px solid #afafaf;
  font-size: 14px;
}
.singlePageLinkBox.next .cmNewsText {
  text-align: left;
}

.singlePageLink {
  border: 1px solid var(--mainColor);
  padding-block: 0.8em;
  color: var(--mainColor);
  display: inline-block;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.singlePageLink::before {
  content: "";
  position: absolute;
  top: 50%;
  background: url(../img/longArw.svg) center/cover no-repeat;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 4px;
  width: 48px;
}
.singlePageLink.prev {
  padding-inline: 8em 1.5em;
}
.singlePageLink.prev::before {
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
  -webkit-transform-origin: right;
          transform-origin: right;
  left: 0;
}
.singlePageLink.next {
  padding-inline: 1.5em 8em;
}
.singlePageLink.next::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  right: 0;
}
.singlePageLink:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.singlePageLink:hover::before {
  -webkit-filter: invert(100%) sepia(100%) saturate(38%) hue-rotate(321deg) brightness(110%) contrast(110%);
          filter: invert(100%) sepia(100%) saturate(38%) hue-rotate(321deg) brightness(110%) contrast(110%);
}
@media only screen and (max-width: 959px) {
  .singlePageLink {
    font-size: 13px;
  }
  .singlePageLink::before {
    width: 28px;
  }
  .singlePageLink.prev {
    padding-inline: 5em 1.5em;
  }
  .singlePageLink.next {
    padding-inline: 1.5em 5em;
  }
}

.otherNewsTitle {
  background-color: var(--mainColor);
  color: #fff;
  font-size: 22px;
  font-family: serif;
  padding: 0.3em 1.3em;
  border-radius: 16px;
  margin-bottom: 4%;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .otherNewsTitle {
    font-size: 20px;
    padding: 0.6em 1.3em;
  }
}

.otherNews {
  margin-bottom: 5%;
}
.otherNews li + li {
  margin-top: 3%;
}
@media only screen and (max-width: 767px) {
  .otherNews li + li {
    margin-top: 5%;
  }
}

@media only screen and (max-width: 767px) {
  .otherNewsBlock {
    background-color: #fff;
    display: block;
    border-radius: 8px;
    padding: 5% 0;
  }
}

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

.otherNewsBlockTextBox {
  padding-left: 5%;
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .otherNewsBlockTextBox {
    padding-left: 0;
    width: 100%;
  }
}

/*アーカイブページ------------------------------------*/
.cmNewsListUl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 30px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.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 {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
  .cmNewsListUl a .columnCardTitle {
    font-size: 14px;
  }
}

.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 {
  border: 1px solid var(--mainColor);
  border-radius: 50%;
  text-align: center;
  color: var(--mainColor);
  font-size: 24px;
  line-height: 1;
  font-family: var(--fontEn);
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  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;
  width: 40px;
}
.pagenation ul li.active:hover,
.pagenation ul li a:hover {
  color: #fff;
  background-color: var(--mainColor);
}
.pagenation ul li.active {
  color: #fff;
  background-color: var(--mainColor);
}
.pagenation ul .prev a,
.pagenation ul .next a {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.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);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-top: 2px solid var(--mainColor);
  border-right: 2px solid var(--mainColor);
  height: 10px;
  width: 10px;
}
.pagenation ul .prev a:hover::before,
.pagenation ul .next a:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
.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-size: 18px;
  font-family: var(--fontEn);
  color: var(--mainColor);
}
.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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.sidebarCategoryBlock li a {
  display: inline-block;
  font-size: 14px;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  padding: 0.3em 0.6em;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .sidebarCategoryBlock li a {
    font-size: 11px;
  }
}
.sidebarCategoryBlock li a:hover {
  opacity: 0.7;
}

.sidebarTitle {
  font-family: var(--fontEn);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 5%;
}
.sidebarTitle span {
  line-height: 1.4;
  font-size: 29px;
  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 {
  contain: paint;
}

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

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

.mainBg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: -1;
}
.mainBg .mainBgIn {
  opacity: 0.6;
  height: 100%;
  width: 100%;
}

.widgetBlock {
  position: fixed;
  bottom: 10%;
  right: -20px;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  .widgetBlock {
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.widgetBtn {
  overflow: hidden;
  display: block;
  padding-inline: 30px 20px;
  padding-block: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.widgetBtn.__reserve {
  background-color: var(--mainColor);
}
.widgetBtn.__line {
  background-color: var(--subColor);
}
.widgetBtn p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
}
.widgetBtn p small {
  font-size: 14px;
  line-height: 1.2;
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .widgetBtn {
    border-radius: 50px 0 0 50px;
  }
  .widgetBtn:hover {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  .widgetBtn.__line {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .widgetBtn {
    padding-inline: 5px;
    padding-block: 10px;
    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;
  }
  .widgetBtn p {
    font-size: 14px;
  }
  .widgetBtn p small {
    font-size: 12px;
  }
}

.secTitleEn {
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 0.9;
  margin-bottom: 0.2em;
}
.secTitleEn.large {
  font-size: clamp(28px, 4.4vw, 56px);
}

.secTitleJa.middle {
  font-size: 20px;
}
.secTitleJa.large {
  font-size: clamp(24px, 3.8vw, 48px);
}
@media only screen and (max-width: 767px) {
  .secTitleJa.middle {
    font-size: 16px;
  }
  .secTitleJa.large {
    line-height: 1.2;
  }
}

.commonTitle {
  font-size: clamp(22px, 2.9vw, 36px);
  margin-bottom: 0.8em;
  line-height: 1.4;
}
.commonTitle.small {
  font-size: clamp(18px, 2.2vw, 28px);
}
.commonTitle.large {
  font-size: clamp(24px, 3.3vw, 42px);
}
.commonTitle.exlarge {
  font-size: clamp(28px, 4.4vw, 56px);
}
.commonTitle small {
  font-size: clamp(15px, 1.9vw, 24px);
  display: inline-block;
  line-height: 1.4;
}

.commonTx {
  font-size: 16px;
}
.commonTx.middle {
  font-size: 18px;
}
.commonTx.large {
  font-size: 19px;
}
.commonTx.exlarge {
  font-size: 24px;
}
@media only screen and (max-width: 959px) {
  .commonTx {
    font-size: 13px;
  }
  .commonTx.middle {
    font-size: 14px;
  }
  .commonTx.large {
    font-size: 15px;
  }
  .commonTx.exlarge {
    font-size: 17px;
  }
}

.commonBtn {
  border: 1px solid var(--mainColor);
  display: inline-grid;
  grid-template-columns: 16px auto 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--mainColor);
  padding-inline: 1.3em;
  padding-block: 0.6em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.commonBtn .commonBtnIcon {
  max-width: 16px;
}
.commonBtn .commonBtnTx {
  font-family: var(--fontEn);
  font-size: 20px;
}
.commonBtn .commonBtnArw {
  max-width: 48px;
}
.commonBtn img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-filter: var(--mainColorSvg);
          filter: var(--mainColorSvg);
}
.commonBtn:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.commonBtn:hover img {
  -webkit-filter: var(--whiteSvg);
          filter: var(--whiteSvg);
}
@media only screen and (max-width: 767px) {
  .commonBtn .commonBtnTx {
    font-size: 16px;
    line-height: 1.2;
  }
}

:root {
  --whiteSvg: invert(100%) sepia(100%) saturate(38%) hue-rotate(321deg) brightness(110%) contrast(110%);
  --mainColorSvg: invert(73%) sepia(3%) saturate(7182%) hue-rotate(252deg) brightness(64%) contrast(79%);
}

.white-svg {
  -webkit-filter: var(--whiteSvg);
          filter: var(--whiteSvg);
}

.mainColor-svg {
  -webkit-filter: var(--mainColorSvg);
          filter: var(--mainColorSvg);
}

.ripple {
  --rippleW: 1470px;
  position: absolute;
  width: var(--rippleW);
  z-index: 2;
}
.ripple span {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  aspect-ratio: 1/1;
  border: 3px solid #fff;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: ripple-anim 15s linear infinite;
          animation: ripple-anim 15s linear infinite;
}
.ripple span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.ripple span:nth-child(2) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.ripple span:nth-child(3) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.ripple span:nth-child(4) {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}
.ripple span:nth-child(5) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
@media only screen and (max-width: 767px) {
  .ripple {
    --rippleW: 735px;
  }
}

@-webkit-keyframes ripple-anim {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@keyframes ripple-anim {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
/*==================================================
 * ヘッダー
*================================================*/
:root {
  --headerH: 85px;
}
@media only screen and (max-width: 767px) {
  :root {
    --headerH: 50px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: var(--headerH);
  width: 100%;
  z-index: 999;
}
header.is_active {
  background: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 767px) {
  header {
    background: white;
  }
}

.headerBlock {
  max-width: 1280px;
  margin-inline: auto;
  -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: 10px;
}
@media only screen and (max-width: 959px) {
  .headerBlock {
    padding-inline: 15px;
    padding-block: 5px;
  }
}

.headerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerInner {
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .headerInner {
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: var(--headerH);
    left: 0;
    right: 0;
    height: calc(100vh - var(--headerH));
    padding-inline: 15px;
    padding-block: 30px 120px;
    width: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
  }
  .open .headerInner {
    opacity: 1;
    visibility: visible;
  }
}

@media print, screen and (min-width: 768px) {
  .headerInnerLinkBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  .headerInnerLinkBox {
    width: 100%;
  }
}

.otherLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.otherLinks li a {
  color: var(--mainColor);
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.otherLinks li a:hover {
  opacity: 0.7;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .otherLinks li a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .otherLinks {
    margin-bottom: 20px;
    gap: 20px;
  }
}

.headerLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.headerLinks li a {
  font-size: clamp(12px, 1.3vw, 16px);
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.headerLinks li a:hover {
  color: var(--mainColor);
}
@media only screen and (min-width: 1280px) {
  .headerLinks li a {
    font-size: 16px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerLinks {
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .headerLinks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
  .headerLinks li {
    border-bottom: 1px solid var(--mainColor);
    width: 100%;
  }
  .headerLinks li a {
    font-size: 16px;
    padding-block: 0.7em;
    width: 100%;
  }
}

.headerContactBtn {
  border: 1px solid var(--mainColor);
  background-color: var(--mainColor);
  color: #fff;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  border-radius: 30px;
  padding-inline: 1.5em;
  padding-block: 0.9em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.headerContactBtn:hover {
  background-color: #fff;
  color: var(--mainColor);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerContactBtn {
    font-size: 14px;
    padding-block: 0.4em;
  }
}

/*==================================================
 * フッター
*================================================*/
.footerContactBg {
  padding-block: 15vw 65px;
  position: relative;
  z-index: 2;
}
.footerContactBg::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .footerContactBg {
    padding-block: 30vw 35px;
  }
}

@media print, screen and (min-width: 768px) {
  .footerContactBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footerContactBlock .footerContactTxBlock {
    width: 50%;
  }
  .footerContactBlock .footerContactLinkBox {
    margin-top: 10%;
    padding-left: 5%;
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .footerContactBlock .footerContactTxBlock {
    margin-bottom: 8%;
  }
}

.footerContactTitleBox .secTitleEn {
  font-size: clamp(52px, 9.4vw, 120px);
  line-height: 1;
  letter-spacing: 0.04em;
}
.footerContactTitleBox .secTitleJa {
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.footerContactTxBox .commonTitle {
  font-size: clamp(22px, 2.5vw, 32px);
  margin-bottom: 10px;
}
.footerContactTxBox .commonTx {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .footerContactTxBox .commonTx {
    font-size: 12px;
  }
}

.footerContactBtn {
  border: 1px solid var(--mainColor);
  background-color: var(--mainColor);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  padding-inline: 20px;
  padding-block: 1.2em;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footerContactBtn:hover {
  background-color: #fff;
  color: var(--mainColor);
}
.footerContactBtn:hover .commonBtnArw img {
  -webkit-filter: var(--mainColorSvg);
          filter: var(--mainColorSvg);
}
.footerContactBtn + .footerContactBtn {
  margin-top: 10px;
}
.footerContactBtn .commonBtnArw img {
  -webkit-filter: var(--whiteSvg);
          filter: var(--whiteSvg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .footerContactBtn {
    font-size: 16px;
  }
}

.footServiceLinks {
  background-color: var(--mainColor);
}
.footServiceLinks .footServiceLinksInner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 767px) {
  .footServiceLinks .footServiceLinksInner {
    grid-template-columns: 1fr;
  }
}

.footServiceBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 25px;
  padding-inline: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footServiceBtn:hover {
  opacity: 0.7;
}
@media print, screen and (min-width: 768px) {
  .footServiceBtn + .footServiceBtn {
    border-left: 1px solid #fff;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footServiceBtn {
    padding-block: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .footServiceBtn {
    padding-block: 15px;
  }
  .footServiceBtn + .footServiceBtn {
    border-top: 1px solid #fff;
  }
}

.footServiceBtnEnTitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.footServiceBtnJaTitle {
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  margin-block: 10px;
}
@media only screen and (max-width: 959px) {
  .footServiceBtnJaTitle {
    font-size: 16px;
  }
}

.footServiceBtnArw {
  width: 16px;
}
.footServiceBtnArw img {
  -webkit-filter: var(--whiteSvg);
          filter: var(--whiteSvg);
}

footer {
  background-color: var(--subColor);
  padding-block: 90px 30px;
}
@media only screen and (max-width: 767px) {
  footer {
    padding-block: 50px 10px;
    margin-bottom: 40px;
  }
}

.footerHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 2px solid #fff;
}
.footerHead .footerHeadSiteLink dl {
  margin-bottom: 1.5em;
}
.footerHead .footerHeadSiteLink dl dt, .footerHead .footerHeadSiteLink dl dd {
  color: #fff;
  line-height: 1;
}
.footerHead .footerHeadSiteLink dl dt a, .footerHead .footerHeadSiteLink dl dd a {
  display: block;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footerHead .footerHeadSiteLink dl dt a:hover, .footerHead .footerHeadSiteLink dl dd a:hover {
  color: var(--mainColor);
}
.footerHead .footerHeadSiteLink dl dt {
  font-size: 18px;
}
.footerHead .footerHeadSiteLink dl dd {
  font-size: 14px;
  margin-block: 1em;
}
.footerHead .footerHeadSiteLink dl dd a {
  padding-left: 1em;
  position: relative;
}
.footerHead .footerHeadSiteLink dl dd a::before {
  content: "";
  position: absolute;
  top: 0.33em;
  left: 0;
  background-color: #fff;
  border-radius: 50%;
  height: 0.4em;
  width: 0.4em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerHead {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 30px;
  }
  .footerHead .footerHeadSiteLink {
    width: calc(50% - 30px);
  }
  .footerHead .footerHeadSiteLink dl dt {
    font-size: 16px;
  }
  .footerHead .footerHeadSiteLink dl dd {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .footerHead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
  }
  .footerHead .footerHeadSiteLink dl {
    margin-bottom: 1em;
  }
}

.snsLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.snsLinks .snsLinkBtn {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  padding-inline: 1em;
  padding-block: 0.2em;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.snsLinks .snsLinkBtn:hover {
  background-color: #fff;
  color: var(--subColor);
}

.footerLogo {
  color: #fff;
  font-size: 16px;
  margin-bottom: 1em;
}
.footerLogo:hover {
  color: #fff;
}
.footerLogo span {
  font-size: 20px;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/*==================================================
 * トップページ
*================================================*/
.crossBlock {
  -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;
  gap: 30px;
}
.crossBlock.reserve {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.crossBlock + .crossBlock {
  margin-top: 60px;
}
.crossBlock.aboutPage {
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.crossBlock.aboutPage + .aboutPage {
  margin-top: 90px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .crossBlock {
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .crossBlock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .crossBlock.reserve {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.crossImgBox,
.crossTxBox {
  width: calc(50% - 30px);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .crossImgBox,
  .crossTxBox {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .crossImgBox,
  .crossTxBox {
    width: 100%;
  }
}

.aboutPage .crossImgBox {
  margin-left: -60px;
}
.aboutPage .crossImgBox .crossImg {
  width: calc(100% + 60px);
}
.aboutPage.reserve .crossImgBox {
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .crossImgBox {
    width: 80%;
  }
  .aboutPage .crossImgBox {
    width: 100%;
  }
  .aboutPage .crossImgBox .crossImg {
    margin-left: -15px;
    width: calc(100% + 15px);
  }
  .aboutPage.reserve .crossImgBox .crossImg {
    margin-left: 15px;
  }
}

.crossNum {
  color: var(--grayColor);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1;
  margin-bottom: 0.5em;
}

.crossEnTx {
  font-size: clamp(57px, 7.5vw, 95px);
  line-height: 0.9;
  position: absolute;
  z-index: -1;
}
.crossEnTx span {
  font-size: clamp(57px, 7.5vw, 95px);
  line-height: 0.9;
  color: #DBC3D7;
  font-family: var(--fontEn);
  font-weight: 300;
  display: block;
}
.crossEnTx.__01 {
  top: -1.5em;
  left: 1.5em;
}
.crossEnTx.__01 span {
  letter-spacing: 0.03em;
}
.crossEnTx.__01 span:nth-child(2) {
  padding-left: 0.4em;
}
.crossEnTx.__02 {
  top: -2.3em;
  right: 1em;
}
.crossEnTx.__02 span:nth-child(2) {
  padding-left: 2.2em;
}
.crossEnTx.__02 span:nth-child(3) {
  padding-left: 1em;
}
.crossEnTx.__03 {
  top: -1.9em;
  left: 0.5em;
}
.crossEnTx.__03 span:nth-child(2) {
  padding-left: 0.8em;
}
@media only screen and (max-width: 767px) {
  .crossEnTx.__03 {
    top: -1.4em;
    left: 1.5em;
  }
}

.crossSubTitle {
  color: var(--grayColor);
  font-size: clamp(14px, 2vw, 24px);
  line-height: 1.2;
  margin-bottom: 0.5em;
}

.bandBlockImg {
  padding-bottom: clamp(240px, 43.6vw, 558px);
  position: relative;
}

.scrollWrap {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
}

.loopTx {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  font-size: clamp(68px, 11.6vw, 148px);
  overflow: hidden;
  padding-left: 20px;
  color: #fff;
  line-height: 0.7;
  font-family: var(--fontEn);
  letter-spacing: 0.03em;
}
.loopTx:nth-child(odd) {
  -webkit-animation: loop 240s -120s linear infinite;
          animation: loop 240s -120s linear infinite;
}
.loopTx:nth-child(even) {
  -webkit-animation: loop2 240s linear infinite;
          animation: loop2 240s linear infinite;
}

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

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.serviceFindGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .serviceFindGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.findCardImg {
  padding-bottom: 57%;
}

.findCardTxBox {
  padding-block: 20px;
}

.findCardTitleEn {
  color: var(--mainColor);
  font-family: var(--fontEn);
  line-height: 1;
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 959px) {
  .findCardTitleEn {
    font-size: 14px;
  }
}

.findCardTitleJa {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .findCardTitleJa {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .findCardTitleJa {
    font-size: 18px;
  }
}

.findCardCategory {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.findCardCategory li {
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
  padding-inline: 1em;
  padding-block: 0.2em;
  font-size: 14px;
}
@media only screen and (max-width: 959px) {
  .findCardCategory {
    gap: 5px;
  }
  .findCardCategory li {
    font-size: 12px;
  }
}

.topFv {
  padding-left: 60px;
  padding-top: 100px;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .topFv {
    padding-top: 0;
    padding-left: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .topFvBlock {
    padding-top: 2em;
  }
}

.topFvTitle {
  font-size: clamp(28px, 4.7vw, 59px);
  line-height: 1.2;
}
.topFvTitle span {
  font-size: clamp(42px, 7.4vw, 94px);
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .topFvTitle {
    line-height: 1.4;
  }
  .topFvTitle span {
    line-height: 1.4;
  }
}

.topFvBigTx {
  position: absolute;
  top: -0.2em;
  right: -0.5em;
  font-size: clamp(70px, 17.2vw, 220px);
  line-height: 1;
  color: rgba(44, 44, 44, 0.1);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .topFvBigTx {
    top: -0.7em;
    right: -0.6em;
  }
}

.topFvRipple {
  top: 0;
  right: calc(var(--rippleW) - (var(--rippleW) + var(--rippleW) / 3));
}

.topConcept {
  padding-bottom: clamp(68px, 11.6vw, 148px);
  position: relative;
}

.topConceptInner {
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(115, 115, 115, 0)), color-stop(12%, rgb(115, 115, 115)), color-stop(91%, rgb(115, 115, 115)), to(rgba(115, 115, 115, 0)));
  -webkit-mask-image: linear-gradient(to bottom, rgba(115, 115, 115, 0) 0%, rgb(115, 115, 115) 12%, rgb(115, 115, 115) 91%, rgba(115, 115, 115, 0) 100%);
          mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(115, 115, 115, 0)), color-stop(12%, rgb(115, 115, 115)), color-stop(91%, rgb(115, 115, 115)), to(rgba(115, 115, 115, 0)));
          mask-image: linear-gradient(to bottom, rgba(115, 115, 115, 0) 0%, rgb(115, 115, 115) 12%, rgb(115, 115, 115) 91%, rgba(115, 115, 115, 0) 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
}

@media only screen and (max-width: 767px) {
  .topConceptImgSp {
    width: 115%;
  }
}

@media only screen and (max-width: 767px) {
  .topConceptImg {
    background: none !important;
    width: 100%;
  }
}

.topConceptTxBox {
  background: rgba(243, 243, 244, 0.7);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
.topConceptTxBox::before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, right top, left top, from(rgba(243, 243, 244, 0.7)), color-stop(50%, transparent));
  background: linear-gradient(to left, rgba(243, 243, 244, 0.7) 0%, transparent 50%);
  left: -100%;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media print, screen and (min-width: 768px) {
  .topConceptTxBox {
    margin-left: auto;
    padding-block: 80px 100px;
    padding-right: 60px;
    height: 100%;
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .topConceptTxBox {
    background: #f3f3f4;
    margin-top: -40px;
    padding-inline: 15px;
    padding-block: 20px 60px;
  }
  .topConceptTxBox::before {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(5%, rgb(243, 243, 244)), color-stop(35%, transparent));
    background: linear-gradient(to top, rgb(243, 243, 244) 5%, transparent 35%);
    top: -30%;
    left: 0;
    height: 30%;
  }
}
@media screen and (min-width: 1920px) {
  .topConceptTxBox {
    padding-block: 10vw;
  }
}

.topConceptTx .loopTx {
  color: #DBC3D7;
}

.topFeatureRipple {
  bottom: 0;
  left: calc(var(--rippleW) - (var(--rippleW) + var(--rippleW) / 2));
  z-index: -1;
}

.topServiceBg {
  padding-block: 14vw;
  position: relative;
  z-index: 2;
}
.topServiceBg::before {
  content: "";
  position: absolute;
  background: url(../img/gradeBg.svg) center/cover no-repeat;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.topServiceCommonTx {
  font-size: clamp(14px, 1.9vw, 24px);
}

.topSerivceLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.topSerivceLinks li + li {
  border-left: 1px solid #BDBBBC;
}
.topSerivceLinks li a {
  display: block;
  padding-inline: 1em;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topSerivceLinks li a:hover {
  color: var(--mainColor);
}
.topSerivceLinks li a i {
  font-size: 0.8em;
  margin-left: 0.8em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topSerivceLinks li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .topSerivceLinks {
    margin-inline: -10px;
  }
  .topSerivceLinks li {
    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;
    width: 33.3333333333%;
  }
  .topSerivceLinks li a {
    font-size: 12px;
    line-height: 1.3;
    padding-block: 0.3em;
    padding-inline: 0.1em;
  }
  .topSerivceLinks li a i {
    display: block;
    margin-left: 0;
    margin-top: 0.8em;
  }
}

.topServiceCnt + .topServiceCnt {
  margin-top: 60px;
}
@media print, screen and (min-width: 768px) {
  .topServiceCnt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .topServiceCnt .topServiceCntImgBox {
    width: 45%;
  }
  .topServiceCnt .topServiceCntTxBox {
    padding-left: 5%;
    width: 55%;
  }
}
@media only screen and (max-width: 767px) {
  .topServiceCnt + .topServiceCnt {
    margin-top: 30px;
  }
  .topServiceCnt .topServiceCntImgBox {
    margin-inline: auto;
    margin-bottom: 5%;
    width: 70%;
  }
}

.topServiceCntTitle {
  font-size: clamp(16px, 2.2vw, 28px);
  color: var(--grayColor);
  margin-bottom: 0.6em;
}

.topServiceCntTitleEn {
  font-size: clamp(38px, 4.4vw, 56px);
  color: #CE8CC3;
  line-height: 0.9;
  font-family: var(--fontEn);
  margin-bottom: 0.3em;
}

.topServiceCntSubTitle {
  font-size: 24px;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .topServiceCntSubTitle {
    font-size: 20px;
  }
}

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

.topServiceCntList {
  background-color: rgba(255, 255, 255, 0.6);
  padding-inline: 30px;
  padding-block: 15px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.topServiceCntList li {
  position: relative;
  padding-left: 1.5em;
}
.topServiceCntList li::before, .topServiceCntList li::after {
  content: "";
  position: absolute;
  background-color: #9E6995;
  border-radius: 50%;
}
.topServiceCntList li::before {
  opacity: 0.2;
  top: 0.33em;
  left: 0;
  height: 0.9em;
  width: 0.9em;
}
.topServiceCntList li::after {
  top: 0.57em;
  left: 0.23em;
  height: 0.42em;
  width: 0.42em;
}
@media only screen and (max-width: 959px) {
  .topServiceCntList {
    padding-inline: 15px;
  }
  .topServiceCntList li {
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  .topServiceCntList {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.topServiceOtherBlock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 70px;
}
@media only screen and (max-width: 767px) {
  .topServiceOtherBlock {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}

.topServiceOtherItem {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.6);
  padding-inline: 20px;
  padding-block: 20px;
}
@media only screen and (max-width: 767px) {
  .topServiceOtherItem {
    padding: 15px;
  }
}

.serviceOtherImgBox {
  overflow: hidden;
  border-radius: 8px;
  padding-inline: 20px;
  padding-block: 20px;
  min-height: 280px;
  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;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceOtherImgBox {
    min-height: 220px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceOtherImgBox {
    min-height: 200px;
    padding: 10px;
  }
}

.serviceOtherTitleJa {
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 0.1em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceOtherTitleJa {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceOtherTitleJa {
    font-size: 24px;
  }
}

.serviceOtherTitleEn {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--fontEn);
  margin-bottom: 1em;
}

.serviceOtherTx {
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 959px) {
  .serviceOtherTx {
    font-size: 16px;
  }
}

.serviceOtherInner {
  padding-block: 20px;
  height: calc(100% - 280px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceOtherInner {
    height: calc(100% - 220px);
  }
}
@media only screen and (max-width: 767px) {
  .serviceOtherInner {
    height: calc(100% - 200px);
  }
}

.serviceOtherSubTitle {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 959px) {
  .serviceOtherSubTitle {
    font-size: 15px;
  }
}

.serviceOtherUl {
  background-color: rgba(219, 195, 215, 0.2);
  border-radius: 8px;
  padding-inline: 8px;
  padding-block: 10px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.serviceOtherUl li {
  position: relative;
  padding-left: 1.5em;
  font-size: 14px;
}
.serviceOtherUl li::before, .serviceOtherUl li::after {
  content: "";
  position: absolute;
  background-color: #9E6995;
  border-radius: 50%;
}
.serviceOtherUl li::before {
  opacity: 0.2;
  top: 0.33em;
  left: 0;
  height: 0.9em;
  width: 0.9em;
}
.serviceOtherUl li::after {
  top: 0.57em;
  left: 0.23em;
  height: 0.42em;
  width: 0.42em;
}
@media only screen and (max-width: 959px) {
  .serviceOtherUl {
    padding-inline: 15px;
  }
  .serviceOtherUl li {
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  .serviceOtherUl {
    grid-template-columns: 1fr;
  }
  .serviceOtherUl li {
    font-size: 12px;
  }
}

.topOtherLinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 90px;
}
@media only screen and (max-width: 767px) {
  .topOtherLinks {
    margin-top: 45px;
    gap: 8px;
  }
}

.topOtherBtn {
  background-color: var(--subColor);
  border-radius: 8px;
  padding-inline: 20px;
  padding-block: 30px;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topOtherBtn:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
@media only screen and (max-width: 767px) {
  .topOtherBtn {
    padding-block: 8px 10px;
    padding-inline: 10px;
  }
}

.topOtherBtnTitleEn {
  color: #fff;
  font-family: var(--fontEn);
  font-size: 56px;
  position: relative;
  padding-bottom: 0.4em;
  line-height: 1;
  margin-bottom: 0.3em;
}
.topOtherBtnTitleEn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  height: 5px;
  width: 5px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topOtherBtnTitleEn {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .topOtherBtnTitleEn {
    font-size: 26px;
  }
}

.topOtherBtnTitleJa {
  color: #fff;
  font-size: 20px;
  line-height: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topOtherBtnTitleJa {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .topOtherBtnTitleJa {
    font-size: 14px;
  }
}

.topServiceBottom {
  margin-top: -140px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .topServiceBottom {
    margin-top: -60px;
  }
}

.archMask {
  background: linear-gradient(170deg, #F6F2F7 6.4%, #E1D2DE 82.75%);
  padding-block: 14vw;
  -webkit-mask-image: url(../img/archMask.png);
          mask-image: url(../img/archMask.png);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100vw 100%;
          mask-size: 100vw 100%;
}
.archMask.__paddingSmall {
  padding-block: 10vw;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .archMask.serviceMain {
    padding-block: 25vw 25vw;
    -webkit-mask-size: 140vw 100%;
            mask-size: 140vw 100%;
  }
}
@media only screen and (max-width: 767px) {
  .archMask {
    padding-block: 40vw 25vw;
    -webkit-mask-size: 140vw 100%;
            mask-size: 140vw 100%;
  }
  .archMask.serviceMain {
    padding-block: 60vw 25vw;
    -webkit-mask-size: 180vw 100%;
            mask-size: 180vw 100%;
  }
  .archMask.__paddingSmall {
    padding-block: 15vw;
  }
}

.topAboiutBoxInner {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  padding-inline: 70px;
  padding-block: 30px;
  gap: 60px;
}
.topAboiutBoxInner * {
  text-align: left;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topAboiutBoxInner {
    padding-inline: 30px;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .topAboiutBoxInner {
    grid-template-columns: 1fr;
    padding-inline: 20px;
    padding-block: 15px;
    gap: 10px;
  }
}

.topAboiutList li {
  color: var(--grayColor);
  padding-left: 1.3em;
  position: relative;
  margin-block: 0.3em;
}
.topAboiutList li::before {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  border-radius: 50%;
  top: 0.6em;
  left: 0;
  height: 8px;
  width: 8px;
}

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

.topAboutNameTx {
  font-size: 32px;
  letter-spacing: 0.1em;
}
.topAboutNameTx span {
  font-size: 20px;
  color: #BDBBBC;
  letter-spacing: 0.05em;
  margin-left: 0.5em;
}
@media only screen and (max-width: 959px) {
  .topAboutNameTx {
    font-size: 24px;
  }
  .topAboutNameTx span {
    font-size: 15px;
  }
}

@media print, screen and (min-width: 768px) {
  .topAboutMainInner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.topAboutMainImg {
  border-radius: 8px;
  overflow: hidden;
  margin-left: -60px;
  width: 105%;
}
@media only screen and (max-width: 767px) {
  .topAboutMainImg {
    border-radius: 0 8px 8px 0;
    margin-left: -15px;
    width: calc(100% + 15px);
  }
}

.topAboutTxBox {
  padding-top: 12em;
}
@media only screen and (max-width: 767px) {
  .topAboutTxBox {
    padding-top: 1em;
  }
}

.topStyleBlockInner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .topStyleBlockInner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .topStyleBlockInner .topStyleImgBox {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}

.topStyleImg {
  border-radius: 50% 50% 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .topStyleImg {
    width: 80%;
    margin-inline: auto;
  }
}

.clipFrame {
  overflow: hidden;
  margin-left: clamp(30px, 4.7vw, 60px);
  padding-right: clamp(30px, 4.7vw, 60px);
}

.columnSwiper {
  overflow: visible;
  margin-bottom: 60px;
}
.columnSwiper.no-swiper .columnCard {
  max-width: 400px;
}
.columnSwiper.no-swiper .columnCard + .columnCard {
  margin-left: 30px;
}

.columnCardImgBox {
  overflow: hidden;
  border-radius: 8px;
}
.columnCardImgBox .columnCardImg {
  padding-bottom: 60%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}
.columnCardLink:hover .columnCardImgBox .columnCardImg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.columnCardTxBox {
  padding-block: 20px 30px;
  border-bottom: 1px solid #BDBBBC;
}

.columnCardHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.columnCardHead .columnCardTime {
  color: #CE8CC3;
  font-family: var(--fontEn);
  font-size: 20px;
  line-height: 1;
}
.columnCardHead .columnCardCate {
  color: #CE8CC3;
  font-size: 14px;
  border: 1px solid #CE8CC3;
  border-radius: 4px;
  padding-inline: 0.6em;
  display: inline-block;
  line-height: 1;
  padding-block: 0.3em;
}
@media only screen and (max-width: 767px) {
  .columnCardHead .columnCardTime {
    font-size: 16px;
  }
  .columnCardHead .columnCardCate {
    font-size: 12px;
  }
}

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

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

.columnSwiper-prev,
.columnSwiper-next {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #9c6cab;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.columnSwiper-prev::before,
.columnSwiper-next::before {
  color: #9c6cab;
  position: absolute;
  top: 40%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 10px;
  height: 10px;
  font-family: "Font Awesome 6 Pro";
  line-height: 1;
}
.columnSwiper-prev:hover,
.columnSwiper-next:hover {
  background-color: #9c6cab;
}
.columnSwiper-prev:hover::before,
.columnSwiper-next:hover::before {
  color: #fff;
}

.columnSwiper-prev::before {
  content: "\f060";
}

.columnSwiper-next::before {
  content: "\f061";
}

.voiceSwiper {
  overflow: visible;
  margin-bottom: 60px;
}
.voiceSwiper.no-swiper .voiceCard {
  max-width: 320px;
}
.voiceSwiper.no-swiper .voiceCard + .voiceCard {
  margin-left: 30px;
}

.voiceCard {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.voiceCard.__archiveCard {
  -webkit-box-shadow: 0 0 15px rgba(140, 123, 138, 0.2);
          box-shadow: 0 0 15px rgba(140, 123, 138, 0.2);
}

.voiceCardImgBox {
  overflow: hidden;
}
.voiceCardImgBox .voiceCardImg {
  background-position: center -20%;
  padding-bottom: 73%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}
.voiceCardLink:hover .voiceCardImgBox .voiceCardImg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.voiceCardTxBox {
  padding-block: 20px 30px;
  padding-inline: 20px;
  position: relative;
}
.voiceCard.__archiveCard .voiceCardTxBox {
  padding-block: 30px 40px;
  padding-inline: 25px;
}

.voiceArw {
  border-radius: 50%;
  border: 1px solid var(--mainColor);
  position: absolute;
  bottom: 15px;
  right: 15px;
  height: 30px;
  width: 30px;
}
.voiceArw::before {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  font-size: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 1;
  color: var(--mainColor);
}

.voiceCardHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.voiceCardHead .voiceCardTime {
  color: #CE8CC3;
  font-size: 14px;
  line-height: 1;
}
.voiceCardHead .voiceCardCate {
  color: #CE8CC3;
  font-size: 14px;
  border: 1px solid #CE8CC3;
  border-radius: 4px;
  padding-inline: 0.6em;
  display: inline-block;
  line-height: 1;
  padding-block: 0.3em;
}
.voiceCard.__archiveCard .voiceCardHead {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 10px;
}

.voiceCardTx {
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.voiceCardLink:hover .voiceCardTx {
  color: var(--mainColor);
}
.voiceCard.__archiveCard .voiceCardTx {
  font-size: 18px;
}

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

.voiceSwiper-prev,
.voiceSwiper-next {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #9c6cab;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.voiceSwiper-prev::before,
.voiceSwiper-next::before {
  color: #9c6cab;
  position: absolute;
  top: 40%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 10px;
  height: 10px;
  font-family: "Font Awesome 6 Pro";
  line-height: 1;
}
.voiceSwiper-prev:hover,
.voiceSwiper-next:hover {
  background-color: #9c6cab;
}
.voiceSwiper-prev:hover::before,
.voiceSwiper-next:hover::before {
  color: #fff;
}

.voiceSwiper-prev::before {
  content: "\f060";
}

.voiceSwiper-next::before {
  content: "\f061";
}

.topMessage {
  margin-bottom: -100px;
  position: relative;
  z-index: 3;
}

.topMessageTItleEn {
  font-size: 64px;
  font-family: var(--fontEn);
  color: var(--subColor);
  line-height: 0.8;
  margin-bottom: 30px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topMessageTItleEn {
    font-size: 46px;
  }
}
@media only screen and (max-width: 767px) {
  .topMessageTItleEn {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

.topMessageTitleJa {
  font-size: 24px;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .topMessageTitleJa {
    font-size: 20px;
  }
}

.topMessageGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .topMessageGrid {
    grid-template-columns: 1fr;
  }
}

.topMessageItem .topMessageItemHead {
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  padding-block: 20px;
  padding-inline: 20px;
  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;
  margin-bottom: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topMessageItem .topMessageItemIcon {
  margin-bottom: 10px;
  width: 24px;
}
.topMessageItem .topMessageItemName {
  font-size: 20px;
  color: var(--mainColor);
  line-height: 1.5;
}
.topMessageItem:hover .topMessageItemHead {
  background-color: rgba(219, 195, 215, 0.5);
}
@media only screen and (max-width: 767px) {
  .topMessageItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
  .topMessageItem .topMessageItemHead {
    padding-block: 10px;
    padding-inline: 5px;
    margin-bottom: 0;
    gap: 8px;
    width: 120px;
  }
  .topMessageItem .topMessageItemHead + div {
    width: calc(100% - 120px);
  }
  .topMessageItem .topMessageItemIcon {
    margin-bottom: 0;
    width: 18px;
  }
  .topMessageItem .topMessageItemName {
    font-size: 14px;
    line-height: 1.2;
  }
}

.topMessageTItle {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .topMessageTItle {
    font-size: 16px;
  }
}

.topMessageTx {
  font-size: 14px;
}
@media only screen and (max-width: 959px) {
  .topMessageTx {
    line-height: 1.2;
    font-size: 12px;
  }
}

.topFeatureWave {
  position: absolute;
  width: 150%;
  left: -25%;
  z-index: -1;
}
.topFeatureWave.__01 {
  top: 15%;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.topFeatureWave.__02 {
  bottom: 15%;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
@media only screen and (max-width: 767px) {
  .topFeatureWave {
    left: -10%;
    width: 120%;
  }
  .topFeatureWave.__01 {
    top: 5%;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  .topFeatureWave.__02 {
    bottom: 5%;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}

/*==================================================
 * サロン案内
*================================================*/
.aboutConcept {
  padding-bottom: clamp(150px, 24.7vw, 315px);
  position: relative;
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .aboutMessageBlock {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .aboutMessageBlock {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .aboutMessageImgBox {
    margin-inline: auto;
    width: 75%;
  }
}

.aboutMessageImg {
  width: 100%;
  padding-bottom: 200%;
}
@media only screen and (max-width: 767px) {
  .aboutMessageImg {
    background-position: center 8%;
    padding-bottom: 125%;
  }
}

.aboutMessageTxBox * {
  font-size: 18px;
  line-height: 2;
}
@media only screen and (max-width: 959px) {
  .aboutMessageTxBox * {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media only screen and (max-width: 767px) {
  .aboutMainBox {
    background-color: #fff;
    background-position: right bottom;
    background-size: auto 45%;
    position: relative;
    z-index: 2;
  }
  .aboutMainBox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(82%, #fff), to(transparent));
    background: linear-gradient(to bottom, #fff 82%, transparent 100%);
    height: 68%;
    width: 100%;
    z-index: -1;
  }
}

.aboutMainBoxInner {
  --bnrW: 60px;
  padding-inline: var(--bnrW) calc(var(--bnrW) * 2);
  padding-block: var(--bnrW);
}
@media only screen and (max-width: 767px) {
  .aboutMainBoxInner {
    --bnrW: 30px;
    padding-inline: var(--bnrW);
    padding-block: var(--bnrW) calc(var(--bnrW) * 8);
  }
}

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

.aboutMainName {
  font-size: 32px;
  letter-spacing: 0.1em;
}
.aboutMainName span {
  font-size: 20px;
  color: #BDBBBC;
  letter-spacing: 0.05em;
  margin-left: 0.5em;
}
@media only screen and (max-width: 959px) {
  .aboutMainName {
    font-size: 24px;
  }
  .aboutMainName span {
    font-size: 15px;
  }
}

.aboutMainList li {
  color: var(--grayColor);
  padding-left: 1.3em;
  position: relative;
  margin-block: 0.3em;
}
.aboutMainList li::before {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  border-radius: 50%;
  top: 0.6em;
  left: 0;
  height: 8px;
  width: 8px;
}

.aboutHistotyDl {
  position: relative;
  padding-left: 2.5em;
  padding-bottom: 2em;
}
.aboutHistotyDl::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  background: url(../img/storIcon.svg) center/cover no-repeat;
  -webkit-filter: invert(70%) sepia(59%) saturate(351%) hue-rotate(276deg) brightness(86%) contrast(85%);
          filter: invert(70%) sepia(59%) saturate(351%) hue-rotate(276deg) brightness(86%) contrast(85%);
  height: 24px;
  width: 24px;
}
.aboutHistotyDl::after {
  content: "";
  position: absolute;
  border-left: 1px dashed #CE8CC3;
  top: 35px;
  left: 12px;
  height: calc(100% - 40px);
  width: 1px;
}
.aboutHistotyDl:last-of-type {
  padding-bottom: 0;
}
.aboutHistotyDl:last-of-type::after {
  content: none;
}
@media only screen and (max-width: 767px) {
  .aboutHistotyDl {
    padding-left: 1.5em;
  }
  .aboutHistotyDl::before {
    height: 16px;
    width: 16px;
  }
  .aboutHistotyDl::after {
    left: 7px;
  }
}

.aboutHistotyTitle {
  font-size: 18px;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .aboutHistotyTitle {
    font-size: 16px;
    line-height: 1.6;
  }
}

.aboutHistotyTx {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grayColor);
}
@media only screen and (max-width: 767px) {
  .aboutHistotyTx {
    font-size: 14px;
    line-height: 1.6;
  }
}

.aboutStyle {
  background-color: #fff;
  padding-block: 30px;
  padding-inline: 60px;
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .aboutStyle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 20px;
    padding-block: 20px;
  }
}

.aboutStyleImgBox .aboutStyleImg {
  overflow: hidden;
  border-radius: 8px;
}
@media print, screen and (min-width: 768px) {
  .aboutStyleImgBox {
    padding-right: 5%;
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .aboutStyleImgBox {
    margin-inline: auto;
    margin-bottom: 5%;
    width: 75%;
  }
}

.aboutStyleTxBox .commonTitle {
  margin-bottom: 0.3em;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .aboutStyleTxBox {
    width: 50%;
  }
}

.aboutStyleTx {
  font-size: 18px;
}
@media only screen and (max-width: 959px) {
  .aboutStyleTx {
    font-size: 15px;
  }
}

.aboutStyleTxTitle {
  position: relative;
  padding-left: 1.3em;
  font-size: 24px;
  margin-bottom: 0.6em;
  line-height: 1.2;
}
.aboutStyleTxTitle::before {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  background: url(../img/storIcon.svg) center/cover no-repeat;
  -webkit-filter: invert(70%) sepia(59%) saturate(351%) hue-rotate(276deg) brightness(86%) contrast(85%);
          filter: invert(70%) sepia(59%) saturate(351%) hue-rotate(276deg) brightness(86%) contrast(85%);
  height: 24px;
  width: 24px;
}
@media only screen and (max-width: 959px) {
  .aboutStyleTxTitle {
    font-size: 18px;
  }
  .aboutStyleTxTitle::before {
    top: 0.3em;
    height: 16px;
    width: 16px;
  }
}

.aboutStyleTxUl {
  padding-left: 2em;
}
.aboutStyleTxUl li {
  list-style: disc;
}
@media only screen and (max-width: 959px) {
  .aboutStyleTxUl {
    padding-left: 1.5em;
  }
  .aboutStyleTxUl li {
    font-size: 13px;
  }
}

.aboutIntroBlock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
}
.aboutIntroBlock dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #BDBBBC;
  padding-block: 1em;
}
.aboutIntroBlock dl dt, .aboutIntroBlock dl dd {
  font-size: 18px;
}
.aboutIntroBlock dl dt {
  width: 100px;
}
.aboutIntroBlock dl dd {
  width: calc(100% - 100px);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .aboutIntroBlock dl dt, .aboutIntroBlock dl dd {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .aboutIntroBlock {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .aboutIntroBlock dl dt, .aboutIntroBlock dl dd {
    font-size: 14px;
  }
}

/*==================================================
 * サービス
*================================================*/
.pageLinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pageLinks .pageBtn {
  background-color: #fff;
  border-radius: 8px;
  -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;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.pageLinks .pageBtn * {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.pageLinks .pageBtn:hover {
  background-color: var(--mainColor);
}
.pageLinks .pageBtn:hover .pageBtnTx,
.pageLinks .pageBtn:hover .pageBtnArw i {
  color: #fff;
}
.pageLinks .pageBtnTx {
  font-size: 20px;
  line-height: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageLinks {
    gap: 10px;
  }
  .pageLinks .pageBtnTx {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .pageLinks {
    grid-template-columns: 0.8fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .pageLinks .pageBtnTx {
    font-size: 16px;
  }
}

.serviceBlock {
  border: 1px solid var(--mainColor);
  overflow: hidden;
  border-radius: 8px;
}
.serviceBlock + .serviceBlock {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .serviceBlock + .serviceBlock {
    margin-top: 40px;
  }
}

.serviceBlockHead {
  padding-block: 45px;
  padding-inline: 40px;
  position: relative;
  z-index: 2;
}
.serviceBlockHead::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 959px) {
  .serviceBlockHead {
    padding-block: 20px;
    padding-inline: 15px;
  }
}

.serviceBlockHeadTitleJa {
  color: #fff;
  font-size: clamp(16px, 2.9vw, 36px);
  line-height: 1.2;
  margin-bottom: 0.5em;
}

.serviceBlockHeadTitleEn {
  font-size: clamp(46px, 5.7vw, 72px);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  font-family: var(--fontEn);
  margin-bottom: 0.2em;
}
@media only screen and (max-width: 767px) {
  .serviceBlockHeadTitleEn {
    line-height: 0.8;
  }
}

.serviceBlockHeadSubTitle {
  color: #fff;
  font-size: clamp(18px, 2.5vw, 32px);
  margin-bottom: 0.4em;
  line-height: 1.2;
}
.serviceBlockHeadTx {
  color: #fff;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.8;
  width: 47%;
  margin-bottom: 1.2em;
}
@media only screen and (max-width: 767px) {
  .serviceBlockHeadTx {
    width: 100%;
  }
}

.serviceBlockHeadUl {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  padding-inline: 25px;
  padding-block: 15px;
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  min-width: 47%;
}
.serviceBlockHeadUl li {
  position: relative;
  padding-left: 1.5em;
}
.serviceBlockHeadUl li::before, .serviceBlockHeadUl li::after {
  content: "";
  position: absolute;
  background-color: #9E6995;
  border-radius: 50%;
}
.serviceBlockHeadUl li::before {
  opacity: 0.2;
  top: 0.33em;
  left: 0;
  height: 0.9em;
  width: 0.9em;
}
.serviceBlockHeadUl li::after {
  top: 0.57em;
  left: 0.23em;
  height: 0.42em;
  width: 0.42em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceBlockHeadUl {
    gap: 5px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceBlockHeadUl {
    grid-template-columns: 1fr;
    padding-inline: 10px;
    padding-block: 15px;
    gap: 5px;
    width: 100%;
  }
  .serviceBlockHeadUl li {
    line-height: 1.4;
    font-size: 12px;
  }
}

.serviceBlockBody {
  padding-block: 50px 35px;
  padding-inline: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceBlockBody {
    padding-block: 20px;
    padding-inline: 15px;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceBlockBody {
    padding-block: 20px;
    padding-inline: 15px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.serviceBlockBodyItem {
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.6);
}

.serviceBlockBodyItemHead {
  padding-block: 20px;
  padding-inline: 30px;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 200px;
  z-index: 2;
}
.serviceBlockBodyItemHead::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 959px) {
  .serviceBlockBodyItemHead {
    min-height: 130px;
    padding: 10px;
  }
}

.serviceBlockBodyItemTitleEn {
  color: #fff;
  font-size: 56px;
  font-family: var(--fontEn);
  line-height: 0.8;
  margin-bottom: 0.1em;
}
@media only screen and (max-width: 959px) {
  .serviceBlockBodyItemTitleEn {
    font-size: 32px;
  }
}

.serviceBlockBodyItemTitleJa {
  color: #fff;
  font-size: 20px;
}
@media only screen and (max-width: 959px) {
  .serviceBlockBodyItemTitleJa {
    font-size: 14px;
  }
}

.serviceBlockBodyItemIn {
  padding-inline: 20px;
  padding-block: 30px;
}
@media only screen and (max-width: 959px) {
  .serviceBlockBodyItemIn {
    padding-block: 20px;
    padding-inline: 15px;
  }
}

.serviceBlockBodyItemInTitle {
  text-align: center;
  font-size: 24px;
  margin-bottom: 1em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceBlockBodyItemInTitle {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceBlockBodyItemInTitle {
    font-size: 18px;
  }
}

.serviceBlockBodyItemInUl {
  border: 1px solid var(--mainColor);
  border-radius: 8px;
  padding-inline: 20px;
  padding-block: 15px;
  margin-bottom: 1em;
}
.serviceBlockBodyItemInUl li {
  position: relative;
  padding-left: 1.5em;
  padding-block: 0.2em;
}
.serviceBlockBodyItemInUl li::before, .serviceBlockBodyItemInUl li::after {
  content: "";
  position: absolute;
  background-color: #9E6995;
  border-radius: 50%;
}
.serviceBlockBodyItemInUl li::before {
  opacity: 0.2;
  top: 0.33em;
  left: 0;
  height: 0.9em;
  width: 0.9em;
}
.serviceBlockBodyItemInUl li::after {
  top: 0.57em;
  left: 0.23em;
  height: 0.42em;
  width: 0.42em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceBlockBodyItemInUl {
    padding-block: 15px;
    padding-inline: 8px;
  }
  .serviceBlockBodyItemInUl li {
    font-size: 14px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  .serviceBlockBodyItemInUl {
    padding-inline: 15px;
    padding-block: 8px;
  }
  .serviceBlockBodyItemInUl li {
    line-height: 1.2;
    font-size: 13px;
  }
}

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

@media only screen and (max-width: 767px) {
  .servicePrice .commonTitle small {
    font-size: 18px;
  }
}

.servicePriceBlock + .servicePriceBlock {
  margin-top: 90px;
}

.priceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .priceGrid {
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .priceGrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.priceCard {
  border-radius: 8px;
  padding-inline: 20px;
  padding-block: 10px 20px;
}
.priceCard.__01 {
  background-color: #CCACC6;
}
.priceCard.__02 {
  background-color: #CE8CC3;
}
.priceCard.__03 {
  background-color: #9E6995;
}
.servicePriceBlock.__bottom .priceCard.__01 {
  background-color: #C4B093;
}
.servicePriceBlock.__bottom .priceCard.__02 {
  background-color: #C2A276;
}
.servicePriceBlock.__bottom .priceCard.__03 {
  background-color: #B08D5D;
}
@media only screen and (max-width: 767px) {
  .priceCard {
    padding-inline: 15px;
    padding-block: 5px 15px;
  }
}

.priceCardHead {
  margin-bottom: 20px;
}

.priceCardNum {
  text-align: center;
}
.priceCardNum span {
  color: #fff;
  font-size: 32px;
  display: inline-block;
  font-family: var(--fontEn);
  position: relative;
  padding-left: 1.2em;
}
.priceCardNum span::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/storIcon.svg) center/cover no-repeat;
  left: 0;
  -webkit-filter: var(--whiteSvg);
          filter: var(--whiteSvg);
  height: 0.8em;
  width: 0.8em;
}
@media only screen and (max-width: 959px) {
  .priceCardNum span {
    font-size: 20px;
  }
}

.priceCardTitle {
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0.7em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .priceCardTitle {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .priceCardTitle {
    font-size: 22px;
  }
}

.priceCardPrice {
  color: #fff;
  font-size: 28px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
}
.priceCardPrice small {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 959px) {
  .priceCardPrice {
    font-size: 24px;
  }
  .priceCardPrice small {
    font-size: 16px;
  }
}

.priceCardFoot {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding-inline: 20px;
  padding-block: 15px;
}

.priceCardFootTitle {
  text-align: center;
  display: block;
  background-color: #fff;
  color: var(--mainColor);
  line-height: 1;
  padding-inline: 1em;
  padding-block: 0.4em;
  margin-bottom: 0.8em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .priceCardFootTitle {
    font-size: 14px;
  }
}

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

.serviceCamp {
  padding-block: 40px;
  padding-inline: 15px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.serviceCamp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 100%;
  z-index: -1;
}

.serviceCampTitleEn {
  color: #fff;
  font-family: var(--fontEn);
  font-size: 80px;
  line-height: 0.8;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .serviceCampTitleEn {
    font-size: 48px;
  }
}

.serviceCampTitleJa,
.serviceCampExample {
  color: #fff;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .serviceCampTitleJa,
  .serviceCampExample {
    font-size: 22px;
  }
}

.serviceCampBtn {
  border: 1px solid var(--mainColor);
  background-color: var(--mainColor);
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  padding-inline: 20px;
  padding-block: 1.2em;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.serviceCampBtn:hover {
  background-color: #fff;
  color: var(--mainColor);
}
.serviceCampBtn:hover .commonBtnArw img {
  -webkit-filter: var(--mainColorSvg);
          filter: var(--mainColorSvg);
}
.serviceCampBtn .commonBtnArw img {
  -webkit-filter: var(--whiteSvg);
          filter: var(--whiteSvg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.serviceCampBtn .commonBtnTx {
  letter-spacing: 0.13em;
}
@media only screen and (max-width: 959px) {
  .serviceCampBtn .commonBtnTx {
    text-align: left;
    font-size: 16px;
    line-height: 1.2;
  }
}

.serviceFlow {
  --circle: 60px;
}
.serviceFlow dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
  position: relative;
}
.serviceFlow dl::before {
  content: "";
  position: absolute;
  border-left: 1px dashed var(--mainColor);
  height: calc(100% - (var(--circle) + 10px));
  width: 1px;
  top: calc(var(--circle) + 5px);
  left: calc(var(--circle) / 2);
}
.serviceFlow dl:last-of-type {
  padding-bottom: 0;
}
.serviceFlow dl:last-of-type::before {
  content: none;
}
.serviceFlow dt {
  border: 1px solid var(--mainColor);
  border-radius: 50%;
  color: var(--mainColor);
  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;
  font-size: 24px;
  font-family: var(--fontEn);
  line-height: 1;
  height: var(--circle);
  width: var(--circle);
}
.serviceFlow dt span {
  font-size: 14px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .serviceFlow dt {
    font-size: 20px;
  }
  .serviceFlow dt span {
    font-size: 12px;
  }
}
.serviceFlow dd {
  padding-left: 3%;
  width: calc(100% - var(--circle));
}
.serviceFlow dd .flowTitle {
  font-size: 20px;
}
.serviceFlow dd .flowTx {
  font-size: 14px;
}
.serviceFlow dd .flowLink {
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.serviceFlow dd .flowLink:hover {
  color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .serviceFlow dd .flowTitle {
    font-size: 16px;
  }
  .serviceFlow dd .flowTx {
    font-size: 12px;
  }
  .serviceFlow dd .flowLink {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceFlow {
    --circle: 50px;
  }
}

.faqCnt {
  background-color: #F2F2F2;
  padding-inline: 30px;
  padding-block: 20px;
}
.faqCnt + .faqCnt {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .faqCnt {
    padding-inline: 15px;
    padding-block: 10px;
  }
  .faqCnt + .faqCnt {
    margin-top: 10px;
  }
}

.faqCntInner {
  display: none;
}

.faqCntTitle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.faqCntInnerBox {
  border-top: 1px solid #CE8CC3;
  margin-top: 20px;
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .faqCntInnerBox {
    margin-top: 10px;
    padding-top: 10px;
  }
}

.faqCntTitle,
.faqCntInnerBox {
  display: grid;
  grid-template-columns: 35px auto;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .faqCntTitle,
  .faqCntInnerBox {
    grid-template-columns: 25px auto;
  }
}

.faqCntTitleEn,
.faqCntTxEn {
  font-size: 32px;
  line-height: 1;
}
@media only screen and (max-width: 959px) {
  .faqCntTitleEn,
  .faqCntTxEn {
    font-size: 24px;
  }
}

.faqCntTitleJa,
.faqCntTxJa {
  font-size: 18px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .faqCntTitleJa,
  .faqCntTxJa {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .faqCntTitleJa,
  .faqCntTxJa {
    font-size: 14px;
    line-height: 1.2;
  }
}

/*==================================================
 * お客様の声
*================================================*/
.voiceTagBox {
  background-color: #fff;
  border-radius: 8px;
  padding-inline: 30px;
  padding-block: 20px;
}
@media only screen and (max-width: 767px) {
  .voiceTagBox {
    padding-inline: 20px;
    padding-block: 15px;
  }
}

.voiceTagBoxTitle {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 0.9em;
}
@media only screen and (max-width: 767px) {
  .voiceTagBoxTitle {
    font-size: 18px;
  }
}

.voiceTagList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 10px;
}
@media only screen and (max-width: 767px) {
  .voiceTagList {
    gap: 5px;
  }
}

.voiceTag a {
  border: 1px solid var(--mainColor);
  border-radius: 30px;
  color: var(--mainColor);
  display: block;
  padding-inline: 1.4em;
  padding-block: 0.7em;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.voiceTag:hover a, .voiceTag.active a {
  color: #fff;
  background-color: var(--mainColor);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .voiceTag a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .voiceTag a {
    font-size: 12px;
    padding-inline: 1.1em;
  }
}

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

/*==================================================
 * お客様の声 - 詳細
*================================================*/
@media print, screen and (min-width: 768px) {
  .singleVoiceHead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .singleVoiceHead .singleVoiceImgBox {
    width: 37.5%;
  }
  .singleVoiceHead .singleVoiceTxBox {
    padding-left: 5%;
    width: 61.5%;
  }
}
@media only screen and (max-width: 767px) {
  .singleVoiceHead .singleVoiceImgBox {
    margin-inline: auto;
    margin-bottom: 5%;
    width: 75%;
  }
}

.singleVoiceCate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 10px;
  margin-bottom: 3%;
}
.singleVoiceCate span {
  display: inline-block;
  border: 1px solid var(--mainColor);
  padding-inline: 0.8em;
  padding-block: 0.4em;
  font-size: 14px;
  color: var(--mainColor);
  line-height: 1;
}

.singleVoiceTitle span {
  display: block;
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .singleVoiceTitle span {
    font-size: 18px;
  }
}

.singleVoiceInfo {
  color: var(--grayColor);
  margin-block: 0.2em 1em;
}

.singleVoiceTx p {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .singleVoiceTx p {
    font-size: 14px;
  }
}

.singleVoiceMessage {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 40px rgba(230, 188, 223, 0.4);
          box-shadow: 0 0 40px rgba(230, 188, 223, 0.4);
  padding-inline: 80px 40px;
  padding-block: 40px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .singleVoiceMessage {
    padding-inline: 40px;
    padding-block: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .singleVoiceMessage {
    padding-inline: 20px;
    padding-block: 20px;
  }
}

.singleVoiceMessageTitle {
  font-size: 24px;
  color: var(--mainColor);
  margin-bottom: 0.8em;
}
@media only screen and (max-width: 767px) {
  .singleVoiceMessageTitle {
    font-size: 18px;
    margin-bottom: 0.5em;
  }
}

.singleVoiceMessageTx {
  color: var(--mainColor);
  font-size: 18px;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .singleVoiceMessageTx {
    font-size: 14px;
    line-height: 1.6;
  }
}

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

/*==================================================
 * お問い合わせ
*================================================*/
.otherContactBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .otherContactBox {
    grid-template-columns: 0.8fr;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.otherContactBtn {
  border-radius: 8px;
  padding-inline: 20px;
  padding-block: 20px;
  background-color: var(--subColor);
  text-align: center;
}

.otherContactBtnLabel {
  color: #fff;
  font-size: 12px;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 4px;
  padding-inline: 0.7em;
  padding-block: 0.5em;
  line-height: 1;
  margin-bottom: 0.6em;
}

.otherContactBtnTitle {
  color: #fff;
  display: block;
}

/* ==========================================================================
   印刷用
   ========================================================================== */
/* -------------------------------------------------------------- 
 
 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;
  }
}