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

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


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

*/
/* ----------------------------------
使う↓
---------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");
:root {
  --mainColor: #0054A6;
  --mainColorLight: #EEF0F3;
  --subColor: #E65400;
  --subColorLight: #FFF9F6;
}

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

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

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

.bgMainColorLight {
  background-color: var(--mainColorLight);
}

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

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

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

.bgsubColorLight {
  background-color: var(--subColorLight);
}

.grayColor {
  color: #F7F7F7;
}

.bgGrayColor {
  background-color: #F7F7F7;
}

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

.bgGrayColorLight {
  background-color: #f9f9f9;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

.bgBlueLight {
  background-color: #ECF0F3;
}

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

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

:root {
  --fontNum: "League Spartan", sans-serif;
}

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

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

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

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

:root {
  --fontColor: #1E1E1E;
}

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;
  }
  .notTab {
    display: none !important;
  }
}
@media screen and (min-width: 960px) {
  .tab {
    display: none !important;
  }
}
/*余白*/
.m0 {
  margin: 0;
}

.p0 {
  padding: 0;
}

.mtAuto {
  margin-top: auto;
}

.mrAuto {
  margin-right: auto;
}

.mbAuto {
  margin-bottom: auto;
}

.mlAuto {
  margin-left: auto;
}

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

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

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

.ml05 {
  margin-left: 0.5em;
}

.ml1 {
  margin-left: 1em;
}

.ml2 {
  margin-left: 2em;
}

.ml3 {
  margin-left: 3em;
}

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

.mr1 {
  margin-right: 1em;
}

.mr2 {
  margin-right: 2em;
}

.mr3 {
  margin-right: 3em;
}

@media only screen and (max-width: 767px) {
  .mrSp0 {
    margin-right: 0;
  }
  .mrSp1 {
    margin-right: 1em;
  }
  .mrSp2 {
    margin-right: 2em;
  }
  .mrSp3 {
    margin-right: 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%;
  }
}
.gap10 {
  gap: 10px;
}

.gap20 {
  gap: 20px;
}

.gap30 {
  gap: 30px;
}

.gap40 {
  gap: 40px;
}

.gap50 {
  gap: 50px;
}

.gap60 {
  gap: 60px;
}

.gap70 {
  gap: 70px;
}

.gap80 {
  gap: 80px;
}

.gap90 {
  gap: 90px;
}

.gap100 {
  gap: 100px;
}

/*flex・グリッド系*/
.grid {
  display: grid;
}

.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;
  }
  .colSpNone {
    padding-inline: 0;
  }
  .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%;
}

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

.cntSs {
  max-width: 560px;
  margin-inline: auto;
  padding-inline: 15px;
}

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

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

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

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

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

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

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

.paNone {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

.marginCenter {
  margin-inline: auto;
}

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

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

.bgImgHeight {
  padding-bottom: 67%;
}

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

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

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

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

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

.bgWhite {
  background-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

.radiusCircle {
  border-radius: 50%;
}

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

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

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

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

/*マウスストーカー*/
.pageHeaderImg {
  padding-block: 90px 30px;
  position: relative;
  z-index: 2;
}
.pageHeaderImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--fontColor);
  opacity: 0.3;
  height: 100%;
  width: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}

.pageHeaderTitleEn {
  text-align: center;
  font-size: clamp(45px, 10.2vw, 130px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--fontEn);
  white-space: nowrap;
}

.pageHeaderTitleJp {
  color: #fff;
  font-family: var(--serif);
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  letter-spacing: 0.08em;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .pageHeaderTitleJp {
    font-size: 20px;
  }
}

.serviceHeaderImg {
  padding-block: clamp(180px, 34.4vw, 440px) 50px;
  position: relative;
  z-index: 2;
}
.serviceHeaderImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--fontColor);
  opacity: 0.3;
  height: 100%;
  width: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .serviceHeaderImg {
    padding-bottom: 17px;
  }
}

.serviceHeaderTitleJp {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(28px, 4.1vw, 52px);
  line-height: 1;
  margin-bottom: 0.3em;
  letter-spacing: 0.1em;
}

.serviceHeaderTxt {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceHeaderTxt {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceHeaderTxt {
    font-size: 14px;
  }
}

.serviceHeaderTitleEn {
  color: #fff;
  font-family: var(--fontEn);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.15;
  font-size: clamp(60px, 8.6vw, 110px);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.08em;
  z-index: -1;
}

/*==================================================
 * 独自クラス（このサイトだけ）
 *================================================*/
.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;
}

.circleArw {
  background-color: var(--mainColor);
  border-radius: 50%;
  display: block;
  position: relative;
  height: 30px;
  width: 30px;
}
.circleArw::before {
  color: #fff;
  content: "\f105";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Font Awesome 6 Pro";
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0;
}
.circleArw.whitePt {
  background-color: #fff;
}
.circleArw.whitePt::before {
  color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .circleArw {
    height: 30px;
    width: 30px;
  }
}

.hamMenuSec {
  background-color: var(--mainColor);
  position: fixed;
  top: 0;
  left: 0;
  padding-block: 50px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 100vh;
  width: 100%;
  z-index: 9999;
}
.open .hamMenuSec {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .hamMenuSec {
    padding-block: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .hamMenuSec {
    padding-block: 30px;
  }
}

.hamMenuSecClose {
  cursor: pointer;
  position: absolute;
  top: -37px;
  right: -13px;
}
.hamMenuSecClose i {
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .hamMenuSecClose {
    top: 15px;
    right: 23px;
  }
  .hamMenuSecClose i {
    font-size: 22px;
  }
}

.humMenuLogo {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .humMenuLogo {
    margin-inline: auto;
    width: 190px;
  }
  .humMenuLogo img {
    width: 100%;
  }
}

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

.humMenuHeadCard {
  -webkit-box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25);
}

.humMenuHeadCardImgBox {
  overflow: hidden;
}
.humMenuHeadCardImgBox .humMenuHeadCardImg {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 54%;
  width: 100%;
}
.humMenuHeadCardLink:hover .humMenuHeadCardImgBox .humMenuHeadCardImg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media only screen and (max-width: 767px) {
  .humMenuHeadCardImgBox .humMenuHeadCardImg {
    padding-bottom: 65%;
  }
}

