@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 {
  --mijuHeaderH: 80px;
  --fontColor: #241614;
  --mainColor: #4380B9;
  --grayColor: #605F5F;
  --gradeColor: radial-gradient(50% 50% at 50% 50%, #6D9DB0 0%, #4380B9 62%);
  --cntW: 60px;
  --widgetH: 65px;
}
@media only screen and (max-width: 767px) {
  :root {
    --mijuHeaderH: 45px;
  }
}

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

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

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

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

.cntTitle {
  font-size: clamp(24px, 3.6vw, 46px);
  line-height: 1.4;
  font-family: var(--serif);
  letter-spacing: 0.08em;
}

.secTtlEn {
  font-family: var(--fontEn);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.1em;
  letter-spacing: 0.03em;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.08%, #3C74B1), color-stop(50.23%, #75C8E6), color-stop(97.52%, #3CA0DB));
  background: linear-gradient(90deg, #3C74B1 1.08%, #75C8E6 50.23%, #3CA0DB 97.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.secSubTtlBox {
  --inlineW: 22vw;
  padding-inline: var(--inlineW);
  text-align: center;
  position: relative;
  z-index: 2;
}
.secSubTtlBox::before, .secSubTtlBox::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #3C74B1;
  height: 1px;
  width: var(--inlineW);
}
.secSubTtlBox::before {
  left: 0;
}
.secSubTtlBox::after {
  right: 0;
}
@media only screen and (max-width: 767px) {
  .secSubTtlBox {
    --inlineW: 15vw;
  }
}

.secSubTtl {
  text-align: center;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.13em;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.08%, #3C74B1), color-stop(50.23%, #75C8E6), color-stop(97.52%, #3CA0DB));
  background: linear-gradient(90deg, #3C74B1 1.08%, #75C8E6 50.23%, #3CA0DB 97.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 767px) {
  .secSubTtl {
    font-size: 20px;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  border: 1px solid var(--fontColor);
  background-color: rgba(36, 22, 20, 0.1);
  padding-inline: 30px;
  padding-block: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  gap: 45px;
}
.btn .btnTx {
  font-family: var(--serif);
  font-size: 12px;
}
.btn .btnArw {
  border-radius: 50%;
  background-color: var(--fontColor);
  font-size: 12px;
  aspect-ratio: 1;
  width: 1em;
  position: relative;
}
.btn .btnArw::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  left: 50%;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  height: 0.4em;
  width: 0.4em;
}
.btn:hover {
  opacity: 0.7;
}

/* ------------ ヘッダー ------------ */
.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: #4380B9;
    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 only screen and (max-width: 767px) {
  .widgetLink {
    padding-inline: 10px;
    padding-block: 5px;
  }
  .widgetLink .icon {
    margin-inline: auto;
    display: block;
    width: 23px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  z-index: 999;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.8);
}

.headerInner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 15px;
  padding-block: 5px;
  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;
  height: var(--mijuHeaderH);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerInner {
    padding-inline: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .headerInner {
    background-color: rgba(255, 255, 255, 0.8);
    padding-inline: 10px;
    padding-block: 3px;
  }
}

.headerLogo {
  width: clamp(130px, 18.8vw, 240px);
}
@media only screen and (max-width: 767px) {
  .headerLogo {
    width: 150px;
  }
}

.headerLinkBlockHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .headerLinkBlock {
    position: fixed;
    top: var(--mijuHeaderH);
    left: 0;
    background-color: #fff;
    padding-inline: 15px;
    padding-block: 30px 90px;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 100vh;
    width: 100%;
    z-index: 999;
  }
  .spMenu.is-open + .headerLinkBlock {
    opacity: 1;
    visibility: visible;
  }
  .headerLinkBlockHead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.headerLinkBtn {
  display: inline-block;
  border-radius: 4px;
  padding-inline: 1em;
  padding-block: 0.5em;
  color: #fff;
  background-color: var(--fontColor);
  font-size: clamp(10px, 1.3vw, 16px);
  width: 100%;
  max-width: 140px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.headerLinkBtn.__blue {
  background: var(--gradeColor);
}
.headerLinkBtn:hover {
  opacity: 0.7;
  color: #fff;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerLinkBtn {
    max-width: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .headerLinkBtn {
    font-size: 16px;
    max-width: 100%;
    padding-block: 1em;
    width: 80%;
  }
}

.headerMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.headerMenu li a {
  color: #fff;
  display: block;
  padding-inline: 0.6em;
  line-height: 1;
  font-family: var(--serif);
  font-size: clamp(10px, 1.3vw, 16px);
  letter-spacing: 0.08em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.headerMenu li a:hover {
  color: var(--mainColor);
}
.is-tsushimafukui .headerMenu li a, .is-scrolled .headerMenu li a {
  color: var(--fontColor);
}
@media only screen and (min-width: 1280px) {
  .headerMenu li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .headerMenu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .headerMenu li {
    border-bottom: 1px solid var(--fontColor);
  }
  .headerMenu li a {
    color: var(--fontColor);
    font-size: 16px;
    padding-block: 0.8em;
  }
}

.spMenu {
  background-color: var(--mainColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 36px;
  width: 36px;
}
.spMenu .line {
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 1px;
  width: 60%;
}
.spMenu .line:nth-child(1) {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
.spMenu .line:nth-child(3) {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.spMenu.is-open .line:nth-child(1) {
  -webkit-transform: translateY(2px) rotate(45deg);
          transform: translateY(2px) rotate(45deg);
}
.spMenu.is-open .line:nth-child(2) {
  opacity: 0;
}
.spMenu.is-open .line:nth-child(3) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

/* ------------ フッター ------------ */
.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/mijuary/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.__matsuhama::before {
  background-image: url("../img/mijuary/footerBg_matsuhama.jpg");
}
.footContactBg.__ffujiwaranishi::before {
  background-image: url("../img/mijuary/footerBg_fujiwaranishi.jpg");
}
.footContactBg .commonTtl {
  font-size: clamp(24px, 3.2vw, 40px);
  margin-bottom: 0.4em;
  color: #fff;
  font-family: var(--serif);
  letter-spacing: 0.15em;
  line-height: 1.5;
}
.footContactBg .commonTx {
  color: #fff;
  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: #fff;
  position: relative;
  padding-inline: 2em;
  padding-block: 1em;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.footContactLink::before, .footContactLink::after {
  content: "";
  position: absolute;
  left: 0;
  background-color: rgba(60, 116, 177, 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;
  }
}

.footContactHours {
  background-color: #fff;
  font-family: var(--serif);
  line-height: 1;
  padding-block: 0.7em;
  width: 100%;
}

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

.footerBlock {
  background-color: #9F9999;
  padding-block: 40px;
}
.footerBlock .footerLogo {
  margin-bottom: 0;
  width: 215px;
}

.footerHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
  }
  .footerHead .rightBox {
    gap: 20px;
    width: 100%;
  }
  .footerHead .rightBox > ul {
    width: 50%;
  }
}

.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(--mainColor);
}

/*==================================================
 *.  ミジュアリーテンプレ - 津島福居
*================================================*/
.fv {
  position: relative;
  min-height: 800px;
}
.fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(100deg, rgba(90, 173, 214, 0.2) 30.31%, rgba(255, 255, 255, 0) 93.47%);
  opacity: 0.8;
  height: 100%;
  width: 100%;
}
.fv img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 85vh;
  min-height: 800px;
}
@media only screen and (max-width: 767px) {
  .fv::before {
    background: linear-gradient(100deg, rgba(90, 173, 214, 0.4) 30.31%, rgba(255, 255, 255, 0) 93.47%);
  }
  .fv img {
    height: 70vh;
  }
}

.fvTxBox {
  position: absolute;
  top: 54%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 60px;
  width: calc(100% - 120px);
  z-index: 2;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fvTxBox {
    left: 15px;
  }
  .fvTxBox.__matsuhama {
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width: 767px) {
  .fvTxBox {
    top: 60%;
    left: 15px;
  }
  .fvTxBox.__matsuhama {
    top: 55%;
    width: calc(100% - 30px);
  }
}
.fvTxBox .fvTitle {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(46px, 7.9vw, 100px);
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 0.2em;
  text-shadow: 4px 4px 18px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 767px) {
  .fvTxBox .fvTitle {
    text-shadow: 4px 4px 18px rgba(0, 0, 0, 0.4);
  }
}
.fvTxBox .fvSubTitle {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(23px, 3.2vw, 40px);
  letter-spacing: 0.13em;
  line-height: 1.4;
  margin-bottom: 0.3em;
  text-shadow: 4px 4px 18px rgba(0, 0, 0, 0.16);
}
.fvTxBox .fvSubTitle.__big {
  font-size: clamp(26px, 4vw, 50px);
}
.fvTxBox .fvSubTitle.__big small {
  font-size: clamp(20px, 3.2vw, 40px);
}
@media only screen and (max-width: 767px) {
  .fvTxBox .fvSubTitle {
    text-shadow: 4px 4px 18px rgba(0, 0, 0, 0.4);
  }
}
.fvTxBox .fvTx {
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.13em;
  line-height: 2;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 767px) {
  .fvTxBox .fvTx {
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
  }
}
@media only screen and (max-width: 767px) {
  .fvTxBox .fvTx {
    font-size: 14px;
  }
}
.fvTxBox .fvDeco {
  aspect-ratio: 1/1;
  margin-top: 1%;
  width: 250px;
  margin-left: -40px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fvTxBox .fvDeco {
    margin-left: -20px;
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .fvTxBox .fvDeco {
    margin-left: -20px;
    width: 190px;
  }
}

.featureBlock {
  max-width: 980px;
  margin-inline: auto;
  background-color: #F1F1F1;
  padding-inline: 25px;
  padding-block: 25px 15px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}
.featureBlock .featureinner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .featureBlock {
    padding-inline: 15px;
    padding-block: 20px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .featureBlock {
    margin-top: -15px;
    padding-inline: 15px;
    padding-block: 20px 10px;
  }
  .featureBlock .featureinner {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.featureItem {
  background-color: #fff;
  position: relative;
  padding-inline: 20px;
  padding-block: 20px 10px;
}
.featureItem .featureNum {
  position: absolute;
  top: -10px;
  left: 10px;
  border-radius: 4px;
  opacity: 0.8;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.08%, #3C74B1), color-stop(50.23%, #75C8E6), color-stop(97.52%, #3CA0DB));
  background: linear-gradient(90deg, #3C74B1 1.08%, #75C8E6 50.23%, #3CA0DB 97.52%);
  color: #fff;
  font-size: 12px;
  font-family: var(--serif);
  padding-inline: 0.7em;
  padding-block: 0.2em;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .featureItem {
    padding-inline: 10px;
    padding-block: 10px 5px;
  }
}

.featureTitle {
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  font-family: var(--serif);
}
.featureTitle .colorTx {
  color: #4380B9;
}
.featureTitle .bigTx {
  font-size: 30px;
  line-height: 1.3;
}
@media only screen and (max-width: 959px) {
  .featureTitle {
    font-size: 16px;
  }
  .featureTitle .bigTx {
    font-size: 24px;
  }
}

.newsBlock .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media print, screen and (min-width: 768px) {
  .newsBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .newsBlock .left {
    padding-right: 5%;
    width: 40%;
  }
  .newsBlock .right {
    width: 60%;
  }
}

.newsList {
  border-bottom: 1px solid #cacaca;
}
.newsList .newsListLink {
  padding-block: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .newsList .newsListLink {
    padding-block: 10px;
  }
}

.newsArw {
  border-radius: 50%;
  border: 1px solid var(--fontColor);
  background-color: rgba(36, 22, 20, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 24px;
  aspect-ratio: 1;
  width: 1em;
  position: relative;
}
.newsArw::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-top: 2px solid var(--fontColor);
  border-right: 2px solid var(--fontColor);
  left: 50%;
  height: 0.3em;
  width: 0.3em;
}
.newsListLink:hover .newsArw {
  background-color: var(--fontColor);
}
.newsListLink:hover .newsArw::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.newsTimeBox {
  aspect-ratio: 1/1;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
}
.newsTimeBox .time {
  text-align: center;
  color: #4380B9;
  font-family: var(--serif);
  font-size: 18px;
}
.newsTimeBox .time span {
  font-size: 12px;
  display: block;
}
.newsTimeBox .check {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: #4380B9;
  font-family: var(--serif);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  width: 100%;
}
.newsListLink:hover .newsTimeBox .check {
  opacity: 1;
  visibility: visible;
}

.newsInner {
  padding-left: 30px;
  width: calc(100% - 60px);
}
.newsInner .newsTitle {
  font-size: 18px;
  font-family: var(--serif);
}
.newsInner .newsTx {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .newsInner {
    padding-left: 10px;
  }
  .newsInner .newsTitle {
    font-size: 15px;
  }
}

.conceptBlock {
  padding-block: 120px 49vw;
  position: relative;
  z-index: 2;
}
.conceptBlock::before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(7.72%, rgba(206, 234, 246, 0.5)), color-stop(94.44%, rgba(205, 233, 245, 0)));
  background: linear-gradient(180deg, rgba(206, 234, 246, 0.5) 7.72%, rgba(205, 233, 245, 0) 94.44%);
  top: 0;
  left: 0;
  height: 80%;
  width: 100%;
  z-index: -1;
}
.conceptBlock::after {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, #FFF), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, #FFF 35%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10%;
  width: 100%;
  z-index: -1;
}
.conceptBlock.__bgNone::before {
  content: none;
}
.conceptBlock.__matsuhama::after {
  content: none;
}
@media only screen and (max-width: 767px) {
  .conceptBlock {
    padding-block: 100px 240px;
  }
  .conceptBlock::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, rgba(0, 0, 0, 0.13)), to(transparent));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.13) 75%, transparent 100%);
  }
}

.conceptTop {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 80px;
  color: #fff;
  font-family: var(--fontEn);
  text-align: center;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
}
.conceptTop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 60px;
  width: 2px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .conceptTop {
    padding-top: 50px;
  }
  .conceptTop::before {
    height: 40px;
    width: 1px;
  }
}

