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

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


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

*/
/* ----------------------------------
使う↓
---------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&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=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
:root {
  --mainColor: #F4953A;
  --subColor: #FCE381;
  --subColorLight: #FFFCEF;
  --lightPink: #FEF3EA;
}

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

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

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

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

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

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

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

.bgLightPink {
  background-color: var(--lightPink);
}

.grayColor {
  color: #F7F7F7;
}

.bgGrayColor {
  background-color: #F7F7F7;
}

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

.bgGrayColorLight {
  background-color: #f9f9f9;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

.bgBlueLight {
  background-color: #ECF0F3;
}

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

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

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

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

@font-face {
  font-family: "LINESeedJP";
  src: url("../fonts/WOFF2/LINESeedJP_OTF_Th.woff2") format("woff2"), url("../fonts/WOFF/LINESeedJP_OTF_Th.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINESeedJP";
  src: url("../fonts/WOFF2/LINESeedJP_OTF_Rg.woff2") format("woff2"), url("../fonts/WOFF/LINESeedJP_OTF_Rg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINESeedJP";
  src: url("../fonts/WOFF2/LINESeedJP_OTF_Bd.woff2") format("woff2"), url("../fonts/WOFF/LINESeedJP_OTF_Bd.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINESeedJP";
  src: url("../fonts/WOFF2/LINESeedJP_OTF_Eb.woff2") format("woff2"), url("../fonts/WOFF/LINESeedJP_OTF_Eb.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --fontJp: "LINESeedJP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

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

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

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

:root {
  --fontColor: #003034;
}

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

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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

input,
select {
  vertical-align: middle;
}

li {
  list-style-type: none;
}

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

html {
  font-size: 10px;
}

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

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

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

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

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

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

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

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

.ls_xl {
  letter-spacing: 0.2em;
}

.ls_l {
  letter-spacing: 0.15em;
}

.ls_m {
  letter-spacing: 0.1em;
}

.ls_s {
  letter-spacing: 0.05em;
}

.ls_xs {
  letter-spacing: 0.01em;
}

.ls_0 {
  letter-spacing: 0;
}

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

.thin {
  font-weight: 100;
}

.normal {
  font-weight: 400;
}

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

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

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

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

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}

.black {
  color: #333;
}

.gray {
  color: #686868;
}

.red {
  color: #EC462F !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h000 {
  font-size: 100px;
}

.h00 {
  font-size: 64px;
}

.h0 {
  font-size: 42px;
}

.h1 {
  font-size: 32px;
}

.h2 {
  font-size: 28px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 16px;
}

.text_m {
  font-size: 14px;
}

.text_sm {
  font-size: 13px;
}

.text_s {
  font-size: 12px;
}

.text_ss {
  font-size: 10px;
}

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

html,
body {
  width: 100%;
}

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

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

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

hr {
  margin: 10px auto;
}

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

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

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

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

.inlineBlockUl li {
  display: inline-block;
}

.disNone {
  display: none !important;
}

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

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

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

.overHidden {
  overflow: hidden;
}

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

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

.linkA {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--mainColor);
}
.linkA:hover {
  color: var(--mainColor);
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .pc,
  .tab {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .notTab {
    display: none !important;
  }
}
@media screen and (min-width: 961px) {
  .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%;
  }
}
/*横幅*/
@media only screen and (max-width: 767px) {
  .spPadding {
    padding-inline: 15px;
  }
}

.w100 {
  width: 100%;
}

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

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

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

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

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

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

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

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

.paNone {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

.marginCenter {
  margin-inline: auto;
}

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

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

.bgImgHeight {
  padding-bottom: 67%;
}

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

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

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

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

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

.bgWhite {
  background-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*マウスストーカー*/
:root {
  --waveW: 16rem;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  :root {
    --waveW: 8rem;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --waveW: 6rem;
  }
}

#pageHeader {
  padding-bottom: calc(var(--waveW) / 2);
}

.pageHeaderBg {
  background-color: var(--lightPink);
  padding-block: 80px 0;
  position: relative;
  z-index: 2;
}
.pageHeaderBg::after {
  content: "";
  position: absolute;
  background: url("../img/wave_bottom.png") no-repeat center/100% 100%;
  bottom: calc(var(--waveW) / 2 * -1);
  left: 0;
  height: var(--waveW);
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .pageHeaderBg {
    padding-block: 60px 0;
  }
}

.pageHeaderInner {
  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;
}
.pageHeaderInner .pageHeaderTitleBox {
  width: 50%;
}
.pageHeaderInner .pageHeaderImgBox {
  position: relative;
  width: 50%;
}

.pageHeaderImg {
  margin-left: auto;
  margin-bottom: -10rem;
  width: clamp(160px, 31.3vw, 400px);
}
@media only screen and (max-width: 767px) {
  .pageHeaderImg {
    margin-bottom: -5rem;
  }
}

.pageHeaderTitleEn {
  margin-bottom: 1em;
}
.pageHeaderTitleEn span {
  color: var(--mainColor);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--fontEn);
  position: relative;
  padding-left: 1em;
  line-height: 1;
}
.pageHeaderTitleEn span::before {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  border-radius: 50%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 0.4em;
  width: 0.4em;
}
@media only screen and (max-width: 767px) {
  .pageHeaderTitleEn {
    margin-bottom: 0.3em;
  }
  .pageHeaderTitleEn span {
    font-size: 12px;
  }
}

.pageHeaderTitleJp {
  color: var(--mainColor);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .pageHeaderTitleJp {
    font-size: 18px;
  }
}

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 767px) {
  .zIndex-1_sp {
    z-index: 1;
  }
  .zIndex-2_sp {
    z-index: 2;
  }
  .zIndex-3_sp {
    z-index: 3;
  }
  .zIndex-4_sp {
    z-index: 4;
  }
  .zIndex-5_sp {
    z-index: 5;
  }
  .zIndex-6_sp {
    z-index: 6;
  }
  .zIndex-7_sp {
    z-index: 7;
  }
  .zIndex-8_sp {
    z-index: 8;
  }
  .zIndex-9_sp {
    z-index: 9;
  }
  .zIndex-10_sp {
    z-index: 10;
  }
}
/*==================================================
 * header
 *================================================*/
/*------------モーダルウィンドウ------------*/
/*オーバーレイメニュー*/
html.open {
  overflow-y: hidden;
}

/*ハンバーガーメニュー*/
@media only screen and (max-width: 767px) {
  .menu-btn {
    background: 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: 30px;
}

.menu-trigger {
  position: relative;
  background-color: var(--mainColor);
  border-radius: 50%;
  height: var(--menuTrigeHeight);
  width: 30px;
}
.menu-trigger span {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  width: 70%;
  height: 1px;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 9px;
}
.menu-trigger span:nth-of-type(2) {
  top: calc(var(--menuTrigeHeight) / 2);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 8px;
}
.menu-trigger.active span {
  background-color: #fff;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateX(-50%) translateY(6px) rotate(-45deg);
          transform: translateX(-50%) 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: translateX(-50%) translateY(-6px) rotate(45deg);
          transform: translateX(-50%) translateY(-6px) 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: #FDEAD8;
  border-radius: 30px;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 15px;
  width: 230px;
}
.cform tr td {
  width: calc(100% - 230px);
}
.cform tr td + td {
  margin-top: 3%;
}
@media only screen and (max-width: 767px) {
  .cform tr {
    display: block;
  }
  .cform tr th {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
  .cform tr td {
    width: 100%;
  }
}
.cform label {
  cursor: pointer;
  margin-right: 1.5em;
}
.cform label span {
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
}
.cform select {
  cursor: pointer;
}
.cform option,
.cform textarea,
.cform select,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
  background-color: #F9F9F9;
  width: 100%;
  border: none;
  border-radius: 2px;
  padding: 1em;
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 1.4;
  border-radius: 7px;
}
.cform option::-webkit-input-placeholder,
.cform textarea::-webkit-input-placeholder,
.cform select::-webkit-input-placeholder,
.cform input[type=text]::-webkit-input-placeholder,
.cform input[type=email]::-webkit-input-placeholder,
.cform input[type=search]::-webkit-input-placeholder,
.cform input[type=url]::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cform option::-moz-placeholder,
.cform textarea::-moz-placeholder,
.cform select::-moz-placeholder,
.cform input[type=text]::-moz-placeholder,
.cform input[type=email]::-moz-placeholder,
.cform input[type=search]::-moz-placeholder,
.cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option:-ms-input-placeholder,
.cform textarea:-ms-input-placeholder,
.cform select:-ms-input-placeholder,
.cform input[type=text]:-ms-input-placeholder,
.cform input[type=email]:-ms-input-placeholder,
.cform input[type=search]:-ms-input-placeholder,
.cform input[type=url]:-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::-ms-input-placeholder,
.cform textarea::-ms-input-placeholder,
.cform select::-ms-input-placeholder,
.cform input[type=text]::-ms-input-placeholder,
.cform input[type=email]::-ms-input-placeholder,
.cform input[type=search]::-ms-input-placeholder,
.cform input[type=url]::-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::-webkit-input-placeholder, .cform textarea::-webkit-input-placeholder, .cform select::-webkit-input-placeholder, .cform input[type=text]::-webkit-input-placeholder, .cform input[type=email]::-webkit-input-placeholder, .cform input[type=search]::-webkit-input-placeholder, .cform input[type=url]::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cform option::-moz-placeholder, .cform textarea::-moz-placeholder, .cform select::-moz-placeholder, .cform input[type=text]::-moz-placeholder, .cform input[type=email]::-moz-placeholder, .cform input[type=search]::-moz-placeholder, .cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option:-ms-input-placeholder, .cform textarea:-ms-input-placeholder, .cform select:-ms-input-placeholder, .cform input[type=text]:-ms-input-placeholder, .cform input[type=email]:-ms-input-placeholder, .cform input[type=search]:-ms-input-placeholder, .cform input[type=url]:-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::-ms-input-placeholder, .cform textarea::-ms-input-placeholder, .cform select::-ms-input-placeholder, .cform input[type=text]::-ms-input-placeholder, .cform input[type=email]::-ms-input-placeholder, .cform input[type=search]::-ms-input-placeholder, .cform input[type=url]::-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::placeholder,
.cform textarea::placeholder,
.cform select::placeholder,
.cform input[type=text]::placeholder,
.cform input[type=email]::placeholder,
.cform input[type=search]::placeholder,
.cform input[type=url]::placeholder {
  color: #c1c1c1;
}
.cform .zip {
  max-width: 200px;
}
.cform .title {
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cform input[type=radio] {
  display: none;
}
.cform input[type=radio] + span {
  padding-left: 2em;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.08em;
}
.cform input[type=radio] + span::before {
  content: "";
  position: absolute;
  border: 1px solid #333;
  background-color: #fff;
  top: -1px;
  left: 0;
  border-radius: 50%;
  height: 16px;
  width: 16px;
}
.cform input[type=radio] + span::after {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  border-radius: 50%;
  top: 45%;
  left: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 8px;
  width: 8px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .cform input[type=radio] + span::after {
    top: 47%;
  }
}
.cform input[type=radio]:checked + span::after {
  display: block;
}
.cform input[type=checkbox] {
  display: none;
}
.cform input[type=checkbox] + span {
  cursor: pointer;
  padding-left: 1.7em;
  position: relative;
}
.cform input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  border: 1px solid #333;
  background-color: #fff;
  top: 0;
  left: 0;
  height: 1em;
  width: 1em;
}
.cform input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  border-left: 2px solid var(--mainColor);
  border-bottom: 2px solid var(--mainColor);
  top: 2px;
  left: 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  height: 8px;
  width: 14px;
  display: none;
}
.cform input[type=checkbox]:checked + span::after {
  display: block;
}
@media only screen and (max-width: 767px) {
  .cform tr {
    margin-bottom: 2em;
  }
  .cform .title {
    font-size: 14px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.toc_list li:before {
  display: none;
}

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

.toc_toggle {
  font-size: 14px;
}

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

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

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

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

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

.lkc-excerpt {
  display: none;
}

.lkc-url {
  display: none;
}

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

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

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

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

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

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

.lkc-domain {
  color: #fff;
}

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

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

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

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

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

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

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

.singleColumnArticleContent {
  margin-top: 5%;
}

.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(--lightPink);
  font-family: var(--fontJp);
  border-radius: 30px;
  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(--lightPink);
  font-family: var(--fontJp);
  border-radius: 30px;
  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;
  }
}