.humMenuHeadCardTitle {
  background-color: #fff;
  -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: 10px;
  padding: 15px 20px;
}
.humMenuHeadCardTitle .humMenuHeadCardTitleTxt {
  color: var(--mainColor);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .humMenuHeadCardTitle {
    padding: 10px 15px;
  }
  .humMenuHeadCardTitle .humMenuHeadCardTitleTxt {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .humMenuHeadCardTitle {
    gap: 5px;
    padding: 8px 5px;
  }
  .humMenuHeadCardTitle .humMenuHeadCardTitleTxt {
    font-size: 12px;
  }
  .humMenuHeadCardTitle .humMenuHeadCardTitleIcon {
    height: 15px;
    width: 15px;
  }
  .humMenuHeadCardTitle .humMenuHeadCardTitleIcon::before {
    font-size: 0.8em;
    top: 55%;
  }
}

.humMenuBody {
  display: grid;
  grid-template-columns: 0.68fr 0.32fr;
  gap: 70px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .humMenuBody {
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .humMenuBody {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
}

.humMenuBodyTitle {
  background-color: #fff;
  color: var(--mainColor);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.08em;
  font-size: 22px;
  line-height: 1;
  padding-inline: 1em;
  padding-block: 5px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .humMenuBodyTitle {
    padding-block: 9px;
    font-size: 20px;
  }
}

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

.humMenuBodyDl {
  padding-block: 0.6em;
  border-bottom: 1px solid #fff;
}
.humMenuBodyDl dt, .humMenuBodyDl dd {
  color: #fff;
  letter-spacing: 0.08em;
}
.humMenuBodyDl dt {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.humMenuBodyDl dt a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.humMenuBodyDl dt a:hover {
  opacity: 0.7;
}
.humMenuBodyDl dd ul li {
  margin-block: 0.3em;
  margin-left: 1.3em;
}
.humMenuBodyDl dd ul li a {
  position: relative;
}
.humMenuBodyDl dd ul li a::before {
  content: "";
  position: absolute;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
}
.humMenuBodyDl dd ul li a:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .humMenuBodyDl dt {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .humMenuBodyDl {
    padding-block: 0.9em;
  }
  .humMenuBodyDl.spAcd dt {
    position: relative;
  }
  .humMenuBodyDl.spAcd dt a {
    pointer-events: none;
  }
  .humMenuBodyDl.spAcd dt .acdIcon {
    background-color: #fff;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 10px;
    height: 1.3em;
    width: 1.3em;
  }
  .humMenuBodyDl.spAcd dt .acdIcon::before, .humMenuBodyDl.spAcd dt .acdIcon::after {
    content: "";
    position: absolute;
    background-color: var(--mainColor);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 1px;
    width: 0.8em;
  }
  .humMenuBodyDl.spAcd dt .acdIcon::before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .humMenuBodyDl.spAcd dt.open .acdIcon::before {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  .humMenuBodyDl.spAcd dd {
    display: none;
  }
}

.humMenuFoot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media only screen and (max-width: 959px) {
  .humMenuFoot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .humMenuFoot .flexPc {
    width: 100%;
  }
}

.humMenuFootBtn {
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.humMenuFootBtn .humMenuFootLink {
  -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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 30px;
  height: 100%;
  width: 100%;
}
.humMenuFootBtn:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
.contactPartsBtns .humMenuFootBtn {
  border: 1px solid #fff;
  background-color: var(--mainColor);
  color: #fff;
  width: 100%;
}
.contactPartsBtns .humMenuFootBtn .humMenuFootLink {
  padding-inline: 90px;
}
@media print, screen and (min-width: 768px) {
  .humMenuFootBtn {
    height: 110px;
    width: 455px;
  }
  .humMenuFootBtn + .humMenuFootBtn {
    margin-left: 15px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .contactPartsBtns .humMenuFootBtn .humMenuFootLink {
    padding-inline: 30px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .humMenuFootBtn {
    height: 110px;
    width: 50%;
  }
  .humMenuFootBtn + .humMenuFootBtn {
    margin-left: 15px;
  }
  .humMenuFootBtn .humMenuFootLink {
    padding-inline: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .humMenuFootBtn {
    height: 80px;
  }
  .humMenuFootBtn + .humMenuFootBtn {
    margin-top: 10px;
  }
  .contactPartsBtns .humMenuFootBtn .humMenuFootLink {
    padding-inline: 30px;
  }
}

.humMenuFootBtnTitle {
  -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: 10px;
  width: 100%;
}
.telLink .humMenuFootBtnTitle {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.humMenuFootBtnTitle .humMenuFootBtnTxt {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .humMenuFootBtnTitle .humMenuFootBtnTxt {
    font-size: 18px;
  }
}

.humMenuFootBtnIcon i {
  color: var(--mainColor);
  font-size: 26px;
  line-height: 1;
}
.contactPartsBtns .humMenuFootBtnIcon i {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .humMenuFootBtnIcon i {
    font-size: 22px;
  }
}

.humMenuFootBtnTel {
  color: var(--mainColor);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
}
.contactPartsBtns .humMenuFootBtnTel {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .humMenuFootBtnTel {
    font-size: 30px;
  }
}

.humMenuFootSns {
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 5px;
  height: 65px;
  width: 65px;
}
.humMenuFootSns img {
  height: 40px;
  width: 40px;
}
.humMenuFootSns + .humMenuFootSns {
  margin-left: 10px;
}
.humMenuFootSns:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
@media only screen and (max-width: 767px) {
  .humMenuFootSns {
    padding: 9px;
    height: 45px;
    width: 45px;
  }
  .humMenuFootSns img {
    height: 27px;
    width: 27px;
  }
}

/*ハンバーガーメニュー*/
.menu-btn {
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 1000;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 6px;
}

.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: 24px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--mainColor);
}
.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: 3px;
}
.menu-trigger.active span {
  background-color: var(--mainColor);
}
.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(-8px) rotate(45deg);
          transform: translateY(-8px) 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
 *================================================*/
/*==================================================
 * トップページ
 *================================================*/
/*==================================================
 * 下層ページ
 *================================================*/
/*共通部分------------------------------------*/
/*パンくず*/
.breadcrumbs {
  margin-block: 10px;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs {
    margin-block: 3px;
  }
}

.breadcrumbsInner span {
  font-size: 12px;
  font-family: var(--fontJp);
}
@media only screen and (max-width: 767px) {
  .breadcrumbsInner span {
    font-size: 11px;
  }
}

/*パンくず終わり*/
/*新着情報------------------------------------*/
@media print, screen and (min-width: 768px) {
  .topics-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
  }
  .topics-block .topics-listIn,
  .topics-block .topics-contents {
    width: 73%;
  }
  .topics-block .topics-side {
    width: 27%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topics-block {
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .topics-block .topics-side {
    margin-top: 10%;
  }
}

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

.topics-titleBox {
  border-bottom: 1px dashed #A8BED4;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.topics-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.topics-info .topics-cate {
  color: #fff;
  background-color: var(--mainColor);
  padding-inline: 0.6em;
  padding-block: 0.4em;
  line-height: 1;
  font-size: 14px;
}
.topics-info .topics-time {
  color: var(--mainColor);
}

.topics-title {
  font-size: 33px;
  line-height: 1.3;
  font-family: var(--serif);
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .topics-title {
    font-size: 20px;
  }
}

.topics-tag {
  display: grid;
  grid-template-columns: 50px auto;
  gap: 5px;
}

.topics-tagslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 10px;
}
.topics-tagslist li a {
  background-color: var(--mainColorLight);
  font-size: 14px;
  border-radius: 30px;
  line-height: 1;
  padding-inline: 1.1em;
  padding-block: 0.4em;
}

/*お問い合わせページ------------------------------------*/
.contactBox {
  margin-block: 40px;
}
.contactBox input[type=radio] {
  display: none;
}
.contactBox input[type=radio] + span {
  padding-left: 1.7em;
  position: relative;
  font-size: 16px;
  letter-spacing: 0.08em;
}
.contactBox input[type=radio] + span::before {
  content: "";
  position: absolute;
  border: 1px solid #333;
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  border-radius: 50%;
  height: 16px;
  width: 16px;
}
.contactBox input[type=radio] + span::after {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  border-radius: 50%;
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 10px;
  width: 10px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .contactBox input[type=radio] + span::after {
    top: 47%;
  }
}
.contactBox input[type=radio]:checked + span::after {
  display: block;
}
@media only screen and (max-width: 767px) {
  .contactBox input[type=radio] + span {
    font-size: 14px;
  }
}
.contactBox input[type=checkbox] {
  display: none;
}
.contactBox input[type=checkbox] + span {
  cursor: pointer;
  padding-left: 1.7em;
  position: relative;
}
.contactBox input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  border: 1px solid #333;
  background-color: #fff;
  top: 0;
  left: 0;
  height: 1em;
  width: 1em;
}
.contactBox input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  border-left: 2px solid var(--mainColor);
  border-bottom: 2px solid var(--mainColor);
  top: 1px;
  left: 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  height: 8px;
  width: 14px;
  display: none;
}
.contactBox input[type=checkbox]:checked + span::after {
  display: block;
}
@media only screen and (max-width: 767px) {
  .contactBox tr {
    margin-bottom: 2em;
  }
  .contactBox .title {
    font-size: 14px;
  }
}
.contactBox option,
.contactBox textarea,
.contactBox select,
.contactBox input[type=number],
.contactBox input[type=tel],
.contactBox input[type=text],
.contactBox input[type=email],
.contactBox input[type=search],
.contactBox input[type=url] {
  background-color: var(--mainColorLight);
  width: 100%;
  border: none;
  border-radius: 2px;
  padding: 1em;
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 1.4;
  border-radius: 7px;
}
.contactBox option::-webkit-input-placeholder,
.contactBox textarea::-webkit-input-placeholder,
.contactBox select::-webkit-input-placeholder,
.contactBox input[type=number]::-webkit-input-placeholder,
.contactBox input[type=tel]::-webkit-input-placeholder,
.contactBox input[type=text]::-webkit-input-placeholder,
.contactBox input[type=email]::-webkit-input-placeholder,
.contactBox input[type=search]::-webkit-input-placeholder,
.contactBox input[type=url]::-webkit-input-placeholder {
  color: #c1c1c1;
}
.contactBox option::-moz-placeholder,
.contactBox textarea::-moz-placeholder,
.contactBox select::-moz-placeholder,
.contactBox input[type=number]::-moz-placeholder,
.contactBox input[type=tel]::-moz-placeholder,
.contactBox input[type=text]::-moz-placeholder,
.contactBox input[type=email]::-moz-placeholder,
.contactBox input[type=search]::-moz-placeholder,
.contactBox input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.contactBox option:-ms-input-placeholder,
.contactBox textarea:-ms-input-placeholder,
.contactBox select:-ms-input-placeholder,
.contactBox input[type=number]:-ms-input-placeholder,
.contactBox input[type=tel]:-ms-input-placeholder,
.contactBox input[type=text]:-ms-input-placeholder,
.contactBox input[type=email]:-ms-input-placeholder,
.contactBox input[type=search]:-ms-input-placeholder,
.contactBox input[type=url]:-ms-input-placeholder {
  color: #c1c1c1;
}
.contactBox option::-ms-input-placeholder,
.contactBox textarea::-ms-input-placeholder,
.contactBox select::-ms-input-placeholder,
.contactBox input[type=number]::-ms-input-placeholder,
.contactBox input[type=tel]::-ms-input-placeholder,
.contactBox input[type=text]::-ms-input-placeholder,
.contactBox input[type=email]::-ms-input-placeholder,
.contactBox input[type=search]::-ms-input-placeholder,
.contactBox input[type=url]::-ms-input-placeholder {
  color: #c1c1c1;
}
.contactBox option::-webkit-input-placeholder, .contactBox textarea::-webkit-input-placeholder, .contactBox select::-webkit-input-placeholder, .contactBox input[type=number]::-webkit-input-placeholder, .contactBox input[type=tel]::-webkit-input-placeholder, .contactBox input[type=text]::-webkit-input-placeholder, .contactBox input[type=email]::-webkit-input-placeholder, .contactBox input[type=search]::-webkit-input-placeholder, .contactBox input[type=url]::-webkit-input-placeholder {
  color: #c1c1c1;
}
.contactBox option::-moz-placeholder, .contactBox textarea::-moz-placeholder, .contactBox select::-moz-placeholder, .contactBox input[type=number]::-moz-placeholder, .contactBox input[type=tel]::-moz-placeholder, .contactBox input[type=text]::-moz-placeholder, .contactBox input[type=email]::-moz-placeholder, .contactBox input[type=search]::-moz-placeholder, .contactBox input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.contactBox option:-ms-input-placeholder, .contactBox textarea:-ms-input-placeholder, .contactBox select:-ms-input-placeholder, .contactBox input[type=number]:-ms-input-placeholder, .contactBox input[type=tel]:-ms-input-placeholder, .contactBox input[type=text]:-ms-input-placeholder, .contactBox input[type=email]:-ms-input-placeholder, .contactBox input[type=search]:-ms-input-placeholder, .contactBox input[type=url]:-ms-input-placeholder {
  color: #c1c1c1;
}
.contactBox option::-ms-input-placeholder, .contactBox textarea::-ms-input-placeholder, .contactBox select::-ms-input-placeholder, .contactBox input[type=number]::-ms-input-placeholder, .contactBox input[type=tel]::-ms-input-placeholder, .contactBox input[type=text]::-ms-input-placeholder, .contactBox input[type=email]::-ms-input-placeholder, .contactBox input[type=search]::-ms-input-placeholder, .contactBox input[type=url]::-ms-input-placeholder {
  color: #c1c1c1;
}
.contactBox option::placeholder,
.contactBox textarea::placeholder,
.contactBox select::placeholder,
.contactBox input[type=number]::placeholder,
.contactBox input[type=tel]::placeholder,
.contactBox input[type=text]::placeholder,
.contactBox input[type=email]::placeholder,
.contactBox input[type=search]::placeholder,
.contactBox input[type=url]::placeholder {
  color: #c1c1c1;
}
@media only screen and (max-width: 767px) {
  .contactBox option,
  .contactBox textarea,
  .contactBox select,
  .contactBox input[type=number],
  .contactBox input[type=tel],
  .contactBox input[type=text],
  .contactBox input[type=email],
  .contactBox input[type=search],
  .contactBox input[type=url] {
    font-size: 13px;
  }
}

.contactBoxTitle {
  font-size: 28px;
  font-family: var(--serif);
  letter-spacing: 0.08em;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: 1px solid #A8BED4;
  position: relative;
}
.contactBoxTitle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--mainColor);
  height: 1px;
  width: 4em;
}
@media only screen and (max-width: 767px) {
  .contactBoxTitle {
    font-size: 20px;
  }
}

.contactList {
  padding-block: 13px;
  border-bottom: 1px solid var(--mainColorLight);
}
.contactList dd .ddRadio,
.contactList dd .ddCheck {
  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: 5px 15px;
}
.contactList dd .address-detail {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: 150px auto;
  margin-block: 7px;
}
.contactList dd .address-postal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.contactList dd .address-postal > span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.contactList dd .address-postal > span input[type=text] {
  max-width: 150px;
}
.contactList dd .address-postal .addressSearchBtn {
  cursor: pointer;
  background-color: var(--mainColor);
  color: #fff;
  padding-inline: 1.2em;
  padding-block: 0.5em;
  text-align: center;
  display: inline-block;
}
.mw_wp_form_confirm .contactList dd .address-postal .addressSearchBtn {
  display: none;
}
.contactList dd .privacyCheckBox {
  display: grid;
  gap: 10px;
}
@media print, screen and (min-width: 768px) {
  .contactList {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contactList dt {
    width: 230px;
  }
  .contactList dd {
    width: calc(100% - 230px);
  }
}
@media only screen and (max-width: 767px) {
  .contactList {
    padding-block: 10px;
  }
  .contactList dd .address-detail {
    grid-template-columns: 120px auto;
  }
  .contactList dd .address-detail span {
    font-size: 13px;
  }
}

.contactTitle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.contactTitle span {
  font-weight: 600;
}
.contactTitle .require,
.contactTitle .any {
  color: #fff;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  padding-inline: 0.4em;
  padding-block: 0.4em;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1;
}
.contactTitle .require {
  background-color: #D44C4C;
}
.contactTitle .any {
  background-color: #424242;
}
@media only screen and (max-width: 767px) {
  .contactTitle span {
    font-size: 16px;
  }
}

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

.contactBtns {
  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;
  gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.submit_btn {
  display: inline-block;
  position: relative;
}
.submit_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  height: 10px;
  width: 10px;
}
.submit_btn input[type=submit] {
  cursor: pointer;
  border: 1px solid var(--mainColor);
  background-color: var(--mainColor);
  color: #fff;
  font-size: 16px;
  padding-inline: 2em 6em;
  padding-block: 1em;
  border-radius: 50px;
  letter-spacing: 0.08em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.submit_btn:hover::before {
  border-top-color: var(--mainColor);
  border-right-color: var(--mainColor);
}
.submit_btn:hover input[type=submit] {
  color: var(--mainColor);
  background-color: #fff;
}
.submit_btn .wpcf7-spinner {
  position: absolute;
}

.back_btn {
  display: inline-block;
  position: relative;
}
.back_btn input[type=submit] {
  cursor: pointer;
  border: 1px solid var(--mainColorLight);
  background-color: var(--mainColorLight);
  font-size: 16px;
  padding-inline: 4em;
  padding-block: 1em;
  border-radius: 50px;
  letter-spacing: 0.08em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.back_btn:hover input[type=submit] {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.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-block;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
  color: var(--mainColor);
}
.entry .wp-block-button {
  margin-block: 1% 5%;
}
.entry .wp-block-button__link {
  color: #fff;
  text-decoration: none;
}
.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;
}
.entry p.has-medium-font-size {
  font-weight: 600;
  font-size: 24px !important;
  margin-bottom: 0.5em;
  letter-spacing: 0.13em;
}
@media only screen and (max-width: 767px) {
  .entry p {
    font-size: 14px;
    line-height: 1.6;
  }
  .entry p.has-medium-font-size {
    font-size: 18px !important;
  }
}
.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: 18px;
    padding: 0.6em 0.8em;
    line-height: 1.4;
  }
}
.entry h2 {
  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-block: 0.3em;
  padding-left: 0.3em;
  margin-bottom: 2%;
  border-bottom: 2px solid var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    font-size: 20px;
    margin: 12% auto 6%;
    padding-block: 0.3em;
  }
}
.entry.event-entry h3 {
  font-size: 32px;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .entry.event-entry h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}
.entry h4 {
  position: relative;
  border-bottom: 2px solid #b8b8b8;
  font-size: 22px;
  font-weight: 600;
  padding-left: 0.3em;
  padding-bottom: 0.3em;
  margin-bottom: 2%;
}
.entry h4::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 15%;
  height: 3px;
  background-color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h4 {
    font-size: 20px;
    margin: 10% auto 6%;
  }
  .entry h4::after {
    width: 35%;
  }
}
.entry h5 {
  font-size: 21px;
  font-weight: 600;
  padding-left: 0.3em;
  padding-block: 0.3em;
  margin-block: 3%;
  border-block: 1px solid var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h5 {
    font-size: 20px;
    margin: 5% auto 3%;
  }
}
.entry h6 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: var(--serif);
  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;
}
@media only screen and (max-width: 767px) {
  .entry .wp-block-gallery {
    display: block;
  }
  .entry .wp-block-gallery > figure,
  .entry .wp-block-gallery > img {
    width: 100% !important;
  }
}