.conceptInnerSubTitle {
  color: #FFF;
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
}

.conceptInnerTitle {
  color: #FFF;
  font-family: var(--serif);
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-shadow: 4px 4px 18px rgba(0, 0, 0, 0.16);
}

.conceptInnerTx {
  color: #FFF;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 2.7;
  letter-spacing: 0.15em;
  text-shadow: 4px 4px 18px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 767px) {
  .conceptInnerTx {
    font-size: 16px;
    line-height: 2;
  }
}

.marquee-wrap {
  position: relative;
  margin-top: -160px;
  width: 100%;
  z-index: 3;
}

.marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marquee 30s linear infinite;
  animation: marquee 30s linear infinite;
}
@media only screen and (max-width: 767px) {
  .marquee-track {
    gap: 20px;
  }
}

.marquee-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.12);
          box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.12);
}
.marquee-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.marquee-item {
  width: var(--w);
  height: var(--h);
  -webkit-transform: translateY(var(--ty));
          transform: translateY(var(--ty));
}
@media only screen and (max-width: 767px) {
  .marquee-item {
    width: calc(var(--w) * 0.7);
    height: calc(var(--h) * 0.7);
    -webkit-transform: translateY(calc(var(--ty) * 0.7));
            transform: translateY(calc(var(--ty) * 0.7));
  }
}

