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

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


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

*/
/* ----------------------------------
使う↓
---------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300..900&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=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
:root {
  --mainColor: #FDD62A;
  --mainColorLight: #FFE77E;
  --mainColorDeep: #FFC720;
  --subColor: #238AFF;
  --subColorLight: #E9F3FF;
  --grayColor: #F4F4F4;
}

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

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

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

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

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

.bgmainColorDeep {
  background-color: var(--mainColorDeep);
}

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

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

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

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

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

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

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

.bgGrayColorLight {
  background-color: #F4F4F4;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

.bgBlueLight {
  background-color: #ECF0F3;
}

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

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

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

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

:root {
  --fontJp: "Inter","游ゴシック体", "Yu Gothic",YuGothic,"游ゴシック Medium","Yu Gothic Medium","Hiragino Kaku Gothic ProN";
}

body {
  font-family: var(--fontJp);
  font-weight: 500;
}

.fontJp {
  font-family: var(--fontJp);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.serif {
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

:root {
  --fontColor: #192B4C;
}

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 {
  background: var(--grayColor);
  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;
}
.linkA.fontColor {
  color: var(--fontColor);
}
.linkA.fontColor:hover {
  opacity: 0.8;
}

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

.mtL2 {
  margin-top: 25%;
}

.mtL3 {
  margin-top: 20%;
}

.mtL4 {
  margin-top: 15%;
}

.mtM {
  margin-top: 10%;
}

.mtM2 {
  margin-top: 7.5%;
}

.mtM3 {
  margin-top: 5%;
}

.mtS {
  margin-top: 3.5%;
}

.mtS2 {
  margin-top: 2%;
}

.mtS3 {
  margin-top: 1%;
}

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

.mbL2 {
  margin-bottom: 25%;
}

.mbL3 {
  margin-bottom: 20%;
}

.mbL4 {
  margin-bottom: 15%;
}

.mbM {
  margin-bottom: 10%;
}

.mbM2 {
  margin-bottom: 7.5%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS3 {
  margin-bottom: 1%;
}

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

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

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

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

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

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

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

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

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

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

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

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

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

.pl1 {
  padding-left: 1em;
}

.pl2 {
  padding-left: 2em;
}

.pl3 {
  padding-left: 3em;
}

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

.pbL2 {
  padding-bottom: 25%;
}

.pbL3 {
  padding-bottom: 20%;
}

.pbL4 {
  padding-bottom: 15%;
}

.pbM {
  padding-bottom: 10%;
}

.pbM2 {
  padding-bottom: 7.5%;
}

.pbM3 {
  padding-bottom: 5%;
}

.pbS {
  padding-bottom: 3.5%;
}

.pbS2 {
  padding-bottom: 2%;
}

.pbS3 {
  padding-bottom: 1%;
}

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

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

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

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

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

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

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

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

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

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

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

.flexCol {
  width: 100%;
}

.col1 {
  width: 100%;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 33.3333%;
}

.col-3 {
  width: 66.6666%;
}

.col4 {
  width: 25%;
}

.col-4 {
  width: 75%;
}

.col5 {
  width: 20%;
}

.col-5 {
  width: 80%;
}

.col6 {
  width: 16.666%;
}

.col-6 {
  width: 83.333%;
}

.col3-2 {
  width: 60%;
}

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

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

.grid-colum-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-colum-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-colum-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 767px) {
  .grid-colum-1s-sp {
    grid-template-columns: 0.85fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .grid-colum-1-sp {
    grid-template-columns: 1fr;
  }
  .grid-colum-2-sp {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-colum-3-sp {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-colum-4-sp {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

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

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

@media only screen and (max-width: 959px) {
  .gap-10 {
    gap: 5px;
  }
  .gap-x-10 {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
  .gap-y-10 {
    row-gap: 5px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-20 {
  gap: 20px;
}

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

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

@media only screen and (max-width: 959px) {
  .gap-20 {
    gap: 10px;
  }
  .gap-x-20 {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .gap-y-20 {
    row-gap: 10px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-30 {
  gap: 30px;
}

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

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

@media only screen and (max-width: 959px) {
  .gap-30 {
    gap: 15px;
  }
  .gap-x-30 {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
  .gap-y-30 {
    row-gap: 15px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-40 {
  gap: 40px;
}

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

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

@media only screen and (max-width: 959px) {
  .gap-40 {
    gap: 20px;
  }
  .gap-x-40 {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .gap-y-40 {
    row-gap: 20px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-50 {
  gap: 50px;
}

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

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

@media only screen and (max-width: 959px) {
  .gap-50 {
    gap: 25px;
  }
  .gap-x-50 {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
  .gap-y-50 {
    row-gap: 25px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-60 {
  gap: 60px;
}

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

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

@media only screen and (max-width: 959px) {
  .gap-60 {
    gap: 30px;
  }
  .gap-x-60 {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .gap-y-60 {
    row-gap: 30px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-70 {
  gap: 70px;
}

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

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

@media only screen and (max-width: 959px) {
  .gap-70 {
    gap: 35px;
  }
  .gap-x-70 {
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
  .gap-y-70 {
    row-gap: 35px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-80 {
  gap: 80px;
}

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

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

@media only screen and (max-width: 959px) {
  .gap-80 {
    gap: 40px;
  }
  .gap-x-80 {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .gap-y-80 {
    row-gap: 40px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-90 {
  gap: 90px;
}

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

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

@media only screen and (max-width: 959px) {
  .gap-90 {
    gap: 45px;
  }
  .gap-x-90 {
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
  }
  .gap-y-90 {
    row-gap: 45px;
  }
}
.gap-5 {
  gap: 5px;
}

.gap-100 {
  gap: 100px;
}

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

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

@media only screen and (max-width: 959px) {
  .gap-100 {
    gap: 50px;
  }
  .gap-x-100 {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
  .gap-y-100 {
    row-gap: 50px;
  }
}
/*横幅*/
@media only screen and (max-width: 767px) {
  .spPadding {
    padding-inline: 15px;
  }
}

.w100 {
  width: 100%;
}

:root {
  --cnt: 1280px;
  --interval: 60px;
}

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

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

.cntM {
  max-width: calc(var(--cnt) - var(--interval) * 6);
  margin-inline: auto;
  padding-inline: 15px;
}

.cntL {
  max-width: calc(var(--cnt) - var(--interval) * 4);
  margin-inline: auto;
  padding-left: 15px;
  padding-right: 15px;
}

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

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

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

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

.paNone {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

.marginCenter {
  margin-inline: auto;
}

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

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

.bgImgHeight {
  padding-bottom: 67%;
}

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

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

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

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

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

.bgWhite {
  background-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

.radiusCircle {
  border-radius: 50%;
}

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

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

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

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

/*マウスストーカー*/
.pageHeader {
  position: relative;
  padding-block: 200px 100px;
  z-index: 2;
}
.pageHeader::before {
  content: "";
  position: absolute;
  background-image: url("../img/pageHeaderBg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageHeader {
    padding-block: 150px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .pageHeader {
    padding-block: 100px 20px;
  }
}

.pageHeaderHead .titleEn {
  font-size: clamp(40px, 6.3vw, 80px);
  color: var(--mainColorDeep);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 0.1em;
}
.pageHeaderHead .titleJp {
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 600;
  padding-left: 1em;
  position: relative;
}
.pageHeaderHead .titleJp::before {
  content: "";
  position: absolute;
  background-color: var(--mainColorDeep);
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 0.4em;
  width: 0.4em;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*ハンバーガーメニュー*/
@media only screen and (max-width: 767px) {
  .menu-btn {
    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: 23px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--fontColor);
}
.menu-trigger span:nth-of-type(1) {
  top: 4px;
}
.menu-trigger span:nth-of-type(2) {
  top: calc(var(--menuTrigeHeight) / 2);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 4px;
}
.menu-trigger.active span {
  background-color: var(--fontColor);
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 0.8s forwards;
  animation: active-menu-bar02 0.8s forwards;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(45deg);
          transform: translateY(-7px) rotate(45deg);
}
.menu-trigger.active span:nth-of-type(4) {
  background: none !important;
}

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

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

/*パンくず終わり*/
/*新着情報------------------------------------*/
.newsItem .img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  aspect-ratio: 290/180;
  width: 100%;
}
.newsItem .innerHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.newsItem .time {
  font-size: 14px;
  color: #ACACAC;
  font-family: var(--fontEn);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .newsItem .time {
    font-size: 12px;
  }
}
.newsItem .cate {
  font-size: 12px;
  background-color: var(--mainColorLight);
  display: inline-block;
  text-align: center;
  padding-inline: 0.8em;
  padding-block: 0.2em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .newsItem .cate {
    font-size: 10px;
  }
}
.newsItem .title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .newsItem .title {
    font-size: 18px;
  }
}
.newsItem:hover .img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.newsItem:hover .title {
  color: var(--mainColor);
}

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

.contactFormPrivacyAlertBox {
  background-color: #fff;
  border-radius: 20px;
  padding: 5%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.toc_list li:before {
  display: none;
}

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

.toc_toggle {
  font-size: 14px;
}

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

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

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

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

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

.lkc-excerpt {
  display: none;
}

.lkc-url {
  display: none;
}

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

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

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

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

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

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

.lkc-domain {
  color: #fff;
}

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

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

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

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

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

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

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

.singleColumnArticleContent {
  margin-top: 5%;
}

.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);
  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);
  padding: 0.3em 0.6em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 11px;
  }
}
.singleColumnInfoUl .cateUl li + li {
  margin-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 12px;
  }
}

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

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

/*この記事を書いた人*/
.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;
  }
}

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

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

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