/*アーカイブページ------------------------------------*/
.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(--lightPink);
  font-family: var(--fontJp);
  border-radius: 30px;
  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 {
  background-color: var(--lightPink);
  border-radius: 50%;
  text-align: center;
  color: var(--mainColor);
  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);
  color: #fff;
}
.pagenation ul .prev a,
.pagenation ul .next a {
  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 #fff;
  border-right: 2px solid #fff;
  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(--lightPink);
  font-family: var(--fontJp);
  border-radius: 30px;
  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;
  color: var(--mainColor);
}
.sidebarTagWrap a:before {
  content: "#";
}
.sidebarTagWrap a:after {
  content: "/";
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 0.5em;
  color: #F7F7F7;
}
@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;
}

.secTitleEn {
  position: absolute;
  font-size: clamp(7rem, 15.7vw, 20rem);
  font-family: var(--fontEn);
  font-weight: 700;
  line-height: 1;
  opacity: 0.6;
}

.secTitle {
  color: var(--mainColor);
}
.secTitle > span {
  position: relative;
  font-weight: 600;
  padding-left: 1em;
  display: inline-block;
}
.secTitle > span::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: var(--mainColor);
  border-radius: 50%;
  height: 0.4em;
  width: 0.4em;
}
.secTitle.__white {
  color: #fff;
}
.secTitle.__white > span::before {
  background-color: #fff;
}
.secTitle.__lightPink {
  color: var(--lightPink);
}
.secTitle.__lightPink > span::before {
  background-color: var(--lightPink);
}
@media only screen and (max-width: 767px) {
  .secTitle > span {
    font-size: 12px;
  }
}

.secTitleEnVer2 {
  color: var(--mainColor);
  font-family: var(--fontEn);
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: 32px;
  opacity: 1;
  position: static;
  margin-bottom: 0.1em;
}
.secTitleEnVer2.__white {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .secTitleEnVer2 {
    font-size: 23px;
  }
}

.secTitleJpVer2 span {
  display: inline-block;
  position: relative;
  padding-left: 1em;
  font-weight: 600;
}
.secTitleJpVer2 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--mainColor);
  height: 0.3em;
  width: 0.3em;
}
.secTitleJpVer2.__white span {
  color: #fff;
}
.secTitleJpVer2.__white span::before {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .secTitleJpVer2 span {
    font-size: 13px;
  }
}

.commonTitle {
  color: var(--mainColor);
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.2;
}
.commonTitle.__white {
  color: #fff;
}
.commonTitle.__lightPink {
  color: var(--lightPink);
}
.commonTitle.__topConcept {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.4;
}
.commonTitle.__aboutConcept {
  font-size: clamp(26px, 2.5vw, 32px);
  line-height: 1.4;
}

.commonBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.commonBtn .commonBtnTx {
  color: var(--mainColor);
  display: inline-block;
  margin-right: 0.5em;
  position: relative;
  z-index: 2;
}
.commonBtn.__white .commonBtnTx {
  color: #fff;
}

.commonBtnIcon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 65px;
  width: 65px;
}
.commonBtnIcon .commonBtnIconCircle {
  position: absolute;
  display: block;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
          transform: scale(1);
  height: 100%;
  width: 100%;
}
a:hover .commonBtnIcon .commonBtnIconCircle {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
a.__white .commonBtnIcon .commonBtnIconCircle, .commonBtnIcon .commonBtnIconCircle.__lightPint {
  background-color: var(--lightPink);
}

.commonBtnIconArwWrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 1em;
}
.commonBtnIconArwWrap .commonBtnIconArw {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
}
.commonBtnIconArwWrap .commonBtnIconArw i {
  color: var(--mainColor);
  font-size: 1em;
  font-weight: 600;
}
.commonBtnIconArwWrap .commonBtnIconArw.__before {
  left: 50%;
}
a:hover .commonBtnIconArwWrap .commonBtnIconArw.__before {
  left: calc(50% + 2em);
}
.commonBtnIconArwWrap .commonBtnIconArw.__after {
  left: calc(50% - 2em);
}
a:hover .commonBtnIconArwWrap .commonBtnIconArw.__after {
  left: 50%;
}

.scrollTxBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.scrollTxInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop-text 40s linear infinite;
          animation: loop-text 40s linear infinite;
  gap: 40px;
}

.scrollTx {
  display: inline-block;
  font-size: clamp(10rem, 15.7vw, 20rem);
  white-space: nowrap;
  line-height: 1;
  font-weight: 700;
  font-family: var(--fontEn);
  opacity: 0.6;
}

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