/*目次*/
.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%;
}

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

.cateCss {
  display: inline-block;
  font-size: 14px;
  background-color: var(--mainColor);
  font-family: var(--fontJp);
  color: #fff;
  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: 13px;
  color: var(--fontColor);
}
.singleColumnInfoUl .cateUl {
  display: inline-block;
}
.singleColumnInfoUl .cateUl li {
  display: inline-block;
  font-size: 14px;
  background-color: var(--mainColor);
  font-family: var(--fontJp);
  color: #fff;
  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;
}
@media only screen and (max-width: 767px) {
  .singleColumnShareButton i {
    font-size: 16px;
  }
}
.singleColumnShareButton i {
  margin-right: 0.5rem;
}
.singleColumnShareButton.twitter {
  background: #000;
  border: 1px solid #000;
}
.singleColumnShareButton.twitter:hover {
  background: #fff;
  color: #000;
}
.singleColumnShareButton.facebook {
  background: #1877f2;
  border: 1px solid #1877f2;
}
.singleColumnShareButton.facebook:hover {
  background: #fff;
  color: #1877f2;
}
.singleColumnShareButton.line {
  background: #4CC764;
  border: 1px solid #4CC764;
}
.singleColumnShareButton.line:hover {
  background: #fff;
  color: #4CC764;
}

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

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

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

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

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

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

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

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

/*次のページを見る*/
.singlePagenation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 120px;
}

.singlePagenationBox {
  position: relative;
  z-index: 2;
}
.singlePagenationBox::before {
  content: "";
  background-color: #072F56;
  position: absolute;
  opacity: 0.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.singlePagenationBox:hover::before {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .singlePagenationBox::before {
    opacity: 0.6;
  }
}

.singlePagenationLink {
  display: block;
  padding-block: 65px 10px;
  padding-inline: 20px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .singlePagenationLink {
    padding-block: 45px 10px;
    padding-inline: 10px;
  }
}

.linkLabel {
  background-color: var(--mainColorLight);
  color: var(--mainColor);
  font-family: var(--serif);
  position: absolute;
  top: 0;
  display: inline-block;
  line-height: 1;
  font-size: 14px;
  padding-inline: 1em;
  padding-block: 0.4em;
  letter-spacing: 0.1em;
}
.prev .linkLabel {
  left: 0;
}
.next .linkLabel {
  right: 0;
}

.link-postTime {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0.5em;
}

.link-posttitle {
  color: #fff;
}

.otherTopicsTitle {
  position: relative;
  border-bottom: 2px solid #b8b8b8;
  font-size: 36px;
  letter-spacing: 0.06em;
  font-family: var(--serif);
  color: var(--mainColor);
  font-weight: 600;
  padding-left: 0.3em;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
}
.otherTopicsTitle::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 15%;
  height: 3px;
  background-color: var(--mainColor);
}
.otherTopicsTitle span {
  font-size: 16px;
  font-family: var(--gothic);
  margin-left: 1em;
}
@media only screen and (max-width: 767px) {
  .otherTopicsTitle {
    font-size: 20px;
    margin: 10% auto 6%;
  }
  .otherTopicsTitle::after {
    width: 35%;
  }
}

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

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

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

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

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

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

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

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

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

.cmNewsListInfoUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4em 0.5em;
  line-height: 1;
}
.cmNewsListInfoUl li {
  display: inline-block;
  font-size: 14px;
  background-color: var(--mainColor);
  font-family: var(--fontJp);
  color: #fff;
  padding: 0.3em 0.6em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .cmNewsListInfoUl li {
    font-size: 11px;
  }
}

.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 {
  text-align: center;
  color: var(--fontColor);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  width: 40px;
}
.pagenation ul li.active {
  background-color: var(--mainColorLight);
}
.pagenation ul .prev a,
.pagenation ul .next a {
  display: block;
  position: relative;
}
.pagenation ul .prev a::before,
.pagenation ul .next a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  border-top: 2px solid var(--mainColor);
  border-right: 2px solid var(--mainColor);
  height: 10px;
  width: 10px;
}
.pagenation ul .prev a::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
  margin-left: 0.1em;
}
@media only screen and (max-width: 767px) {
  .pagenation {
    margin-top: 15%;
  }
  .pagenation ul li.active,
  .pagenation ul li a {
    font-size: 20px;
    height: 30px;
    width: 30px;
  }
}

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

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

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

/*==================================================
 * サイドバー
 *================================================*/
.sidebarBox + .sidebarBox {
  margin-top: 30px;
}