.singlePageLink {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.13em;
}
.singlePageLink::before, .singlePageLink::after {
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.singlePageLink::before {
  background: var(--mainColor);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 35px;
  width: 35px;
}
.singlePageLink::after {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #fff;
  height: 13px;
  width: 8px;
  z-index: 2;
}
.singlePageLink.prev {
  padding-left: 3.5em;
}
.singlePageLink.prev::before {
  left: 0;
}
.singlePageLink.prev::after {
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
  left: 13px;
}
.singlePageLink.next {
  padding-right: 3.5em;
}
.singlePageLink.next::before {
  right: 0;
}
.singlePageLink.next::after {
  right: 13px;
}
.singlePageLink:hover {
  color: var(--subColor);
}
.singlePageLink:hover::before {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .singlePageLink::before {
    height: 25px;
    width: 25px;
  }
  .singlePageLink::after {
    height: 9px;
    width: 7px;
    z-index: 2;
  }
  .singlePageLink.prev {
    padding-left: 2.4em;
  }
  .singlePageLink.prev::after {
    left: 8px;
  }
  .singlePageLink.next {
    padding-right: 2.4em;
  }
  .singlePageLink.next::after {
    right: 8px;
  }
}

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

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

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

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

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

/*アーカイブページ------------------------------------*/
.cmNewsListUl {
  display: -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);
  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-size: 18px;
  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(--mainColor);
}
.pagenation ul .prev a,
.pagenation ul .next a {
  border-radius: 50%;
  border: 1px solid var(--mainColor);
  background-color: var(--mainColor);
  display: block;
  position: relative;
}
.pagenation ul .prev a::before,
.pagenation ul .next a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  border-top: 2px solid var(--fontColor);
  border-right: 2px solid var(--fontColor);
  height: 10px;
  width: 10px;
}
.pagenation ul .prev a::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
  margin-left: 0.1em;
}
@media only screen and (max-width: 767px) {
  .pagenation {
    margin-top: 15%;
  }
}

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

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

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

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

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

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

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

.sidebarCategoryBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.sidebarCategoryBlock li a {
  display: inline-block;
  font-size: 14px;
  background-color: var(--mainColor);
  font-family: var(--fontJp);
  padding: 0.3em 0.6em;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .sidebarCategoryBlock li a {
    font-size: 11px;
  }
}
.sidebarCategoryBlock li a:hover {
  opacity: 0.7;
}

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

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

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

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

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

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

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

.archive-months {
  display: none;
}

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

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

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

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

/*==================================================
 * 当サイト共通
*================================================*/
main {
  contain: paint;
}

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

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

.sectionTitleJp span {
  padding-left: 1em;
  position: relative;
}
.sectionTitleJp span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--mainColor);
  border-radius: 50%;
  height: 0.6em;
  width: 0.6em;
}
.whiteTx .sectionTitleJp span {
  color: #fff;
}
.whiteTx .sectionTitleJp span::before {
  background-color: #fff;
}
.blackTx .sectionTitleJp span {
  color: var(--fontColor);
}
.blackTx .sectionTitleJp span::before {
  background-color: var(--fontColor);
}

.sectionTitleEn {
  line-height: 1;
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: 0.05em;
  color: var(--mainColorDeep);
}
.whiteTx .sectionTitleEn {
  color: #fff;
}
.blackTx .sectionTitleEn {
  color: var(--fontColor);
}

.commonTitle {
  font-size: clamp(24px, 3.3vw, 42px);
  font-weight: 600;
}
.whiteTx .commonTitle {
  color: #fff;
}
.commonTitle.__small {
  font-size: clamp(20px, 2.5vw, 28px);
}
.commonTitle.__middle {
  font-size: clamp(20px, 2.5vw, 32px);
}
.commonTitle.__large {
  font-size: clamp(24px, 3.8vw, 48px);
}

.whiteTx .commonTx {
  color: #fff;
}

.commonBtn {
  background-color: var(--subColor);
  border-radius: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding-inline: 1em;
  padding-block: 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.commonBtn:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .commonBtn {
    gap: 10px;
  }
}

.commonBtnTx {
  color: #fff;
  font-weight: 600;
}

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

.widget {
  position: fixed;
  top: calc(var(--headerH) * 2);
  right: 0;
  z-index: 990;
}
@media only screen and (max-width: 767px) {
  .widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: auto;
    left: 0;
    bottom: 0;
  }
}

.widgetLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.widgetLink:hover {
  opacity: 0.7;
}
.widgetLink .tx {
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic ProN";
}
.widgetLink .icon {
  line-height: 1;
  letter-spacing: 0;
}
.widgetLink .arw {
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  width: 30px;
}
.widgetLink.__mainColor {
  background-color: var(--mainColor);
}
.widgetLink.__subColor {
  background-color: var(--subColor);
}
.widgetLink.__subColor .icon,
.widgetLink.__subColor .tx {
  color: #fff;
}
.widgetLink.__subColor .arw i {
  color: var(--subColor);
}
@media print, screen and (min-width: 768px) {
  .widgetLink {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 12px 0 0 12px;
    padding-block: 1em;
    width: 50px;
  }
  .widgetLink .tx {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .widgetLink + .widgetLink {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .widgetLink {
    padding-block: 0.6em;
    padding-inline: 0.3em;
    height: 35px;
    width: 50%;
  }
  .widgetLink .tx {
    font-size: 13px;
  }
  .widgetLink .arw {
    height: 20px;
    width: 20px;
  }
  .widgetLink .arw i {
    font-size: 0.7em;
  }
}

.overlay {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1000;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1001;
}
.popup.__02 {
  width: 75%;
}
@media only screen and (max-width: 767px) {
  .popup {
    width: calc(100% - 30px);
  }
}

.popupBox {
  border-radius: 24px;
  padding-inline: 40px;
  padding-block: 40px;
  background-color: #fff;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .popupBox {
    padding-inline: 20px;
    padding-block: 40px 20px;
  }
}

.popupBtns {
  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;
  gap: 10px;
}

.popupContactBtns {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .popupContactBtns {
    -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;
  }
}

.popupContactBtn {
  border: 1px solid var(--subColor);
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .popupContactBtn {
    background-color: var(--subColor) !important;
    width: 100%;
  }
  .popupContactBtn p {
    color: #fff;
  }
}

.closeIcon {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 1.5em;
  cursor: pointer;
}

/*==================================================
 * ヘッダー
*================================================*/
:root {
  --headerH: 95px;
}
@media only screen and (max-width: 767px) {
  :root {
    --headerH: 55px;
  }
}

header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--headerH);
  width: 100%;
  z-index: 999;
}

.headerInner {
  max-width: 1280px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 15px;
  padding-block: 5px;
  height: 100%;
}
@media only screen and (min-width: 1280px) {
  .headerInner {
    padding-inline: 30px;
  }
}

.headerLogo {
  width: 170px;
}
@media only screen and (min-width: 1280px) {
  .headerLogo {
    width: 220px;
  }
}
@media only screen and (max-width: 767px) {
  .headerLogo {
    width: 130px;
  }
}

.headerNavBox {
  display: grid;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}

.headerBtns {
  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: 10px;
}
@media only screen and (max-width: 767px) {
  .headerBtns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-inline: auto;
    width: 80%;
  }
}

.headerBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-inline: 0.7em;
  padding-block: 0.3em;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.headerBtn:hover {
  opacity: 0.7;
}
.headerBtn .headerBtnIcon {
  font-size: 0.9em;
}
.headerBtn .headerBtnTx {
  font-size: 13px;
  font-weight: 600;
}
.headerBtn.__login {
  border: 1px solid rgba(35, 138, 255, 0.2);
  background-color: var(--subColorLight);
}
.headerBtn.__login .headerBtnIcon,
.headerBtn.__login .headerBtnTx {
  color: var(--subColor);
}
.headerBtn.__consul {
  background-color: var(--subColor);
}
.headerBtn.__consul .headerBtnIcon,
.headerBtn.__consul .headerBtnTx {
  color: #fff;
}
.headerBtn.__entry {
  background-color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .headerBtn {
    padding-block: 0.8em;
    padding-inline: 1em;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .headerBtn .headerBtnIcon {
    font-size: 1.4em;
  }
  .headerBtn .headerBtnTx {
    font-size: 16px;
  }
}

.headerListMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.headerListMenu li a {
  display: block;
  font-size: 12px;
  font-weight: 600;
  padding-inline: 0.3em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.headerListMenu li a:hover {
  color: var(--mainColor);
}
@media only screen and (min-width: 1280px) {
  .headerListMenu li a {
    font-size: 14px;
    padding-inline: 0.5em;
  }
}
@media only screen and (max-width: 767px) {
  .headerListMenu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .headerListMenu li {
    border-bottom: 1px solid var(--subColorLight);
  }
  .headerListMenu li a {
    font-size: 16px;
    padding-block: 0.6em;
  }
}

@media only screen and (max-width: 767px) {
  .overRayBlock {
    background-color: #fff;
    position: fixed;
    top: 50px;
    left: 0;
    padding-inline: 30px;
    padding-block: 5%;
    overflow-y: scroll;
    height: calc(100dvh - 50px);
    width: 100%;
  }
}

/*==================================================
 * フッター - お問い合わせ
*================================================*/
.footerContactWave {
  position: absolute;
  height: auto;
  width: 115vw;
  aspect-ratio: 1632/742;
  z-index: -1;
}
.footerContactWave.__01 {
  top: -7vw;
  left: 39vw;
  -webkit-transform: rotate(55deg) scale(1, -1);
          transform: rotate(55deg) scale(1, -1);
}
.footerContactWave.__02 {
  bottom: -40vw;
  left: -49vw;
}
@media only screen and (max-width: 767px) {
  .footerContactWave {
    width: 180%;
  }
  .footerContactWave.__01 {
    top: -18%;
    right: -100%;
  }
  .footerContactWave.__02 {
    bottom: -26%;
    left: -69%;
  }
}

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

.footerContactBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 20px;
  padding-inline: 1em;
  padding-block: 1.5em;
}
.footerContactBtn.mainBtn {
  padding-inline: 2em;
  padding-block: 2.5em;
}
.footerContactBtn.arwBtn {
  padding-inline: 1em 2.5em;
}
.footerContactBtn:hover {
  opacity: 0.75;
}
.footerContactBtn .title {
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 600;
}
.footerContactBtn .num {
  font-size: clamp(26px, 2.5vw, 32px);
  line-height: 1;
  margin-block: 0.1em 0;
}
.footerContactBtn .arw {
  border-radius: 50%;
  background-color: var(--subColor);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  height: 30px;
  width: 30px;
}
.footerContactBtn .arw i {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footerContactBtn {
    padding-inline: 0.8em;
  }
  .footerContactBtn.mainBtn {
    padding-inline: 1.3em 2.5em;
    padding-block: 1em;
  }
  .footerContactBtn.arwBtn {
    padding-inline: 0.8em;
  }
  .footerContactBtn .arw {
    height: 20px;
    width: 20px;
  }
}

/*==================================================
 * フッター
*================================================*/
footer {
  background-color: var(--fontColor);
  padding-block: 90px 40px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  footer {
    padding-block: 50px 20px;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    padding-block: 40px 20px;
    margin-bottom: 35px;
  }
}

.footerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footerInner .leftBox {
  padding-right: 5%;
  width: 40%;
}
.footerInner .rightBox {
  display: grid;
  grid-template-columns: repeat(3, auto);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 50px;
  width: 60%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footerInner .leftBox {
    margin-bottom: 10%;
    width: 100%;
  }
  .footerInner .rightBox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .footerInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footerInner .leftBox {
    margin-bottom: 15%;
    width: 100%;
  }
  .footerInner .rightBox {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
    width: 100%;
  }
}

.footerLogo {
  margin-bottom: 5%;
  width: 280px;
}
@media only screen and (max-width: 767px) {
  .footerLogo {
    width: 220px;
  }
}

.footerOther {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
.footerOther .footerOtherLink {
  display: block;
}
.footerOther .footerOtherLink.__01 {
  width: 200px;
}
.footerOther .footerOtherLink.__02 {
  width: 45px;
}

.footerSiteList dl + dl {
  margin-top: 1.5em;
}
.footerSiteList dt a, .footerSiteList dd a {
  display: block;
}
.footerSiteList dt + dt {
  margin-top: 0.5em;
}
.footerSiteList dt + dd {
  margin-top: 0.3em;
}
.footerSiteList dt a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.footerSiteList dd + dd {
  margin-top: 0.6em;
}
.footerSiteList dd a {
  color: #fff;
  font-size: 14px;
  position: relative;
  padding-left: 1em;
}
.footerSiteList dd a::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  background-color: #fff;
  border-radius: 50%;
  height: 0.6em;
  width: 0.6em;
}
@media only screen and (max-width: 767px) {
  .footerSiteList:nth-child(1) {
    grid-row: 1/2;
    grid-column: 1/2;
  }
  .footerSiteList:nth-child(2) {
    grid-row: 2/3;
    grid-column: 1/2;
  }
  .footerSiteList:nth-child(3) {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .footerSiteList dt a {
    font-size: 16px;
  }
  .footerSiteList dd a {
    font-size: 12px;
  }
}

.footerFoot {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footerFoot * {
  color: #fff;
}
.footerFoot a {
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.footerFoot a:hover {
  opacity: 0.8;
  color: #fff;
}
.footerFoot p {
  font-size: 12px;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 767px) {
  .footerFoot {
    -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;
  }
  .footerFoot a {
    margin-bottom: 3%;
    text-align: center;
  }
  .footerFoot p {
    text-align: center;
  }
}

/*==================================================
 * トップページ
*================================================*/
.fv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  z-index: 2;
}
.fv::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 57%;
  -webkit-transform: translate(-50%, -50%) rotate(5deg);
          transform: translate(-50%, -50%) rotate(5deg);
  background-image: url("../img/wave.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  aspect-ratio: 1632/742;
  height: auto;
  width: 123vw;
  z-index: 2;
}
.fv .txBox {
  padding-block: var(--headerH);
  position: relative;
  width: 70%;
  z-index: 2;
}
.fv .imgBox {
  position: relative;
  width: 30%;
  z-index: 1;
}
.fv .imgBox .img {
  margin-left: -110px;
  aspect-ratio: 560/870;
  width: 155%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fv .txBox {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .fv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .fv::before {
    top: 76%;
  }
  .fv .txBox {
    margin-top: -75%;
    width: 100%;
  }
  .fv .txBox .tx {
    font-size: 15px;
  }
  .fv .imgBox {
    position: relative;
    width: 100%;
  }
  .fv .imgBox::before {
    content: "";
    position: absolute;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, transparent), color-stop(80%, var(--grayColor)));
    background: linear-gradient(to bottom, transparent 20%, var(--grayColor) 80%);
    left: -15px;
    height: 70%;
    width: calc(100% + 30px);
  }
  .fv .imgBox .img {
    margin-left: -15px;
    width: calc(100% + 30px);
  }
}

.fvTxHead .subTitle {
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 600;
  margin-bottom: 0.2em;
}
.fvTxHead .title {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
}
.fvTxHead .title * {
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.fvTxHead .title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, var(--mainColorLight)));
  background: linear-gradient(to bottom, transparent 60%, var(--mainColorLight) 60%);
}
.fvPoint {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .fvPoint {
    gap: 5px;
  }
}