/* 各画像のサイズ・縦位置をズラす */
@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.valPoint {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.valPoint .valPointItem {
  margin-inline: -20px;
}
.valPoint.__col4 {
  grid-template-columns: repeat(4, 1fr);
}
.valPoint.__col4 .valPointItem {
  margin-inline: -35px;
}
@media only screen and (max-width: 767px) {
  .valPoint {
    gap: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .valPoint .valPointItem {
    margin-inline: -35px;
    width: max(200px, 46.8vw);
  }
  .valPoint .valPointItem:nth-child(2), .valPoint .valPointItem:nth-child(4) {
    margin-top: max(100px, 23vw);
  }
}

.valWave {
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: -1;
}
.valWave.__01 {
  left: -60px;
  -webkit-transform: scale(-1, 1) rotate(-20deg);
          transform: scale(-1, 1) rotate(-20deg);
}
.valWave.__02 {
  top: 50%;
}
.valWave.__03 {
  top: 73%;
  left: -120px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.valItem {
  margin-bottom: 90px;
}

@media print, screen and (min-width: 768px) {
  .valItemHead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .valItemHead .valItemTxBox {
    padding-right: 5%;
    width: 50%;
  }
  .valItemHead .valItemImgBox {
    width: 50%;
  }
  .valItemHead .valItemImgBox .valItemImg {
    width: calc(100% + 60px);
  }
  .valItemHead.reserve {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .valItemHead.reserve .valItemTxBox {
    padding-inline: 5% 0;
  }
  .valItemHead.reserve .valItemImgBox .valItemImg {
    margin-left: -60px;
  }
}

.valItemTxHead {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dadada;
}
@media only screen and (max-width: 767px) {
  .valItemTxHead {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

.valSubTtlEn {
  font-family: var(--serif);
  font-size: clamp(52px, 7.9vw, 100px);
  line-height: 1;
  margin-bottom: 0.1em;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.08%, #3C74B1), color-stop(50.23%, #75C8E6), color-stop(97.52%, #3CA0DB));
  background: linear-gradient(90deg, #3C74B1 1.08%, #75C8E6 50.23%, #3CA0DB 97.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.valSubTtlJp {
  color: var(--241614, #241614);
  font-family: "Shippori Mincho";
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.valSubTtlJp span {
  color: var(--241614, #241614);
  font-family: "Shippori Mincho";
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .valSubTtlJp {
    font-size: 15px;
  }
  .valSubTtlJp span {
    font-size: 20px;
  }
}

.valTtl {
  color: var(--241614, #241614);
  font-family: "Shippori Mincho";
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.3;
  letter-spacing: 0.09em;
  margin-bottom: 0.3em;
}

.valTx {
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.valItemFoot {
  margin-inline: 60px;
}
@media print, screen and (min-width: 768px) {
  .valItemFoot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .valItemFoot .valItemSubImgBox {
    padding-right: 5%;
    width: 50%;
  }
  .valItemFoot .valItemSubTxBox {
    width: 50%;
  }
  .valItemFoot.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .valItemFoot.reverse .valItemSubImgBox {
    padding-right: 0;
    padding-left: 5%;
  }
}
@media only screen and (max-width: 959px) {
  .valItemFoot {
    margin-inline: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .valItemFoot .valItemSubImgBox {
    margin-top: 10%;
    margin-bottom: 5%;
  }
}

.valItemSubTtl {
  font-size: 25px;
  font-family: var(--serif);
  margin-bottom: 0.8em;
  letter-spacing: 0.08em;
}
.valItemSubTtl .colorTx {
  background: -webkit-gradient(linear, left top, right top, color-stop(1.08%, #3C74B1), color-stop(50.23%, #75C8E6), color-stop(97.52%, #3CA0DB));
  background: linear-gradient(90deg, #3C74B1 1.08%, #75C8E6 50.23%, #3CA0DB 97.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .valItemSubTtl {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .valItemSubTtl {
    font-size: 17px;
  }
}

.valSceneFlex {
  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;
  gap: 30px;
  margin-inline: 60px;
}
.valSceneFlex.__series {
  gap: 25px;
  margin-inline: auto;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .valSceneFlex {
    gap: 30px;
    margin-inline: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .valSceneFlex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    margin-inline: 30px;
  }
}

.valSceneImg {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  max-width: 300px;
  margin-inline: auto;
  width: 100%;
}
.__series .valSceneImg {
  border-radius: 0;
  aspect-ratio: 372/232;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .valSceneImg {
    width: 75%;
  }
}

.valSceneTtlEn {
  text-align: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.08%, #3C74B1), color-stop(50.23%, #75C8E6), color-stop(97.52%, #3CA0DB));
  background: linear-gradient(90deg, #3C74B1 1.08%, #75C8E6 50.23%, #3CA0DB 97.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 767px) {
  .valSceneTtlEn {
    font-size: 15px;
  }
}

.valSceneSubTtlJp {
  font-size: 32px;
  text-align: center;
  font-family: var(--serif);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .valSceneSubTtlJp {
    font-size: 24px;
  }
}

.valSceneTtlJp {
  font-family: var(--serif);
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.13em;
}
@media only screen and (max-width: 959px) {
  .valSceneTtlJp {
    font-size: 20px;
  }
}

.valNote {
  margin-inline: 60px;
  background: #F3EFEA;
  padding: 10px;
}
.valNoteInner {
  border: 1px solid #877F6A;
  text-align: center;
  padding-inline: 30px;
  padding-block: 35px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .valNote {
    margin-inline: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .valNote {
    margin-inline: 0;
    padding: 5px;
  }
  .valNoteInner {
    padding-inline: 15px;
  }
}

.valNoteTtl {
  text-align: center;
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: 0.18em;
  line-height: 1.9;
}
.valNoteTtl .bigTx {
  font-size: clamp(23px, 3.2vw, 40px);
}
.valNoteTtl .bigTx small {
  font-size: clamp(18px, 2.5vw, 32px);
}
@media only screen and (max-width: 959px) {
  .valNoteTtl {
    font-size: 17px;
  }
}

.reasonBlock {
  background: linear-gradient(149deg, rgba(243, 255, 233, 0.6) 5.57%, rgba(231, 245, 255, 0.6) 100.32%);
}

.reasonGrid {
  --gap: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--gap);
}
.reasonGrid .reasonCard {
  background-color: #fff;
  width: calc(33.3333333333% - var(--gap));
}
@media only screen and (max-width: 767px) {
  .reasonGrid {
    --gap: 15px;
  }
  .reasonGrid .reasonCard {
    width: calc(85% - var(--gap));
  }
}

.reasonCardInner {
  padding-inline: 15px;
  padding-block: 20px 60px;
}

.reasonCardSubTtl {
  text-align: center;
  line-height: 1;
  letter-spacing: 0.08em;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.08%, #3C74B1), color-stop(50.23%, #75C8E6), color-stop(97.52%, #3CA0DB));
  background: linear-gradient(90deg, #3C74B1 1.08%, #75C8E6 50.23%, #3CA0DB 97.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reasonCardTtl {
  text-align: center;
  font-size: 25px;
  font-family: var(--serif);
  line-height: 1.4;
  margin-bottom: 0.6em;
}
.reasonCardTtl span {
  color: #75C8E6;
  line-height: 1.4;
}
@media only screen and (max-width: 959px) {
  .reasonCardTtl {
    font-size: 20px;
    margin-bottom: 0.3em;
  }
}

.googleMapBox .commonFrameWrap {
  position: relative;
  width: 100%;
  padding-top: 38.5%;
}
.googleMapBox .commonFrameWrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.locationHead,
.locationFoot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 75px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .locationHead,
  .locationFoot {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .locationHead,
  .locationFoot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.innerBox {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .innerBox {
    width: 100%;
  }
}

.siteplanTitle {
  font-size: 22px;
  font-family: var(--serif);
  border-bottom: 1px solid #bbb;
  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;
  }
}

.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 dl small {
  font-size: 80%;
}
.areaBoxList dt, .areaBoxList dd {
  font-family: var(--serif);
}

.locationHeadGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.locationHeadGrid .img {
  margin-bottom: 5px;
}
.locationHeadGrid .ttl,
.locationHeadGrid .tx {
  font-family: var(--serif);
}
.locationHeadGrid.__col3 {
  grid-template-columns: repeat(3, 1fr);
}
.locationHeadGrid.__col4 {
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .locationHeadGrid.__col4 {
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .locationHeadGrid {
    gap: 15px;
  }
  .locationHeadGrid.__col4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media print, screen and (min-width: 768px) {
  .sitePlanHead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sitePlanInfoTag {
  background: -webkit-gradient(linear, left top, right top, color-stop(1.08%, #3C74B1), color-stop(50.23%, #75C8E6), color-stop(97.52%, #3CA0DB));
  background: linear-gradient(90deg, #3C74B1 1.08%, #75C8E6 50.23%, #3CA0DB 97.52%);
  display: inline-block;
  padding-inline: 0.6em;
  padding-block: 0.5em;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1;
  font-family: var(--serif);
  margin-bottom: 0.7em;
}
.sitePlanInfoTag span {
  font-size: 30px;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .sitePlanInfoTag {
    font-size: 16px;
  }
  .sitePlanInfoTag span {
    font-size: 20px;
  }
}

.sitePlanTx {
  font-size: 20px;
  font-family: var(--serif);
  line-height: 1.9;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .sitePlanTx {
    font-size: 16px;
  }
}

.sitePlanInfoList {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #dadada;
}
.sitePlanInfoList dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 5px;
}
.sitePlanInfoList dt {
  font-size: 14px;
  width: 40%;
}
.sitePlanInfoList dd {
  font-size: 14px;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .sitePlanInfoList dt {
    width: 25%;
  }
  .sitePlanInfoList dd {
    width: 75%;
  }
}

@media only screen and (max-width: 767px) {
  .sitePlanSlide {
    overflow: visible !important;
  }
}

.sitePlanSlideBlock {
  margin-inline: -60px;
}
.sitePlanSlideBlock .swiper-button-prev,
.sitePlanSlideBlock .swiper-button-next {
  border-width: 1px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: auto;
  height: 20px;
  width: 20px;
}
.sitePlanSlideBlock .swiper-button-prev::after,
.sitePlanSlideBlock .swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 1px solid var(--fontColor);
  border-right: 1px solid var(--fontColor);
  height: 8px;
  width: 8px;
}
.sitePlanSlideBlock .swiper-button-prev {
  left: 60px;
}
.sitePlanSlideBlock .swiper-button-prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
  margin-left: 0.05em;
}
.sitePlanSlideBlock .swiper-button-next {
  right: 60px;
}
.sitePlanSlideBlock .swiper-button-next::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -0.05em;
}
@media only screen and (max-width: 767px) {
  .sitePlanSlideBlock {
    margin-inline: -15px;
  }
  .sitePlanSlideBlock .swiper-button-prev {
    left: 15px;
  }
  .sitePlanSlideBlock .swiper-button-next {
    right: 15px;
  }
}

.sitePlanSlideItem {
  border: 1px solid rgba(36, 22, 20, 0.4);
  padding-inline: 30px;
  padding-block: 30px;
}
.sitePlanSlideItem.is-sold {
  background-color: rgba(36, 22, 20, 0.4);
}
@media only screen and (max-width: 767px) {
  .sitePlanSlideItem {
    padding-inline: 20px;
    padding-block: 20px;
    max-width: 100%;
    width: auto;
  }
}

.sitePlanSlideItemHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
}
.sitePlanSlideItemHead .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: var(--serif);
  line-height: 1;
  font-size: 20px;
}
.sitePlanSlideItemHead .num span {
  font-size: 40px;
  line-height: 0.8;
}
.is-sold .sitePlanSlideItemHead .num {
  color: #fff;
}
.sitePlanSlideItemHead .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sitePlanSlideItemHead .tag li {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  border-radius: 4px;
  background-color: var(--fontColor);
  color: #fff;
  padding-inline: 0.8em;
  padding-block: 0.3em;
}

.sitePlanSlideItemFoot dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sitePlanSlideItemFoot dl dt, .sitePlanSlideItemFoot dl dd {
  font-size: 14px;
}
.sitePlanSlideItemFoot dt {
  width: 8em;
}
.sitePlanSlideItemFoot dd {
  width: calc(100% - 8em);
}

.sold-label {
  font-size: 24px;
  color: #fff;
  font-family: var(--serif);
  text-align: center;
  padding-block: 0 0.9em;
  margin-top: -0.7em;
}

.nearSlideBlock {
  padding-bottom: 40px;
}
.nearSlideBlock .swiper-pagination {
  bottom: -40px !important;
}
.nearSlideBlock .nearSlide {
  overflow: visible;
}
.nearSlideBlock .nearSlide .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid #241614;
  opacity: 1;
  height: 10px;
  width: 10px;
}
.nearSlideBlock .nearSlide .swiper-pagination-bullet-active {
  background-color: var(--fontColor);
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .nearSlideBlock {
    margin-inline: auto;
  }
}

.nearTtl {
  font-size: 32px;
  font-family: var(--serif);
  line-height: 1.2;
  margin-bottom: 0.6em;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .nearTtl {
    font-size: 24px;
  }
}

.nearTx {
  font-size: 18px;
  font-family: var(--serif);
}
@media only screen and (max-width: 767px) {
  .nearTx {
    font-size: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .sampleHead .cntTx {
    line-height: 1.6;
  }
}

.sampleTtlEn {
  font-family: var(--fontEn);
  font-size: clamp(26px, 3.6vw, 46px);
  line-height: 1.4;
  letter-spacing: 0.08em;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.08%, #3C74B1), color-stop(50.23%, #75C8E6), color-stop(97.52%, #3CA0DB));
  background: linear-gradient(90deg, #3C74B1 1.08%, #75C8E6 50.23%, #3CA0DB 97.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sampleBlock {
  background-color: #F0F0F0;
  padding-block: 60px;
}
.sampleBlock .swiper-button-prev,
.sampleBlock .swiper-button-next {
  background-color: var(--fontColor);
  height: 25px;
  width: 25px;
}
.sampleBlock .swiper-button-prev::after,
.sampleBlock .swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  height: 8px;
  width: 8px;
}
.sampleBlock .swiper-button-prev {
  left: -10px;
}
.sampleBlock .swiper-button-prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
  margin-left: 0.05em;
}
.sampleBlock .swiper-button-next {
  right: -10px;
}
.sampleBlock .swiper-button-next::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -0.05em;
}

.sampleBlockItem + .sampleBlockItem {
  margin-top: 60px;
}

.sampleMainSlide img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1160/589;
}

.sampleThumbSlide {
  margin-top: 10px;
}
.sampleThumbSlide .swiper-slide {
  cursor: pointer;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.sampleThumbSlide .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.sampleThumbSlide .swiper-slide img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 181/111;
}

.sampleTtlBox {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #BBBBBB;
}
.sampleTtlBox .sampleNum {
  background: -webkit-gradient(linear, left top, right top, color-stop(1.08%, #3C74B1), color-stop(50.23%, #75C8E6), color-stop(97.52%, #3CA0DB));
  background: linear-gradient(90deg, #3C74B1 1.08%, #75C8E6 50.23%, #3CA0DB 97.52%);
  color: #fff;
  font-family: var(--fontEn);
  display: inline-block;
  padding-inline: 0.4em;
  padding-block: 0.2em;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0.2em;
}
.sampleTtlBox .sampleTtl {
  color: #241614;
  font-family: var(--fontEn);
  font-size: 32px;
  line-height: 1.56;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .sampleTtlBox .sampleNum {
    font-size: 14px;
  }
  .sampleTtlBox .sampleTtl {
    font-size: 20px;
  }
}

.sampleTag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sampleTag li {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background-color: var(--fontColor);
  border-radius: 4px;
  padding-inline: 0.8em;
  padding-block: 0.5em;
}

.sampleInfo {
  margin-top: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sampleInfo .left {
  padding-right: 3%;
  width: 40%;
}
.sampleInfo .right {
  width: 60%;
}
.sampleInfo .infoTtl {
  font-size: 18px;
  font-family: var(--serif);
  line-height: 1;
  margin-bottom: 1em;
}
.sampleInfo dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sampleInfo dl dt, .sampleInfo dl dd {
  font-size: 14px;
}
.sampleInfo dl dt {
  width: 20em;
}
.sampleInfo dl dd {
  padding-left: 1em;
  width: calc(100% - 20em);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sampleInfo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sampleInfo .left {
    padding-right: 0;
    width: 100%;
  }
  .sampleInfo .right {
    margin-top: 5%;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .sampleInfo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sampleInfo .left {
    padding-right: 0;
    width: 100%;
  }
  .sampleInfo .right {
    margin-top: 5%;
    width: 100%;
  }
  .sampleInfo dl dt {
    width: 11em;
  }
  .sampleInfo dl dd {
    width: calc(100% - 11em);
  }
}

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

.samplePointItem {
  background-color: rgba(255, 255, 255, 0.4);
  padding-inline: 20px;
  padding-block: 30px;
}
@media only screen and (max-width: 767px) {
  .samplePointItem {
    padding-inline: 15px;
    padding-block: 15px;
  }
}

.samplePointNum {
  font-size: 20px;
  font-family: var(--serif);
  background: -webkit-gradient(linear, left top, right top, color-stop(1.08%, #3C74B1), color-stop(50.23%, #75C8E6), color-stop(97.52%, #3CA0DB));
  background: linear-gradient(90deg, #3C74B1 1.08%, #75C8E6 50.23%, #3CA0DB 97.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.8em;
}
@media only screen and (max-width: 767px) {
  .samplePointNum {
    font-size: 15px;
  }
}

.samplePointTtl {
  font-size: 24px;
  font-family: var(--serif);
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 767px) {
  .samplePointTtl {
    font-size: 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;
  }
}

.eqGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.eqGrid .eqItemImg {
  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;
  }
}

.outlineTable table {
  border-collapse: collapse;
  width: 100%;
}
.outlineTable th,
.outlineTable td {
  border: solid 1px #BBBBBB;
  font-family: var(--serif);
  font-weight: 400;
  padding-inline: 1em;
  padding-block: 0.6em;
}
.outlineTable th {
  background-color: #F0F0F0;
  text-align: left;
  width: 30%;
}
.outlineTable td {
  width: 70%;
}

/* ----------------------------------------------
松浜町LP add css
---------------------------------------------- */
.conceptInfoBlock {
  --position: 450px;
  background-color: #F0F0F0;
  position: relative;
  z-index: 2;
}
.conceptInfoBlock::before {
  content: "";
  position: absolute;
  top: calc(var(--position) / 1.5 * -1);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(56.45%, #F0F0F0), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, #F0F0F0 56.45%, rgba(255, 255, 255, 0) 100%);
  height: var(--position);
  width: 100%;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .conceptInfoBlock {
    --position: 230px;
  }
}

.problemList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 30px;
}
.problemList li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding-inline: 1em;
  padding-block: 1em;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.problemList li .icon {
  aspect-ratio: 1/1;
  width: 26px;
}
.problemList li .tx {
  font-size: 18px;
  font-family: var(--serif);
  line-height: 1.2;
  width: calc(100% - 26px);
}
@media only screen and (max-width: 767px) {
  .problemList {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.valChoice {
  background-color: #F3EFEA;
  padding-inline: 60px;
  padding-block: 40px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .valChoice {
    padding-inline: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .valChoice {
    padding-inline: 15px;
    padding-block: 20px;
  }
}

.valChoiceTtl {
  text-align: center;
  font-size: clamp(24px, 3.2vw, 40px);
  font-family: var(--serif);
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.valChoiceTtl span {
  background: -webkit-gradient(linear, left top, right top, color-stop(1.08%, #3C74B1), color-stop(50.23%, #75C8E6), color-stop(97.52%, #3CA0DB));
  background: linear-gradient(90deg, #3C74B1 1.08%, #75C8E6 50.23%, #3CA0DB 97.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

.valChoiceSubTtl {
  font-size: clamp(22px, 2.5vw, 32px);
}

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

.valChoiceItemInner {
  background: #8BB588;
  padding-inline: 15px;
  padding-block: 40px 25px;
}
.valChoiceItem + .valChoiceItem .valChoiceItemInner {
  background: #D8EED6;
}
@media only screen and (max-width: 767px) {
  .valChoiceItemInner {
    padding-block: 30px 15px;
    padding-inline: 15px;
  }
}

.valChoiceItemSubTtl {
  text-align: center;
  margin-block: -60px 6px;
}
.valChoiceItemSubTtl span {
  display: inline-block;
  font-size: 24px;
  font-family: var(--serif);
  padding-inline: 1em;
  padding-block: 0.4em;
  background-color: #fff;
  border-radius: 30px;
  line-height: 1;
  letter-spacing: 0.13em;
}
@media only screen and (max-width: 767px) {
  .valChoiceItemSubTtl {
    margin-block: -40px 6px;
  }
  .valChoiceItemSubTtl span {
    font-size: 16px;
  }
}

.valChoiceItemTtl {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 32px);
  line-height: 1.2;
}
.valChoiceItemTtl span {
  font-size: clamp(42px, 5.1vw, 65px);
  line-height: 1.2;
  margin-inline: 0.2em 0.05em;
}

.valChoiceList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 20px;
  padding-block: 20px;
  background-color: #fff;
}
.valChoiceList + .valChoiceList {
  margin-top: 8px;
}
.valChoiceList .valChoiceListCate {
  font-family: var(--serif);
  color: var(--mainColor);
  font-size: 24px;
  line-height: 1;
  width: 95px;
}
@media only screen and (max-width: 767px) {
  .valChoiceList .valChoiceListCate {
    font-size: 18px;
    width: 70px;
  }
}
.valChoiceList .valChoiceListInfo {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  width: 150px;
}
.valChoiceList .valChoiceListInfo span {
  font-size: 48px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .valChoiceList .valChoiceListInfo {
    font-size: 16px;
    width: 90px;
  }
  .valChoiceList .valChoiceListInfo span {
    font-size: 32px;
  }
}
.valChoiceList .valChoiceListIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.valChoiceList .valChoiceListIcon img {
  aspect-ratio: 1/1;
  width: 50px;
}
.valChoiceList .valChoiceListIcon.__house img {
  width: 117px;
}
@media only screen and (max-width: 767px) {
  .valChoiceList .valChoiceListIcon img {
    width: 28px;
  }
  .valChoiceList .valChoiceListIcon.__house img {
    width: 77px;
  }
}
@media only screen and (max-width: 767px) {
  .valChoiceList {
    padding-inline: 15px;
    padding-block: 10px;
  }
}

.valChoiceListTags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 10px;
  width: calc(100% - 95px);
}
.valChoiceListTags .valChoiceTag {
  background-color: #F3EFEA;
  font-size: 18px;
  padding-inline: 0.5em;
  padding-block: 0.4em;
  border-radius: 30px;
  line-height: 1;
}
.valChoiceListTags .valChoiceTag.none {
  background-color: transparent;
  border: 1px dashed;
}
@media only screen and (max-width: 767px) {
  .valChoiceListTags .valChoiceTag {
    font-size: 14px;
  }
}

.compareTable {
  overflow-x: auto;
}
.compareTable table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
.compareTable th,
.compareTable td {
  background-color: #fff;
  padding: 14px 10px;
  border: 1px solid #C1C1C1;
  text-align: center;
  line-height: 1.5;
  font-size: 12px;
  white-space: nowrap;
}
.compareTable thead th {
  background: #D9D9D9;
  padding: 16px 10px;
  font-size: 16px;
}
.compareTable thead th.highlight {
  background: #90BAE0;
  color: #fff;
}
.compareTable tbody th {
  background: #D9D9D9;
  font-size: 16px;
}
.compareTable td.pickup {
  background: #C7DFF6;
}
.compareTable .num {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .compareTable table {
    width: 578px;
  }
}

/* ==========================================
   3つのスタイル セクション
========================================== */
.styleGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .styleGrid {
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 480px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .styleGrid {
    grid-template-columns: 0.85fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.styleItem {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.styleItem .styleImg img {
  aspect-ratio: 360/260;
  -o-object-fit: cover;
     object-fit: cover;
}
.styleItem .styleTtl {
  font-size: 22px;
  font-family: var(--serif);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .styleItem .styleTtl {
    font-size: 18px;
  }
}
.styleItem .stylePriceBox {
  background: #F3EFEA;
  padding: 14px 10px;
  text-align: center;
}
.styleItem .stylePrice {
  line-height: 1;
  font-size: 20px;
  font-family: var(--serif);
  letter-spacing: 0.05em;
}
.styleItem .stylePrice .num {
  font-size: 32px;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0 2px;
}
@media only screen and (max-width: 767px) {
  .styleItem .stylePrice .num {
    font-size: 24px;
  }
}
.styleItem .styleCost {
  background-color: #F2F2F2;
  margin-top: auto;
  position: relative;
  padding: 35px 15px 20px;
  text-align: center;
}
.styleItem .styleCostLabel {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 0.3em 1.1em;
  line-height: 1;
  letter-spacing: 0.08em;
}
.styleItem .styleCostPrice {
  font-size: 20px;
  font-family: var(--serif);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #848484;
  line-height: 1;
}
.styleItem .styleCostPrice .num {
  font-size: 40px;
  letter-spacing: 0.02em;
  margin: 0 2px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .styleItem .styleCostPrice .num {
    font-size: 26px;
  }
}
.styleItem .styleCostNote {
  font-size: 12px;
  line-height: 1.7;
  text-align: left;
}

.styleBatch {
  --w: 130px;
  position: absolute;
  top: -40px;
  left: -30px;
  aspect-ratio: 1/1;
  width: var(--w);
}

/* ==========================================
   安心して永く暮らせる セクション
========================================== */
.promissBlock {
  padding-inline: 10px;
}

.trustBadgeList {
  --w: clamp(200px, 18.8vw, 240px);
  display: grid;
  grid-template-columns: repeat(4, var(--w));
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.trustBadgeList.__col3 {
  grid-template-columns: repeat(3, var(--w));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .trustBadgeList {
    grid-template-columns: repeat(2, 25vw);
    gap: 40px 15px;
  }
  .trustBadgeList.__col3 {
    grid-template-columns: repeat(3, 25vw);
    gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .trustBadgeList {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  .trustBadgeList.__col3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 15px;
  }
}

.trustBadge {
  text-align: center;
}
.trustBadge .trustBadgeLabel {
  font-size: 21px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .trustBadge .trustBadgeLabel {
    font-size: 13px;
  }
}
.trustBadge .trustBadgeTtl {
  font-size: 24px;
  font-family: var(--serif);
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin-bottom: 0.2em;
}
.trustBadge .trustBadgeTtl.big {
  font-size: 30px;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .trustBadge .trustBadgeTtl {
    font-size: 18px;
  }
  .trustBadge .trustBadgeTtl.big {
    font-size: 24px;
  }
}
.trustBadge .trustBadgeTtl .num {
  font-size: 46px;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .trustBadge .trustBadgeTtl .num {
    font-size: 24px;
  }
}
.trustBadge .trustBadgeTx {
  font-size: 12px;
  line-height: 1.8;
  color: #555;
  letter-spacing: 0.03em;
  padding: 0 8px;
}
@media only screen and (max-width: 767px) {
  .trustBadge .trustBadgeTx {
    padding: 0;
    margin-inline: -5px;
  }
}

.trustBadgeCircle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
.trustBadgeCircle::before {
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.8;
  height: clamp(185px, 18.8vw, 240px);
  width: clamp(185px, 18.8vw, 240px);
  padding: 10px;
  z-index: -1;
}
.__yellow .trustBadgeCircle::before {
  background: radial-gradient(circle, #FFFFFF 0%, #F7E8AC 100%);
}
.__pink .trustBadgeCircle::before {
  background: radial-gradient(circle, #FFFFFF 0%, #F7C4AC 100%);
}
.trustBadgeList.__col3 .trustBadgeCircle {
  padding-block: 45px;
}
@media only screen and (max-width: 767px) {
  .trustBadgeCircle {
    margin-inline: auto;
    padding-block: 17px;
  }
}

.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: var(--fontColor);
  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: -webkit-gradient(linear, left top, right top, color-stop(1.08%, #3C74B1), color-stop(50.23%, #75C8E6), color-stop(97.52%, #3CA0DB));
  background: linear-gradient(90deg, #3C74B1 1.08%, #75C8E6 50.23%, #3CA0DB 97.52%);
  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 {
  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;
  }
}

.faqList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.faqItem {
  background: #EEF0F3;
  border-radius: 6px;
  padding: 15px 25px;
}
@media only screen and (max-width: 767px) {
  .faqItem {
    padding: 22px 20px;
    border-radius: 4px;
  }
}

.faqQ,
.faqA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .faqQ,
  .faqA {
    gap: 14px;
  }
}
.faqQ .faqIcon,
.faqA .faqIcon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: var(--serif, serif);
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .faqQ .faqIcon,
  .faqA .faqIcon {
    font-size: 18px;
  }
}
.faqQ .faqTx,
.faqA .faqTx {
  font-family: var(--serif);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding-top: 2px;
}
@media only screen and (max-width: 767px) {
  .faqQ .faqTx,
  .faqA .faqTx {
    font-size: 14px;
    line-height: 1.8;
  }
}

.faqQ {
  margin-bottom: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .faqQ {
    margin-bottom: 10px;
  }
}
.faqQ .faqIcon,
.faqQ .faqTx {
  color: var(--mainColor);
}
.faqQ .faqTx {
  font-size: 18px;
}

.faqA {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faqA .faqTx {
  line-height: 1.8;
}

.voiceSlideBlock {
  position: relative;
}
.voiceSlideBlock .voiceSlide {
  padding-bottom: 60px;
}
.voiceSlideBlock .voiceSlide .swiper-slide {
  height: auto;
}
.voiceSlideBlock .swiper-pagination {
  bottom: 0;
  text-align: center;
}
.voiceSlideBlock .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid;
  opacity: 1;
  margin: 0 6px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.voiceSlideBlock .swiper-pagination .swiper-pagination-bullet-active {
  background: #333;
}

.voiceSlideItem {
  background: #F2F2F2;
  padding: 30px 15px;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.voiceSlideItemHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .voiceSlideItemHead {
    margin-bottom: 18px;
  }
}
.voiceSlideItemHead .icon {
  width: 60px;
  height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .voiceSlideItemHead .icon {
    width: 36px;
    height: 36px;
  }
}
.voiceSlideItemHead .name {
  font-size: 22px;
  font-family: var(--serif);
  line-height: 1.4;
}
.voiceSlideItemHead .name span {
  font-size: 14px;
  margin-left: 4px;
}
@media only screen and (max-width: 767px) {
  .voiceSlideItemHead .name span {
    font-size: 12px;
  }
}

.voiceSlideItem .title {
  font-size: 22px;
  font-family: var(--serif);
  line-height: 1.4;
  margin-bottom: 0.6em;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .voiceSlideItem .title {
    font-size: 17px;
  }
}
.voiceSlideItem .text {
  line-height: 1.8;
}

.voiceBtn {
  max-width: 360px;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .voiceBtn {
    text-align: center;
  }
}

.modelBox {
  padding-inline: 40px;
  padding-block: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F3EFEA;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.modelBox + .modelBox {
  margin-top: 15px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .modelBox {
    padding-inline: 15px;
    padding-block: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .modelBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-inline: 15px;
    padding-block: 20px;
  }
}

.modelTxBox {
  padding-right: 5%;
  width: 47%;
}
@media only screen and (max-width: 767px) {
  .modelTxBox {
    width: 100%;
  }
}
.modelTxBox .modelTxBoxTop {
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--fontColor);
}

.modelTxBoxTop .modelBoxSub {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0.7em;
}

.modelBoxTag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .modelBoxTag {
    gap: 5px;
    margin-bottom: 18px;
  }
}
.modelBoxTag .modelTag {
  display: inline-block;
  background: var(--fontColor);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 8px;
}

.modelBoxTtl {
  font-size: 30px;
  font-family: var(--serif);
  line-height: 1.4;
  margin-bottom: 0.4em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .modelBoxTtl {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .modelBoxTtl {
    font-size: 20px;
  }
}

.modelBoxTx {
  line-height: 1.8;
}
.modelBoxTx small {
  font-size: 80%;
}
@media only screen and (max-width: 959px) {
  .modelBoxTx {
    font-size: 13px;
  }
}

.modelTxBoxBottom dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modelTxBoxBottom dl + dl {
  margin-top: 0.4em;
}
.modelTxBoxBottom dl dt, .modelTxBoxBottom dl dd {
  font-size: 14px;
}
.modelTxBoxBottom dl dt {
  line-height: 1.2;
  width: 12em;
}
.modelTxBoxBottom dl dd {
  line-height: 1.2;
  width: calc(100% - 12em);
}

.modelBoxBtn {
  border: 1px solid var(--fontColor);
  background: rgba(36, 22, 20, 0.1);
  color: #000;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 200px;
  font-size: 12px;
  font-family: var(--serif);
  letter-spacing: 0.08em;
  padding-inline: 2.5em;
  padding-block: 0.8em;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .modelBoxBtn {
    width: 200px;
    height: 50px;
    margin-top: 15px;
    font-size: 13px;
  }
}
.modelBoxBtn::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 1px solid var(--fontColor);
  background-color: var(--fontColor);
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><polyline points="3,1 7,5 3,9" fill="none" stroke="%23fff" stroke-width="1"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
}
.modelBoxBtn:hover {
  opacity: 0.7;
}

.modelImgBox {
  width: 53%;
  position: relative;
}
.modelImgBox .swiper-pagination {
  bottom: -30px !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modelImgBox .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent !important;
  border: 1px solid;
  opacity: 1;
  margin: 0 6px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.modelImgBox .swiper-pagination .swiper-pagination-bullet-active {
  background: #333 !important;
}
@media only screen and (max-width: 767px) {
  .modelImgBox .swiper-pagination {
    bottom: 12px;
  }
}
.modelImgBox .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.6;
  margin: 0 !important;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.modelImgBox .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .modelImgBox {
    margin-bottom: 5%;
    width: 100%;
  }
}

.modelSwiper {
  overflow: visible !important;
  width: 100%;
  height: 100%;
}
.modelSwiper .swiper-slide {
  height: auto;
}
.modelSwiper .modelImg {
  width: 100%;
  height: 100%;
}
.modelSwiper .modelImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modelSwiper .swiper-pagination {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: auto;
  left: auto;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .modelSwiper .swiper-pagination {
    top: 12px;
    right: 12px;
  }
}
.modelSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.6;
  margin: 0 !important;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.modelSwiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.compareBlock {
  padding-inline: 60px;
}
@media only screen and (max-width: 959px) {
  .compareBlock {
    padding-inline: 15px;
  }
}

.compareBox + .compareBox {
  margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
  .compareBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .compareBox .compareImgBox {
    padding-right: 5%;
    width: 50%;
  }
  .compareBox .compareTxBox {
    width: 50%;
  }
  .compareBox.reserve {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .compareBox.reserve .compareImgBox {
    padding-inline: 5% 0;
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .compareBox .compareImgBox {
    margin-bottom: 5%;
  }
}
.compareBox .compareTtl {
  font-size: 25px;
  font-family: var(--serif);
  margin-bottom: 0.8em;
  letter-spacing: 0.13em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .compareBox .compareTtl {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .compareBox .compareTtl {
    font-size: 20px;
    margin-bottom: 0.4em;
  }
}
.compareBox .compareTx {
  line-height: 2.1;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 959px) {
  .compareBox .compareTx {
    line-height: 1.6;
  }
}

.valItemOther {
  background-color: #F3EFEA;
  padding-inline: 60px;
  padding-block: 60px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .valItemOther {
    padding-inline: 20px;
    padding-block: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .valItemOther {
    padding-inline: 15px;
    padding-block: 30px;
  }
}

.valItemOtherGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.valItemOtherGrid .otherItemTtl {
  font-size: 24px;
  font-family: var(--serif);
  text-align: center;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .valItemOtherGrid .otherItemTtl {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .valItemOtherGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .valItemOtherGrid .otherItemTtl {
    font-size: 20px;
  }
}

.valItemCostBlock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 959px) {
  .valItemCostBlock {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.valItemCost {
  background-color: #F2F2F2;
  margin-top: auto;
  position: relative;
  padding: 55px 20px 30px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .valItemCost {
    padding: 40px 20px 20px;
  }
}

.valItemCostLabel {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background: #333;
  font-size: 24px;
  color: #fff;
  padding: 0.3em 1.1em;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .valItemCostLabel {
    font-size: 16px;
  }
}

.valItemCostPrice {
  font-size: 30px;
  font-family: var(--serif);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #848484;
  line-height: 1;
}
.valItemCostPrice .num {
  font-size: 60px;
  letter-spacing: 0.02em;
  margin: 0 2px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .valItemCostPrice {
    font-size: 26px;
  }
  .valItemCostPrice .num {
    font-size: 34px;
  }
}

.valItemCostNote {
  font-size: 18px;
  line-height: 1.7;
  text-align: left;
}

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