.sidebarBoxTitleCnt {
  border-bottom: 1px solid #A8BED4;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.sidebarBoxTitleCnt::before {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 4em;
}
.sidebarBoxTitleCnt .sidebarBoxTitleEn {
  color: var(--mainColor);
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.sidebarBoxTitleCnt .sidebarBoxTitlejp {
  color: var(--mainColor);
  font-size: 14px;
  line-height: 1;
  margin-top: 0.5em;
}

.side-tagBlock ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.side-tagBlock li {
  display: inline-block;
}
.side-tagBlock li a {
  display: inline-block;
  background-color: var(--mainColorLight);
  text-align: center;
  padding-block: 0.3em;
  padding-inline: 0.7em;
  border-radius: 30px;
  font-size: 14px !important;
}

.side-listCnt a {
  display: block;
  padding-block: 0.3em;
}

.side-archvieBlock li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

/*==================================================
 * 共通
*================================================*/
/*共通部分*/
html,
body {
  overscroll-behavior-y: none; /* 縦方向のオーバースクロールを無効化 */
}

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 {
  overflow-x: hidden;
  overflow-y: auto;
}

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

:root {
  --kazeHeaderH: 95px;
  --mainColor: #18424D;
  --subColor: #6D9DB0;
  --grayColor: #788288;
  --goldColor: #AB9D7A;
  --goldGrade: linear-gradient(91deg, #877F6A 1.24%, #D3C196 55.55%, #7E7664 105.83%);
  --cntW: 60px;
  --widgetH: 65px;
}
@media only screen and (max-width: 767px) {
  :root {
    --kazeHeaderH: 65px;
  }
}

:root {
  --fontEn: "Cormorant Garamond", serif;
}

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

.cntL {
  max-width: calc(1280px - var(--cntW) * 4 + 30px);
}

.cntM {
  max-width: calc(1280px - var(--cntW) * 6 + 30px);
}

.cntS {
  max-width: calc(1280px - var(--cntW) * 8 + 30px);
}

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

.k-sectionTtl {
  font-size: clamp(24px, 2.5vw, 32px);
  font-family: var(--fontEn);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--goldColor);
}
.k-sectionTtl.__white {
  color: #fff;
}

.pageTitle {
  font-size: clamp(36px, 6.3vw, 80px);
  color: var(--goldColor);
  font-family: var(--fontEn);
  font-weight: 500;
  line-height: 1;
}
.pageTitle .char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: scale(2);
          transform: scale(2);
  -webkit-filter: blur(20px);
          filter: blur(20px);
  will-change: transform, filter;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease, -webkit-filter 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease, -webkit-filter 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease, -webkit-transform 0.6s ease, -webkit-filter 0.6s ease;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.pageTitle .char.is-show {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
@media only screen and (max-width: 767px) {
  .pageTitle {
    margin-inline: -10px;
  }
  .pageTitle .char {
    line-height: 1;
  }
}

.btn {
  border: 1px solid var(--subColor);
  background-color: var(--subColor);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding-inline: 1em;
  padding-block: 0.5em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn:hover {
  background-color: #fff;
}

.btnTx {
  font-family: var(--serif);
  color: #fff;
  letter-spacing: 0.2em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn:hover .btnTx {
  color: var(--subColor);
}

.btnArw {
  line-height: 1;
  margin-top: -0.2em;
}

.whiteSvg {
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(113deg) brightness(103%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(113deg) brightness(103%) contrast(101%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn:hover .whiteSvg {
  -webkit-filter: invert(57%) sepia(60%) saturate(227%) hue-rotate(151deg) brightness(92%) contrast(85%);
          filter: invert(57%) sepia(60%) saturate(227%) hue-rotate(151deg) brightness(92%) contrast(85%);
}

/*==================================================
 * ヘッダー
*================================================*/
.widget {
  position: fixed;
  z-index: 900;
}
@media print, screen and (min-width: 768px) {
  .widget {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .widget {
    bottom: 0;
    left: 0;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .widgetList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #807765;
    height: var(--widgetH);
  }
  .widgetList li + li {
    border-left: 2px dotted #fff;
  }
}

.widgetLink {
  overflow: hidden;
  color: #fff;
  display: inline-block;
  font-family: var(--serif);
  position: relative;
  padding-inline: 3em;
  padding-block: 0.5em;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  z-index: 2;
}
.widgetLink:hover {
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .widgetLink {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    background-color: #fff;
  }
  .widgetLink::before, .widgetLink::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(171, 157, 122, 0.8);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    mix-blend-mode: multiply;
    height: 100%;
    width: 100%;
    z-index: -1;
  }
  .widgetLink::before {
    -webkit-transform: skewY(45deg) perspective(0);
            transform: skewY(45deg) perspective(0);
  }
  .widgetLink::after {
    -webkit-transform: skewY(-45deg) perspective(0);
            transform: skewY(-45deg) perspective(0);
  }
  .widgetLink:hover {
    color: #807765;
  }
  .widgetLink:hover::before {
    top: 100%;
    height: 0;
  }
  .widgetLink:hover::after {
    bottom: 100%;
    height: 0;
  }
}
@media only screen and (max-width: 767px) {
  .widgetLink {
    padding-inline: 10px;
    padding-block: 5px;
  }
  .widgetLink .icon {
    margin-inline: auto;
    display: block;
    width: 23px;
  }
}

.kazenonoHeader {
  position: fixed;
  top: 0;
  left: 0;
  padding-inline: 15px;
  padding-block: 10px;
  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;
  height: var(--kazeHeaderH);
  width: 100%;
  z-index: 900;
}
@media only screen and (max-width: 767px) {
  .kazenonoHeader {
    padding-inline: 10px;
    padding-block: 5px;
  }
}

.kazenonoTitle {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0.7em;
}
@media only screen and (max-width: 767px) {
  .kazenonoTitle {
    font-size: 10px;
  }
}

.kazenonoLogo a {
  display: block;
  width: clamp(150px, 18vw, 230px);
}

.menuCnt {
  cursor: pointer;
  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;
  gap: 10px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s cubic-bezier(0, 0, 0.04, 0.96);
  transition: 0.3s cubic-bezier(0, 0, 0.04, 0.96);
}
.menuCnt .menuCntBorder {
  background-color: #fff;
  display: block;
  height: 1px;
  -webkit-transition: 0.6s cubic-bezier(0, 0, 0.04, 0.96);
  transition: 0.6s cubic-bezier(0, 0, 0.04, 0.96);
  opacity: 1;
}
.menuCnt .menuCntBorder.__01 {
  width: 47px;
}
.menuCnt .menuCntBorder.__02 {
  width: 35px;
}
.menuCnt .menuCntBorder.__03 {
  width: 20px;
}
.menuCnt:hover .menuCntBorder.__01 {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
}
.menuCnt:hover .menuCntBorder.__03 {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
}
.menuCnt.is-open {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .menuCnt .menuCntBorder.__01 {
    width: 30px;
  }
  .menuCnt .menuCntBorder.__02 {
    width: 26px;
  }
  .menuCnt .menuCntBorder.__03 {
    width: 16px;
  }
}

.menuBlock {
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  height: 100vh;
  padding-inline: min(10vw, 120px) min(4vw, 80px);
  padding-block: min(10vw, 185px);
  width: 480px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.8s cubic-bezier(0, 0, 0.04, 0.96);
  transition: 0.8s cubic-bezier(0, 0, 0.04, 0.96);
  overflow: auto;
  z-index: 901;
}
.menuBlock.is-open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media only screen and (max-width: 767px) {
  .menuBlock {
    padding-inline: 5vw;
    width: 100vw;
  }
}

.menuBlockClose {
  cursor: pointer;
  position: absolute;
  top: 34px;
  right: 10px;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  height: 23px;
  width: 50px;
  z-index: 902;
}
.menuBlockClose::before, .menuBlockClose::after {
  content: "";
  position: absolute;
  background-color: #241614;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 100%;
}
.menuBlockClose::before {
  -webkit-transform: translate(-50%, -50%) rotate(15deg);
          transform: translate(-50%, -50%) rotate(15deg);
}
.menuBlockClose::after {
  -webkit-transform: translate(-50%, -50%) rotate(-15deg);
          transform: translate(-50%, -50%) rotate(-15deg);
}
@media only screen and (max-width: 767px) {
  .menuBlockClose {
    top: 15px;
  }
}

.menuBlockListLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding-block: 1.4em;
  border-bottom: 1px solid #241614;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.menuBlockListLink .menuBlockListTxJp {
  font-family: var(--serif);
  line-height: 1;
  font-size: 18px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.menuBlockListLink .menuBlockListTxEn {
  font-size: 12px;
  line-height: 1;
  font-family: var(--fontEn);
  font-weight: 500;
  color: #8F8F8F;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.menuBlockListLink:hover {
  background-color: rgba(171, 157, 122, 0.7);
  padding-inline: 0.5em;
}
.menuBlockListLink:hover .menuBlockListTxJp {
  color: #fff;
}
.menuBlockListLink:hover .menuBlockListTxEn {
  color: #fff;
}

.menuBlockEnTitle {
  font-size: clamp(70px, 7.9vw, 100px);
  color: #D4D4D4;
  line-height: 1;
  position: absolute;
  bottom: 0;
  left: -0.15em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: var(--fontEn);
  font-weight: 500;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .menuBlockEnTitle {
    opacity: 0.4;
  }
}

.spBlock {
  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;
  text-align: center;
  margin-top: 40px;
}

.spLogo {
  margin-bottom: 20px;
  width: 80px;
}

.spBlockTitle {
  font-size: 18px;
  font-family: var(--serif);
}

.spBlockAddress {
  font-size: 14px;
}

/*==================================================
 * フッター
*================================================*/
.footContactBg {
  position: relative;
  padding-block: 50px;
  z-index: 2;
}
.footContactBg::before, .footContactBg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.footContactBg::before {
  background-image: url("../img/kazenono/footerContactBg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}
.footContactBg::after {
  background-color: rgba(36, 22, 20, 0.6);
  z-index: -2;
}
.footContactBg .commonTtl {
  font-size: clamp(24px, 3.2vw, 40px);
  margin-bottom: 0.4em;
}
.footContactBg .commonTx {
  font-size: clamp(16px, 1.6vw, 20px);
  font-family: var(--serif);
  margin-bottom: 1.3em;
}
.footContactBg .commonSubTx {
  color: #fff;
  text-decoration: underline;
  letter-spacing: 0.08em;
}

.footContactBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 0;
  max-width: 770px;
  margin-inline: auto;
}

.footContactLink {
  overflow: hidden;
  display: inline-block;
  font-size: 24px;
  color: #fff;
  font-family: var(--serif);
  background-color: #fff;
  position: relative;
  padding-inline: 2em;
  padding-block: 1em;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  z-index: 2;
}
.footContactLink::before, .footContactLink::after {
  content: "";
  position: absolute;
  left: 0;
  background-color: rgba(171, 157, 122, 0.8);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  mix-blend-mode: multiply;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.footContactLink::before {
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
  top: 0;
}
.footContactLink::after {
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
  bottom: 0;
}
.footContactLink:hover {
  color: #807765;
}
.footContactLink:hover::before {
  left: 100%;
  width: 0;
}
.footContactLink:hover::after {
  right: 100%;
  width: 0;
}
@media only screen and (max-width: 767px) {
  .footContactLink {
    font-size: 16px;
    width: 80%;
  }
}
.headerMenuBtn .footContactLink {
  font-size: 20px;
  padding-block: 0.8em;
}

.footContactTelBtn {
  color: #fff;
  border: 1px solid #fff;
  padding-block: 20px;
  padding-inline: 50px;
  -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;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .footContactTelBtn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-block: 15px;
    padding-inline: 20px;
  }
}

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

.footContactTelNum {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
}
.footContactTelNum span {
  font-size: 20px;
  line-height: 1;
  margin-right: 0.3em;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .footContactTelNum {
    font-size: 36px;
  }
  .footContactTelNum span {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  footer {
    margin-bottom: var(--widgetH);
  }
}

.footerBlock {
  background-color: #788288;
  padding-block: 40px 20px;
}
.footerBlock .footerLogo {
  margin-bottom: 0;
  width: 100px;
}

.footerHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #fff;
}
.footerHead .leftBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  width: 65%;
}
.footerHead .rightBox {
  width: 35%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerHead .leftBox {
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .footerHead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footerHead .leftBox {
    gap: 30px;
    margin-bottom: 30px;
    width: 100%;
  }
  .footerHead .rightBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    width: 100%;
  }
}

.footerInfo .footerSiteTitle {
  color: #fff;
  font-size: 18px;
  font-family: var(--serif);
  margin-bottom: 1em;
}
.footerInfo .footerAddress {
  color: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .footerInfo .footerSiteTitle {
    margin-bottom: 0.5em;
  }
}

.footerSiteMap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
.footerSiteMap li {
  margin-bottom: 1.5em;
}
.footerSiteMap li:last-child {
  margin-bottom: 0;
}
.footerSiteMap li a {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footerSiteMap li a:hover {
  color: var(--goldColor);
}

.groupLogo {
  margin-bottom: 1%;
  width: 170px;
}

.copryright {
  color: #fff;
  font-size: 12px;
}

.lineBnr {
  margin-inline: auto;
  margin-block: 1% 3%;
}
.lineBnr.__footer {
  max-width: 500px;
}
@media only screen and (max-width: 767px) {
  .lineBnr.__header {
    width: 80%;
  }
}

/*==================================================
 * トップ
*================================================*/
.fvImgBox {
  overflow: hidden;
}
.fvImgBox .fvImg {
  padding-bottom: 100vh;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .fvImgBox .fvImg {
    padding-bottom: 80vh;
  }
}

.fvTxBox {
  position: absolute;
  top: calc(var(--kazeHeaderH) + 10px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1190px;
  padding-inline: 15px;
  margin-inline: auto;
  -webkit-animation: 2s blur-fade ease;
          animation: 2s blur-fade ease;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.fvTxBox .fvTitle {
  color: #fff;
  font-size: clamp(50px, 7.9vw, 100px);
  font-family: var(--serif);
  letter-spacing: 0.1em;
  margin-bottom: 0.2em;
  line-height: 1;
}
.fvTxBox .fvTx {
  color: #fff;
  font-size: clamp(17px, 1.8vw, 22px);
  font-family: var(--serif);
  line-height: 1.8;
  margin-bottom: 1em;
}
.fvTxBox .fvTag {
  color: #fff;
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 20px);
  border: 1px solid #D1C6A0;
  background: var(--goldGrade);
  padding-inline: 0.5em;
  line-height: 1;
  padding-block: 0.4em;
}
@media only screen and (max-width: 767px) {
  .fvTxBox {
    top: calc(var(--kazeHeaderH) + 20px);
    text-align: center;
  }
}

@-webkit-keyframes blur-fade {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes blur-fade {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.fvFeature {
  background-color: var(--mainColor);
  padding-block: 60px 20px;
  position: relative;
  z-index: 2;
}
.fvFeature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--goldGrade);
  opacity: 0.8;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.fvFeature .fvFeatureTitle {
  font-size: 24px;
  margin-block: -80px 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .fvFeature .fvFeatureTitle {
    font-size: 20px;
    margin-block: -80px 0px;
  }
}

.fvFeatureGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .fvFeatureGrid {
    margin-inline: -15px;
  }
  .fvFeatureGrid.siteplanGrid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.fvFeatureItem {
  text-align: center;
  padding-inline: 40px;
}
.siteplanGrid .fvFeatureItem {
  padding-inline: 70px;
}
.fvFeatureItem + .fvFeatureItem {
  position: relative;
}
.fvFeatureItem + .fvFeatureItem::before, .fvFeatureItem + .fvFeatureItem::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  height: 100%;
  width: 1px;
}
.fvFeatureItem + .fvFeatureItem::before {
  -webkit-transform: translate(2px, -50%);
          transform: translate(2px, -50%);
}
.fvFeatureItem + .fvFeatureItem::after {
  -webkit-transform: translate(-2px, -50%);
          transform: translate(-2px, -50%);
}
.fvFeatureItem .fvFeatureItemTag {
  color: #fff;
  font-size: 12px;
  font-family: var(--fontEn);
  font-weight: 500;
  display: inline-block;
  border: 1px solid #D1C6A0;
  background: var(--goldGrade);
  padding-inline: 0.5em;
  line-height: 1;
  padding-block: 0.5em 0.3em;
  margin-bottom: 0.6em;
}
.siteplanGrid .fvFeatureItem .fvFeatureItemTag {
  font-size: 15px;
}
.fvFeatureItem .fvFeatureItemTitle {
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-family: var(--serif);
}
.fvFeatureItem .fvFeatureItemTitle span {
  font-size: 30px;
  line-height: 1.2;
}
.siteplanGrid .fvFeatureItem .fvFeatureItemTitle {
  font-size: 25px;
}
.siteplanGrid .fvFeatureItem .fvFeatureItemTitle span {
  font-size: 38px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fvFeatureItem {
    padding-inline: 30px;
  }
  .siteplanGrid .fvFeatureItem {
    padding-inline: 15px;
  }
  .siteplanGrid .fvFeatureItem .fvFeatureItemTag {
    font-size: 12px;
  }
  .fvFeatureItem .fvFeatureItemTitle {
    font-size: 16px;
  }
  .fvFeatureItem .fvFeatureItemTitle span {
    font-size: 26px;
  }
  .siteplanGrid .fvFeatureItem .fvFeatureItemTitle {
    font-size: 18px;
  }
  .siteplanGrid .fvFeatureItem .fvFeatureItemTitle span {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .fvFeatureItem {
    padding-inline: 8px;
    width: 100%;
  }
  .siteplanGrid .fvFeatureItem {
    padding-inline: 20px;
    padding-block: 15px;
    margin-inline: auto;
    width: 80%;
  }
  .siteplanGrid .fvFeatureItem + .fvFeatureItem::before, .siteplanGrid .fvFeatureItem + .fvFeatureItem::after {
    left: 50%;
    top: 0;
    height: 1px;
    width: 100%;
  }
  .siteplanGrid .fvFeatureItem + .fvFeatureItem::before {
    -webkit-transform: translate(-50%, 2px);
            transform: translate(-50%, 2px);
  }
  .siteplanGrid .fvFeatureItem + .fvFeatureItem::after {
    -webkit-transform: translate(-50%, -2px);
            transform: translate(-50%, -2px);
  }
  .fvFeatureItem .fvFeatureItemTag {
    font-size: 10px;
  }
  .siteplanGrid .fvFeatureItem .fvFeatureItemTag {
    font-size: 12px;
  }
  .fvFeatureItem .fvFeatureItemTitle {
    font-size: 12px;
  }
  .fvFeatureItem .fvFeatureItemTitle span {
    font-size: 17px;
  }
  .siteplanGrid .fvFeatureItem .fvFeatureItemTitle {
    font-size: 18px;
  }
  .siteplanGrid .fvFeatureItem .fvFeatureItemTitle span {
    font-size: 26px;
  }
}

.k-newsCard .img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-bottom: 60%;
  width: 100%;
}
.k-newsCard .date {
  color: #fff;
  font-size: 12px;
  font-family: var(--fontEn);
  font-weight: 500;
  margin-bottom: 0.2em;
  line-height: 1;
}
.k-newsCard .title {
  color: #fff;
  font-size: 18px;
  font-family: var(--serif);
  margin-bottom: 0.1em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.k-newsCard .tx {
  color: #fff;
  font-size: 12px;
}
.k-newsCard:hover .img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.k-newsCard:hover .title {
  color: var(--goldColor);
}

.kazenonoNewsBlock {
  padding-bottom: 60px;
}
.kazenonoNewsBlock .kazenonoNewsDotted {
  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;
  bottom: 0 !important;
}
.kazenonoNewsBlock .kazenonoNewsDotted .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid var(--goldColor);
  opacity: 1;
}
.kazenonoNewsBlock .kazenonoNewsDotted .swiper-pagination-bullet-active {
  background: var(--goldColor);
}
.kazenonoNewsBlock .kazenonoNewsArw {
  cursor: pointer;
  background-color: var(--goldColor);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 25px;
  width: 25px;
}
.kazenonoNewsBlock .kazenonoNewsArw:hover {
  opacity: 0.7;
}
.kazenonoNewsBlock .kazenonoNewsArw::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  height: 8px;
  width: 8px;
}
.kazenonoNewsBlock .kazenonoNewsArw.swiper-button-prev {
  left: -60px;
}
.kazenonoNewsBlock .kazenonoNewsArw.swiper-button-prev::after {
  content: "";
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
  margin-left: 0.05em;
}
.kazenonoNewsBlock .kazenonoNewsArw.swiper-button-next {
  right: -60px;
}
.kazenonoNewsBlock .kazenonoNewsArw.swiper-button-next::after {
  content: "";
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -0.05em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .kazenonoNewsBlock {
    margin-inline: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .kazenonoNewsBlock {
    margin-inline: -15px;
    padding-bottom: 30px;
  }
  .kazenonoNewsBlock .kazenonoNewsArw {
    height: 30px;
    width: 30px;
  }
  .kazenonoNewsBlock .kazenonoNewsArw.swiper-button-prev {
    left: 10px;
  }
  .kazenonoNewsBlock .kazenonoNewsArw.swiper-button-next {
    right: 10px;
  }
}

.scrollTx {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
  padding-right: 0.5em;
  font-size: clamp(80px, 15.7vw, 200px);
  font-family: var(--fontEn);
  font-weight: 500;
  line-height: 1;
  color: var(--goldColor);
  -webkit-animation: marquee-scroll 55s linear infinite;
          animation: marquee-scroll 55s linear infinite;
  text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.12);
}

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

@keyframes marquee-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.kazenonoAboutTx {
  margin-bottom: -80px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .kazenonoAboutTx {
    margin-bottom: -50px;
  }
}
@media only screen and (max-width: 767px) {
  .kazenonoAboutTx {
    margin-bottom: -20px;
  }
}

.aboutStickCnt {
  height: 230vh;
  position: relative;
}

.aboutImgBlockInner {
  display: grid;
  -webkit-transform: rotate(11deg);
          transform: rotate(11deg);
  gap: 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.aboutImgSlideLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  will-change: transform;
  gap: 15px;
}
.aboutImgSlideLine.__line01 {
  -webkit-animation: slideLoop-ltr 50s linear infinite;
          animation: slideLoop-ltr 50s linear infinite;
}
.aboutImgSlideLine.__line02, .aboutImgSlideLine.__line04 {
  -webkit-animation: slideLoop-rtl 55s linear infinite;
          animation: slideLoop-rtl 55s linear infinite;
  margin-left: -40px;
}
.aboutImgSlideLine.__line03 {
  -webkit-animation: slideLoop-ltr 52s linear infinite;
          animation: slideLoop-ltr 52s linear infinite;
}
.aboutImgSlideLine .imgitem {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.aboutImgSlideLine .imgitem .img {
  aspect-ratio: 670/335;
  width: clamp(460px, 52.4vw, 670px);
  overflow: hidden;
}
.aboutImgSlideLine .imgitem .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutImgSlideLine .imgitem .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mainColor);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.aboutImgBlockInner.is-active .aboutImgSlideLine .imgitem .cover {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.aboutImgSlideLine .imgitem:nth-child(1) .cover {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.aboutImgSlideLine .imgitem:nth-child(2) .cover {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.aboutImgSlideLine .imgitem:nth-child(3) .cover {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.aboutImgSlideLine .imgitem:nth-child(4) .cover {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.aboutImgSlideLine .imgitem:nth-child(5) .cover {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.aboutImgSlideLine .imgitem:nth-child(6) .cover {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

@-webkit-keyframes slideLoop-rtl {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideLoop-rtl {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideLoop-ltr {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@keyframes slideLoop-ltr {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
.aboutMainBox {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  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;
  z-index: 2;
}
.aboutMainBox .aboutMainTitleEn {
  background: var(--goldGrade);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: var(--fontEn);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 1em;
}
.aboutMainBox .aboutMainTitle {
  color: #fff;
  font-size: clamp(31px, 4.4vw, 56px);
  font-family: var(--serif);
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 0.3em;
}
.aboutMainBox .aboutMainTx {
  color: #fff;
  font-size: clamp(15px, 1.6vw, 20px);
  font-family: var(--serif);
  line-height: 2.8;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .aboutMainBox .aboutMainTx {
    line-height: 2.3;
  }
}

.pageLinkCnt {
  --gradCurtain: 125px;
  position: relative;
  z-index: 2;
}
.pageLinkCnt::before, .pageLinkCnt::after {
  content: "";
  position: absolute;
  left: 50%;
  height: var(--gradCurtain);
  width: 100%;
  z-index: 3;
}
.pageLinkCnt::before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(37.2%, #18424D), color-stop(83.2%, rgba(24, 66, 77, 0)));
  background: linear-gradient(180deg, #18424D 37.2%, rgba(24, 66, 77, 0) 83.2%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(var(--gradCurtain) * -0.1);
}
.pageLinkCnt::after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(37.2%, #18424D), color-stop(83.2%, rgba(24, 66, 77, 0)));
  background: linear-gradient(180deg, #18424D 37.2%, rgba(24, 66, 77, 0) 83.2%);
  -webkit-transform: translateX(-50%) scale(-1, -1);
          transform: translateX(-50%) scale(-1, -1);
  bottom: calc(var(--gradCurtain) * -0.1);
}
.pageLinkCnt.bottomNone::after {
  content: none;
}
@media only screen and (max-width: 767px) {
  .pageLinkCnt {
    --gradCurtain: 55px;
  }
  .pageLinkCnt.__imgBlock::after {
    bottom: auto;
    top: 250px;
  }
}

.pageLinkCntImg {
  padding-block: 10vw;
  width: 100%;
  position: relative;
  z-index: 2;
}
.pageLinkCntImg.__txBlock::before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, color-stop(56.77%, rgba(24, 66, 77, 0.4)), to(rgba(24, 66, 77, 0)));
  background: linear-gradient(90deg, rgba(24, 66, 77, 0.4) 56.77%, rgba(24, 66, 77, 0) 100%);
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
}
.pageLinkCntImg.__gradeBlock {
  background: var(--goldGrade);
}
.pageLinkCntImg.__designBlock::before {
  content: "";
  position: absolute;
  background-image: url("../img/kazenono/topDesign.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageLinkCntImg {
    padding-block: 16vw;
  }
}
@media only screen and (max-width: 767px) {
  .pageLinkCntImg {
    background-position: center top;
    background-size: 590px auto;
  }
  .pageLinkCntImg.__txBlock::before {
    content: none;
  }
  .pageLinkCntImg.__gradeBlock {
    padding-block: 10vw 20vw;
  }
}

.pageLinkCntTx {
  width: 35vw;
}
.pageLinkCntTx.__design {
  width: 100%;
}
.pageLinkCntTx .secTtlEn,
.pageLinkCntTx .secTtlJp,
.pageLinkCntTx .commonTtl,
.pageLinkCntTx .commonTx {
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageLinkCntTx {
    width: 50vw;
  }
}
@media only screen and (max-width: 767px) {
  .pageLinkCntTx {
    padding-block: 290px 10vw;
    padding-inline: 0;
    width: 100%;
  }
  .pageLinkCntTx.__design {
    padding-block: 45px 10px;
  }
}

.secTtlEn {
  color: #fff;
  font-family: var(--fontEn);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 0.3em;
}
.txGold .secTtlEn {
  color: transparent;
  background: var(--goldGrade);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.secTtlJp {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 20px);
}
.txGold .secTtlJp {
  color: var(--goldColor);
}

.commonTtlEn {
  text-align: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.08em;
  background: var(--goldGrade);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.commonTtl {
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  font-family: var(--serif);
  letter-spacing: 0.15em;
  line-height: 1.5;
  margin-bottom: 0.2em;
}

.commonTx {
  color: #fff;
}

.comingTtlEn {
  font-size: clamp(42px, 6.3vw, 80px);
  line-height: 1;
  color: var(--mainColor);
  letter-spacing: 0.08em;
}

.comingTtlJp {
  color: var(--mainColor);
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .comingTtlJp {
    font-size: 15px;
  }
}

.pageLinkOtherGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: -80px;
}
@media only screen and (max-width: 767px) {
  .pageLinkOtherGrid {
    grid-template-columns: 0.8fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin-top: -30px;
  }
}

.pageLinkItemIn {
  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;
  aspect-ratio: 330/200;
  position: relative;
  z-index: 2;
}
.pageLinkItemIn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--mainColor);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.2;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.pageLinkItemIn:hover::before {
  opacity: 0.5;
}

.pageLinkItemTitle {
  color: #fff;
  font-family: var(--fontEn);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.08em;
  padding-inline: 10px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .pageLinkItemTitle {
    font-size: 16px;
  }
}

.designParts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(36, 22, 20, 0.5);
}
.designParts + .designParts {
  margin-top: 30px;
}
.designParts .designPartsImgBox {
  width: 55%;
}
.designParts .designPartsImgBox .designPartsImg {
  margin-left: -60px;
  width: calc(100% + 60px);
  height: 100%;
}
.designParts .designPartsImgBox .designPartsImg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.designParts .designPartsTxBox {
  color: #fff;
  padding-inline: 30px;
  padding-block: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 45%;
}
.designParts:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.designParts:nth-child(2n) .designPartsImgBox .designPartsImg {
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .designParts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .designParts .designPartsImgBox {
    width: 100%;
  }
  .designParts .designPartsImgBox .designPartsImg {
    margin-left: auto;
    width: 100%;
  }
  .designParts .designPartsTxBox {
    padding-inline: 15px;
    padding-block: 20px;
    width: 100%;
  }
  .designParts:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .designParts:nth-child(2n) .designPartsImgBox .designPartsImg {
    margin-left: auto;
  }
}

.desingPartnerBox .ttl {
  font-size: 12px;
  padding-bottom: 0.6em;
  margin-bottom: 2em;
  border-bottom: 1px solid #fff;
  letter-spacing: 0.1em;
}
.desingPartnerBox .formLogo {
  aspect-ratio: 53/25;
  width: 53px;
}
.desingPartnerBox .eldLogo {
  aspect-ratio: 69/18;
  width: 69px;
}
.desingPartnerBox .ryobiLogo {
  aspect-ratio: 150/18;
  width: 150px;
}
@media only screen and (max-width: 959px) {
  .desingPartnerBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 8%;
    gap: 20px;
  }
  .desingPartnerBox .ttl {
    padding-bottom: 0.4em;
    margin-bottom: 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .desingPartnerBox .left, .desingPartnerBox .right {
    width: 100%;
  }
}

.designPartsHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 3%;
}
.designPartsHead .designPartsNum {
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1;
}
.designPartsHead .designPartsTag {
  color: #BFB08B;
  font-size: 14px;
  background-color: #fff;
  line-height: 1;
  padding-inline: 0.3em;
  padding-block: 0.2em 0.3em;
}

.designPartsSubTitle {
  font-size: 20px;
  text-decoration: underline;
  margin-bottom: 1em;
  font-family: var(--serif);
}

.designPartsTitle {
  font-size: 24px;
  font-family: var(--serif);
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 959px) {
  .designPartsTitle {
    font-size: 20px;
  }
}

.designPartsTx {
  line-height: 1.8;
  letter-spacing: 0.13em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .designPartsTx {
    font-size: 14px;
    line-height: 1.6;
  }
}

.modelParts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: rgba(36, 22, 20, 0.3);
  padding-inline: 60px;
  padding-block: 50px;
  margin-inline: -30px;
}
.modelParts + .modelParts {
  margin-top: 30px;
}
.modelParts.__designCnt {
  background: rgba(128, 79, 0, 0.5);
}
.modelParts .modelPartsSlideBlock {
  padding-bottom: 30px;
  position: relative;
  width: 55%;
}
.modelParts .modelPartsSlideBlock .modelPartsDotted.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 0;
}
.modelParts .modelPartsSlideBlock .modelPartsDotted .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #fff;
  opacity: 1;
}
.modelParts .modelPartsSlideBlock .modelPartsDotted .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}
.modelParts .modelPartsTxBox {
  color: #fff;
  padding-left: 5%;
  width: 45%;
}
.modelParts:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.modelParts:nth-child(2n) .modelPartsTxBox {
  padding-inline: 0 5%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .modelParts {
    margin-inline: auto;
    padding-inline: 15px;
    padding-block: 25px;
  }
  .modelParts .modelPartsSlideBlock {
    width: 50%;
  }
  .modelParts .modelPartsTxBox {
    padding-left: 3%;
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .modelParts {
    margin-inline: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 15px;
    padding-block: 20px;
  }
  .modelParts .modelPartsSlideBlock {
    margin-bottom: 20px;
    padding-bottom: 20px;
    width: 100%;
  }
  .modelParts .modelPartsTxBox {
    padding-inline: 0;
    width: 100%;
  }
  .modelParts:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.modelPartsHead {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

.modelPartsNum {
  font-family: var(--fontEn);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 1em;
}

.modelPartsTitle {
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 0.4em;
}

.modelPartsTx {
  line-height: 1.8;
}

.modelPartsFoot dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modelPartsFoot dt, .modelPartsFoot dd {
  font-size: 14px;
}
.modelPartsFoot dt {
  width: 13em;
}
.modelPartsFoot dd {
  width: calc(100% - 13em);
}
@media only screen and (max-width: 767px) {
  .modelPartsFoot dt {
    width: 12em;
  }
  .modelPartsFoot dd {
    width: calc(100% - 12em);
  }
}

.kazenonoGallaryTx {
  margin-bottom: -80px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .kazenonoGallaryTx {
    margin-bottom: -50px;
  }
}
@media only screen and (max-width: 767px) {
  .kazenonoGallaryTx {
    margin-bottom: -20px;
  }
}

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .galleryGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.galleryItem {
  overflow: hidden;
  min-width: 0;
  opacity: 0;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.galleryItem.is-show {
  opacity: 1;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}
@media print, screen and (min-width: 768px) {
  .galleryItem.__g01 {
    grid-column: 1/3;
    grid-row: 1/3;
  }
  .galleryItem.__g02 {
    grid-column: 3/4;
    grid-row: 1/3;
  }
  .galleryItem.__g03 {
    grid-column: 4/5;
    grid-row: 1/2;
  }
  .galleryItem.__g04 {
    grid-column: 4/5;
    grid-row: 2/3;
  }
  .galleryItem.__g05 {
    grid-column: 1/2;
    grid-row: 3/5;
  }
  .galleryItem.__g06 {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  .galleryItem.__g07 {
    grid-column: 2/3;
    grid-row: 4/5;
  }
  .galleryItem.__g08 {
    grid-column: 3/5;
    grid-row: 3/5;
  }
}
@media only screen and (max-width: 767px) {
  .galleryItem img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .galleryItem.__g01 {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .galleryItem.__g02 {
    grid-column: 1/2;
    grid-row: 2/4;
  }
  .galleryItem.__g03 {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .galleryItem.__g04 {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  .galleryItem.__g05 {
    grid-column: 1/2;
    grid-row: 5/7;
  }
  .galleryItem.__g06 {
    grid-column: 2/3;
    grid-row: 5/6;
  }
  .galleryItem.__g07 {
    grid-column: 2/3;
    grid-row: 6/7;
  }
  .galleryItem.__g08 {
    grid-column: 1/3;
    grid-row: 4/5;
  }
}

@media only screen and (max-width: 767px) {
  .siteplanImg img {
    width: 767px;
    max-width: none;
  }
}

.siteplanFoot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 75px;
}
.siteplanFoot .innerBox {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .siteplanFoot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .siteplanFoot .innerBox {
    width: 100%;
  }
}

.siteplanTitle {
  font-size: 24px;
  color: #fff;
  font-family: var(--serif);
  border-bottom: 1px solid #fff;
  line-height: 1;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .siteplanTitle {
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

.planBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.planBox dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.planBox dl + dl {
  margin-top: 15px;
}
.planBox dt {
  color: #BFB08B;
  line-height: 1;
  padding-inline: 0.2em;
  padding-block: 0.2em 0.3em;
  background-color: #fff;
  display: inline-block;
}
.planBox dd {
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1;
}
.planBox dd span {
  font-size: 34px;
  letter-spacing: 0.08em;
  line-height: 1;
}
.planBox dd small {
  font-size: 19px;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media only screen and (max-width: 959px) {
  .planBox dl {
    -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: 5px;
  }
  .planBox dd {
    font-size: 16px;
  }
  .planBox dd span {
    font-size: 26px;
  }
  .planBox dd small {
    font-size: 17px;
  }
}

.siteplanInfo dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.siteplanInfo dl + dl {
  margin-top: 10px;
}
.siteplanInfo dt, .siteplanInfo dd {
  color: #fff;
  font-size: 14px;
}
.siteplanInfo dt {
  width: 10em;
}
.siteplanInfo dd {
  width: calc(100% - 10em);
}
@media only screen and (max-width: 959px) {
  .siteplanInfo dt {
    width: 6em;
  }
  .siteplanInfo dd {
    width: calc(100% - 6em);
  }
}

/*==================================================
 * コンセプト・共用スペース
*================================================*/
#kazenono-pageHeader .pageHeaderBg {
  padding-block: 120px 90px;
  position: relative;
  z-index: 2;
}
#kazenono-pageHeader .pageHeaderBg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(36, 22, 20, 0.5);
  height: 100%;
  width: 100%;
  z-index: -1;
}
#kazenono-pageHeader .pageHeaderTtlEn {
  color: #fff;
  font-size: clamp(20px, 3.3vw, 42px);
  font-family: var(--fontEn);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 0.4em;
}
#kazenono-pageHeader .pageHeaderTtlJp {
  color: #fff;
  font-family: var(--serif);
  letter-spacing: 0.18em;
}
@media only screen and (max-width: 767px) {
  #kazenono-pageHeader .pageHeaderBg {
    padding-block: 90px 30px;
  }
}

.conceptFeatureImg {
  max-width: 670px;
  margin-inline: auto;
}

.conceptFeatureImg02 {
  max-width: 780px;
  margin-inline: auto;
}

.featureImg {
  position: absolute;
  will-change: transform, opacity;
  z-index: -1;
  opacity: 0;
}
.featureImg.re {
  display: none;
}
.featureImg img {
  display: block;
}
.featureImg.__01 {
  aspect-ratio: 280/170;
  max-width: 280px;
  top: 12vw;
  left: -60px;
}
.featureImg.__02 {
  aspect-ratio: 300/190;
  max-width: 300px;
  top: 34vw;
  left: 7vw;
}
.featureImg.__03 {
  aspect-ratio: 220/140;
  max-width: 220px;
  bottom: 0vw;
  left: 22vw;
}
.featureImg.__04 {
  aspect-ratio: 250/160;
  max-width: 250px;
  bottom: -13vw;
  left: -60px;
}
.featureImg.__05 {
  aspect-ratio: 300/180;
  max-width: 300px;
  right: -60px;
  top: 13vw;
}
.featureImg.__06 {
  aspect-ratio: 225/140;
  max-width: 225px;
  bottom: 6vw;
  right: -40px;
}
.featureImg.__07 {
  aspect-ratio: 345/220;
  max-width: 345px;
  bottom: -8vw;
  right: 12vw;
}
@media only screen and (max-width: 959px) {
  .featureImg {
    position: static;
  }
  .featureImg.re {
    display: block;
  }
  .featureImg.__01, .featureImg.__02, .featureImg.__03, .featureImg.__04, .featureImg.__05, .featureImg.__06, .featureImg.__07 {
    opacity: 1;
    max-width: 100%;
    width: 245px;
  }
  .featureImg.__01 img, .featureImg.__02 img, .featureImg.__03 img, .featureImg.__04 img, .featureImg.__05 img, .featureImg.__06 img, .featureImg.__07 img {
    aspect-ratio: 345/214;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media only screen and (max-width: 959px) {
  .featureImgWrap {
    overflow: hidden;
    margin-inline: -15px;
    margin-top: 15%;
  }
  .featureImgTrack {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-animation: marquee 50s linear infinite;
            animation: marquee 50s linear infinite;
  }
  .featureImg {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 15px;
  }
  .featureImg img {
    display: block;
    height: auto;
  }
  @-webkit-keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
  }
  @keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
  }
}
.conceptFeatureBnr {
  --gradCurtain: 125px;
  margin-inline: -60px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}
.conceptFeatureBnr::before, .conceptFeatureBnr::after {
  content: "";
  position: absolute;
  left: 50%;
  height: var(--gradCurtain);
  width: 100%;
  z-index: 3;
}
.conceptFeatureBnr::before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(37.2%, #18424D), color-stop(83.2%, rgba(24, 66, 77, 0)));
  background: linear-gradient(180deg, #18424D 37.2%, rgba(24, 66, 77, 0) 83.2%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(var(--gradCurtain) * -0.1);
}
.conceptFeatureBnr::after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(37.2%, #18424D), color-stop(83.2%, rgba(24, 66, 77, 0)));
  background: linear-gradient(180deg, #18424D 37.2%, rgba(24, 66, 77, 0) 83.2%);
  -webkit-transform: translateX(-50%) scale(-1, -1);
          transform: translateX(-50%) scale(-1, -1);
  bottom: calc(var(--gradCurtain) * -0.1);
}
@media only screen and (max-width: 767px) {
  .conceptFeatureBnr img {
    aspect-ratio: 1/0.7;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.pageLinkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pageLinkList .pageLinkTx {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.5);
  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;
  color: #fff;
  font-family: var(--serif);
  padding-inline: 1em;
  padding-block: 0.7em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: clamp(180px, 22.6vw, 290px);
}
.pageLinkList .pageLinkTx.is-active, .pageLinkList .pageLinkTx:hover {
  color: var(--mainColor);
  background-color: #fff;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageLinkList .pageLinkTx {
    width: 245px;
  }
}
@media only screen and (max-width: 767px) {
  .pageLinkList li {
    width: 50%;
  }
  .pageLinkList .pageLinkTx {
    width: 100%;
  }
}

.commonSpaceItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.commonSpaceItem .commonSpaceSubBox {
  padding-right: 5%;
  width: 35%;
}
.commonSpaceItem .commonSpaceMainBox {
  width: 65%;
}
.commonSpaceItem:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.commonSpaceItem:nth-child(2n) .commonSpaceSubBox {
  padding-inline: 5% 0;
}
.commonSpaceItem:nth-child(2n) .commonSpaceMainImg {
  margin-left: -120px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonSpaceItem .commonSpaceSubBox {
    width: 40%;
  }
  .commonSpaceItem .commonSpaceMainBox {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .commonSpaceItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .commonSpaceItem .commonSpaceSubBox {
    padding-right: 0;
    margin-bottom: 5%;
    margin-inline: auto;
    width: 90%;
  }
  .commonSpaceItem .commonSpaceMainBox {
    width: 100%;
  }
  .commonSpaceItem:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .commonSpaceItem:nth-child(2n) .commonSpaceSubBox {
    padding-inline: 0;
  }
  .commonSpaceItem:nth-child(2n) .commonSpaceMainImg {
    margin-left: -30px;
  }
}

.commonSpaceTitleEn {
  background: var(--goldGrade);
  font-family: var(--fontEn);
  font-weight: 500;
  font-size: clamp(31px, 4vw, 51px);
  line-height: 1;
  letter-spacing: 0.13em;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.commonSpaceTitleJp {
  color: var(--goldColor);
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 1.2px;
}
@media only screen and (max-width: 767px) {
  .commonSpaceTitleJp {
    font-size: 20px;
  }
}

.commonSpaceSubTitle {
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .commonSpaceSubTitle {
    font-size: 20px;
  }
}

.commonSpaceSubTx {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .commonSpaceSubTx {
    font-size: 13px;
  }
}

.commonSpaceMainImg {
  width: calc(100% + 120px);
}
@media only screen and (max-width: 767px) {
  .commonSpaceMainImg {
    width: calc(100% + 30px);
  }
}

.commonSpeacePrice {
  background-color: rgba(36, 22, 20, 0.4);
  padding-inline: 15px;
  padding-block: 40px;
}
@media only screen and (max-width: 767px) {
  .commonSpeacePrice {
    padding-block: 20px;
  }
}

.commonSpeacePriceTitle {
  text-align: center;
  color: #fff;
  font-family: var(--serif);
  margin-bottom: 1.3em;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.13em;
}
@media only screen and (max-width: 767px) {
  .commonSpeacePriceTitle {
    font-size: 20px;
    margin-bottom: 0.8em;
  }
}

.commonSpeacePriceBox {
  max-width: 600px;
  margin-inline: auto;
}
.commonSpeacePriceBox table {
  border-collapse: collapse;
  width: 100%;
}
.commonSpeacePriceBox table th,
.commonSpeacePriceBox table td {
  border: solid 1px #fff;
  color: #fff;
  padding-inline: 0.8em;
  padding-block: 0.5em;
  font-weight: 300;
}
.commonSpeacePriceBox table th {
  width: 6em;
}
.commonSpeacePriceBox table td {
  width: calc(100% - 6em);
}

.featureAbout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.featureAbout .txbox {
  width: 70%;
}
.featureAbout .txbox .commonTtl {
  font-size: clamp(20px, 3.2vw, 40px);
  margin-bottom: 0.5em;
}
.featureAbout .imgbox {
  width: 30%;
}
.featureAbout .imgbox .img {
  margin-left: -23vw;
  width: calc(100% + 33vw);
}

.featureAboutTitleEn {
  text-align: center;
  font-family: var(--fontEn);
  font-weight: 500;
  font-size: clamp(62px, 15.7vw, 200px);
  letter-spacing: 0.02em;
  line-height: 1;
  background: var(--goldGrade);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  bottom: -0.8em;
  left: -0.3em;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}
.featureAboutTitleEn.is-show {
  -webkit-animation: 1.5s blur-fade ease;
          animation: 1.5s blur-fade ease;
  opacity: 1;
}
@media only screen and (max-width: 959px) {
  .featureAboutTitleEn {
    left: 0.2em;
  }
}

.reasonGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.reasonGrid .card .img {
  margin-bottom: 1.3em;
}
.reasonGrid .card .title {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 0.4em;
}
.reasonGrid .card .tx {
  line-height: 1.8;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .reasonGrid {
    gap: 20px;
  }
  .reasonGrid .card .title {
    font-size: 20px;
  }
  .reasonGrid .card .tx {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .reasonGrid {
    grid-template-columns: 0.85fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .reasonGrid .card .title {
    font-size: 21px;
  }
}

.reasonNote {
  background: var(--goldGrade);
  padding-inline: 40px;
  padding-block: 30px;
  text-align: center;
}
.reasonNote p {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.13em;
}
@media only screen and (max-width: 767px) {
  .reasonNote {
    padding-inline: 15px;
    padding-block: 20px;
  }
  .reasonNote p {
    font-size: 18px;
  }
}

.otherLinkMainTitle {
  font-size: 21px;
  margin-bottom: 1.2em;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .otherLinkMainTitle {
    font-size: 18px;
    margin-bottom: 0.9em;
  }
}

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

.otherLinkItemImg {
  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;
  text-align: center;
  aspect-ratio: 1/1;
  width: 100%;
  position: relative;
  z-index: 2;
}
.otherLinkItemImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(36, 22, 20, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.otherLinkItem:hover .otherLinkItemImg::before {
  background-color: rgba(36, 22, 20, 0.7);
}
.otherLinkItemImg.__coming {
  pointer-events: none;
}
.otherLinkItemImg.__coming::before {
  background-color: rgba(36, 22, 20, 0.7);
}
.otherLinkItemImg .otherLinkTitleEn {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 0.2em;
}
.otherLinkItemImg .otherLinkTitleEn small {
  font-size: 58%;
  line-height: 1.2;
}
.otherLinkItemImg .otherLinkTitleJp {
  font-size: 12px;
}
@media only screen and (max-width: 959px) {
  .otherLinkItemImg {
    aspect-ratio: 1/0.7;
  }
  .otherLinkItemImg .otherLinkTitleEn {
    font-size: 16px;
  }
}

.areaMainImg {
  --gradCurtain: 125px;
  margin-inline: -60px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}
.areaMainImg::before, .areaMainImg::after {
  content: "";
  position: absolute;
  left: 50%;
  height: var(--gradCurtain);
  width: 100%;
  z-index: 3;
}
.areaMainImg::before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(37.2%, #18424D), color-stop(83.2%, rgba(24, 66, 77, 0)));
  background: linear-gradient(180deg, #18424D 37.2%, rgba(24, 66, 77, 0) 83.2%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(var(--gradCurtain) * -0.1);
}
.areaMainImg::after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(37.2%, #18424D), color-stop(83.2%, rgba(24, 66, 77, 0)));
  background: linear-gradient(180deg, #18424D 37.2%, rgba(24, 66, 77, 0) 83.2%);
  -webkit-transform: translateX(-50%) scale(-1, -1);
          transform: translateX(-50%) scale(-1, -1);
  bottom: calc(var(--gradCurtain) * -0.1);
}
@media only screen and (max-width: 767px) {
  .areaMainImg img {
    aspect-ratio: 1/0.7;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.areaMainTx {
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

.areaSubTtl {
  font-size: clamp(20px, 2.2vw, 28px);
  color: #fff;
  font-family: var(--serif);
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.areaFlexBox + .areaFlexBox {
  margin-top: 60px;
}
.areaFlexBox .imgBox {
  padding-left: 5%;
}
.areaFlexBox .img {
  width: calc(100% + 60px);
}
.areaFlexBox .commonTtl {
  margin-bottom: 1.3em;
}
.areaFlexBox.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.areaFlexBox.reverse .imgBox {
  padding-inline: 0 5%;
}
.areaFlexBox.reverse .img {
  margin-left: -60px;
}
@media only screen and (max-width: 767px) {
  .areaFlexBox + .areaFlexBox {
    margin-top: 30px;
  }
  .areaFlexBox .img {
    width: calc(100% + 15px);
  }
}

.areaBoxList dl {
  background: rgba(255, 255, 255, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 0.7em;
  padding-inline: 1em;
  width: 100%;
}
.areaBoxList dl:nth-child(2n) {
  background: rgba(36, 22, 20, 0.2);
}
.areaBoxList dt, .areaBoxList dd {
  color: #fff;
  font-family: var(--serif);
}

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

/*==================================================
 * お問い合わせ
*================================================*/
.contactForm {
  display: none;
}
.contactForm.is-active {
  display: block;
}

.formList dt {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.formList dt .require {
  display: inline-block;
  background: #e04b4b;
  color: #fff;
  font-size: 12px;
  padding: 0.4em 0.5em 0.2em;
  line-height: 1;
  margin-left: 1em;
}
.formList dt, .formList dd {
  padding: 14px 0;
  border-bottom: 1px solid #EEF0F3;
}
.formList {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.formList dd {
  color: #fff;
}
.formList dd input[type=text],
.formList dd input[type=email],
.formList dd input[type=tel],
.formList dd input[type=date],
.formList dd textarea,
.formList dd select {
  max-width: 360px;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 14px;
  padding: 1em;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.formList dd input[type=text]::-webkit-input-placeholder, .formList dd input[type=email]::-webkit-input-placeholder, .formList dd input[type=tel]::-webkit-input-placeholder, .formList dd input[type=date]::-webkit-input-placeholder, .formList dd textarea::-webkit-input-placeholder, .formList dd select::-webkit-input-placeholder {
  color: #aaa;
}
.formList dd input[type=text]::-moz-placeholder, .formList dd input[type=email]::-moz-placeholder, .formList dd input[type=tel]::-moz-placeholder, .formList dd input[type=date]::-moz-placeholder, .formList dd textarea::-moz-placeholder, .formList dd select::-moz-placeholder {
  color: #aaa;
}
.formList dd input[type=text]:-ms-input-placeholder, .formList dd input[type=email]:-ms-input-placeholder, .formList dd input[type=tel]:-ms-input-placeholder, .formList dd input[type=date]:-ms-input-placeholder, .formList dd textarea:-ms-input-placeholder, .formList dd select:-ms-input-placeholder {
  color: #aaa;
}
.formList dd input[type=text]::-ms-input-placeholder, .formList dd input[type=email]::-ms-input-placeholder, .formList dd input[type=tel]::-ms-input-placeholder, .formList dd input[type=date]::-ms-input-placeholder, .formList dd textarea::-ms-input-placeholder, .formList dd select::-ms-input-placeholder {
  color: #aaa;
}
.formList dd input[type=text]::placeholder,
.formList dd input[type=email]::placeholder,
.formList dd input[type=tel]::placeholder,
.formList dd input[type=date]::placeholder,
.formList dd textarea::placeholder,
.formList dd select::placeholder {
  color: #aaa;
}
.formList dd input[type=text]:focus,
.formList dd input[type=email]:focus,
.formList dd input[type=tel]:focus,
.formList dd input[type=date]:focus,
.formList dd textarea:focus,
.formList dd select:focus {
  border-color: #999;
}
@media only screen and (max-width: 767px) {
  .formList dd input[type=text],
  .formList dd input[type=email],
  .formList dd input[type=tel],
  .formList dd input[type=date],
  .formList dd textarea,
  .formList dd select {
    max-width: 100%;
  }
}
.formList dd textarea {
  resize: vertical;
  min-height: 5em;
  max-width: 100%;
}
.formList dd select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-color: #fff;
  padding-right: 24px;
  cursor: pointer;
}
.formList dd .wpcf7-acceptance .wpcf7-list-item,
.formList dd .wpcf7-checkbox .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  margin: 4px 0;
}
.formList dd .wpcf7-acceptance .wpcf7-list-item input[type=checkbox],
.formList dd .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
}
.formList dd .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label,
.formList dd .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  color: #fff;
  line-height: 1.6;
}
@media only screen and (max-width: 959px) {
  .formList {
    grid-template-columns: 1fr;
  }
  .formList dt, .formList dd {
    border-bottom: none;
  }
  .formList dt {
    width: 100%;
    padding-bottom: 4px;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
  }
  .formList dd {
    padding-top: 0;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  }
}

.submitBtn {
  max-width: 180px;
  margin-inline: auto;
  margin-top: 40px;
  position: relative;
}
.submitBtn::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../img/kazenono/btnArw.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(113deg) brightness(103%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(113deg) brightness(103%) contrast(101%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 6px;
  width: 20px;
}
.submitBtn:hover::after {
  -webkit-filter: invert(57%) sepia(60%) saturate(227%) hue-rotate(151deg) brightness(92%) contrast(85%);
          filter: invert(57%) sepia(60%) saturate(227%) hue-rotate(151deg) brightness(92%) contrast(85%);
}

.wpcf7-submit {
  border: 1px solid var(--subColor);
  background-color: var(--subColor);
  padding-inline: 1em 6.5em;
  padding-block: 0.5em;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.1em;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.wpcf7-submit:hover {
  color: var(--subColor);
  background-color: #fff;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
  background-color: #e04b4b;
  border-color: #e04b4b !important;
  color: #fff;
  display: inline-block;
  padding: 0.2em 0.4em 0.1em;
  margin-inline: 1em;
  line-height: 1;
}

/*==================================================
 * 住宅デザイン
*================================================*/
.designHeadBg {
  padding-block: 90px 140px;
  position: relative;
  z-index: 2;
}
.designHeadBg::before {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.6;
  -webkit-filter: blur(11px);
          filter: blur(11px);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.designHeadBg.__01::before {
  background-image: url("../img/kazenono/designStyleBg01.jpg");
}
.designHeadBg.__02::before {
  background-image: url("../img/kazenono/designStyleBg01.jpg");
}
.designHeadBg.__03::before {
  background-image: url("../img/kazenono/designStyleBg01.jpg");
}
@media only screen and (max-width: 767px) {
  .designHeadBg {
    padding-block: 45px 70px;
  }
}

@media print, screen and (min-width: 768px) {
  .desingHeadBlockInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .desingHeadBlockInner .designTxBox {
    padding-right: 5%;
    width: 50%;
  }
  .desingHeadBlockInner .designImgBox {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .desingHeadBlockInner .designTxBox {
    margin-bottom: 8%;
  }
}

.designBoxTitleEn {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  font-family: var(--fontEn);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 46px);
  line-height: 1;
  letter-spacing: 0.05em;
  background: var(--goldGrade);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.3em;
}
.designBoxTitleEn span {
  background: var(--goldGrade);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(39px, 6.3vw, 80px);
  line-height: 1;
  letter-spacing: 0.05em;
}

.designBoxSubTitle {
  color: #FFF;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .designBoxSubTitle {
    font-size: 22px;
  }
}

.designTag {
  color: var(--goldColor);
  font-size: 14px;
  line-height: 1;
  background-color: #fff;
  display: inline-block;
  padding-inline: 0.5em;
  padding-block: 0.2em;
}

.designBoxMainTitle {
  color: #FFF;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 0.3em;
}

.designBoxTx {
  color: #FFF;
}

.designBoxCate {
  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;
}
.designBoxCate li {
  padding: 0.3em 1em;
  border-radius: 30px;
  background: #748E94;
  color: #FFF;
  font-size: 14px;
  line-height: 1;
  display: inline-block;
}

.desingInfoBlock {
  padding-inline: 60px;
  padding-block: 40px;
  background: var(--goldGrade);
  margin-top: -70px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 959px) {
  .desingInfoBlock {
    padding-inline: 15px;
    padding-block: 20px;
  }
}

.desingInfoHead {
  border-bottom: 1px solid #fff;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.desingInfoHead.noFlex {
  border-bottom: transparent;
  padding-bottom: 0;
  margin-bottom: 60px;
  display: block;
}
.desingInfoHead.noFlex .commonTtl {
  font-size: clamp(21px, 2.5vw, 32px);
}
@media print, screen and (min-width: 768px) {
  .desingInfoHead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .desingInfoHead .leftBox {
    padding-right: 1%;
    width: 50%;
  }
  .desingInfoHead .rightBox {
    padding-left: 3%;
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .desingInfoHead .leftBox {
    margin-bottom: 3%;
  }
}

.desingInfoTitle {
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 0.4em;
  line-height: 1.6;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .desingInfoTitle {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .desingInfoTitle {
    font-size: 21px;
  }
}

.desingInfoTx {
  line-height: 1.8;
}

.desingInfoFoot {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 80px;
}
.desingInfoFoot.center {
  grid-template-columns: repeat(2, 1fr);
}
.desingInfoFoot.cross .inBox + .inBox {
  position: relative;
}
.desingInfoFoot.cross .inBox + .inBox::before {
  content: "\e59b";
  font-family: "Font Awesome 6 Duotone";
  font-weight: 200;
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -65px;
  font-size: 45px;
}
@media only screen and (max-width: 959px) {
  .desingInfoFoot {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .desingInfoFoot.center {
    grid-template-columns: 1fr;
  }
  .desingInfoFoot.cross .inBox + .inBox::before {
    top: -45px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
    font-size: 25px;
  }
}

.inBoxTitle {
  color: #fff;
  font-size: 24px;
  font-family: var(--serif);
  line-height: 1;
  letter-spacing: 0.05em;
}
.inBoxTitle span {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-left: 15px;
}
@media only screen and (max-width: 767px) {
  .inBoxTitle {
    font-size: 20px;
  }
  .inBoxTitle span {
    font-size: 15px;
    margin-left: 10px;
  }
}

.inBoxItem + .inBoxItem {
  margin-top: 40px;
}
.inBoxItem.flexBox {
  display: grid;
  grid-template-columns: 180px auto;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .inBoxItem + .inBoxItem {
    margin-top: 20px;
  }
  .inBoxItem.flexBox {
    grid-template-columns: 90px auto;
    gap: 10px;
  }
}

.inBoxItemImg {
  max-width: 180px;
}

.inBoxItemTitle {
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 0.4em;
}

.inBoxItemTx {
  color: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .inBoxItemTx {
    font-size: 12px;
  }
}

.styleBlock {
  padding-block: 90px;
  position: relative;
  z-index: 2;
}
.styleBlock::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.styleBlock.__01::before {
  background-image: url("../img/kazenono/brand1-mainBg.jpg");
}
.styleBlock.__02::before {
  background-image: url("../img/kazenono/brand2-mainBg.jpg");
}
.styleBlock.__03::before {
  background-image: url("../img/kazenono/brand3-mainBg.jpg");
}
@media only screen and (max-width: 767px) {
  .styleBlock {
    padding-block: 45px;
  }
}

.styleBlockIn {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 40px;
}
.styleBlockIn .inBoxItemTx {
  text-align: justify;
}
.styleBlockIn .subBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .styleBlockIn {
    grid-template-columns: 1fr;
  }
  .styleBlockIn .subBox {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.styleCntHead {
  padding-left: 1.5em;
  border-left: 8px solid var(--goldColor);
  padding-block: 5px;
  margin-bottom: 2em;
}

.styleCntTag {
  color: var(--goldColor);
  font-size: 14px;
  background: #fff;
  padding-inline: 0.5em;
  line-height: 1;
  padding-block: 0.3em;
  display: inline-block;
  margin-bottom: 0.8em;
}
@media only screen and (max-width: 767px) {
  .styleCntTag {
    font-size: 12px;
  }
}

.styleCntTitleEn {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.styleCntTitleEn span {
  font-size: 26px;
  line-height: 1;
  margin-right: 0.6em;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .styleCntTitleEn {
    font-size: 16px;
  }
  .styleCntTitleEn span {
    font-size: 22px;
  }
}

.styleCntTitleJp {
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1;
  letter-spacing: 0.13em;
}

.styleCntBodyTitle {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.2;
  padding-bottom: 0.7em;
  margin-bottom: 0.7em;
  border-bottom: 1px solid #fff;
  letter-spacing: 0.08em;
}

.styleCntBodyInBox {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 60px;
}
.styleCntBodyInBox .boxTitle {
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 1em;
}
.styleCntBodyInBox .boxInfo {
  display: grid;
  grid-template-columns: repeat(2, 9.5em);
  gap: 10px;
}
.styleCntBodyInBox .boxInfo dt, .styleCntBodyInBox .boxInfo dd {
  color: #fff;
  font-family: var(--serif);
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .styleCntBodyInBox {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .styleCntBodyInBox .boxInfo {
    grid-template-columns: repeat(2, 1fr);
  }
  .styleCntBodyInBox .boxInfo dt, .styleCntBodyInBox .boxInfo dd {
    font-size: 13px;
  }
}

.styleCntSlideArw {
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 25px;
  width: 25px;
  background-color: var(--goldColor);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}
.styleCntSlideArw:hover {
  opacity: 0.7;
}
.styleCntSlideArw::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  height: 10px;
  width: 10px;
}
.styleCntSlideArw.prev {
  left: -15px;
}
.styleCntSlideArw.prev::before {
  margin-left: 0.1em;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}
.styleCntSlideArw.next {
  right: -15px;
}
.styleCntSlideArw.next::before {
  margin-left: -0.1em;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

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

.eqGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.eqGrid .eqTag {
  padding: 0.3em 1em;
  border-radius: 30px;
  background: #748E94;
  color: #FFF;
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 0.3em;
}
.eqGrid .eqTitle {
  font-size: 20px;
  line-height: 1.2;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .eqGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .eqGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .eqGrid .eqTitle {
    font-size: 18px;
  }
}

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