.pointItem {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0 3px 14px rgba(63, 118, 180, 0.1);
          box-shadow: 0 3px 14px rgba(63, 118, 180, 0.1);
  backdrop-filter: blur(5.5px);
  border-radius: 8px;
  text-align: center;
  padding-block: 1em;
  padding-inline: 1em;
  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;
}
.pointItem .title {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.pointItem .tx {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.pointItem .num {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}
.pointItem .num span {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.pointItem .note {
  line-height: 1;
}
@media only screen and (max-width: 959px) {
  .pointItem {
    padding-inline: 0.3em;
  }
  .pointItem .title {
    font-size: 12px;
  }
  .pointItem .tx {
    font-size: 18px;
  }
  .pointItem .num {
    font-size: 22px;
  }
  .pointItem .num span {
    font-size: 13px;
  }
  .pointItem .note {
    font-size: 11px;
  }
}

.fvBtn .commonBtn {
  padding-inline: 3em;
}
.fvBtn .commonBtnTx {
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .fvBtn .commonBtn {
    padding-inline: 1em;
  }
  .fvBtn .commonBtnArw {
    height: 25px;
    width: 25px;
  }
}

.newsCategpryListBox {
  overflow-x: auto;
}

.newsCategpryList {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 5px;
  position: relative;
  width: 610px;
}
.newsCategpryList li {
  position: relative;
  z-index: 2;
}
.newsCategpryList li a {
  display: block;
  font-size: 15px;
  padding-inline: 0.8em;
  padding-block: 1em;
  border-radius: 8px;
  line-height: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .newsCategpryList {
    width: 698px;
  }
  .newsCategpryList li a {
    padding-inline: 1.4em;
  }
}
@media only screen and (max-width: 767px) {
  .newsCategpryList {
    width: 698px;
  }
  .newsCategpryList li a {
    padding-inline: 1.4em;
  }
}

.newsTab-bg {
  position: absolute;
  background-color: var(--mainColor);
  border-radius: 8px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
  top: 5px;
}

.topNewsItem {
  display: block;
}

.newsList {
  border-bottom: 1px solid #D7D8DA;
}

.newsListItem {
  position: relative;
  padding-block: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.newsListItem .cate {
  font-size: 14px;
  background-color: var(--mainColorLight);
  text-align: center;
  display: block;
  padding-inline: 1em;
  padding-block: 0.3em;
  line-height: 1.2;
  min-width: 150px;
}
.newsListItem .title {
  font-weight: 600;
}
.newsListItem .arw {
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  height: 40px;
  width: 40px;
}
.newsListItem .arw i {
  font-weight: 600;
  line-height: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .newsListItem {
    display: grid;
    grid-template-columns: 6.5em auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .newsListItem .cate {
    font-size: 12px;
    display: inline-block;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .newsListItem .title {
    grid-column: 1/3;
  }
}
@media only screen and (max-width: 767px) {
  .newsListItem {
    display: grid;
    grid-template-columns: 6.5em 200px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
  }
  .newsListItem .cate {
    font-size: 12px;
  }
  .newsListItem .title {
    grid-column: 1/3;
  }
  .newsListItem .arw {
    height: 25px;
    width: 25px;
  }
}

.aboutBlcok {
  padding-block: 90px;
  position: relative;
  z-index: 2;
}
.aboutBlcok::before, .aboutBlcok::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  height: 100%;
  width: 100%;
}
.aboutBlcok::before {
  background: linear-gradient(135deg, #086BA4, #004A78);
  z-index: -1;
}
.aboutBlcok::after {
  background: #000000;
  z-index: -2;
}
.aboutBlcok.skyColor::before {
  background: #367AEF;
  z-index: -2;
}
.aboutBlcok.skyColor::after {
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .aboutBlcok {
    padding-block: 50px;
  }
}

.card {
  background-color: #fff;
  border-radius: 20px;
  padding: 6px 6px 16px;
}
.card .img {
  border-radius: 20px;
  overflow: hidden;
}
.card .num {
  font-size: 18px;
}
.card .title {
  font-size: 20px;
}
.card.noBg {
  background-color: transparent;
  padding: 0;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .card .num {
    font-size: 14px;
  }
  .card .title {
    font-size: 13px;
    line-height: 1.4;
  }
  .card .tx {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .card .img {
    border-radius: 16px;
  }
  .card .num {
    font-size: 14px;
  }
  .card .title {
    font-size: 16px;
    line-height: 1.4;
  }
}

.topPricePoint {
  max-width: 850px;
  margin-inline: auto;
  background-image: url("../img/pricePointBg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 40px;
  overflow: hidden;
  text-align: center;
  padding-inline: 40px;
  padding-block: 50px;
  height: 100%;
  width: 100%;
}
.topPricePoint .topPricePointTitle {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 0.6em;
  font-weight: 600;
}
.topPricePoint .topPricePointTx {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topPricePoint .topPricePointTitle {
    font-size: 24px;
  }
  .topPricePoint .topPricePointTx {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .topPricePoint {
    border-radius: 24px;
    padding-inline: 15px;
    padding-block: 25px;
  }
  .topPricePoint .topPricePointTitle {
    font-size: 18px;
    margin-bottom: 0.6em;
  }
  .topPricePoint .topPricePointTx {
    font-size: 13px;
  }
}

.priceType {
  background-color: #D3E8FF;
  border-radius: 40px;
  padding-inline: 20px;
  padding-block: 30px 20px;
}
@media only screen and (max-width: 959px) {
  .priceType {
    border-radius: 24px;
  }
}

.pricePlan {
  background-color: #FFF1B4;
  border-radius: 40px;
  padding-inline: 20px;
  padding-block: 30px 20px;
  margin-top: 100px;
  position: relative;
}
.pricePlan::before {
  content: "";
  position: absolute;
  background-image: url("../img/arws.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  aspect-ratio: 48/56;
  width: 48px;
}
@media only screen and (max-width: 959px) {
  .pricePlan {
    border-radius: 24px;
  }
}

.priceTypeTitle {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .priceTypeTitle {
    font-size: 20px;
  }
}

.priceTypeCard {
  padding: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.priceTypeCard:hover {
  background-color: #f5f9ff;
}

.pricePlanCard {
  padding: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pricePlanCard:hover {
  background-color: #fffcef;
}
.pricePlanCard .tag span {
  display: inline-block;
  background-color: var(--mainColorDeep);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding-inline: 1.5em;
  padding-block: 0.3em;
  border-radius: 30px;
  line-height: 1;
  margin-bottom: 1em;
}
.pricePlanCard .title {
  font-size: 24px;
}
.pricePlanCard .tx {
  font-size: 14px;
}
.pricePlanCard .img {
  margin-inline: auto;
  width: 100px;
}
@media only screen and (max-width: 959px) {
  .pricePlanCard .title {
    font-size: 20px;
  }
}

.linkTxBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.linkTxBox .linkTx {
  font-size: 14px;
  color: var(--subColor);
}
.linkTxBox .linkTxArw {
  background-color: var(--subColor);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 25px;
  width: 25px;
}
.linkTxBox .linkTxArw i {
  color: #fff;
}

.topCaseInner {
  margin-inline: -80px;
}
@media only screen and (max-width: 959px) {
  .topCaseInner {
    margin-inline: -15px;
  }
}
.topCaseInner.exampleBodySlide {
  margin-inline: 0;
}

.topCaseSlideArw {
  position: absolute;
  background-color: var(--subColor);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 40px;
  width: 40px;
}
.topCaseSlideArw::after {
  content: none;
}
.topCaseSlideArw i {
  color: #fff;
  font-weight: 600;
}
.topCaseSlideArw:hover {
  opacity: 0.75;
}
.topCaseSlideArw.topCaseSlidePrev {
  left: 160px;
}
.exampleBodySlide .topCaseSlideArw.topCaseSlidePrev {
  left: 20px;
}
.topCaseSlideArw.topCaseSlideNext {
  right: 160px;
}
.exampleBodySlide .topCaseSlideArw.topCaseSlideNext {
  right: 20px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topCaseSlideArw.topCaseSlidePrev {
    left: 40px;
  }
  .topCaseSlideArw.topCaseSlideNext {
    right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .topCaseSlideArw.topCaseSlidePrev {
    left: 10px;
  }
  .topCaseSlideArw.topCaseSlideNext {
    right: 10px;
  }
}

.caseItem {
  margin-inline: auto;
  background-color: #E9F3FF;
  border-radius: 20px;
  padding-inline: 40px;
  padding-block: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .caseItem {
    padding-inline: 15px;
    padding-block: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .caseItem {
    padding-inline: 15px;
    padding-block: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.caseItemInner {
  background-color: #fff;
  border-radius: 20px;
  padding-inline: 20px;
  padding-block: 30px;
  text-align: center;
  padding-left: 3%;
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .caseItemInner {
    width: 100%;
  }
}

.caseItemTitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 767px) {
  .caseItemTitle {
    font-size: 18px;
    line-height: 1.2;
  }
}

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

.caseItemBody {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 8px;
  overflow: hidden;
}
.caseItemBody .caseBodyBox {
  padding-inline: 20px;
  padding-block: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.caseItemBody .caseBodyTitle {
  color: #fff;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5em;
}
.caseItemBody .caseBodyPrice {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
.caseItemBody .caseBodyPrice small {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.caseItemBody .caseBodyPrice.__small {
  font-size: 24px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .caseItemBody .caseBodyBox {
    padding-inline: 5px;
    padding-block: 15px;
  }
  .caseItemBody .caseBodyTitle {
    font-size: 12px;
  }
  .caseItemBody .caseBodyPrice {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .caseItemBody {
    grid-template-columns: 1fr;
  }
  .caseItemBody .caseBodyBox {
    padding-inline: 15px;
    padding-block: 15px;
  }
  .caseItemBody .caseBodyPrice {
    font-size: 26px;
  }
}

.caseBefore {
  background-color: #aaa;
}
@media only screen and (max-width: 767px) {
  .caseBefore {
    padding-bottom: 30px !important;
  }
}

.caseAfter {
  background-color: var(--subColor);
  position: relative;
  z-index: 2;
}
.caseAfter::before, .caseAfter::after {
  --posi: 25px;
  content: "";
  position: absolute;
  background-color: var(--subColor);
  height: 50%;
  width: var(--posi);
}
@media print, screen and (min-width: 768px) {
  .caseAfter::before, .caseAfter::after {
    left: calc(var(--posi) * -1 + 1px);
  }
  .caseAfter::before {
    top: 0;
    clip-path: polygon(0 0, 100% 100%, 100% 0%);
  }
  .caseAfter::after {
    bottom: 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 0%);
  }
}
@media only screen and (max-width: 767px) {
  .caseAfter::before, .caseAfter::after {
    --posi: 15px;
    top: calc(var(--posi) * -1 + 1px);
    height: var(--posi);
    width: 50%;
  }
  .caseAfter::before {
    left: 0;
    clip-path: polygon(0 0%, 0% 100%, 100% 100%);
  }
  .caseAfter::after {
    right: 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 0%);
  }
}

.caseFootIn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.caseFootIn .caseFootTag {
  background-color: #A7D0FF;
  border-radius: 4px;
  display: inline-block;
  padding-inline: 0.7em;
  padding-block: 0.7em;
  line-height: 1;
  font-weight: 600;
}
.caseFootIn .caseFootTilte {
  color: var(--subColor);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 600;
  line-height: 1;
}
.caseFootIn .caseFootTilte * {
  font-weight: 600;
  line-height: 1;
}
.caseFootIn .caseFootTilte span {
  font-size: clamp(14px, 2.1vw, 26px);
}
.caseFootIn .caseFootTilte small {
  color: var(--fontColor);
  font-size: 14px;
  margin-left: 1em;
}
@media only screen and (max-width: 767px) {
  .caseFootIn .caseFootTilte {
    line-height: 0.6;
  }
  .caseFootIn .caseFootTilte small {
    font-size: 12px;
    margin-left: 0.5em;
  }
}

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

.topCaseRecommend {
  background-color: var(--mainColor);
  border-radius: 24px;
  padding-inline: 60px;
  padding-block: 40px;
  margin-inline: auto;
  max-width: 960px;
}
.topCaseRecommend ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
}
.topCaseRecommend ul li {
  font-weight: 600;
  padding-left: 2.6em;
  position: relative;
}
.topCaseRecommend ul li::before {
  content: "\f00c";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  background-color: #fff;
  border-radius: 4px;
  top: 0;
  left: 0;
  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;
  color: var(--mainColor);
  height: 30px;
  width: 30px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topCaseRecommend {
    padding-inline: 20px;
    padding-block: 30px;
  }
  .topCaseRecommend ul li {
    font-size: 14px;
  }
  .topCaseRecommend ul li::before {
    height: 25px;
    width: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .topCaseRecommend {
    padding-inline: 15px;
    padding-block: 20px;
    border-radius: 18px;
  }
  .topCaseRecommend ul {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .topCaseRecommend ul li {
    padding-left: 2em;
  }
  .topCaseRecommend ul li::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 20px;
    width: 20px;
  }
}

.topCaseRecommendTitle {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topCaseRecommendTitle {
    font-size: 22px;
    margin-bottom: 0.8em;
  }
}
@media only screen and (max-width: 767px) {
  .topCaseRecommendTitle {
    font-size: 20px;
    margin-bottom: 0.5em;
  }
}

.sustainaWave {
  position: absolute;
  height: auto;
  width: 115vw;
  aspect-ratio: 1632/742;
  z-index: -1;
}
.sustainaWave.__01 {
  top: -32vw;
}
.sustainaWave.__02 {
  top: 0;
  left: -60vw;
  -webkit-transform: rotate(125deg) scale(1, -1);
          transform: rotate(125deg) scale(1, -1);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sustainaWave.__01 {
    top: -35%;
    left: -34%;
  }
  .sustainaWave.__02 {
    left: -100%;
  }
}
@media only screen and (max-width: 767px) {
  .sustainaWave {
    width: 100%;
  }
  .sustainaWave.__01 {
    top: -4%;
    left: 27%;
  }
  .sustainaWave.__02 {
    top: 42%;
    left: -37%;
  }
}

.sustainaFlexBox .card {
  width: calc(33.3333333333% - 10px);
}
@media only screen and (max-width: 767px) {
  .sustainaFlexBox .card {
    width: 85%;
  }
}

.voiceBg {
  background-color: #FFF1B4;
}

.voiceBody {
  margin-inline: -150px;
}
@media only screen and (max-width: 959px) {
  .voiceBody {
    margin-inline: -15px;
  }
}

.voiceItemLink {
  background-color: #fff;
  border-radius: 20px;
  padding-inline: 40px;
  padding-block: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
}
.voiceItemLink .imgBox {
  overflow: hidden;
  border-radius: 20px;
  width: 320px;
}
.voiceItemLink .imgBox .img {
  padding-bottom: 57%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
.voiceItemLink .txBox {
  padding-left: 5%;
  width: calc(100% - 320px);
}
.voiceItemLink .txBoxBody p {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05;
}
.voiceItemLink .txBoxBody h2 {
  color: rgba(25, 43, 76, 0.7);
  background-color: var(--grayColor);
  position: static;
  font-size: 14px;
  padding-inline: 1em;
  padding-block: 0.6em;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1%;
  position: static;
}
.voiceItemLink .txBoxBody h2::after {
  content: none;
}
.voiceItemLink .txBoxBody ul {
  margin-bottom: 5%;
  padding: 0;
  background-color: transparent;
}
.voiceItemLink .txBoxBody ul li {
  font-size: 14px;
  padding-left: 1em;
  position: relative;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.voiceItemLink .txBoxBody ul li::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  background-color: var(--mainColor);
  border-radius: 50%;
  height: 0.5em;
  width: 0.5em;
}
.voiceItemLink .title {
  font-size: 24px;
  color: var(--subColor);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.2em;
}
.voiceItemLink .info {
  font-size: 14px;
}
.voiceItemLink .tx {
  font-size: 14px;
}
.voiceItemLink:hover .imgBox .img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .voiceItemLink .imgBox {
    width: 260px;
  }
  .voiceItemLink .txBox {
    width: calc(100% - 260px);
  }
}
@media only screen and (max-width: 767px) {
  .voiceItemLink {
    padding-inline: 15px;
    padding-block: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 12px;
  }
  .voiceItemLink .imgBox {
    border-radius: 12px;
    margin-inline: auto;
    margin-bottom: 5%;
    width: 85%;
  }
  .voiceItemLink .txBox {
    width: 100%;
  }
  .voiceItemLink .txBoxBody p {
    line-height: 1.4;
  }
  .voiceItemLink .title {
    font-size: 20px;
  }
  .voiceItemLink .info {
    font-size: 12px;
  }
  .voiceItemLink .label {
    font-size: 12px;
  }
}

.voiceArw {
  position: absolute;
  background-color: var(--subColor);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 40px;
  width: 40px;
  height: 60px;
  width: 60px;
}
.voiceArw::after {
  content: none;
}
.voiceArw i {
  color: #fff;
  font-weight: 600;
}
.voiceArw:hover {
  opacity: 0.75;
}
.voiceArw i {
  font-size: 1.4em;
}
.voiceArw.voiceArwPrev {
  left: 150px;
}
.voiceArw.voiceArwNext {
  right: 150px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .voiceArw {
    height: 40px;
    width: 40px;
  }
  .voiceArw.voiceArwPrev {
    left: 10px;
  }
  .voiceArw.voiceArwNext {
    right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .voiceArw {
    height: 40px;
    width: 40px;
  }
  .voiceArw.voiceArwPrev {
    left: 10px;
  }
  .voiceArw.voiceArwNext {
    right: 10px;
  }
}

.faqLinkBlock {
  display: grid;
  gap: 20px;
}
.faqLinkBlock ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.faqLinkBlock .faqLinkBlcokTop li {
  width: calc(25% - 10px);
}
.faqLinkBlock .faqLinkBlcokBottom li {
  width: calc(33.3333333333% - 10px);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .faqLinkBlock {
    gap: 10px;
  }
  .faqLinkBlock ul {
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .faqLinkBlock {
    gap: 10px;
  }
  .faqLinkBlock ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  .faqLinkBlock .faqLinkBlcokTop li {
    width: calc(50% - 5px);
  }
  .faqLinkBlock .faqLinkBlcokBottom li {
    width: 100%;
  }
}

.faqLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: #fff;
  border-radius: 8px;
  padding-inline: 1em;
  padding-block: 1.5em;
  border-radius: 20px;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.faqLink:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .faqLink {
    padding-inline: 0.8em;
    padding-block: 1.2em;
    border-radius: 8px;
  }
}

.faqLinkTx {
  font-size: 20px;
  font-weight: 600;
  width: calc(100% - 25px);
  line-height: 1.4;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .faqLinkTx {
    font-size: 12px;
    width: calc(100% - 15px);
  }
}
@media only screen and (max-width: 767px) {
  .faqLinkTx {
    font-size: 14px;
    width: calc(100% - 15px);
  }
}

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

.companyHead {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.companyHead .txBox {
  padding-right: 5%;
  width: 58%;
}
.companyHead .imgBox {
  width: 42%;
}
.companyHead .imgBox .img {
  border-radius: 40px 0 0 40px;
  margin-left: 5%;
  padding-bottom: 112%;
  width: 111%;
}
.companyHead.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.companyHead.reverse .txBox {
  padding-inline: 5% 0;
}
.companyHead.reverse .imgBox .img {
  border-radius: 0 40px 0 40px;
  margin-left: -16%;
}
@media only screen and (max-width: 767px) {
  .companyHead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .companyHead .txBox {
    padding-right: 0;
    width: 100%;
  }
  .companyHead .imgBox {
    margin-bottom: 5%;
    width: 100%;
  }
  .companyHead .imgBox .img {
    border-radius: 24px 0 0 24px;
    padding-bottom: 102%;
    width: 100%;
  }
  .companyHead.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .companyHead.reverse .txBox {
    padding-inline: 0;
  }
  .companyHead.reverse .imgBox .img {
    border-radius: 0 24px 0 24px;
    margin-left: -5%;
  }
}

.companyLinkGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .companyLinkGrid .companyItem:nth-child(1) {
    grid-row: 1/3;
    grid-column: 1/2;
  }
  .companyLinkGrid .companyItem:nth-child(2) {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .companyLinkGrid .companyItem:nth-child(3) {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
@media only screen and (max-width: 767px) {
  .companyLinkGrid {
    grid-template-columns: 1fr;
  }
  .companyLinkGrid .companyItem:nth-child(1) .companyLink {
    padding-bottom: 73%;
  }
}

.companyLink {
  display: block;
  position: relative;
  border-radius: 24px;
  padding-bottom: 35%;
  overflow: hidden;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.companyLink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.companyLink:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 767px) {
  .companyLink {
    border-radius: 12px;
  }
}

.companyItemTxBox {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.companyItemTitleEn {
  color: #fff;
  line-height: 1;
  margin-bottom: 0.6em;
}

.companyItemTitleJp {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.07em;
}
@media only screen and (max-width: 959px) {
  .companyItemTitleJp {
    font-size: 20px;
  }
}

.companyItemArw {
  position: absolute;
  border-radius: 50%;
  background-color: var(--subColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 20px;
  right: 20px;
  height: 30px;
  width: 30px;
}
.companyItemArw i {
  color: #fff;
}

.partnerBlock {
  background-color: #FFF1B4;
  border-radius: 40px;
  padding-inline: 60px;
  padding-block: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.partnerBlock .imgBox {
  padding-right: 3%;
  width: 50%;
}
.partnerBlock .imgBox .img {
  border-radius: 24px;
  overflow: hidden;
}
.partnerBlock .txBox {
  width: 50%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .partnerBlock {
    border-radius: 20px;
    padding-inline: 20px;
    padding-block: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .partnerBlock {
    border-radius: 24px;
    padding-inline: 15px;
    padding-block: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .partnerBlock .imgBox {
    margin-inline: auto;
    margin-bottom: 5%;
    width: 85%;
  }
  .partnerBlock .imgBox .img {
    border-radius: 12px;
  }
  .partnerBlock .txBox {
    width: 100%;
  }
}

/*==================================================
 * 玉野電力とは
*================================================*/
.aboutReasonBox .imgBox {
  border-radius: 24px;
  overflow: hidden;
}
.aboutReasonBox .num {
  font-size: 30px;
  color: var(--mainColorDeep);
  line-height: 1;
  margin-bottom: 0.4em;
}

.aboutPromiseCard {
  padding-inline: 20px;
  padding-block: 30px;
}
.aboutPromiseCard .num {
  font-size: 28px;
  font-weight: 600;
  color: var(--mainColorDeep);
  line-height: 1;
  margin-bottom: 0.5em;
}
.aboutPromiseCard .img {
  width: 120px;
  margin-inline: auto;
  margin-bottom: 5%;
}
.aboutPromiseCard .title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 767px) {
  .aboutPromiseCard {
    padding-inline: 15px;
    padding-block: 20px;
  }
  .aboutPromiseCard .num {
    font-size: 20px;
  }
  .aboutPromiseCard .img {
    width: 80px;
  }
  .aboutPromiseCard .title {
    font-size: 16px;
  }
}

.activityBlock {
  background-color: #FFF1B4;
  padding-inline: 60px;
  padding-block: 40px;
  border-radius: 24px;
}
@media only screen and (max-width: 767px) {
  .activityBlock {
    border-radius: 12px;
    padding-inline: 15px;
    padding-block: 20px;
  }
}

.activityLabel {
  font-size: 18px;
  background-color: var(--mainColor);
  border-radius: 30px;
  padding-inline: 2em;
  padding-block: 0.7em;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .activityLabel {
    font-size: 14px;
    padding-inline: 1em;
    padding-block: 0.5em;
  }
}

.aboutPoint {
  background-image: url("../img/pdfBg.jpg");
  text-align: left;
  padding-inline: 90px;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.aboutPoint:hover {
  opacity: 0.7;
}
.aboutPoint .arw {
  position: absolute;
  background-color: var(--subColor);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 55px;
  right: 110px;
  height: 30px;
  width: 30px;
}
.aboutPoint .arw i {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .aboutPoint {
    padding-inline: 15px;
  }
  .aboutPoint .arw {
    top: 15px;
    right: 15px;
  }
}

.aboutStaffSlide {
  margin-right: -80px;
  padding-right: 80px;
}

.staffSlide .img {
  margin-bottom: 6%;
  border-radius: 16px;
  overflow: hidden;
}
.staffSlide .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  margin-bottom: 0.3em;
}
.staffSlide .tx {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .staffSlide .title {
    font-size: 20px;
  }
  .staffSlide .tx {
    font-size: 12px;
  }
}

.staffArw {
  --wide: 55px;
  position: absolute;
  background-color: var(--subColor);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 40px;
  width: 40px;
  top: 40%;
  height: var(--wide);
  width: var(--wide);
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
.staffArw::after {
  content: none;
}
.staffArw i {
  color: #fff;
  font-weight: 600;
}
.staffArw:hover {
  opacity: 0.75;
}
.staffArw i {
  font-size: 1.5em;
}
.staffArw.staffArwPrev {
  left: -25px;
}
.staffArw.staffArwNext {
  right: 40px;
}
.staffArw.is-disabled {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .staffArw {
    --wide: 35px;
    top: 25%;
  }
  .staffArw.staffArwPrev {
    left: -10px;
  }
  .staffArw.staffArwNext {
    right: 50px;
  }
}

/*==================================================
 * 料金について
*================================================*/
.pointCard {
  padding: 20px 15px;
}

.designBox {
  background-color: #fff;
  border-radius: 40px;
  padding-inline: 40px;
  padding-block: 40px;
}
@media only screen and (max-width: 767px) {
  .designBox {
    padding-inline: 20px;
    padding-block: 20px;
  }
}

.designBoxTitle {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .designBoxTitle {
    font-size: 22px;
  }
}

.designBoxInner {
  overflow-x: auto;
}

@media only screen and (max-width: 767px) {
  .designGrid {
    width: 600px;
  }
}

.designItem {
  border-radius: 24px;
  padding-inline: 20px;
  padding-block: 30px;
  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;
  z-index: 2;
}
.designItem::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Font Awesome 6 Sharp Duotone";
  font-size: clamp(20px, 3.2vw, 40px);
  color: var(--subColor);
}
.designItem:nth-child(1) {
  background-color: #E9F3FF;
}
.designItem:nth-child(1)::before {
  content: "\f00d";
  right: clamp(-45px, -3.6vw, -25px);
}
.designItem:nth-child(2) {
  background-color: #FFF6CF;
}
.designItem:nth-child(2)::before {
  content: "=";
  right: clamp(-45px, -3.6vw, -25px);
}
.designItem:nth-child(3) {
  background-color: #FFC720;
}
.designItem .designItemTitle {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.1em;
}
.designItem .designItemTx {
  font-size: 14px;
  margin-bottom: 1em;
  line-height: 1.4;
  text-align: center;
}
.designItem .designItemImg {
  margin-top: auto;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  width: 115px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .designItem:nth-child(1)::before {
    right: -25px;
  }
  .designItem:nth-child(2)::before {
    right: -25px;
  }
}
@media only screen and (max-width: 767px) {
  .designItem .designItemTitle {
    font-size: 20px;
  }
  .designItem .designItemTx {
    font-size: 12px;
  }
  .designItem .designItemImg {
    width: 80px;
  }
}

.stepBox {
  border-radius: 40px;
  background-color: #fff;
  padding-inline: 40px;
  padding-block: 40px;
}
@media only screen and (max-width: 767px) {
  .stepBox {
    padding-inline: 20px;
    padding-block: 20px;
  }
}

.stepItem + .stepItem {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #D7D8DA;
}

.stepItemHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.stepItemHead .stepItemNum {
  background-color: var(--mainColorDeep);
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  padding-inline: 0.6em;
  padding-block: 0.4em;
  border-radius: 8px;
}
.stepItemHead .stepItemTitle {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .stepItemHead {
    gap: 10px;
  }
  .stepItemHead .stepItemNum {
    font-size: 18px;
  }
  .stepItemHead .stepItemTitle {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .stepItemHead {
    gap: 10px;
  }
  .stepItemHead .stepItemNum {
    font-size: 12px;
  }
  .stepItemHead .stepItemTitle {
    font-size: 18px;
  }
}

.stepItemCard {
  background-color: #E9F3FF;
  border-radius: 20px;
  padding-inline: 20px;
  padding-block: 20px;
}
.stepItemCard .title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.stepItemCard .title span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .stepItemCard .title {
    font-size: 20px;
  }
  .stepItemCard .title span {
    font-size: 12px;
  }
}

.stepItemList {
  background-color: #FFF6CF;
  border-radius: 20px;
  padding-inline: 30px;
  padding-block: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.stepItemList + .stepItemList {
  margin-top: 20px;
}
.stepItemList .leftBox {
  background-color: #fff;
  border-radius: 20px;
  padding-inline: 15px;
  padding-block: 20px;
  text-align: center;
  width: 27.5%;
}
.stepItemList .leftBox .label {
  display: inline-block;
  background-color: var(--mainColorDeep);
  border-radius: 30px;
  padding-inline: 1em;
  padding-block: 0.5em;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.4em;
}
.stepItemList .leftBox .title {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}
.stepItemList .leftBox .img {
  margin-inline: auto;
  width: 115px;
}
.stepItemList .rightBox {
  padding-left: 5%;
  width: 72.5%;
}
.stepItemList .rightBox .note {
  display: inline-block;
  border-radius: 100px;
  background-color: #FFE77E;
  padding-inline: 20px;
  padding-block: 10px 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.stepItemList .rightBox .planTitle {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.stepItemList .rightBox .ul {
  margin-block: 10px;
}
.stepItemList .rightBox .ul li {
  padding-left: 1em;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-block: 0.3em;
}
.stepItemList .rightBox .ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: var(--mainColorDeep);
  border-radius: 50%;
  height: 0.6em;
  width: 0.6em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .stepItemList {
    padding-inline: 15px;
  }
  .stepItemList .leftBox .label {
    font-size: 12px;
  }
  .stepItemList .leftBox .title {
    font-size: 21px;
  }
  .stepItemList .leftBox .img {
    width: 80px;
  }
  .stepItemList .rightBox .note {
    font-size: 12px;
  }
  .stepItemList .rightBox .planTitle {
    font-size: 20px;
    line-height: 1.4;
  }
  .stepItemList .rightBox .ul li {
    font-size: 13px;
  }
  .stepItemList .rightBox .tx {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .stepItemList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 15px;
    padding-block: 20px;
  }
  .stepItemList .leftBox {
    margin-bottom: 5%;
    padding-block: 15px;
    width: 100%;
  }
  .stepItemList .leftBox .label {
    font-size: 12px;
  }
  .stepItemList .leftBox .title {
    font-size: 20px;
  }
  .stepItemList .leftBox .img {
    width: 80px;
  }
  .stepItemList .rightBox {
    padding-left: 0;
    width: 100%;
  }
  .stepItemList .rightBox .note {
    font-size: 12px;
  }
  .stepItemList .rightBox .planTitle {
    font-size: 20px;
    line-height: 1.4;
  }
  .stepItemList .rightBox .ul li {
    font-size: 13px;
  }
  .stepItemList .rightBox .tx {
    font-size: 12px;
  }
}

.stepItemLstTitle span {
  font-size: 32px;
  font-weight: 600;
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, var(--mainColorLight)));
  background: linear-gradient(to bottom, transparent 50%, var(--mainColorLight) 50%);
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .stepItemLstTitle span {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .stepItemLstTitle span {
    font-size: 20px;
  }
}

.exampleBody {
  padding-block: 40px;
  border-radius: 40px;
  background-color: #fff;
}
.exampleBody + .exampleBody {
  margin-top: 40px;
}

.txDeco {
  text-align: center;
}
.txDeco span {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  background-color: var(--mainColor);
  border-radius: 100px;
  line-height: 1;
  padding-inline: 1.5em;
  padding-block: 0.7em;
  position: relative;
  margin-bottom: 10px;
  z-index: 2;
}
.txDeco span::before {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  border-radius: 3px;
  bottom: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  height: 20px;
  width: 20px;
  z-index: -1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .txDeco span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .txDeco span {
    font-size: 14px;
  }
}

.exampleBodyTitle {
  text-align: center;
  font-size: 36px;
  color: var(--subColor);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .exampleBodyTitle {
    font-size: 24px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .exampleBodyTitle {
    font-size: 26px;
  }
}

.exampleBodyNoteBox {
  padding-inline: 40px;
}
@media only screen and (max-width: 767px) {
  .exampleBodyNoteBox {
    padding-inline: 15px;
  }
}

.exampleBodyReccommennd {
  padding-inline: 40px;
}
.exampleBodyReccommennd .topCaseRecommend {
  background-color: #FFF1B4;
}
@media only screen and (max-width: 767px) {
  .exampleBodyReccommennd {
    padding-inline: 15px;
  }
  .exampleBodyReccommennd .topCaseRecommend ul li {
    margin-block: 0.3em;
    line-height: 1.2;
  }
}

.exampleBodyNoteTitle {
  font-size: 24px;
  line-height: 1.4;
}
.exampleBodyNoteTitle span {
  font-weight: 600;
  line-height: 1.4;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .exampleBodyNoteTitle {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .exampleBodyNoteTitle {
    font-size: 18px;
  }
}

.exampleBodyCase {
  padding-inline: 40px;
}
.exampleBodyCase .caseItemTitle {
  font-size: 24px;
}
.exampleBodyCase .caseItemInner {
  width: 60%;
}
.exampleBodyCase .caseItemImg {
  width: 40%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .exampleBodyCase {
    padding-inline: 15px;
  }
  .exampleBodyCase .caseItemTitle {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .exampleBodyCase {
    padding-inline: 15px;
  }
  .exampleBodyCase .caseItemTitle {
    font-size: 18px;
  }
  .exampleBodyCase .caseItemInner {
    width: 100%;
  }
  .exampleBodyCase .caseItemImg {
    width: 100%;
  }
}

.exampleBodyCaseGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.exampleBodyCaseGrid .caseItem {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-inline: 20px;
  gap: 0;
}
.exampleBodyCaseGrid .caseItemInner {
  border-radius: 0 0 20px 20px;
  width: 100%;
}
.exampleBodyCaseGrid .caseItemImg {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  width: 100%;
}
.exampleBodyCaseGrid .topCaseRecommend {
  background-color: transparent;
  padding-inline: 0;
  padding-block: 40px 0;
  width: 100%;
}
.exampleBodyCaseGrid .topCaseRecommend ul {
  display: block;
}
.exampleBodyCaseGrid .topCaseRecommend ul li {
  font-size: 14px;
  margin-block: 0.7em;
}
.exampleBodyCaseGrid .topCaseRecommend ul li::before {
  color: var(--subColor);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.exampleBodyCaseGrid .topCaseRecommendTitle {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .exampleBodyCaseGrid {
    grid-template-columns: 1fr;
  }
}

.priceSimuLink {
  display: block;
  padding-block: 40px;
  padding-inline: 40px;
  background-color: var(--subColor);
  border-radius: 24px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.priceSimuLink:hover {
  opacity: 0.85;
}
.priceSimuLink * {
  color: #fff;
}
.priceSimuLink .priceSimuTitle {
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: 1.2;
  margin-bottom: 0.5em;
}
.priceSimuLink .priceSimuTx {
  line-height: 1.4;
}
.priceSimuLink .arwIcon {
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  height: 35px;
  width: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.priceSimuLink .arwIcon i {
  color: var(--subColor);
  font-size: 1em;
}
.priceSimuLink.whiteBtn {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(11px);
}
.priceSimuLink.whiteBtn * {
  color: var(--fontColor);
}
.priceSimuLink.whiteBtn .arwIcon {
  background-color: var(--subColor);
}
.priceSimuLink.whiteBtn .arwIcon i {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .priceSimuLink {
    padding-inline: 15px 30px;
    padding-block: 20px;
  }
  .priceSimuLink .priceSimuTitle {
    font-size: 22px;
  }
  .priceSimuLink .priceSimuTx {
    font-size: 12px;
  }
  .priceSimuLink .arwIcon {
    right: 15px;
    height: 25px;
    width: 25px;
  }
  .priceSimuLink .arwIcon i {
    font-size: 0.8em;
  }
}

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

/*==================================================
 * 脱炭素・カーボンフリー・省エネ
*================================================*/
.sunstainaPlanBlock {
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  padding-inline: 60px;
  padding-block: 60px;
  overflow: hidden;
  margin-inline: -50px;
}
.sunstainaPlanBlock + .sunstainaPlanBlock {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .sunstainaPlanBlock {
    border-radius: 12px;
    margin-inline: 0;
    padding-inline: 15px;
    padding-block: 20px;
  }
}

.sunstainaPlanBlockHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
.sunstainaPlanBlockHead .txBox {
  width: 55%;
}
.sunstainaPlanBlockHead .txBox .cate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  background-color: var(--mainColorDeep);
  padding-inline: 1.1em;
  padding-block: 0.8em;
  border-radius: 8px;
}
.sunstainaPlanBlockHead .txBox .cate .label {
  color: var(--mainColorDeep);
  font-weight: 600;
  border-radius: 40px;
  background-color: #FFF3BD;
  padding-inline: 1em;
  padding-block: 0.3em;
}
.sunstainaPlanBlockHead .txBox .cate .cateTx {
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
}
.sunstainaPlanBlockHead .txBox .cate .cateTx small {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}
.sunstainaPlanBlockHead .txBox .title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.5em;
}
.sunstainaPlanBlockHead .txBox .tx {
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.sunstainaPlanBlockHead .txBox .tx span {
  font-weight: 600;
}
.sunstainaPlanBlockHead .imgBox {
  width: 45%;
}
.sunstainaPlanBlockHead .imgBox .img {
  border-radius: 40px 0 0 40px;
  overflow: hidden;
  margin-right: -60px;
}
.sunstainaPlanBlockHead.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.sunstainaPlanBlockHead.reverse .imgBox .img {
  border-radius: 0 40px 40px 0;
  margin-inline: -60px auto;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sunstainaPlanBlockHead {
    gap: 30px;
  }
  .sunstainaPlanBlockHead .txBox .cate {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
  }
  .sunstainaPlanBlockHead .txBox .cate .cateTx {
    font-size: 22px;
  }
  .sunstainaPlanBlockHead .txBox .cate .label {
    font-size: 10px;
  }
  .sunstainaPlanBlockHead .txBox .title {
    font-size: 24px;
  }
  .sunstainaPlanBlockHead .txBox .tx {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .sunstainaPlanBlockHead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
  .sunstainaPlanBlockHead .txBox {
    width: 100%;
  }
  .sunstainaPlanBlockHead .txBox .cate {
    padding-inline: 0.7em;
    padding-block: 0.5em;
  }
  .sunstainaPlanBlockHead .txBox .cate .label {
    font-size: 10px;
  }
  .sunstainaPlanBlockHead .txBox .cate .cateTx {
    font-size: 17px;
  }
  .sunstainaPlanBlockHead .txBox .cate .cateTx small {
    font-size: 11px;
  }
  .sunstainaPlanBlockHead .txBox .title {
    font-size: 22px;
  }
  .sunstainaPlanBlockHead .txBox .tx {
    font-size: 12px;
  }
  .sunstainaPlanBlockHead .imgBox {
    width: 80%;
  }
  .sunstainaPlanBlockHead.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sunstainaPlanBlockHead.reverse .imgBox .img {
    margin-inline: -60px auto;
  }
}

.sunstainaPlanBlockBody .item {
  background-color: #fff;
  border-radius: 20px;
  padding-inline: 30px;
  padding-block: 20px;
}
.sunstainaPlanBlockBody .item .num {
  background-color: var(--mainColorDeep);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  margin-inline: auto;
  margin-bottom: 5%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  width: 60px;
}
.sunstainaPlanBlockBody .item .title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0.2em;
}
.sunstainaPlanBlockBody .item .tx {
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sunstainaPlanBlockBody .item {
    padding-inline: 15px;
  }
  .sunstainaPlanBlockBody .item .num {
    font-size: 16px;
    height: 40px;
    width: 40px;
  }
  .sunstainaPlanBlockBody .item .title {
    font-size: 18px;
  }
  .sunstainaPlanBlockBody .item .tx {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .sunstainaPlanBlockBody .item .num {
    font-size: 16px;
    height: 40px;
    width: 40px;
  }
  .sunstainaPlanBlockBody .item .title {
    font-size: 18px;
  }
  .sunstainaPlanBlockBody .item .tx {
    font-size: 12px;
  }
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sunstainaPlanBlockFoot .lastTxTitle {
    font-size: 20px;
  }
  .sunstainaPlanBlockFoot .lastTx {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .sunstainaPlanBlockFoot .lastTxTitle {
    font-size: 16px;
  }
  .sunstainaPlanBlockFoot .lastTx {
    font-size: 12px;
  }
}

.meritMainTitle {
  background-color: #FFF8D8;
  border-radius: 20px;
  padding-inline: 20px;
  padding-block: 30px;
}

.meritCard {
  padding-inline: 30px;
  padding-block: 30px;
}
.meritCard .title {
  font-size: 24px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .meritCard .title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .meritCard {
    padding-inline: 15px;
    padding-block: 15px;
  }
  .meritCard .title {
    font-size: 20px;
  }
}

/*==================================================
 * お客様の声
*================================================*/
.voiceCateList {
  overflow-x: auto;
  text-align: center;
}

.voiceCateUl {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 5px;
  position: relative;
}
.voiceCateUl li {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 959px) {
  .voiceCateUl {
    width: 800px;
  }
}

.voiceCateItem {
  cursor: pointer;
  display: block;
  font-size: 15px;
  padding-inline: 1.2em;
  padding-block: 1em;
  border-radius: 8px;
  line-height: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
  z-index: 2;
}
.voiceCateItem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background-color: #FFF1B4;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.voiceCateItem.active::before {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 959px) {
  .voiceCateItem {
    padding-inline: 0.7em;
  }
}
@media only screen and (max-width: 767px) {
  .voiceCateItem {
    font-size: 14px;
  }
}

.voiceCardLink {
  background-color: #fff;
  display: block;
  padding-inline: 20px;
  padding-block: 20px;
  border-radius: 24px;
}
.voiceCardLink .imgBox {
  border-radius: 24px;
}
.voiceCardLink .imgBox .img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
          transform: scale(1);
  padding-bottom: 57%;
  width: 100%;
}
.voiceCardLink .txtBox {
  padding-block: 20px 40px;
}
.voiceCardLink .txtBox .cate {
  font-size: 12px;
  font-weight: 600;
  background-color: #FFF1B4;
  padding-inline: 1em;
  padding-block: 0.5em;
  border-radius: 30px;
  line-height: 1;
}
.voiceCardLink .txtBox .title {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
}
.voiceCardLink .txtBox .time {
  color: #A8A8A8;
}
.voiceCardLink .arwIcon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: var(--subColor);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  width: 30px;
}
.voiceCardLink .arwIcon i {
  color: #fff;
}
.voiceCardLink:hover .imgBox .img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media only screen and (max-width: 767px) {
  .voiceCardLink .txtBox .title {
    font-size: 18px;
  }
}

.voiceSingleTitle {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.3em;
}
@media only screen and (max-width: 767px) {
  .voiceSingleTitle {
    font-size: 22px;
  }
}

.voiceSingleInfoCate {
  font-size: 14px;
  border-radius: 30px;
  background-color: #FFF1B4;
  padding-inline: 1em;
  padding-block: 0.5em;
}
@media only screen and (max-width: 767px) {
  .voiceSingleInfoCate {
    font-size: 12px;
  }
}

.voiceSingleImg {
  border-radius: 34px;
  overflow: hidden;
}

.voiceSingleDate {
  border-radius: 20px;
  background-color: #fff;
  padding-inline: 30px;
  padding-block: 30px;
}
.voiceSingleDate dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-block: 0.2em;
}
.voiceSingleDate dt {
  color: #A8A8A8;
  width: 5em;
}
.voiceSingleDate dd {
  width: calc(100% - 5em);
}
@media only screen and (max-width: 767px) {
  .voiceSingleDate {
    padding-inline: 20px;
    padding-block: 15px;
  }
}

.voiceOtherBg {
  background-color: #FFF1B4;
}

/*==================================================
 * よくあるご質問
*================================================*/
.faqLinkTabs {
  display: grid;
  gap: 10px;
}

.faqLinkUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.faqLinkUl li {
  cursor: pointer;
  border: 1px solid #fff;
  background-color: #fff;
  padding-inline: 1em;
  padding-block: 0.8em;
  font-weight: 600;
  line-height: 1.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
}
.faqLinkUl li.active, .faqLinkUl li:hover {
  border-color: var(--mainColorDeep);
  background-color: var(--mainColorLight);
}
.faqLinkUl.top li {
  width: calc(25% - 10px);
}
.faqLinkUl.bottom li {
  width: calc(33.3333333333% - 10px);
}
@media only screen and (max-width: 767px) {
  .faqLinkUl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .faqLinkUl.top li {
    width: calc(50% - 10px);
  }
  .faqLinkUl.bottom li {
    width: 100%;
  }
}

.faqContent {
  display: none;
}

.faqContent.is-active {
  display: block;
}

.faqItem {
  background-color: #fff;
  border-radius: 8px;
  padding-inline: 20px;
  padding-block: 20px;
}
.faqItem + .faqItem {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .faqItem {
    padding-inline: 10px;
    padding-block: 10px;
  }
}

.faqItemBody {
  display: none;
}

.faqItemIn {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faqItemIn.faqItemHead {
  cursor: pointer;
  grid-template-columns: 2em auto 30px;
  position: relative;
}
.faqItemIn.faqItemBodyIn {
  grid-template-columns: 2em auto;
  margin-top: 20px;
}
.faqItemIn .label {
  font-size: 26px;
  line-height: 1;
}
.faqItemIn .title {
  font-size: 19px;
  font-weight: 600;
}
.faqItemIn .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
  background-color: var(--subColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 25px;
  width: 25px;
}
.faqItemIn .icon i {
  color: #fff;
  font-size: 0.9em;
  margin-top: 0.2em;
}
.open .faqItemIn .icon {
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
.faqItemIn .tx {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .faqItemIn .label {
    font-size: 20px;
  }
  .faqItemIn .title {
    font-size: 16px;
  }
  .faqItemIn .icon {
    right: 5px;
    height: 20px;
    width: 20px;
  }
  .faqItemIn .icon i {
    font-size: 0.7em;
  }
  .faqItemIn .tx {
    font-size: 12px;
  }
}

/*==================================================
 * 会社概要
*================================================*/
.companyMessageHead.reverse .imgBox .img {
  border-radius: 0 40px 40px 0;
  padding-bottom: 182%;
}
@media only screen and (max-width: 767px) {
  .companyMessageHead.reverse .imgBox .img {
    border-radius: 0 24px 24px 0;
    padding-bottom: 159%;
  }
}

.companyFeatureBg {
  background-color: #FFF1B4;
}

.companyDetailBlock .infoBox dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 1em;
  border-bottom: 1px solid #D7D8DA;
}
.companyDetailBlock .infoBox dl:nth-child(1) {
  border-top: 1px solid #D7D8DA;
}
.companyDetailBlock .infoBox dt {
  font-weight: 600;
  width: 12em;
}
.companyDetailBlock .infoBox dd {
  width: calc(100% - 12em);
}
@media print, screen and (min-width: 768px) {
  .companyDetailBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .companyDetailBlock .txBox {
    width: 35%;
  }
  .companyDetailBlock .infoBox {
    width: 65%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .companyDetailBlock .txBox {
    width: 30%;
  }
  .companyDetailBlock .infoBox {
    width: 70%;
  }
  .companyDetailBlock .infoBox dl dt {
    width: 8em;
  }
  .companyDetailBlock .infoBox dl dd {
    width: calc(100% - 8em);
    padding-right: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .companyDetailBlock .txBox {
    margin-bottom: 8%;
  }
  .companyDetailBlock .infoBox dt {
    width: 7em;
  }
  .companyDetailBlock .infoBox dd {
    font-size: 13px;
    width: calc(100% - 7em);
  }
}

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

/*==================================================
 * 代理店募集
*================================================*/
.partnerBg {
  padding: 120px 0;
}
.partnerBg::before {
  opacity: 0.2;
}
@media only screen and (max-width: 767px) {
  .partnerBg {
    padding: 60px 0;
  }
}

.systemItem {
  background-color: #fff;
  border-radius: 20px;
  padding-inline: 20px;
  padding-block: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.systemItem .imgBox {
  width: 35%;
}
.systemItem .imgBox .img {
  border-radius: 20px;
  overflow: hidden;
}
.systemItem .txBox {
  padding-left: 3%;
  width: 65%;
}
.systemItem .num {
  font-size: 26px;
  color: var(--mainColorDeep);
  margin-bottom: 0.5em;
  line-height: 1;
}
.systemItem .title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0.6em;
  line-height: 1.2;
}
.systemItem .tx {
  font-size: 14px;
}
.systemItem + .systemItem {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.systemItem + .systemItem::before {
  content: "\f2ec";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 18px;
  color: var(--subColor);
  line-height: 1;
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .systemItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 10px;
    padding-block: 15px;
  }
  .systemItem .imgBox {
    margin-inline: auto;
    margin-bottom: 5%;
    width: 80%;
  }
  .systemItem .txBox {
    width: 100%;
  }
  .systemItem .num {
    font-size: 20px;
  }
  .systemItem .title {
    font-size: 22px;
  }
  .systemItem .tx {
    font-size: 12px;
  }
}

.systemItemFoot {
  margin-top: 5%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  padding-inline: 40px;
  padding-block: 40px;
  z-index: 2;
}
.systemItemFoot * {
  color: #fff;
}
.systemItemFoot::before {
  content: "";
  background-color: #0C5078;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.systemItemFoot .title {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 0.8em;
}
.systemItemFoot .listBox {
  margin-bottom: 1em;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  display: inline-block;
  padding-inline: 30px;
  padding-block: 20px;
}
.systemItemFoot .listBox li {
  padding-left: 1.2em;
  position: relative;
  margin-block: 0.3em;
}
.systemItemFoot .listBox li::before {
  content: "";
  position: absolute;
  background-color: var(--subColor);
  top: 0.35em;
  left: 0;
  border-radius: 50%;
  height: 0.6em;
  width: 0.6em;
}
.systemItemFoot .tx {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .systemItemFoot {
    padding-inline: 15px;
    padding-block: 20px;
    border-radius: 16px;
  }
  .systemItemFoot::before {
    opacity: 0.6;
  }
  .systemItemFoot .title {
    font-size: 20px;
    margin-bottom: 0.5em;
  }
  .systemItemFoot .listBox {
    padding-inline: 20px;
    padding-block: 15px;
  }
  .systemItemFoot .listBox li {
    line-height: 1.2;
    margin-block: 0.7em;
  }
  .systemItemFoot .tx {
    font-size: 14px;
  }
}

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

.partnerMeritCard {
  padding: 20px;
}

.supportItem {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.supportItem .txBox {
  width: 50%;
}
.supportItem .imgBox {
  padding-left: 4%;
  width: 50%;
}
.supportItem .img {
  margin-right: -140px;
  border-radius: 40px 0 0 40px;
  overflow: hidden;
  width: calc(100% + 140px);
}
.supportItem .num {
  color: var(--mainColorDeep);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 0.6em;
}
.supportItem .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0.6em;
  line-height: 1.2;
}
.supportItem .listBox {
  border-radius: 20px;
  padding-inline: 20px;
  padding-block: 20px;
  background-color: #FFF1B4;
}
.supportItem .listBox li {
  padding-left: 1.2em;
  position: relative;
  margin-block: 0.3em;
}
.supportItem .listBox li::before {
  content: "";
  position: absolute;
  background-color: var(--subColor);
  top: 0.35em;
  left: 0;
  border-radius: 50%;
  height: 0.6em;
  width: 0.6em;
}
.supportItem + .supportItem {
  margin-top: 40px;
}
.supportItem.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.supportItem.reverse .imgBox {
  padding-inline: 0 4%;
}
.supportItem.reverse .img {
  margin-inline: -140px auto;
  border-radius: 0 40px 40px 0;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .supportItem .num {
    font-size: 24px;
  }
  .supportItem .title {
    font-size: 24px;
  }
  .supportItem .listBox li {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .supportItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .supportItem .imgBox {
    margin-bottom: 5%;
    width: 100%;
  }
  .supportItem .txBox {
    width: 100%;
  }
  .supportItem .img {
    margin-right: -20px;
    border-radius: 24px 0 0 24px;
    width: calc(100% + 20px);
  }
  .supportItem .num {
    font-size: 18px;
  }
  .supportItem .title {
    font-size: 22px;
  }
  .supportItem .listBox {
    border-radius: 8px;
    padding-inline: 15px;
    padding-block: 10px;
  }
  .supportItem.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .supportItem.reverse .img {
    margin-inline: -20px auto;
    border-radius: 0 24px 24px 0;
  }
}

.idealItem .img {
  margin-inline: auto;
  margin-bottom: 3%;
  width: 210px;
}
.idealItem .tx {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .idealItem .img {
    width: 160px;
  }
  .idealItem .tx {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .idealItem .img {
    width: 120px;
  }
  .idealItem .tx {
    font-size: 12px;
  }
}

.telBox {
  background-color: #FFF1B4;
  display: block;
  padding-inline: 10px;
  padding-block: 15px;
  border-radius: 20px;
}

.entryMainItem {
  background-color: #FFF1B4;
  border-radius: 16px;
  padding-block: 30px;
  padding-inline: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.entryMainItem .txBox {
  width: 50%;
}
.entryMainItem .imgBox {
  width: 50%;
}
.entryMainItem .imgBox .img {
  border-radius: 12px;
  overflow: hidden;
}
.entryMainItem .title {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 0.3em;
}
.entryMainItem .tx {
  font-size: 14px;
  margin-bottom: 1em;
}
.entryMainItem .listBox {
  background-color: var(--mainColorLight);
  border-radius: 12px;
  padding-inline: 20px;
  padding-block: 20px;
}
.entryMainItem .listBox li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  gap: 10px;
}
.entryMainItem .listBox li span {
  font-size: 20px;
  font-weight: 600;
  color: var(--subColor);
}
@media only screen and (max-width: 767px) {
  .entryMainItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-inline: 20px;
    padding-block: 20px;
    gap: 10px;
  }
  .entryMainItem .txBox {
    width: 100%;
  }
  .entryMainItem .imgBox {
    margin-inline: auto;
    width: 80%;
  }
  .entryMainItem .title {
    font-size: 20px;
  }
  .entryMainItem .listBox {
    padding-inline: 10px;
    padding-block: 10px;
  }
  .entryMainItem .listBox li span {
    font-size: 15px;
  }
}

.entryBtn .commonBtn {
  padding-inline: 4em;
  padding-block: 0.8em;
}
.entryBtn .commonBtnTx {
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .entryBtn .commonBtn {
    padding-inline: 1em;
  }
  .entryBtn .commonBtnTx {
    font-size: 17px;
  }
}

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