@keyframes loop-text {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.widgetBlock {
  position: fixed;
  bottom: 0;
  left: 0;
  display: grid;
  height: 50px;
  width: 100%;
  z-index: 999;
}

.widgetBtn {
  background-color: var(--mainColor);
  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: 10px;
}
.widgetBtn.telBtn {
  background-color: var(--subColor);
}
.widgetBtn .widgetBtnIcon {
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
}

.widgetBtnTx {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.07em;
}
.widgetBtn.telBtn .widgetBtnTx {
  background-color: var(--subColor);
  color: var(--fontColor);
}

/*==================================================
 * ヘッダー
*================================================*/
:root {
  --haederH: 60px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

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

.logoLink .logoLinkTx {
  font-size: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.logoBox.fv-active .logoLink .logoLinkTx {
  color: #fff;
}
.logoLink .logoLinkImg {
  margin: 0;
  max-width: 150px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.logoBox.fv-active .logoLink .logoLinkImg {
  -webkit-filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(282deg) brightness(103%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(282deg) brightness(103%) contrast(101%);
}
@media only screen and (min-width: 1280px) {
  .logoLink {
    font-size: 12px;
  }
}
@media only screen and (max-width: 959px) {
  .logoLink .logoLinkTx {
    font-size: 10px;
  }
  .logoLink .logoLinkImg {
    max-width: 120px;
  }
}

@media print, screen and (min-width: 768px) {
  .headerListMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.16);
            box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.16);
    border-radius: 50px;
    padding-inline: 2em 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerListMenu {
    padding-left: 1em;
  }
}

.headerList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.headerList > li > a,
.headerList > li .headerAcdTitle {
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-inline: 0.4em;
  display: block;
  font-size: clamp(10px, 1.3vw, 16px);
}
.headerList > li > a:hover,
.headerList > li .headerAcdTitle:hover {
  color: var(--mainColor);
}
@media only screen and (min-width: 1280px) {
  .headerList > li > a,
  .headerList > li .headerAcdTitle {
    font-size: 16px;
    padding-inline: 0.6em;
  }
}
@media only screen and (max-width: 767px) {
  .headerList {
    -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;
  }
  .headerList > li {
    width: 100%;
  }
  .headerList > li + li {
    margin-top: 2px;
  }
  .headerList > li > a,
  .headerList > li .headerAcdTitle {
    display: block;
    background-color: var(--subColorLight);
    font-size: 16px;
    padding-inline: 2em;
    padding-block: 1em;
    width: 100%;
  }
  .headerList > li .headerAcdTitle {
    position: relative;
  }
  .headerList > li .headerAcdTitle::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: var(--mainColor);
    border-radius: 50%;
    height: 20px;
    width: 20px;
  }
  .headerList > li .headerAcdTitle::after {
    content: "";
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 46%;
    right: 26px;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 8px;
    width: 8px;
  }
  .headerList > li .headerAcdTitle.open::after {
    top: 52%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
}

@media only screen and (max-width: 767px) {
  .headerAcdBox {
    display: none;
  }
  .headerAcdBox ul {
    padding-inline: 30px;
    padding-block: 10px;
  }
  .headerAcdBox li a {
    padding-left: 1em;
    padding-block: 0.1em;
    position: relative;
    display: block;
    width: 100%;
  }
  .headerAcdBox li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    background-color: var(--mainColor);
    border-radius: 50%;
    height: 0.4em;
    width: 0.4em;
  }
}

.headerListBtn {
  background-color: var(--mainColor);
  padding-inline: 1.3em;
  padding-block: 0.5em;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.headerListBtn:hover {
  opacity: 0.8;
}
.headerListBtn .headerListBtnIcon {
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  width: 40px;
}
.headerListBtn .headerListBtnIcon i {
  color: var(--mainColor);
}
.headerListBtn .headerListBtnTx {
  color: #fff;
  line-height: 1;
  letter-spacing: 0.08em;
  font-size: clamp(10px, 1.3vw, 16px);
}
@media only screen and (min-width: 1280px) {
  .headerListBtn .headerListBtnTx {
    font-size: 16px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerListBtn {
    padding-inline: 0.5em;
    gap: 5px;
  }
  .headerListBtn .headerListBtnIcon {
    height: 20px;
    width: 20px;
  }
  .headerListBtn .headerListBtnIcon i {
    font-size: 0.7em;
  }
}
@media only screen and (max-width: 767px) {
  .headerListBtn {
    padding-inline: 4em;
    padding-block: 1em;
    height: 80px;
  }
  .headerListBtn + .headerListBtn {
    margin-top: 20px;
  }
  .headerListBtn.telLink {
    background-color: var(--subColor);
  }
  .headerListBtn .headerListBtnIcon i {
    font-size: 19px;
  }
  .headerListBtn .headerListBtnTx {
    font-size: 22px;
    font-weight: 600;
  }
}

@media only screen and (max-width: 767px) {
  .headerLinkBox {
    margin-inline: 15px;
    padding-block: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .headerNav {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    top: var(--haederH);
    left: 0;
    background-color: #fff;
    overflow: auto;
    padding-bottom: 90px;
    width: 100%;
    height: 100%;
  }
  .open .headerNav {
    opacity: 1;
    visibility: visible;
  }
}

/*==================================================
 * フッター - コンタクト
*================================================*/
.footerCtaBlock {
  position: relative;
}

.footerScrollTxBox {
  position: relative;
  z-index: 3;
  margin-bottom: -9rem;
}
@media only screen and (max-width: 767px) {
  .footerScrollTxBox {
    margin-bottom: -6rem;
  }
}

.footerScrollTx {
  color: var(--subColor);
}

.footerCtaBg {
  position: relative;
  background-color: var(--mainColor);
  padding-block: 155px 60px;
  z-index: 2;
}
.footerCtaBg::before {
  content: "";
  position: absolute;
  background-image: url("../img/footerContactBg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .footerCtaBg {
    padding-block: 100px 45px;
  }
}

.footerCtaBtns {
  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: 60px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerCtaBtns {
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .footerCtaBtns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.footerCtaBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #fff;
  border-radius: 50px;
  height: 90px;
  padding-inline: 2em;
  -webkit-box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.14);
          box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.14);
}

.footerCtaTel {
  background-color: var(--subColor);
}
@media only screen and (max-width: 959px) {
  .footerCtaTel img {
    width: 270px;
  }
}

.footerCtaForm {
  background-color: var(--mainColor);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  gap: 20px;
}
.footerCtaForm:hover {
  opacity: 0.8;
}
.footerCtaForm .footerCtaFormIcon {
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3px;
  height: 45px;
  width: 45px;
}
.footerCtaForm .footerCtaFormIcon i {
  color: var(--mainColor);
  font-size: 20px;
}
.footerCtaForm .footerCtaFormTx {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 959px) {
  .footerCtaForm .footerCtaFormTx {
    font-size: 20px;
  }
}

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

@media print, screen and (min-width: 768px) {
  .footerInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footerInner .footerInfoBox {
    width: 40%;
  }
  .footerInner .footerSiteMap {
    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;
    gap: 40px;
  }
  .footerInner .footerSiteMap {
    width: 100%;
  }
}

.footerLogoLink {
  display: inline-block;
}
.footerLogoLink .footerLogoTx {
  font-size: 12px;
}
.footerLogoLink .logoLinkImg {
  margin: 0;
  max-width: 220px;
}
@media only screen and (max-width: 767px) {
  .footerLogoLink .logoLinkImg {
    max-width: 160px;
  }
}

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

.footerSiteMap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media only screen and (max-width: 767px) {
  .footerSiteMap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }
}

.footerSiteMapCnt dl + dl {
  margin-top: 1em;
}
.footerSiteMapCnt dl dt a {
  color: var(--mainColor);
  font-weight: 600;
  letter-spacing: 0.08em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footerSiteMapCnt dl dt a:hover {
  opacity: 0.8;
}
.footerSiteMapCnt dl dd a {
  font-size: 14px;
  position: relative;
  padding-left: 1em;
  letter-spacing: 0.08em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footerSiteMapCnt dl dd a:hover {
  color: var(--mainColor);
}
.footerSiteMapCnt dl dd a::before {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  border-radius: 50%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 0.5em;
  width: 0.5em;
}
@media only screen and (max-width: 767px) {
  .footerSiteMapCnt {
    width: calc(50% - 20px);
  }
}

.copyLight {
  text-align: center;
  border-top: 1px dashed var(--mainColor);
  padding-top: 10px;
}
.copyLight .copyLightTx {
  color: #A2A2A2;
  font-size: 12px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .copyLight .copyLightTx {
    font-size: 10px;
  }
}

/*==================================================
 * トップページ
*================================================*/
.fvBlock {
  position: relative;
}

.fvImg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.fvImg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: transform;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media only screen and (max-width: 767px) {
  .fvImg {
    height: 80lvh;
  }
}

.fvTitleBox {
  position: absolute;
  top: 33rem;
  left: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.fvTitleBox .fvTitle {
  text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.25);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.fvTitleBox .fvTitle span {
  font-weight: 600;
  line-height: 1;
  -webkit-writing-mode: lr;
      -ms-writing-mode: lr;
          writing-mode: lr;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fvTitleBox {
    left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .fvTitleBox {
    top: 35%;
    left: 15px;
  }
}

.fvTxBox {
  position: absolute;
  bottom: 30px;
  left: 60px;
  max-width: 310px;
  z-index: 2;
}
.fvTxBox .fvTx {
  text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.25);
  color: #fff;
  line-height: 1.7;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fvTxBox {
    bottom: 110px;
    left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .fvTxBox {
    left: 15px;
    bottom: 100px;
  }
}

.fvTxEn {
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--mainColor);
  font-weight: 600;
  line-height: 0.8;
  font-size: clamp(90px, 15.7vw, 200px);
  z-index: 2;
}

.topConceptTx span {
  display: block;
  padding-block: 8rem;
  font-size: 20px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topConceptTx span {
    padding-block: 8rem;
  }
}
@media only screen and (max-width: 767px) {
  .topConceptTx span {
    padding-block: 6rem;
    font-size: 15px;
  }
}

.topConceptImg {
  position: absolute;
  opacity: 0;
  will-change: opacity, transform;
  z-index: -1;
}
.topConceptImg.__01 {
  -webkit-transform: rotate(-7deg);
          transform: rotate(-7deg);
  top: 3vh;
  left: -14rem;
  width: clamp(250px, 39.1vw, 500px);
}
@media only screen and (max-width: 767px) {
  .topConceptImg.__01 {
    top: 27vh;
    left: -10rem;
  }
}
.topConceptImg.__02 {
  -webkit-transform: rotate(7deg);
          transform: rotate(7deg);
  top: 24vh;
  right: -16rem;
  width: clamp(250px, 39.1vw, 500px);
}
@media only screen and (max-width: 767px) {
  .topConceptImg.__02 {
    top: 53vh;
    right: -14rem;
  }
}
.topConceptImg.__03 {
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
  top: 50vh;
  left: -7rem;
  width: clamp(130px, 21.1vw, 270px);
}
@media only screen and (max-width: 767px) {
  .topConceptImg.__03 {
    top: 87vh;
    left: -9rem;
  }
}
.topConceptImg.__04 {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  top: 94vh;
  right: -16rem;
  width: clamp(200px, 36vw, 460px);
}
@media only screen and (max-width: 767px) {
  .topConceptImg.__04 {
    top: 128vh;
    right: -11rem;
  }
}

.sectionPingBg {
  background-color: var(--lightPink);
}

.wave {
  --waveW: 16rem;
  position: relative;
  z-index: 2;
}
.wave::before, .wave::after {
  content: "";
  position: absolute;
  left: 0;
  height: var(--waveW);
  width: 100%;
}
.wave::before {
  top: calc(var(--waveW) * -1);
  background: url("../img/wave_top.png") no-repeat center/100% 100%;
}
.wave::after {
  bottom: calc(var(--waveW) * -1);
  background: url("../img/wave_bottom.png") no-repeat center/100% 100%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .wave {
    --waveW: 8rem;
  }
}
@media only screen and (max-width: 767px) {
  .wave {
    --waveW: 6rem;
  }
}

.topAboutSecTitleEn {
  color: var(--mainColor);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  left: -12rem;
  top: 0;
  z-index: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topAboutSecTitleEn {
    left: -3rem;
  }
}
@media only screen and (max-width: 767px) {
  .topAboutSecTitleEn {
    left: -3rem;
    top: 24rem;
  }
}

@media print, screen and (min-width: 768px) {
  .topAboutTitleBox {
    padding-left: 120px;
  }
}

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

.topAboutGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .topAboutGrid {
    padding-inline: 120px 0;
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .topAboutGrid {
    margin-inline: auto;
    gap: 10px;
    width: 80%;
  }
}

.topAboutCard {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.topAboutCard .cardImg {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.topAboutCard .cardImg.__before {
  position: relative;
}
.topAboutCard .cardImg.__after {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}
.topAboutCard:hover .cardImg.__before {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}
.topAboutCard:hover .cardImg.__after {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}
@media only screen and (max-width: 767px) {
  .topAboutCard {
    border-radius: 16px;
  }
}

.topAboutInner {
  padding-left: 8%;
  width: 40%;
}
.topAboutInner .topAboutImgs {
  margin-top: -14vw;
}
@media only screen and (max-width: 767px) {
  .topAboutInner {
    padding-left: 0;
    width: 100%;
  }
  .topAboutInner .topAboutImgs {
    margin-top: 5vw;
  }
}

.topAboutImg {
  overflow: hidden;
  -webkit-box-shadow: 6px 6px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 6px 6px 24px rgba(0, 0, 0, 0.08);
}
.topAboutImg.__big {
  margin-inline: 7.8vw;
  width: clamp(220px, 27.4vw, 350px);
  border-radius: 24px 0 0 24px;
}
.topAboutImg.__small {
  border-radius: 24px;
  margin-top: -100px;
  width: clamp(140px, 22.6vw, 290px);
}
@media only screen and (max-width: 767px) {
  .topAboutImg.__big {
    margin-inline: auto -15px;
    border-radius: 8px 0 0 8px;
  }
  .topAboutImg.__small {
    border-radius: 8px;
    margin-top: -60px;
    margin-inline: auto;
  }
}

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

.topAboutLink {
  display: block;
  padding-block: 1em;
  border-bottom: 1px dashed var(--mainColor);
  position: relative;
}
.topAboutLink .topAboutLinkTitleEn {
  color: var(--mainColor);
  font-family: var(--fontEn);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .topAboutLink .topAboutLinkTitleEn {
    font-size: 11px;
  }
}
.topAboutLink .topAboutLinkTitleJp {
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .topAboutLink .topAboutLinkTitleJp {
    font-size: 18px;
  }
}
.topAboutLink .topAboutLinkIcon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--mainColor);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 1.2em;
  width: 1.2em;
}
.topAboutLink .topAboutLinkIcon i {
  color: #fff;
  font-size: 0.8em;
  line-height: 1;
  margin-top: 0.1em;
}
@media only screen and (max-width: 767px) {
  .topAboutLink .topAboutLinkIcon {
    height: 1.4em;
    width: 1.4em;
  }
  .topAboutLink .topAboutLinkIcon i {
    font-size: 1em;
  }
}
.topAboutLink:hover .topAboutLinkTitleJp {
  color: var(--mainColor);
}
.topAboutLink:hover .topAboutLinkIcon {
  -webkit-transform: translateX(5px) translateY(-50%);
          transform: translateX(5px) translateY(-50%);
}

.topServiceBg {
  background-color: #FFA957;
  padding-block: 20vw 100px;
}
@media only screen and (max-width: 767px) {
  .topServiceBg {
    padding-block: 32vw 100px;
  }
}

.topServiceSecTitleEn {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  top: 0;
  right: -90px;
  color: var(--lightPink);
  line-height: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topServiceSecTitleEn {
    right: -40px;
  }
}
@media only screen and (max-width: 767px) {
  .topServiceSecTitleEn {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    right: auto;
    left: 0;
    top: -4rem;
    opacity: 0.3;
  }
}

.topServiceGroup {
  margin-block: 3vw;
  max-width: 520px;
  margin-inline: auto;
}

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

.topServiceCard {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 6px 6px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 6px 6px 24px rgba(0, 0, 0, 0.08);
}
@media print, screen and (min-width: 768px) {
  .topServiceCard {
    width: 50%;
  }
}

.topServiceCardHead {
  background-color: var(--lightPink);
  text-align: center;
  font-size: 30px;
  color: var(--mainColor);
  font-weight: 600;
  padding-inline: 1em;
  padding-block: 0.4em;
}
.topServiceCardHead small {
  font-size: 60%;
}
@media only screen and (max-width: 959px) {
  .topServiceCardHead {
    font-size: 20px;
  }
}

.topServiceCardInner {
  padding-inline: 20px;
  padding-block: 25px;
}
@media only screen and (max-width: 767px) {
  .topServiceCardInner {
    padding-block: 20px;
  }
}

.topServiceCardTitle {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 0.2em;
}
@media only screen and (max-width: 959px) {
  .topServiceCardTitle {
    font-size: 18px;
  }
}

.topServiceCardTx {
  line-height: 1.9;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topServiceCardTx {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .topServiceCardTx {
    font-size: 12px;
  }
}

.topFeatureTitleBox {
  padding-left: 0;
}

.topFeatureSecTitleEn {
  color: var(--mainColor);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  left: -12rem;
  top: 0;
  opacity: 0.2;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFeatureSecTitleEn {
    left: -3rem;
  }
}
@media only screen and (max-width: 767px) {
  .topFeatureSecTitleEn {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    left: 0;
    top: -4rem;
    opacity: 0.1;
  }
}

.topFeatureBlockInner {
  position: relative;
  display: block;
}

.topFeatureItem {
  -webkit-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.01);
          box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.01);
  background-color: #fff;
  border-radius: 24px;
  padding-inline: 8px;
  padding-block: 8px;
  position: sticky;
  height: 390px;
  top: 15%;
}
.topFeatureItem:nth-child(1) {
  top: calc(15% + 20px);
  z-index: 1;
}
.topFeatureItem:nth-child(2) {
  top: calc(15% + 40px);
  z-index: 2;
}
.topFeatureItem:nth-child(3) {
  top: calc(15% + 60px);
  z-index: 3;
}
.topFeatureItem:nth-child(4) {
  top: calc(15% + 80px);
  z-index: 4;
}
.topFeatureItem:nth-child(5) {
  top: calc(15% + 100px);
  z-index: 5;
}
.topFeatureItem:nth-child(6) {
  top: calc(15% + 120px);
  z-index: 6;
}
.topFeatureItem:nth-child(7) {
  top: calc(15% + 140px);
  z-index: 7;
}
.topFeatureItem:nth-child(8) {
  top: calc(15% + 160px);
  z-index: 8;
}
.topFeatureItem + .topFeatureItem {
  margin-top: 10rem;
}
.topFeatureItem.lastItem {
  background-color: #FFE0C6;
}
@media only screen and (max-width: 767px) {
  .topFeatureItem {
    height: auto;
  }
  .topFeatureItem:nth-child(1) {
    top: calc(var(--haederH) + 10px);
    z-index: 1;
  }
  .topFeatureItem:nth-child(2) {
    top: calc(var(--haederH) + 20px);
    z-index: 2;
  }
  .topFeatureItem:nth-child(3) {
    top: calc(var(--haederH) + 30px);
    z-index: 3;
  }
  .topFeatureItem:nth-child(4) {
    top: calc(var(--haederH) + 40px);
    z-index: 4;
  }
  .topFeatureItem:nth-child(5) {
    top: calc(var(--haederH) + 50px);
    z-index: 5;
  }
  .topFeatureItem:nth-child(6) {
    top: calc(var(--haederH) + 60px);
    z-index: 6;
  }
  .topFeatureItem:nth-child(7) {
    top: calc(var(--haederH) + 70px);
    z-index: 7;
  }
  .topFeatureItem:nth-child(8) {
    top: calc(var(--haederH) + 80px);
    z-index: 8;
  }
}

.topFeatureItemIn {
  border-radius: 24px;
  border: 1px dashed var(--mainColor);
  padding-inline: 35px;
  padding-block: 35px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.lastItem .topFeatureItemIn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .topFeatureItemIn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
    height: auto;
    gap: 30px;
  }
  .lastItem .topFeatureItemIn {
    padding-bottom: 65%;
  }
}

.topFeatureItemImgBox {
  border-radius: 50%;
  overflow: hidden;
  width: 295px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFeatureItemImgBox {
    width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .topFeatureItemImgBox {
    margin-inline: auto 0;
    width: 135px;
  }
}

@media print, screen and (min-width: 768px) {
  .topFeatureItemTxBox {
    padding-left: 5%;
    width: calc(100% - 295px);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFeatureItemTxBox {
    width: calc(100% - 150px);
  }
}

.topFeatureItemSubTitle {
  margin-bottom: 1.3em;
}
.topFeatureItemSubTitle span {
  color: var(--mainColor);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-left: 0.8em;
  position: relative;
  line-height: 1;
}
.topFeatureItemSubTitle span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--mainColor);
  height: 0.25em;
  width: 0.25em;
}
@media only screen and (max-width: 959px) {
  .topFeatureItemSubTitle {
    margin-bottom: 0.7em;
  }
  .topFeatureItemSubTitle span {
    font-size: 16px;
  }
  .topFeatureItemSubTitle span::before {
    height: 0.35em;
    width: 0.35em;
  }
}

.topFeatureItemTitle {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.4em;
}
@media only screen and (max-width: 959px) {
  .topFeatureItemTitle {
    font-size: 21px;
  }
}

.topFeatureItemNum {
  position: absolute;
  top: 30px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.topFeatureItemNum .topFeatureItemNumTx {
  font-size: 80px;
  font-weight: 600;
  color: var(--mainColor);
  line-height: 1;
  letter-spacing: -0.03em;
}
.topFeatureItemNum .topFeatureItemNumEn {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: var(--mainColor);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: var(--fontEn);
}
@media only screen and (max-width: 767px) {
  .topFeatureItemNum {
    right: auto;
    left: 2rem;
  }
  .topFeatureItemNum .topFeatureItemNumTx {
    font-size: 66px;
  }
}

.topFeatureItemDeco {
  position: absolute;
}
.topFeatureItemDeco.__01 {
  left: 10px;
  width: 250px;
}
.topFeatureItemDeco.__02 {
  right: -30px;
  width: 270px;
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
  .topFeatureItemDeco {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFeatureItemDeco.__01 {
    left: 20px;
    width: 125px;
  }
  .topFeatureItemDeco.__02 {
    right: 10px;
    width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .topFeatureItemDeco.__01 {
    left: 20px;
    width: 125px;
    bottom: 30px;
  }
  .topFeatureItemDeco.__02 {
    right: 10px;
    width: 150px;
    bottom: -20px;
  }
}

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

.topFeatureItemLastTx {
  font-size: 20px;
  line-height: 2;
}
.topFeatureItemLastTx span {
  font-size: 24px;
  line-height: 2;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFeatureItemLastTx {
    font-size: 16px;
  }
  .topFeatureItemLastTx span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .topFeatureItemLastTx {
    font-size: 13px;
    line-height: 1.7;
  }
  .topFeatureItemLastTx span {
    font-size: 18px;
    line-height: 1.7;
  }
}

.topProductBg {
  position: relative;
  z-index: 2;
}
.topProductBg::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.topProductBg .commonTitle {
  text-shadow: 4px 4px 14px rgba(0, 0, 0, 0.3);
}

.topProductSecTitleEn {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  top: 0;
  right: -90px;
  color: var(--mainColor);
  line-height: 1;
  z-index: -1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topProductSecTitleEn {
    right: -40px;
  }
}
@media only screen and (max-width: 767px) {
  .topProductSecTitleEn {
    right: -2.7rem;
  }
}

.topProductGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-right: 150px;
}
@media only screen and (max-width: 767px) {
  .topProductGrid {
    padding-right: 30px;
    gap: 20px;
  }
}

.topProductCardImg {
  width: 100%;
  padding-bottom: 63%;
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.16);
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .topProductCardImg {
    border-radius: 16px;
  }
}

.topProductCardTx {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topProductCardTx {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .topProductCardTx {
    font-size: 14px;
  }
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes infinity-scroll-right {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.scrollImgsWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.scrollImgsList {
  -webkit-animation: infinity-scroll-left 40s infinite linear 0.5s both;
          animation: infinity-scroll-left 40s infinite linear 0.5s both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
}
.scrollImgs.reverse .scrollImgsList {
  -webkit-animation: infinity-scroll-right 40s infinite linear 0.5s both;
          animation: infinity-scroll-right 40s infinite linear 0.5s both;
}

.scrollImgsItem {
  width: 40vw;
}
@media only screen and (max-width: 767px) {
  .scrollImgsItem {
    width: 66.6666666667vw;
  }
}

.topScrollImgs {
  margin-bottom: 2vw;
}

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

.staffSlideSecTitleEn {
  color: var(--mainColor);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  left: -20rem;
  top: -7rem;
  opacity: 0.1;
  text-align: left;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .staffSlideSecTitleEn {
    left: -3rem;
  }
}
@media only screen and (max-width: 767px) {
  .staffSlideSecTitleEn {
    left: -1rem;
    top: 25rem;
  }
}

:root {
  --arwW: 45px;
  --arwP: 13rem;
}
@media only screen and (max-width: 767px) {
  :root {
    --arwW: 36px;
    --arwP: 8rem;
  }
}

.staffSlidePrev,
.staffSlideNext {
  cursor: pointer;
  background-color: var(--mainColor);
  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: -9rem;
  height: var(--arwW);
  width: var(--arwW);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
.staffSlidePrev i,
.staffSlideNext i {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.staffSlidePrev:hover,
.staffSlideNext:hover {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
@media only screen and (max-width: 767px) {
  .staffSlidePrev,
  .staffSlideNext {
    top: -5rem;
  }
}

.staffSlidePrev {
  right: var(--arwP);
}

.staffSlideNext {
  right: calc(var(--arwP) - var(--arwW) * 3 / 2);
}

.topRecruitScrollTxBox {
  position: relative;
  z-index: 3;
}

.topRecruitScrollTx {
  color: var(--lightPink);
}

.topRecruitBg {
  padding-block: 17rem 100px;
  background: linear-gradient(215deg, #F4953A, #FCE381);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .topRecruitBg {
    padding-block: 9rem 40px;
  }
}

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

.topRecruitItemInner {
  -webkit-box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.14);
          box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.14);
  border-radius: 24px;
  overflow: hidden;
  padding-block: 35% 3%;
  padding-inline: 20px;
  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;
  position: relative;
  width: 100%;
  z-index: 2;
}
.topRecruitItemInner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#003034), to(transparent));
  background: linear-gradient(to top, #003034, transparent);
  opacity: 0.3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.topRecruitItemInner:hover::before {
  opacity: 0.4;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topRecruitItemInner {
    border-radius: 16px;
    padding-block: 29% 5%;
  }
}
@media only screen and (max-width: 767px) {
  .topRecruitItemInner {
    border-radius: 8px;
    padding-inline: 10px;
    padding-block: 31% 3%;
  }
}

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

.topRecruitItemArw {
  border-radius: 50%;
  height: 30px;
  width: 30px;
}
.topRecruitItemArw .commonBtnIconCircle {
  background: var(--mainColor);
}
.topRecruitItemArw .commonBtnIconArw i {
  color: #fff;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .topRecruitItemArw {
    height: 20px;
    width: 20px;
  }
}

.topRecruitSlideWrap {
  pointer-events: none;
  display: grid;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .topRecruitSlideWrap {
    right: -3rem;
  }
}

.topRecruitSlide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  overflow: hidden;
  gap: 40px;
}
.topRecruitSlide:hover .sltopRecruitSlideList {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media only screen and (max-width: 767px) {
  .topRecruitSlide {
    gap: 20px;
  }
}

.topRecruitSlideList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-animation: slideShow 40s infinite linear;
          animation: slideShow 40s infinite linear;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .topRecruitSlideList {
    gap: 20px;
  }
}

.topRecruitSlideItem {
  border-radius: 24px;
  overflow: hidden;
  opacity: 0.6;
  aspect-ratio: 320/220;
  width: clamp(210px, 25vw, 320px);
}
.topRecruitSlideItem:nth-child(even) {
  margin-right: 6rem;
}
@media only screen and (max-width: 767px) {
  .topRecruitSlideItem {
    border-radius: 16px;
    opacity: 0.3;
  }
  .topRecruitSlideItem:nth-child(even) {
    margin-right: 2rem;
  }
}

@-webkit-keyframes slideShow {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes slideShow {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@-webkit-keyframes slideShowReverse {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes slideShowReverse {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.topNewsSecTitleEn {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  top: -7rem;
  right: -15rem;
  color: var(--mainColor);
  line-height: 1;
  opacity: 0.3;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topNewsSecTitleEn {
    top: -3rem;
    right: -4rem;
  }
}
@media only screen and (max-width: 767px) {
  .topNewsSecTitleEn {
    top: 4rem;
    right: -3rem;
  }
}

@media print, screen and (min-width: 768px) {
  .topNewsCnt {
    margin-right: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .topNewsCnt {
    margin-inline: -15px;
  }
}

.topNewsBlock .gridCnt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}
@media only screen and (max-width: 767px) {
  .topNewsBlock .gridCnt {
    gap: 20px 15px;
  }
}
.topNewsBlock.staticGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.topNewsPrev,
.topNewsNext {
  cursor: pointer;
  background-color: var(--mainColor);
  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%);
  height: var(--arwW);
  width: var(--arwW);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
.topNewsPrev i,
.topNewsNext i {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.topNewsPrev:hover,
.topNewsNext:hover {
  -webkit-transform: translateY(-50%) scale(0.8);
          transform: translateY(-50%) scale(0.8);
}

.topNewsPrev {
  left: calc(var(--arwW) / 2 * -1);
}
@media only screen and (max-width: 767px) {
  .topNewsPrev {
    left: calc(var(--arwW) / 2.5);
  }
}

.topNewsNext {
  right: calc(var(--arwW) / 2 * -1);
}
@media only screen and (max-width: 767px) {
  .topNewsNext {
    right: calc(var(--arwW) / 2.5);
  }
}

/*==================================================
 * 保木について
*================================================*/
.aboutPhiloBg {
  background-color: var(--subColorLight);
}

.aboutPhiloTitle {
  margin-bottom: 1.5em;
}
.aboutPhiloTitle .aboutPhiloTitleIn {
  border-bottom: 2px dashed var(--mainColor);
  padding-bottom: 0.3em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}
.aboutPhiloTitle .aboutPhiloTitleIn > span {
  font-size: clamp(24px, 4vw, 50px);
  font-weight: 600;
  color: var(--mainColor);
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .aboutPhiloTitle .aboutPhiloTitleIn {
    gap: 20px;
  }
}

.aboutMessageBg {
  background-color: var(--lightPink);
}

.aboutMessageBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width: 768px) {
  .aboutMessageBlock .aboutMessageTxBox {
    width: 55%;
  }
  .aboutMessageBlock .aboutMessageImgBox {
    padding-left: 5%;
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .aboutMessageBlock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .aboutMessageBlock .aboutMessageImgBox {
    margin-bottom: 5%;
  }
}

.aboutMessageImg {
  border-radius: 50%;
  aspect-ratio: 1/1;
  margin-inline: auto;
  margin-bottom: 5%;
  border: 1px dashed var(--mainColor);
  padding: 5px;
  width: 375px;
}
.aboutMessageImg img {
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .aboutMessageImg {
    margin-inline: auto;
    width: 80%;
  }
}

.aboutMessageName {
  font-size: 24px;
  font-weight: 600;
}

.aboutHistoryHead {
  position: relative;
  padding-block: 12rem;
  z-index: 2;
}
.aboutHistoryHead::before {
  content: "";
  position: absolute;
  background-color: var(--fontColor);
  opacity: 0.4;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .aboutHistoryHead {
    padding-block: 6rem;
  }
}

.aboutHistoryHeadTitle {
  font-size: clamp(25px, 3.2vw, 40px);
  text-align: center;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
}

.aboutHistoryItem {
  display: grid;
  grid-template-columns: 370px 70px auto;
  padding-right: 60px;
  padding-bottom: 40px;
  gap: 5px;
}
.aboutHistoryItem:last-child {
  padding-bottom: 0;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .aboutHistoryItem {
    grid-template-columns: 250px 70px auto;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .aboutHistoryItem {
    grid-template-columns: 110px 20px auto;
    padding-right: 0;
  }
}

.aboutHistoryTitle {
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .aboutHistoryTitle {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .aboutHistoryTitle {
    font-size: 13px;
  }
}

.aboutHistoryIconBox {
  position: relative;
  z-index: 2;
}
.aboutHistoryIconBox::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-left: 1px dashed var(--fontColor);
  height: calc(100% + 40px);
  width: 1px;
  z-index: -1;
}
.aboutHistoryItem:last-child .aboutHistoryIconBox::before {
  height: 100%;
}
.aboutHistoryIconBox .aboutHistoryIcon {
  border-radius: 50%;
  background-color: var(--mainColor);
  aspect-ratio: 1/1;
  display: block;
  margin-inline: auto;
  margin-top: 0.5em;
  width: 13px;
}
@media only screen and (max-width: 767px) {
  .aboutHistoryIconBox .aboutHistoryIcon {
    width: 10px;
  }
}

.aboutHistoryTxBox {
  background-color: var(--subColorLight);
  border-radius: 16px;
  padding-inline: 20px;
  padding-block: 20px;
}
@media only screen and (max-width: 767px) {
  .aboutHistoryTxBox {
    padding-inline: 15px;
    padding-block: 10px;
  }
}

.aboutHistoryBoxTItle {
  font-size: 24px;
  font-weight: 600;
  color: var(--mainColor);
  line-height: 1.2;
  margin-bottom: 0.3em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .aboutHistoryBoxTItle {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .aboutHistoryBoxTItle {
    font-size: 16px;
  }
}

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

@media only screen and (max-width: 767px) {
  .aboutCompaSecTitleEn {
    left: -2rem;
    top: -6rem;
  }
}

.aboutHistorySlide .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.aboutHistorySlide .aboutHistorySlideImg {
  border-radius: 24px;
  overflow: hidden;
  max-width: 320px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .aboutHistorySlide .aboutHistorySlideImg {
    max-width: 230px;
  }
}
@media only screen and (max-width: 767px) {
  .aboutHistorySlide .aboutHistorySlideImg {
    border-radius: 16px;
    max-width: 140px;
  }
}

.aboutProfileList {
  display: grid;
  grid-template-columns: 10em auto;
  gap: 10px;
  border-bottom: 1px dashed var(--mainColor);
  padding-block: 15px;
}
.aboutProfileList dt {
  color: var(--mainColor);
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .aboutProfileList {
    grid-template-columns: 7em auto;
  }
}

.aboutProfileMap {
  margin-top: 15px;
}
.aboutProfileMap .commonFrameWrap {
  position: relative;
  width: 100%;
  padding-top: 40%;
}
.aboutProfileMap .commonFrameWrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .aboutProfileMap .commonFrameWrap {
    position: relative;
    width: 100%;
    padding-top: 80%;
  }
  .aboutProfileMap .commonFrameWrap iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}

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

.companyPositionTitle {
  background-color: #FFE0C6;
  color: var(--mainColor);
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
  padding-inline: 1em;
  padding-block: 0.6em;
  margin-bottom: 0.4em;
}
@media only screen and (max-width: 767px) {
  .companyPositionTitle {
    font-size: 18px;
    padding-inline: 0.7em;
  }
}

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

.companyPositionItemImg {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .companyPositionItemImg {
    border-radius: 16px;
  }
}

.companyPositionItemName {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .companyPositionItemName {
    font-size: 14px;
  }
}

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

/*==================================================
 * 事業紹介
*================================================*/
.serviceDetailBlock {
  position: relative;
  padding-block: 2rem;
  z-index: 2;
}
.serviceDetailBlock::before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, transparent), color-stop(25%, var(--mainColor)));
  background: linear-gradient(to bottom, transparent 25%, var(--mainColor) 25%);
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .serviceDetailBlock::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, transparent), color-stop(15%, var(--mainColor)));
    background: linear-gradient(to bottom, transparent 15%, var(--mainColor) 15%);
  }
}

.serviceDetailImg {
  border-radius: 24px;
  overflow: hidden;
}

.serviceDetailTxBox {
  margin-top: -9rem;
}
.serviceDetailTxBox .serviceMainSecTitleEn {
  position: static;
  color: var(--lightPink);
  margin-bottom: 0.1em;
  letter-spacing: 0.03em;
}
.serviceDetailTxBox .commonTx {
  margin-inline: auto;
  max-width: 80%;
}
.serviceDetailTxBox .commonTx b {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .serviceDetailTxBox {
    margin-top: -4rem;
  }
  .serviceDetailTxBox .serviceMainSecTitleEn {
    letter-spacing: -0.05em;
  }
  .serviceDetailTxBox .commonTx {
    max-width: 100%;
    font-size: 13px;
  }
  .serviceDetailTxBox .commonTx b {
    font-size: 15px;
  }
}

.serviceFlexBlock + .serviceFlexBlock {
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .serviceFlexBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .serviceFlexBlock .serviceFlexBlockImgBox {
    padding-right: 5%;
    width: 50%;
  }
  .serviceFlexBlock .serviceFlexBlockTxBox {
    width: 50%;
  }
  .serviceFlexBlock:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .serviceFlexBlock:nth-child(2n) .serviceFlexBlockImgBox {
    padding-inline: 5% 0;
  }
}
@media only screen and (max-width: 767px) {
  .serviceFlexBlock .serviceFlexBlockImgBox {
    margin-inline: auto;
    margin-bottom: 3%;
    width: 75%;
  }
}

.serviceFlexBlockTitle {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.7em;
}
@media only screen and (max-width: 767px) {
  .serviceFlexBlockTitle {
    font-size: 21px;
    margin-bottom: 0.5em;
  }
}

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

.serviceCntNote {
  background-color: var(--mainColor);
  border-radius: 50rem;
  padding: 5px;
  height: 190px;
}
.serviceCntNote .serviceCntNoteInner {
  border: 1px dashed #fff;
  border-radius: 50rem;
  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: 100%;
  width: 100%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceCntNote {
    height: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceCntNote {
    height: 120px;
  }
  .serviceCntNote .serviceCntNoteInner {
    padding-inline: 2rem;
  }
}

.serviceCntNoteTx {
  text-align: center;
  color: #fff;
  font-size: 22px;
  line-height: 1.4;
}
.serviceCntNoteTx span {
  line-height: 1.4;
  font-size: 27px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .serviceCntNoteTx {
    font-size: 14px;
  }
  .serviceCntNoteTx span {
    font-size: 18px;
  }
}

.ServiceDetailBlock .topServiceCard.__odm .topServiceCardHead {
  background-color: var(--mainColor);
}
.ServiceDetailBlock .topServiceCard.__odm .topServiceCardInner {
  background-color: var(--lightPink);
}
.ServiceDetailBlock .topServiceCard.__oem .topServiceCardHead {
  background-color: #EEC216;
}
.ServiceDetailBlock .topServiceCard.__oem .topServiceCardInner {
  background-color: var(--subColorLight);
}
.ServiceDetailBlock .topServiceCard .topServiceCardHead {
  color: #fff;
}

.serviceFeatureBg {
  background-color: var(--subColorLight);
  padding-block: 90px 25rem;
}
@media only screen and (max-width: 767px) {
  .serviceFeatureBg {
    padding-block: 45px 16rem;
  }
}

.serviceFeatureScrollTxBox {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

.serviceScrollTx {
  color: var(--mainColor);
  opacity: 0.1;
}

.serviceAward {
  border-radius: 24px;
  background-color: #fff;
  padding: 5px;
}
.serviceAward .serviceAwardInner {
  border-radius: 24px;
  border: 1px dashed var(--mainColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 50px;
  padding-inline: 60px;
}
@media print, screen and (min-width: 768px) {
  .serviceAward .serviceAwardImg {
    padding-right: 5%;
    width: 50%;
  }
  .serviceAward .serviceAwardTxBox {
    width: 50%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceAward .serviceAwardInner {
    padding-block: 40px;
    padding-inline: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceAward .serviceAwardInner {
    padding-inline: 20px;
    padding-block: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .serviceAward .serviceAwardImg {
    margin-inline: auto;
    margin-bottom: 5%;
  }
}

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

.serviceFeatureBlock + .serviceFeatureBlock {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .serviceFeatureBlock + .serviceFeatureBlock {
    margin-top: 60px;
  }
}

@media print, screen and (min-width: 768px) {
  .serviceFeatureBlockHead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .serviceFeatureBlockHead .serviceFeatureBlockImgBox {
    width: 50%;
  }
  .serviceFeatureBlockHead .serviceFeatureBlockTxBox {
    padding-inline: 6% 0;
    width: 50%;
  }
  .serviceFeatureBlock:nth-child(2n) .serviceFeatureBlockHead {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .serviceFeatureBlock:nth-child(2n) .serviceFeatureBlockHead .serviceFeatureBlockTxBox {
    padding-inline: 0 6%;
  }
}
@media only screen and (max-width: 767px) {
  .serviceFeatureBlockHead .serviceFeatureBlockImgBox {
    margin-bottom: 10%;
  }
}

.serviceFeatureBlockImgBox {
  position: relative;
  z-index: 2;
}
.serviceFeatureBlockImgBox::before {
  content: "";
  position: absolute;
  border-radius: 24px;
  border: 1px dashed var(--mainColor);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.serviceFeatureBlockImgBox .serviceFeatureBlockNum {
  position: absolute;
  font-family: var(--fontEn);
  font-size: clamp(23px, 3.9vw, 50px);
  color: var(--mainColor);
  font-weight: 700;
  line-height: 1;
  background-color: var(--subColorLight);
  top: -0.5em;
  left: 0.3em;
  z-index: 2;
  padding-inline: 0.3em;
}
.serviceFeatureBlockImgBox .serviceFeatureBlockImg {
  border-radius: 24px;
  overflow: hidden;
  max-width: 580px;
  aspect-ratio: 580/350;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .serviceFeatureBlockImgBox .serviceFeatureBlockImg {
    margin-block: 40px -30px;
    margin-inline: 15px -15px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceFeatureBlockImgBox .serviceFeatureBlockImg {
    -webkit-transform: translate(10px, 20px);
            transform: translate(10px, 20px);
  }
}

.serviceFeatureBlockSubTitle {
  margin-bottom: 1em;
}
.serviceFeatureBlockSubTitle span {
  color: var(--mainColor);
  font-weight: 600;
  position: relative;
  padding-left: 1em;
}
.serviceFeatureBlockSubTitle span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--mainColor);
  height: 0.4em;
  width: 0.4em;
}
.serviceFeatureBlockSubTitle span strong {
  font-size: 26px;
  font-weight: 600;
}
@media only screen and (max-width: 959px) {
  .serviceFeatureBlockSubTitle span strong {
    font-size: 19px;
  }
}

.serviceFeatureBlockTitle {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 0.4em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceFeatureBlockTitle {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceFeatureBlockTitle {
    font-size: 22px;
  }
}

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

.serviceFeatureBlockCardImg {
  border-radius: 24px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .serviceFeatureBlockCardImg {
    border-radius: 16px;
  }
}

.serviceFeatureBlockCardTitle {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1;
  margin-block: 0.6em;
}
@media only screen and (max-width: 767px) {
  .serviceFeatureBlockCardTitle {
    font-size: 16px;
  }
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceFeatureBlockCardTx {
    line-height: 1.6;
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceFeatureBlockCardTx {
    line-height: 1.6;
    font-size: 12px;
  }
}

.serviceProductBg {
  margin-bottom: 16rem;
}
@media only screen and (max-width: 767px) {
  .serviceProductBg {
    margin-bottom: 6rem;
  }
}

.serviceProductTitleBox {
  padding-left: 150px;
}
@media only screen and (max-width: 767px) {
  .serviceProductTitleBox {
    padding-left: 30px;
  }
}

.serviceProductList {
  padding-left: 150px;
}
@media only screen and (max-width: 767px) {
  .serviceProductList {
    padding-left: 0;
  }
}

.serviceProducttSecTitleEn {
  color: var(--mainColor);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  left: -8rem;
  top: 0;
}
@media only screen and (max-width: 959px) {
  .serviceProducttSecTitleEn {
    left: -3rem;
  }
}

.serviceProductItem + .serviceProductItem {
  margin-top: 60px;
}
@media print, screen and (min-width: 768px) {
  .serviceProductItem {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .serviceProductItem .serviceProductItemImgBox {
    width: 40%;
  }
  .serviceProductItem .serviceProductItemTxBox {
    padding-left: 5%;
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .serviceProductItem .serviceProductItemImgBox {
    margin-inline: auto;
    margin-bottom: 5%;
    width: 90%;
  }
}

.serviceProductItemImgBox {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.serviceProductItemImgBox .productSlideNav {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.serviceProductItemImgBox .productSlideNav .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 2px solid var(--mainColor);
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.serviceProductItemImgBox .productSlideNav .swiper-pagination-bullet-active {
  background: var(--mainColor);
  border-color: var(--mainColor);
}

.serviceProductItemImg {
  border-radius: 24px;
  overflow: hidden;
}

.serviceProductItemTitle {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceProductItemTitle {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceProductItemTitle {
    font-size: 22px;
  }
}

.serviceProductItemList {
  border-radius: 24px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  padding-inline: 40px;
  padding-block: 50px 25px;
  margin-top: 20px;
}
.serviceProductItemList li {
  padding-left: 1.5em;
  position: relative;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
.serviceProductItemList li + li {
  margin-top: 0.7em;
}
.serviceProductItemList li::before {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  border-radius: 50%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 0.5em;
  width: 0.5em;
}
@media only screen and (max-width: 767px) {
  .serviceProductItemList {
    padding-inline: 25px;
    padding-block: 45px 30px;
  }
}

.serviceProductItemListTitle {
  background-color: var(--mainColor);
  border-bottom-right-radius: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding-inline: 1.2em;
  padding-block: 0.5em;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .serviceProductItemListTitle {
    font-size: 15px;
  }
}

/*==================================================
 * スタッフインタビュー
*================================================*/
.staffSecTitleEn {
  color: var(--subColor);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
  opacity: 0.3;
  left: -9rem;
  top: 0;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .staffSecTitleEn {
    left: -3rem;
  }
}
@media only screen and (max-width: 767px) {
  .staffSecTitleEn {
    left: -3rem;
    top: 24rem;
  }
}

.staffItem {
  -webkit-box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.05);
          box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.05);
  background-color: var(--lightPink);
  border-radius: 24px;
  padding-inline: 30px;
  padding-block: 40px;
}
.staffItem + .staffItem {
  margin-top: 60px;
}
.staffItem:nth-child(2n+1) {
  background-color: var(--subColorLight);
}
@media print, screen and (min-width: 768px) {
  .staffItem {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .staffItem:nth-child(2n+1) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .staffItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 15px;
    padding-block: 20px;
  }
  .staffItem + .staffItem {
    margin-top: 30px;
  }
}

.staffItemImgBox {
  position: relative;
}
.staffItemImgBox.topStaff {
  max-width: 430px;
}
@media print, screen and (min-width: 768px) {
  .staffItemImgBox {
    padding-inline: 10% 0;
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .staffItemImgBox {
    margin-inline: auto;
    padding-left: 25%;
  }
}
@media screen and (min-width: 1920px) {
  .staffItemImgBox {
    padding-inline: 3vw 0;
  }
}

.staffItemInfoBox {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  z-index: 3;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .staffItemInfoBox {
    top: 15%;
  }
}
.staffItemInfoBox .staffItemInfoHead {
  padding-bottom: 0.6em;
  margin-bottom: 0.7em;
  position: relative;
  z-index: 2;
}
.staffItemInfoBox .staffItemInfoHead::before {
  content: "";
  position: absolute;
  border-bottom: 1px dashed var(--mainColor);
  bottom: 0;
  left: 0;
  width: 80px;
  height: 1px;
  z-index: -1;
}
.staffItemInfoBox .staffItemInfo {
  color: var(--mainColor);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.3em;
}
.staffItemInfoBox .staffItemName {
  font-size: 22px;
  font-family: var(--fontEn);
  font-weight: 600;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .staffItemInfoBox .staffItemName {
    font-size: 18px;
  }
}
.staffItemInfoBox .staffItemTitle {
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  display: inline;
  background-color: var(--subColor);
  line-height: 1.8;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-inline: 0.3em;
  border-radius: 8px;
}
@media only screen and (max-width: 959px) {
  .staffItemInfoBox .staffItemTitle {
    font-size: 22px;
  }
}
.staffItemImgBox.topStaff .staffItemInfoBox .staffItemTitle {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.staffItemImgBox.topStaff.swiper-slide-active .staffItemInfoBox .staffItemTitle {
  opacity: 1;
  visibility: visible;
}

.staffItemImg {
  position: relative;
  width: clamp(240px, 29.7vw, 380px);
  z-index: 2;
}
.staffItemImg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--mainColor);
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 100%;
  z-index: -1;
}
.staffItemImgBox.topStaff .staffItemImg::before {
  background-color: var(--subColor);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.staffItemImgBox.topStaff.swiper-slide-active .staffItemImg::before {
  background-color: var(--mainColor);
}
.topStaff .staffItemImg {
  width: clamp(180px, 22vw, 280px);
}
@media screen and (min-width: 1920px) {
  .topStaff .staffItemImg {
    width: 12vw;
  }
}

@media print, screen and (min-width: 768px) {
  .staffItemDlBox {
    padding-left: 3%;
    width: 55%;
  }
  .staffItem:nth-child(2n+1) .staffItemDlBox {
    padding-inline: 0 3%;
  }
}

.staffItemDlBox dl + dl {
  margin-top: 1em;
}
.staffItemDlBox dt {
  border-bottom: 1px dashed var(--mainColor);
  color: var(--mainColor);
  font-size: 20px;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.staffItemDlBox dd {
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .staffItemDlBox dt {
    font-size: 18px;
    margin-bottom: 0.3em;
    padding-bottom: 0.3em;
  }
}

/*==================================================
 * 採用情報
*================================================*/
.recruitHeader {
  background-image: url("../img/recruitHeaderBg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .recruitHeader {
    background-size: 150% 100%;
  }
}

.recruitHeaderBg {
  background: linear-gradient(215deg, var(--mainColor), var(--subColor));
  padding-block: 16rem 3rem;
  -webkit-mask-image: url("../img/maskRecruit.png");
          mask-image: url("../img/maskRecruit.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top center;
          mask-position: top center;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  position: relative;
  z-index: inherit;
}
.recruitHeaderBg .topRecruitSlideWrap.left {
  left: 0;
  right: auto;
}
.recruitHeaderBg .topRecruitSlideWrap.left .topRecruitSlide {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.recruitHeaderBg .topRecruitSlideWrap.left .topRecruitSlideList {
  -webkit-animation: slideShowReverse 40s infinite linear;
          animation: slideShowReverse 40s infinite linear;
}
@media only screen and (max-width: 767px) {
  .recruitHeaderBg {
    padding-block: 10rem 2rem;
    -webkit-mask-size: 150% 100%;
            mask-size: 150% 100%;
  }
  .recruitHeaderBg .topRecruitSlideWrap.left {
    left: -4rem;
  }
  .recruitHeaderBg .topRecruitSlideItem {
    width: clamp(130px, 25vw, 320px);
  }
}

.recruitHeaderTitle {
  text-align: center;
  font-size: clamp(22px, 3.6vw, 46px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.12);
}
.recruitHeaderTitle span {
  font-size: clamp(38px, 4.7vw, 60px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.recruitScrollTxBox {
  margin-top: 2rem;
}

.recruitScrollTx {
  color: var(--lightPink);
}

.recruitConceptSec {
  margin-block: min(13vw, 170px) min(33vw, 430px);
}

.recruitConcept {
  position: relative;
  z-index: 2;
}

.recruitConceptCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.recruitConceptCircleBlock {
  width: clamp(400px, 62.5vw, 800px);
  height: clamp(400px, 62.5vw, 800px);
  margin: auto;
}
.recruitConceptCircleBlock .circleText {
  overflow: visible;
  -webkit-animation: rotation 50s linear infinite;
          animation: rotation 50s linear infinite;
}
.recruitConceptCircleBlock .circleText__circle {
  fill: none;
}
.recruitConceptCircleBlock .circleText__text {
  fill: var(--mainColor);
  opacity: 0.1;
  font-weight: 700;
  font-family: var(--fontEn);
  font-size: 18px;
  letter-spacing: 0.05em;
}

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

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.recruitConceptImg {
  position: absolute;
}
.recruitConceptImg.__01 {
  top: -4rem;
  width: clamp(110px, 21.9vw, 280px);
}
.recruitConceptImg.__02 {
  top: -21rem;
  right: -3rem;
  width: clamp(160px, 25vw, 320px);
}
@media only screen and (max-width: 767px) {
  .recruitConceptImg.__02 {
    top: -12rem;
  }
}
.recruitConceptImg.__03 {
  bottom: -25rem;
  left: -3rem;
  width: clamp(180px, 34.4vw, 440px);
}
@media only screen and (max-width: 767px) {
  .recruitConceptImg.__03 {
    bottom: -9rem;
  }
}
.recruitConceptImg.__04 {
  bottom: -4rem;
  right: -5rem;
  width: clamp(130px, 21.1vw, 270px);
}

.recruitMessageBlock .recruitMessageImgBox {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .recruitMessageBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .recruitMessageBlock .recruitMessageImgBox {
    padding-right: 5%;
    width: 40%;
  }
  .recruitMessageBlock .crecruitMessageTxBox {
    padding-left: 5%;
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .recruitMessageBlock .recruitMessageImgBox {
    padding-right: 5%;
    margin-inline: auto;
    margin-bottom: 8%;
    width: 80%;
  }
}

.recruitMessageTitle {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  top: 30px;
  right: 0;
}
.recruitMessageTitle span {
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  display: inline;
  font-size: clamp(26px, 2.9vw, 36px);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--mainColor);
  background-color: var(--lightPink);
  line-height: 1.8;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .recruitMessageTitle {
    right: -5%;
  }
}

.recruitMessageImg {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .recruitMessageImg {
    border-radius: 16px;
    margin-bottom: 10px;
  }
}

.recruitMessageName {
  margin-top: 0.2em;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .recruitMessageName {
    font-size: 20px;
  }
}

.crecruitMessageTx {
  display: inline;
  line-height: 2.8;
  border-bottom: 2px dashed var(--mainColor);
  padding: 0.3em 0;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .crecruitMessageTx {
    line-height: 2.2;
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .crecruitMessageTx {
    line-height: 2.2;
  }
}

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

.recruitNumberGridCnt {
  display: grid;
  gap: 10px;
}
.recruitNumberGridCnt.___top {
  grid-template-columns: 0.6fr 0.4fr;
}
.recruitNumberGridCnt.___bottom {
  grid-template-columns: 0.4fr 0.6fr;
}
.recruitNumberGridCnt + .recruitNumberGridCnt {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .recruitNumberGridCnt.___top, .recruitNumberGridCnt.___bottom {
    grid-template-columns: 1fr;
  }
}

.recruitNumberItem {
  background-color: #fff;
  border-radius: 24px;
  padding-inline: 40px;
  padding-block: 40px;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .recruitNumberGridCnt.___top .recruitNumberItem:first-of-type {
    grid-row: 1/3;
    grid-column: 1/2;
  }
  .recruitNumberGridCnt.___bottom .recruitNumberItem:last-of-type {
    grid-row: 1/3;
    grid-column: 2/3;
  }
}
@media only screen and (max-width: 767px) {
  .recruitNumberItem {
    padding-inline: 15px;
    padding-block: 20px;
  }
}

.recruitNumberItemHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.recruitNumberItemHead .recruitNumberItemCate {
  display: inline-block;
  background-color: var(--subColorLight);
  border-radius: 30px;
  padding-inline: 1em;
  padding-block: 0.6em;
  line-height: 1;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .recruitNumberItemHead {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
  .recruitNumberItemHead .recruitNumberItemCate {
    font-size: 12px;
    padding-block: 0.2em;
  }
}

.recruitNumberItemNum {
  display: inline-block;
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.recruitNumberItemNum::before {
  content: "";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  background-color: var(--mainColor);
  opacity: 0.4;
  border-radius: 30px;
  height: 0.5em;
  width: 100%;
  z-index: -1;
}
.recruitNumberItemNum span {
  font-size: clamp(46px, 8.6vw, 110px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.recruitNumberItemIcon {
  position: absolute;
  top: 40px;
  right: 40px;
}
.recruitNumberItemIcon.__01, .recruitNumberItemIcon.__06 {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(50px, 21.5vw, 275px);
}
.recruitNumberItemIcon.__02, .recruitNumberItemIcon.__03, .recruitNumberItemIcon.__04, .recruitNumberItemIcon.__05 {
  width: clamp(50px, 7vw, 90px);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitNumberItemIcon {
    top: 80px;
    right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitNumberItemIcon {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 30px;
  }
  .recruitNumberItemIcon.__01, .recruitNumberItemIcon.__06 {
    width: clamp(50px, 10.5vw, 275px);
  }
}

.recruitWorkBlock {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--mainColor)), to(var(--subColor)));
  background: linear-gradient(to bottom, var(--mainColor), var(--subColor));
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .recruitWorkBlock {
    padding-bottom: 16rem;
    padding-inline: 15px;
  }
}

.recruitWorkSecTitleEn {
  position: absolute;
  color: var(--lightPink);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.3;
  letter-spacing: 0.05em;
  text-align: center;
  width: 100%;
  z-index: -1;
}

.recruitWorkMainImg {
  position: absolute;
  z-index: -1;
  bottom: -10rem;
}
.recruitWorkMainImg.__01 {
  aspect-ratio: 632/420;
  left: -7rem;
  width: clamp(220px, 49.4vw, 632px);
}
.recruitWorkMainImg.__02 {
  aspect-ratio: 590/420;
  right: 0rem;
  width: clamp(200px, 46.1vw, 590px);
}
@media only screen and (max-width: 767px) {
  .recruitWorkMainImg {
    bottom: -100%;
  }
  .recruitWorkMainImg.__01 {
    left: calc(50% - 220px);
  }
  .recruitWorkMainImg.__02 {
    right: calc(50% - 200px);
  }
}

:root {
  --work01: var(--mainColor);
  --work02: #A5980A;
  --work03: #E1350F;
  --work04: #0EB86E;
}

.recruitWorkCnt {
  padding-bottom: calc(clamp(25px, 10vw, 50px) * 2);
}
.recruitWorkCnt + .recruitWorkCnt {
  margin-top: calc(clamp(25px, 10vw, 50px) * -1);
  border-radius: 24px;
}
.recruitWorkCnt.__work01 {
  --work-color: var(--work01);
  background-color: var(--lightPink);
}
.recruitWorkCnt.__work01 .recruitWorkCntHead {
  background-color: #FFE0C6;
}
.recruitWorkCnt.__work02 {
  --work-color: var(--work02);
  background-color: #FDFFD4;
}
.recruitWorkCnt.__work02 .recruitWorkCntHead {
  background-color: #FAF6A5;
}
.recruitWorkCnt.__work03 {
  --work-color: var(--work03);
  background-color: #FDE5E4;
}
.recruitWorkCnt.__work03 .recruitWorkCntHead {
  background-color: #FFD3C3;
}
.recruitWorkCnt.__work04 {
  --work-color: var(--work04);
  background-color: #E1F3E4;
}
.recruitWorkCnt.__work04 .recruitWorkCntHead {
  background-color: #CEFFE4;
}
.recruitWorkCnt .recruitWorkCntHead .recruitWorkCntTitle {
  color: var(--work-color);
}
.recruitWorkCnt .recruitWorkCntInTItle span {
  color: var(--work-color);
}
.recruitWorkCnt .recruitWorkCntInTItle span::before {
  background-color: var(--work-color);
}

.recruitWorkCntHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding-inline: 1.3em;
  padding-block: 0.6em;
  margin-bottom: 2em;
}
.recruitWorkCntHead .recruitWorkCntTitle {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1;
}
.recruitWorkCntHead .recruitWorkCntSubTitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .recruitWorkCntHead {
    gap: 20px;
  }
  .recruitWorkCntHead .recruitWorkCntTitle {
    white-space: nowrap;
  }
  .recruitWorkCntHead .recruitWorkCntSubTitle {
    font-size: 14px;
  }
}

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

.recruitWorkCntImg {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1em;
}

.whiteBg {
  background-color: #fff;
  border-radius: 24px;
  padding-inline: 20px;
  padding-block: 30px;
}

.recruitWorkCntRightBox {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
}

.recruitWorkCntInTItle {
  margin-bottom: 1em;
}
.recruitWorkCntInTItle span {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 1em;
  line-height: 1;
}
.recruitWorkCntInTItle span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 0.4em;
}
@media only screen and (max-width: 767px) {
  .recruitWorkCntInTItle span {
    font-size: 18px;
  }
}

.recruitWorkCntList li {
  line-height: 1.2;
  margin-block: 0.8em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitWorkCntList li {
    font-size: 14px;
  }
}

.recruitWorkEndCnt {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--mainColor)), to(var(--subColor)));
  background: linear-gradient(to bottom, var(--mainColor), var(--subColor));
  padding-block: calc(150px + clamp(25px, 10vw, 50px)) 150px;
  margin-top: calc(clamp(25px, 10vw, 50px) * -1);
  position: relative;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .recruitWorkEndCnt {
    padding-block: calc(60px + clamp(25px, 10vw, 50px)) 50px;
  }
}

.recruitWorkEndCntTx {
  font-size: 24px;
  line-height: 1.8;
  font-weight: 600;
}
.recruitWorkEndCntTx span {
  font-size: 30px;
  line-height: 1.8;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .recruitWorkEndCntTx {
    font-size: 13px;
  }
  .recruitWorkEndCntTx span {
    font-size: 20px;
  }
}

.recruitWorkEndCntImg {
  position: absolute;
  z-index: -1;
}
.recruitWorkEndCntImg.__left {
  left: -120px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  aspect-ratio: 330/400;
  width: clamp(210px, 25.8vw, 330px);
}
.recruitWorkEndCntImg.__right {
  right: -120px;
  top: 20%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  aspect-ratio: 350/470;
  width: clamp(200px, 27.4vw, 350px);
}

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

.recruitAppealItemImg {
  border-radius: 24px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .recruitAppealItemImg {
    border-radius: 16px;
  }
}

.recruitAppealItemNum {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: clamp(70px, 7.9vw, 100px);
  font-weight: 700;
  font-family: var(--fontEn);
  color: var(--mainColor);
  line-height: 0.8;
  letter-spacing: -0.03em;
}

.recruitAppealItemTitle {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0.3em;
}
@media only screen and (max-width: 959px) {
  .recruitAppealItemTitle {
    font-size: 20px;
  }
}

.recruitMindestBg {
  position: relative;
  padding-block: 10rem 16rem;
  z-index: 2;
}
.recruitMindestBg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--fontColor);
  opacity: 0.2;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .recruitMindestBg {
    padding-block: 5rem 8rem;
  }
}

.recruitMindestBlock {
  display: grid;
  grid-template-columns: repeat(3, clamp(180px, 16.4vw, 210px));
  gap: 0 70px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitMindestBlock {
    gap: 0 35px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitMindestBlock {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.recruitMindestItem {
  background-color: #fff;
  border-radius: 50%;
  padding: 5px;
  aspect-ratio: 1/1;
  width: 100%;
}
.recruitMindestItem .recruitMindestItemInner {
  border: 1px dashed var(--mainColor);
  border-radius: 50%;
  padding-block: 25px;
  padding-inline: 5px;
  text-align: center;
  aspect-ratio: 1/1;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .recruitMindestItem:nth-child(4), .recruitMindestItem:nth-child(5), .recruitMindestItem:nth-child(6) {
    margin-left: 140px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitMindestItem:nth-child(4), .recruitMindestItem:nth-child(5), .recruitMindestItem:nth-child(6) {
    margin-left: 120px;
  }
}

.recruitMindestItemNum {
  color: var(--mainColor);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--fontEn);
  margin-bottom: 0.2em;
}
@media only screen and (max-width: 767px) {
  .recruitMindestItemNum {
    font-size: 26px;
  }
}

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

.recruitDetail {
  margin-block: calc(16rem + 90px) clamp(50px, 10vw, 100px);
}
@media only screen and (max-width: 767px) {
  .recruitDetail {
    margin-block: calc(5rem + 90px) clamp(50px, 10vw, 100px);
  }
}

.recruitDetailItem {
  border-radius: 24px;
  border: 1px solid #A1A1A1;
  overflow: hidden;
}
.recruitDetailItem + .recruitDetailItem {
  margin-top: 20px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitDetailItem {
    border-radius: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitDetailItem {
    border-radius: 6px;
  }
}

.recruitDetailItemTitle {
  cursor: pointer;
  background-color: var(--mainColor);
  text-align: center;
  color: #fff;
  line-height: 1;
  padding-inline: 1em;
  padding-block: 0.9em;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .recruitDetailItemTitle {
    font-size: 18px;
    padding-inline: 30px;
  }
}

.recruitDetailItemTitleIcon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 50px;
  height: 30px;
  width: 30px;
}
.recruitDetailItemTitleIcon::before, .recruitDetailItemTitleIcon::after {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 50%;
  height: 2px;
  width: 100%;
}
.recruitDetailItemTitleIcon::before {
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.recruitDetailItemTitleIcon::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(50%) rotate(-90deg);
          transform: translateY(50%) rotate(-90deg);
}
.recruitDetailItemTitle.open .recruitDetailItemTitleIcon::after {
  -webkit-transform: translateY(50%) rotate(0deg);
          transform: translateY(50%) rotate(0deg);
}
@media only screen and (max-width: 767px) {
  .recruitDetailItemTitleIcon {
    right: 20px;
    height: 15px;
    width: 15px;
  }
}

.recruitDetailItemIn {
  display: none;
}

.recruitDetailItemDl {
  padding-inline: 120px;
  padding-block: 30px;
}
.recruitDetailItemDl dl {
  display: grid;
  grid-template-columns: 180px auto;
  gap: 10px;
  border-bottom: 1px dashed var(--mainColor);
  padding-block: 1em;
}
.recruitDetailItemDl dt {
  color: var(--mainColor);
  font-weight: 600;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitDetailItemDl {
    padding-inline: 60px;
    padding-block: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitDetailItemDl {
    padding-inline: 20px;
    padding-block: 20px;
  }
  .recruitDetailItemDl dl {
    grid-template-columns: 90px auto;
  }
}

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

.recruitFlowImgBox {
  background-color: var(--lightPink);
  border-radius: 50%;
  margin-inline: auto;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 5%;
  width: 200px;
}
.recruitFlowImgBox .recruitFlowImg {
  aspect-ratio: 1/1;
  width: 85px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitFlowImgBox {
    width: 170px;
  }
  .recruitFlowImgBox .recruitFlowImg {
    width: 65px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitFlowImgBox {
    width: 140px;
  }
  .recruitFlowImgBox .recruitFlowImg {
    width: 55px;
  }
}

.recruitFlowItemArw {
  border-radius: 50%;
  background-color: var(--mainColor);
  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: 87.5px;
  right: -50px;
  aspect-ratio: 1/1;
  width: 50px;
}
.recruitFlowItemArw i {
  color: #fff;
  font-weight: 600;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitFlowItemArw {
    width: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitFlowItemArw {
    top: auto;
    bottom: -45px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    width: 30px;
  }
}

.recruitFlowNUm {
  color: var(--mainColor);
  line-height: 1;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0.5em;
}

.recruitFlowTitle {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .recruitFlowTitle {
    font-size: 20px;
  }
}

.qaItem {
  background-color: var(--lightPink);
  padding-inline: 20px;
  border-radius: 16px;
  overflow: hidden;
}
.qaItem + .qaItem {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .qaItem {
    padding-inline: 15px;
  }
}

.qaItemTitle {
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: 40px auto 20px;
  gap: 30px;
  position: relative;
  padding-block: 1em;
}
@media only screen and (max-width: 767px) {
  .qaItemTitle {
    grid-template-columns: 30px auto 15px;
    gap: 20px;
  }
}

.qaItemTItleHead {
  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;
  line-height: 1;
  font-size: 22px;
  font-weight: 600;
  aspect-ratio: 1/1;
  width: 40px;
}
.qaItemTItleHead.__q {
  color: #fff;
  background-color: var(--mainColor);
}
.qaItemTItleHead.__a {
  color: var(--mainColor);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .qaItemTItleHead {
    font-size: 16px;
    width: 30px;
  }
}

.qaItemTitleTx {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .qaItemTitleTx {
    font-size: 16px;
  }
}

.qaItemTItleIcon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  height: 20px;
  width: 20px;
}
.qaItemTItleIcon::before, .qaItemTItleIcon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 100%;
  background-color: var(--mainColor);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.qaItemTItleIcon::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.qaItemTItleIcon::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.qaItemTitle.open .qaItemTItleIcon::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
@media only screen and (max-width: 767px) {
  .qaItemTItleIcon {
    right: 15px;
    height: 15px;
    width: 15px;
  }
}

.qaItemIn {
  display: none;
}

.qaItemInDetail {
  display: grid;
  grid-template-columns: 40px auto 20px;
  gap: 30px;
  padding-block: 1em;
  border-top: 1px dashed var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .qaItemInDetail {
    grid-template-columns: 30px auto;
    gap: 20px;
  }
}

.recruitEntryBlock {
  background: linear-gradient(215deg, var(--mainColor), var(--subColor));
  padding-block: 0rem 6rem;
}

.recruitEntryScrollTxBox {
  margin-block: -9rem 3rem;
}
.recruitEntryScrollTxBox .recruitEntryScrollTx {
  color: var(--lightPink);
}
@media only screen and (max-width: 767px) {
  .recruitEntryScrollTxBox {
    margin-block: -5rem 2rem;
  }
}

.recruitEntryCoomonTitle {
  font-size: clamp(26px, 4.4vw, 56px);
}

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

.entryBtn {
  border-radius: 24px;
  border: 1px solid #fff;
  background-color: var(--mainColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 10px;
  padding-block: 50px;
  -webkit-box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.12);
}
.entryBtn.telBtn {
  background-color: var(--subColor);
}
@media only screen and (max-width: 767px) {
  .entryBtn {
    padding-block: 30px;
    border-radius: 16px;
  }
}

.entryBtnHead {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 45px auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 959px) {
  .entryBtnHead {
    grid-template-columns: 35px auto;
    gap: 15px;
  }
}

.entryBtnTItle {
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
}
.telBtn .entryBtnTItle {
  color: var(--fontColor);
}
.entryBtnTItle span {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .entryBtnTItle {
    font-size: 16px;
  }
  .entryBtnTItle span {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .entryBtnTItle {
    font-size: 14px;
  }
  .entryBtnTItle span {
    font-size: 24px;
  }
}

.entryBtnIcon {
  aspect-ratio: 1/1;
  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;
  width: 45px;
}
@media only screen and (max-width: 959px) {
  .entryBtnIcon {
    width: 35px;
  }
}

/*==================================================
 * お問い合わせ
*================================================*/
.contactTelBtn {
  padding-inline: 3em;
  height: 100px;
}
@media only screen and (max-width: 767px) {
  .contactTelBtn {
    padding-inline: 2em;
    height: 90px;
  }
}

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