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

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


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

*/
/* ----------------------------------
使う↓
---------------------------------- */
:root {
  --mainColor: #49A2AB;
  --subColor: #401B17;
  --grayColor: #F7F7F7;
  --fontColor: #202020;
}

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

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

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

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

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

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

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

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

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

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

:root {
  --fontJp: "Tsukushi A Round Gothic", "TsukuARdGothic-Regular", "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "游ゴシック体", "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;
}

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

/*==================================================
 * fluid() レスポンシブ関数
 *  デザイン幅基準で px を vw に変換し、画面幅に応じて伸縮させる。
 *  デザイン幅以上では指定 px で固定（min() でキャップ）。
 *  PC基準(1280px): font-size: fluidFont(40);  → min(40px, 3.125vw)
 *  SP基準(375px) : font-size: fluidFont(32, 375);
 *  使用例: padding: fluid(120) fluid(60); gap: fluid(40);
 *================================================*/
/*==================================================
 * fluidFont() フォント専用レスポンシブ関数
 *  fluid() と違い min() ではなく clamp() を使い、下限（最小サイズ）を設ける。
 *  第1引数 $max … 最大サイズ＝デザイン値（1280px 以上でこのpxに固定）
 *  第2引数 $min … 最小サイズ＝スマホで縮んでも下回らない下限（省略時 12px）
 *  ※最大・最小は要素ごとに指定可。$min 未指定なら一律 12px。
 *  使用例:
 *    font-size: fluidFont(16);      → clamp(12px, 1.25vw, 16px)   … 最小12px
 *    font-size: fluidFont(40, 20);  → clamp(20px, 3.125vw, 40px)  … 最小20px
 *================================================*/
/*==================================================
 * リセットcss
 *================================================*/
/* a modern css reset*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

input,
select {
  vertical-align: middle;
}

li {
  list-style-type: none;
}

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

html {
  font-size: 10px;
}

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

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

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

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

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

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

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

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

.ls_xl {
  letter-spacing: 0.2em;
}

.ls_l {
  letter-spacing: 0.15em;
}

.ls_m {
  letter-spacing: 0.1em;
}

.ls_s {
  letter-spacing: 0.05em;
}

.ls_xs {
  letter-spacing: 0.01em;
}

.ls_0 {
  letter-spacing: 0;
}

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

.thin {
  font-weight: 100;
}

.normal {
  font-weight: 400;
}

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

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

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

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

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}

.black {
  color: #333;
}

.gray {
  color: #686868;
}

.red {
  color: #EC462F !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h000 {
  font-size: 100px;
}

.h00 {
  font-size: 64px;
}

.h0 {
  font-size: 42px;
}

.h1 {
  font-size: 32px;
}

.h2 {
  font-size: 28px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 16px;
}

.text_m {
  font-size: 14px;
}

.text_sm {
  font-size: 13px;
}

.text_s {
  font-size: 12px;
}

.text_ss {
  font-size: 10px;
}

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

html,
body {
  width: 100%;
}

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

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

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

hr {
  margin: 10px auto;
}

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

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

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

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

.inlineBlockUl li {
  display: inline-block;
}

.disNone {
  display: none !important;
}

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

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

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

.overHidden {
  overflow: hidden;
}

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

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .notTab {
    display: none !important;
  }
}
@media screen and (min-width: 960px) {
  .tab {
    display: none !important;
  }
}
/*余白*/
.m0 {
  margin: 0;
}

.p0 {
  padding: 0;
}

.mtAuto {
  margin-top: auto;
}

.mrAuto {
  margin-right: auto;
}

.mbAuto {
  margin-bottom: auto;
}

.mlAuto {
  margin-left: auto;
}

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

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

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

.ml05 {
  margin-left: 0.5em;
}

.ml1 {
  margin-left: 1em;
}

.ml2 {
  margin-left: 2em;
}

.ml3 {
  margin-left: 3em;
}

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

.mtL2 {
  margin-top: 25%;
}

.mtL3 {
  margin-top: 20%;
}

.mtL4 {
  margin-top: 15%;
}

.mtM {
  margin-top: 10%;
}

.mtM2 {
  margin-top: 7.5%;
}

.mtM3 {
  margin-top: 5%;
}

.mtS {
  margin-top: 3.5%;
}

.mtS2 {
  margin-top: 2%;
}

.mtS3 {
  margin-top: 1%;
}

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

.mbL2 {
  margin-bottom: 25%;
}

.mbL3 {
  margin-bottom: 20%;
}

.mbL4 {
  margin-bottom: 15%;
}

.mbM {
  margin-bottom: 10%;
}

.mbM2 {
  margin-bottom: 7.5%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS3 {
  margin-bottom: 1%;
}

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

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

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

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

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

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

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

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

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

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

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

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

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

.pl1 {
  padding-left: 1em;
}

.pl2 {
  padding-left: 2em;
}

.pl3 {
  padding-left: 3em;
}

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

.pbL2 {
  padding-bottom: 25%;
}

.pbL3 {
  padding-bottom: 20%;
}

.pbL4 {
  padding-bottom: 15%;
}

.pbM {
  padding-bottom: 10%;
}

.pbM2 {
  padding-bottom: 7.5%;
}

.pbM3 {
  padding-bottom: 5%;
}

.pbS {
  padding-bottom: 3.5%;
}

.pbS2 {
  padding-bottom: 2%;
}

.pbS3 {
  padding-bottom: 1%;
}

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

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

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

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

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

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

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

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

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

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

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

.flexCol {
  width: 100%;
}

.col1 {
  width: 100%;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 33.3333%;
}

.col-3 {
  width: 66.6666%;
}

.col4 {
  width: 25%;
}

.col-4 {
  width: 75%;
}

.col5 {
  width: 20%;
}

.col-5 {
  width: 80%;
}

.col6 {
  width: 16.666%;
}

.col-6 {
  width: 83.333%;
}

.col3-2 {
  width: 60%;
}

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

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

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

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

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

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

.gap-10 {
  gap: 10px;
}

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

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

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

.gap-20 {
  gap: 20px;
}

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

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

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

.gap-30 {
  gap: 30px;
}

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

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

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

.gap-40 {
  gap: 40px;
}

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

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

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

.gap-50 {
  gap: 50px;
}

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

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

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

.gap-60 {
  gap: 60px;
}

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

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

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

.gap-70 {
  gap: 70px;
}

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

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

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

.gap-80 {
  gap: 80px;
}

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

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

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

.gap-90 {
  gap: 90px;
}

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

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

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

.gap-100 {
  gap: 100px;
}

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

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

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

.w100 {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

.paNone {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

.marginCenter {
  margin-inline: auto;
}

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

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

.bgImgHeight {
  padding-bottom: 67%;
}

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

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

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

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

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

.bgWhite {
  background-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

.radiusCircle {
  border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

html.open {
  overflow-y: hidden;
}

/*ハンバーガーメニュー*/
@media only screen and (max-width: 1279px) {
  .menu-btn {
    background: transparent;
    border: none;
    z-index: 1000;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-inline: 6px;
  }
}

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

:root {
  --menuTrigeHeight: 22px;
}

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

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

.breadcrumbsInner span {
  font-size: 14px;
  font-family: var(--fontJp);
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .breadcrumbsInner span {
    font-size: 11px;
  }
}
.breadcrumbsInner a.home,
.breadcrumbsInner a.home span {
  color: #b6aba5;
}

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

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

.topTopicsItemTitle {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topicsCard:hover .topTopicsItemTitle {
  color: var(--subColor);
}

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

/*お問い合わせページ------------------------------------*/
.cform {
  width: 100%;
  margin-inline: auto;
}
.cform tr {
  margin-bottom: 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] {
  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%, rgba(64, 27, 23, 0.1)));
  background: linear-gradient(transparent 50%, rgba(64, 27, 23, 0.1) 50%);
}
.entry p {
  margin: 0.5em 0 1em 0;
  line-height: 1.8;
  letter-spacing: 0.2em;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .entry p {
    font-size: 14px;
    line-height: 1.6;
  }
}
.entry h1 span,
.entry h2 span,
.entry h3 span,
.entry h4 span,
.entry h5 span {
  font-weight: bold;
}
.entry h1 {
  background-color: var(--mainColor);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin: 8% auto 3%;
  padding: 0.5em 1.3em;
}
@media only screen and (max-width: 767px) {
  .entry h1 {
    font-size: 20px;
    padding: 0.6em 1.2em;
  }
}
.entry h2 {
  background-color: #F9F9F9;
  position: relative;
  font-size: 22px;
  font-weight: 600;
  padding-left: 1.3em;
  padding-block: 0.3em;
  margin-bottom: 3%;
}
.entry h2::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content: "";
  width: 8px;
  height: 100%;
  background-color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h2 {
    font-size: 20px;
    margin: 12% auto 6%;
    padding-block: 0.3em;
  }
}
.entry h3 {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  padding-left: 1.3em;
  padding-block: 0.3em;
  margin-bottom: 3%;
}
.entry h3::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content: "";
  width: 8px;
  height: 100%;
  background-color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    font-size: 20px;
    margin: 12% auto 6%;
    padding-block: 0.3em;
  }
}
.entry h4 {
  position: relative;
  border-bottom: 2px solid #b8b8b8;
  font-size: 22px;
  font-weight: 600;
  padding-left: 0.3em;
  padding-bottom: 0.3em;
  margin-bottom: 2%;
}
.entry h4::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 15%;
  height: 3px;
  background-color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h4 {
    font-size: 20px;
    margin: 10% auto 6%;
  }
  .entry h4::after {
    width: 35%;
  }
}
.entry h5 {
  font-size: 21px;
  font-weight: 600;
  padding-left: 0.3em;
  padding-block: 0.3em;
  margin-block: 3%;
  border-block: 1px solid var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry h5 {
    font-size: 20px;
    margin: 5% auto 3%;
  }
}
.entry h6 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1%;
}
@media only screen and (max-width: 767px) {
  .entry h6 {
    font-size: 18px;
  }
}
.entry table {
  margin-bottom: 2%;
}
.entry table tr:nth-child(2n) td {
  background-color: #f7f6f9;
  color: #515151;
}
.entry table th,
.entry table td {
  padding: 1rem 2rem;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 767px) {
  .entry table th,
  .entry table td {
    padding: 0.5em 0.5em;
    border-bottom: 1px solid var(--mainColor);
  }
}
.entry table tr {
  border-bottom: 1px solid var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .entry table tr {
    border-bottom: none;
  }
}
.entry table tr:first-child {
  border-top: 1px solid var(--mainColor);
}
.entry table td {
  border: 1px solid var(--mainColor);
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .entry table {
    width: 500px;
  }
}
.entry ul {
  margin-bottom: 2%;
  background-color: var(--grayColor);
  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: var(--grayColor);
  border: none !important;
  margin: 0 auto;
  padding: 4% 6%;
  border-radius: 10px;
}
#toc_container a {
  color: var(--mainColor);
}

.toc_list li:before {
  display: none;
}

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

.toc_toggle {
  font-size: 14px;
}

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

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

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

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

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

.lkc-excerpt {
  display: none;
}

.lkc-url {
  display: none;
}

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

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

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

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

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

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

.lkc-domain {
  color: #fff;
}

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

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

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

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

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

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

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

.singleColumnArticleContent {
  margin-top: 5%;
}

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

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

.singleColumnInfoUl .date {
  margin-right: 0.6em;
  font-size: 13px;
  color: var(--fontColor);
}
.singleColumnInfoUl .cateUl {
  display: inline-block;
}
.singleColumnInfoUl .cateUl li {
  display: inline-block;
  font-size: 14px;
  background-color: var(--mainColor);
  font-family: var(--fontJp);
  color: #fff;
  padding: 0.3em 0.6em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 11px;
  }
}
.singleColumnInfoUl .cateUl li + li {
  margin-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 12px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebarBlock {
  padding-left: 8%;
}
@media only screen and (max-width: 959px) {
  .sidebarBlock {
    padding-left: 15px;
  }
}

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

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

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

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

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

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

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

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

.sidebarCategoryBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.sidebarCategoryBlock li a {
  display: inline-block;
  font-size: 14px;
  background-color: var(--mainColor);
  font-family: var(--fontJp);
  color: #fff;
  padding: 0.3em 0.6em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .sidebarCategoryBlock li a {
    font-size: 11px;
  }
}
.sidebarCategoryBlock li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.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: var(--grayColor);
}
@media only screen and (max-width: 767px) {
  .sidebarTagWrap a {
    font-size: 12px !important;
  }
}

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

body {
  font-size: clamp(12px, 1.25vw, 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;
}

/*--------------------------------------------------
 * デザインカラートークン（Figmaデザイン準拠）
 *------------------------------------------------*/
:root {
  --white: #ffffff;
  --textMain: #333333;
  --textMuted: #878787;
  --crumbGray: #b6aba5;
  --pageBg: #f9f8f4;
  --titleBlack: #000000;
  --accentBlue: #6986b0;
  --accentGold: #f0b656;
  --accentOlive: #7e8e5d;
  --accentTerracotta: #c98867;
  --accentTaupe: #a49170;
}

/*--------------------------------------------------
 * 共通タイトル（common-title）
 *------------------------------------------------*/
.commonTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 18px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .commonTitle {
    gap: 12px;
  }
}
.commonTitle__en {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .commonTitle__en {
    font-size: 16px;
  }
}
.commonTitle__jp {
  font-size: clamp(12px, 1.71875vw, 22px);
  font-weight: 600;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .commonTitle__jp {
    font-size: 18px;
  }
}

/*--------------------------------------------------
 * 共通ラベル（common-label）文字に密着するハイライト帯
 *  <span class="commonLabel">テキスト<br>改行OK</span>
 *  box-decoration-break:clone により、改行・折り返しでも各行の文字幅に背景が張り付く。
 *  会社案内の沿革・事業内容など、複数ページで共通利用。
 *------------------------------------------------*/
.commonLabel, .cTl__label {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-color: var(--accentTaupe);
  color: var(--white);
  font-size: clamp(12px, 1.875vw, 24px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding: 0.1em min(9px, 0.703125vw);
  overflow-wrap: anywhere;
}
@media only screen and (max-width: 767px) {
  .commonLabel, .cTl__label {
    font-size: clamp(12px, 1.25vw, 16px);
  }
}

/*--------------------------------------------------
 * 共通セクション見出し（common-sec-head）英字ラベル＋日本語タイトル（＋リード）
 *  PHPパーツ parts/assets/common-sec-head.php、または .commonSecHead クラスで利用。
 *  会社案内・事業内容など複数ページで共通の見出しスタイルを一元管理。
 *  文字スタイルは mixin 化し、既存の各見出しクラス（companySecHead / serviceInfo* 等）も参照する。
 *------------------------------------------------*/
.commonSecHead__en {
  display: block;
  font-size: clamp(18px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: min(20px, 1.5625vw);
  color: var(--accentTaupe);
}
@media only screen and (max-width: 767px) {
  .commonSecHead__en {
    font-size: clamp(14px, 1.25vw, 16px);
  }
}
.commonSecHead__title {
  font-size: clamp(28px, 3.359375vw, 43px);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.2;
  color: var(--titleBlack);
}
.commonSecHead__lead {
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.03em;
  color: var(--textMain);
  margin-top: min(20px, 1.5625vw);
}
.commonSecHead--center {
  text-align: center;
}

.commonSecHead--blue .commonSecHead__en {
  color: var(--accentBlue);
}

.commonSecHead--gold .commonSecHead__en {
  color: var(--accentGold);
}

.commonSecHead--olive .commonSecHead__en {
  color: var(--accentOlive);
}

.commonSecHead--terracotta .commonSecHead__en {
  color: var(--accentTerracotta);
}

.commonSecHead--taupe .commonSecHead__en {
  color: var(--accentTaupe);
}

/*--------------------------------------------------
 * 共通ボタン（common-button）白いピル＋アローサークル
 *------------------------------------------------*/
.commonBtn {
  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: 10px;
  white-space: nowrap;
  background-color: var(--white);
  color: var(--textMain);
  border-radius: 60px;
  padding: 18px 50px;
  font-size: clamp(12px, 1.40625vw, 18px);
  font-weight: 500;
  letter-spacing: 0.04em;
  -webkit-box-shadow: 0 5px 25px rgba(109, 95, 74, 0.15);
          box-shadow: 0 5px 25px rgba(109, 95, 74, 0.15);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.commonBtn:hover {
  color: var(--textMain);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.commonBtn__icon {
  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;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--accentBlue);
  color: var(--white);
  font-size: clamp(12px, 0.859375vw, 12px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.commonBtn:hover .commonBtn__icon {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.commonBtn__label {
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .commonBtn {
    padding: 16px 36px;
    font-size: 16px;
  }
}

.commonBtn--fill {
  color: var(--white);
}
.commonBtn--fill:hover {
  color: var(--white);
}

.commonTitle--blue {
  color: var(--accentBlue);
}

.commonBtn--blue .commonBtn__icon {
  background-color: var(--accentBlue);
}

.commonBtn--fill.commonBtn--blue {
  background-color: var(--accentBlue);
}
.commonBtn--fill.commonBtn--blue .commonBtn__icon {
  background-color: var(--white);
  color: var(--accentBlue);
}

.pageFvEn--blue {
  color: var(--accentBlue);
}

.gNavItem--blue .gNavLink__en {
  color: var(--accentBlue);
}

.gNavItem--blue .gNavLink::after {
  background-color: var(--accentBlue);
}

.commonTitle--gold {
  color: var(--accentGold);
}

.commonBtn--gold .commonBtn__icon {
  background-color: var(--accentGold);
}

.commonBtn--fill.commonBtn--gold {
  background-color: var(--accentGold);
}
.commonBtn--fill.commonBtn--gold .commonBtn__icon {
  background-color: var(--white);
  color: var(--accentGold);
}

.pageFvEn--gold {
  color: var(--accentGold);
}

.gNavItem--gold .gNavLink__en {
  color: var(--accentGold);
}

.gNavItem--gold .gNavLink::after {
  background-color: var(--accentGold);
}

.commonTitle--olive {
  color: var(--accentOlive);
}

.commonBtn--olive .commonBtn__icon {
  background-color: var(--accentOlive);
}

.commonBtn--fill.commonBtn--olive {
  background-color: var(--accentOlive);
}
.commonBtn--fill.commonBtn--olive .commonBtn__icon {
  background-color: var(--white);
  color: var(--accentOlive);
}

.pageFvEn--olive {
  color: var(--accentOlive);
}

.gNavItem--olive .gNavLink__en {
  color: var(--accentOlive);
}

.gNavItem--olive .gNavLink::after {
  background-color: var(--accentOlive);
}

.commonTitle--terracotta {
  color: var(--accentTerracotta);
}

.commonBtn--terracotta .commonBtn__icon {
  background-color: var(--accentTerracotta);
}

.commonBtn--fill.commonBtn--terracotta {
  background-color: var(--accentTerracotta);
}
.commonBtn--fill.commonBtn--terracotta .commonBtn__icon {
  background-color: var(--white);
  color: var(--accentTerracotta);
}

.pageFvEn--terracotta {
  color: var(--accentTerracotta);
}

.gNavItem--terracotta .gNavLink__en {
  color: var(--accentTerracotta);
}

.gNavItem--terracotta .gNavLink::after {
  background-color: var(--accentTerracotta);
}

.commonTitle--taupe {
  color: var(--accentTaupe);
}

.commonBtn--taupe .commonBtn__icon {
  background-color: var(--accentTaupe);
}

.commonBtn--fill.commonBtn--taupe {
  background-color: var(--accentTaupe);
}
.commonBtn--fill.commonBtn--taupe .commonBtn__icon {
  background-color: var(--white);
  color: var(--accentTaupe);
}

.pageFvEn--taupe {
  color: var(--accentTaupe);
}

.gNavItem--taupe .gNavLink__en {
  color: var(--accentTaupe);
}

.gNavItem--taupe .gNavLink::after {
  background-color: var(--accentTaupe);
}

/*--------------------------------------------------
 * 下層ページ FV（page-fv）
 *------------------------------------------------*/
.pageFv {
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  padding-top: 160px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .pageFv {
    padding-top: 90px;
    padding-bottom: 24px;
  }
}

.pageFvTitleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .pageFvTitleBox {
    gap: 10px;
  }
}

.pageFvEn {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .pageFvEn {
    font-size: 15px;
  }
}

.pageFvTitle {
  font-size: clamp(12px, 4.6875vw, 60px);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.16;
  color: var(--titleBlack);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageFvTitle {
    font-size: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .pageFvTitle {
    font-size: 32px;
  }
}

/*--------------------------------------------------
 * CTA（cta）お問い合わせ誘導パネル
 *------------------------------------------------*/
.cta {
  margin-block: var(--spaceSize);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
}
.cta.front {
  padding-block: var(--spaceSize);
  background-color: var(--pageBg);
  margin-block: 0;
}

.ctaContainer {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 15px;
}
@media only screen and (min-width: 1280px) {
  .ctaContainer {
    padding-inline: 0;
  }
}

.ctaPanel {
  position: relative;
  overflow: hidden;
  background-color: var(--accentTerracotta);
  color: var(--white);
  border-radius: 60px;
  -webkit-box-shadow: 0 5px 25px rgba(109, 95, 74, 0.5);
          box-shadow: 0 5px 25px rgba(109, 95, 74, 0.5);
  padding: min(90px, 7.03125vw) 0 min(23px, 1.796875vw);
}
@media only screen and (max-width: 767px) {
  .ctaPanel {
    border-radius: 24px;
    padding: 50px 0 20px;
  }
}

.ctaIllusts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: min(-13px, -1.015625vw);
  pointer-events: none;
}
.ctaIllusts img {
  display: block;
  height: auto;
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.ctaIllusts img:nth-child(1) {
  width: 14.7%;
}
.ctaIllusts img:nth-child(2) {
  width: 22.5%;
}
.ctaIllusts img:nth-child(3) {
  width: 12.7%;
}
.ctaIllusts img:nth-child(4) {
  width: 17.6%;
}
.ctaIllusts img:nth-child(5) {
  width: 13.7%;
}
.ctaIllusts img:nth-child(6) {
  width: 20.2%;
}
.ctaIllusts img:nth-child(7) {
  width: 13.2%;
}
.ctaIllusts img:not(:first-child) {
  margin-left: -2.4%;
}

.ctaPanelInner {
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: min(40px, 3.125vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .ctaPanelInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 32px;
  }
}

.ctaHeadEn {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}

.ctaHeadJp {
  font-size: clamp(12px, 3.359375vw, 43px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.3;
  margin-block: 0.4em 0.5em;
}
@media only screen and (max-width: 767px) {
  .ctaHeadJp {
    font-size: 30px;
  }
}

.ctaHeadLead {
  font-size: clamp(12px, 1.40625vw, 18px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .ctaHeadLead {
    font-size: 15px;
  }
}

.ctaContact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 959px) {
  .ctaContact {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

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

.ctaTelIcon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  width: 65px;
  height: 65px;
  border-radius: 39px;
  background-color: var(--white);
  color: var(--accentTerracotta);
  font-size: clamp(12px, 1.875vw, 24px);
}
@media only screen and (max-width: 767px) {
  .ctaTelIcon {
    height: 35px;
    width: 35px;
  }
}

.ctaTelNum {
  display: block;
  font-size: clamp(28px, 3.359375vw, 43px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--white);
}
.ctaTelNum:hover {
  color: var(--white);
}

.ctaTelHours {
  display: block;
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  .ctaTelHours {
    font-size: 14px;
  }
}

.ctaBtn {
  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: 10px;
  background-color: var(--white);
  color: var(--textMain);
  border-radius: 70px;
  padding: 18px 50px;
  font-size: clamp(16px, 1.40625vw, 18px);
  font-weight: 500;
  letter-spacing: 0.04em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ctaBtn:hover {
  color: var(--textMain);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.ctaBtnIcon {
  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;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--accentTerracotta);
  color: var(--white);
  font-size: clamp(12px, 0.859375vw, 12px);
}
.ctaBtnLabel {
  font-weight: 600;
}

/*==================================================
 * ヘッダー
*================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

.gHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding: 0 30px;
}
@media only screen and (max-width: 1279px) {
  .gHeader {
    max-width: none;
    padding: 12px 15px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/*------------ ロゴ ------------*/
.gHeaderLogo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.gHeaderLogo img {
  width: 203px;
  height: auto;
  margin: 0;
}
@media only screen and (max-width: 1279px) {
  .gHeaderLogo img {
    width: 180px;
  }
  .gHeaderLogo {
    position: relative;
    z-index: 1000;
  }
}

/*------------ 白いピル（PCナビバー / SPバー） ------------*/
.gHeaderPill {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 30px;
  background-color: var(--white);
  border-radius: 40px;
  padding: 12px 35px 12px 38px;
  -webkit-box-shadow: 0 5px 5px rgba(109, 95, 74, 0.2);
          box-shadow: 0 5px 5px rgba(109, 95, 74, 0.2);
}
@media only screen and (max-width: 1279px) {
  .gHeaderPill {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 16px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 6px 20px;
    border-radius: 40px;
    margin-top: 0;
  }
}

/*------------ 緊急連絡先ボックス（テラコッタ・最上部から下垂） ------------*/
.gHeaderEmergency {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 230px;
  background-color: var(--accentTerracotta);
  color: var(--white);
  border-radius: 0 0 14px 14px;
  padding: 24px 15px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media only screen and (max-width: 1279px) {
  .gHeaderEmergency {
    display: none;
  }
}

.gEmergency__label {
  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: 8px;
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 500;
}

.gEmergency__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--accentTerracotta);
  font-size: clamp(12px, 1.015625vw, 13px);
}

.gEmergency__num {
  display: block;
  font-size: clamp(26px, 2.1875vw, 28px);
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  line-height: 1;
  color: var(--white);
}
.gEmergency__num:hover {
  color: var(--white);
}
@media only screen and (max-width: 767px) {
  .gEmergency__num {
    margin-block: 0.3em 0.5em;
  }
}

.gEmergency__hours {
  line-height: 1;
}

.gEmergency__hoursBox {
  display: inline-block;
  background-color: var(--white);
  color: var(--accentTerracotta);
  font-size: clamp(12px, 1.09375vw, 14px);
  font-weight: 500;
  border-radius: 2px;
  padding: 4px 8px;
}

/*------------ グローバルナビ（PC） ------------*/
@media print, screen and (min-width: 1280px) {
  .gNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media print, screen and (min-width: 1280px) {
  .gNavInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
}

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

.gNavLink {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 600;
  color: var(--textMain);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gNavLink span {
  font-weight: 600;
}
.gNavLink:hover {
  opacity: 0.6;
  color: var(--textMain);
}
.gNavLink__en {
  display: none;
}

.gNavBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.headBtn {
  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;
  border-radius: 30px;
  padding: 11px 22px;
  color: var(--white);
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.headBtn:hover {
  color: var(--white);
  opacity: 0.85;
}
.headBtn--blue {
  background-color: var(--accentBlue);
}
.headBtn--gold {
  background-color: var(--accentGold);
}

/*------------ ハンバーガーボタン（SP） ------------*/
@media print, screen and (min-width: 1280px) {
  .menu-btn {
    display: none;
  }
}
@media only screen and (max-width: 1279px) {
  .menu-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3px;
    background-color: var(--accentOlive);
    border-radius: 4px;
    padding: 8px 10px;
  }
}

/*------------ SPオーバーレイメニュー ------------*/
@media only screen and (max-width: 1279px) {
  .gNavInner.overRayBlock {
    background-color: var(--pageBg);
    background-image: url(../img/contact/contact__texture.png);
    background-repeat: repeat;
    background-size: 128px 128px;
    top: 0;
    height: 100dvh;
    padding: 80px 24px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 22px;
  }
}

@media only screen and (max-width: 1279px) {
  .gNavList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
    background-color: var(--white);
    border-radius: 30px;
    padding: 8px 20px;
  }
}

@media only screen and (max-width: 1279px) {
  .gNavItem {
    border-bottom: 1px solid var(--pageBg);
  }
  .gNavItem:last-child {
    border-bottom: none;
  }
}

@media only screen and (max-width: 1279px) {
  .gNavLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 4px;
  }
  .gNavLink__jp {
    font-size: 18px;
  }
  .gNavLink__en {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
  }
  .gNavLink::after {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    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: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: auto;
    color: var(--white);
    font-size: 10px;
  }
}

@media only screen and (max-width: 1279px) {
  .gNavBtns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}

@media only screen and (max-width: 1279px) {
  .headBtn {
    width: 100%;
    border-radius: 70px;
    padding: 16px;
    font-size: 18px;
  }
}

@media print, screen and (min-width: 1280px) {
  .gNavEmergency {
    display: none;
  }
}
.gNavEmergency {
  background-color: var(--accentTerracotta);
  color: var(--white);
  border-radius: 15px;
  padding: 18px;
  text-align: center;
}

/*==================================================
 * フッター
*================================================*/
.gFooter {
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  color: var(--textMain);
  padding: min(160px, 12.5vw) 0 40px;
}
@media only screen and (max-width: 767px) {
  .gFooter {
    padding: 70px 0 24px;
  }
}

.gFooterTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: min(40px, 3.125vw);
}
@media only screen and (max-width: 959px) {
  .gFooterTop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
}

/*------------ ブランド（キャッチ＋イラスト散らし） ------------*/
.gFooterBrand {
  position: relative;
  width: min(420px, 32.8125vw);
  aspect-ratio: 462/461;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 959px) {
  .gFooterBrand {
    width: 100%;
    aspect-ratio: auto;
  }
}

.gFooterCatch {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  font-size: clamp(28px, 3.125vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.18em;
  color: var(--titleBlack);
}
@media only screen and (max-width: 959px) {
  .gFooterCatch {
    position: static;
  }
}

@media only screen and (max-width: 959px) {
  .gFooterIllusts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 10px;
    margin-top: 24px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .gFooterIllusts {
    width: 50%;
    margin-left: auto;
    margin-top: -18%;
  }
}

.gFooterIl {
  position: absolute;
}
.gFooterIl img {
  width: 100%;
  height: auto;
  margin: 0;
}
.gFooterIl--01 {
  left: 16%;
  top: 73.3%;
  width: 30.7%;
}
.gFooterIl--02 {
  left: 55.2%;
  top: 64.6%;
  width: 35.3%;
}
.gFooterIl--03 {
  left: 78.1%;
  top: 37.7%;
  width: 21.7%;
}
@media only screen and (max-width: 959px) {
  .gFooterIl {
    position: static;
  }
  .gFooterIl--01 {
    width: 33%;
  }
  .gFooterIl--02 {
    width: 38%;
  }
  .gFooterIl--03 {
    width: 22%;
  }
}

/*------------ ナビ（3カラム） ------------*/
.gFooterNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(40px, 3.125vw);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 959px) {
  .gFooterNav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px 40px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .gFooterNav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.gFooterNavCol {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
}

.gFooterNavHead {
  display: block;
  font-size: clamp(16px, 1.40625vw, 18px);
  font-weight: 600;
  color: var(--textMain);
  margin-bottom: 1.2em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gFooterNavHead:hover {
  opacity: 0.6;
  color: var(--textMain);
}

.gFooterNavList li {
  margin-bottom: 0.6em;
}
.gFooterNavList li a {
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 600;
  color: var(--textMuted);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gFooterNavList li a:hover {
  color: var(--textMain);
}

/*------------ 右（ボタン＋会社情報） ------------*/
.gFooterRight {
  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;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 40px;
}
@media only screen and (max-width: 959px) {
  .gFooterRight {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .gFooterRight {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.gFooterBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 11px;
}
@media only screen and (max-width: 959px) {
  .gFooterBtns {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .gFooterBtns {
    margin-inline: auto;
    width: 45%;
  }
}

.footBtn {
  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: 10px;
  background-color: var(--white);
  color: var(--textMain);
  border-radius: 70px;
  padding: 18px 36px;
  font-size: clamp(16px, 1.40625vw, 18px);
  font-weight: 600;
  letter-spacing: 0.04em;
  -webkit-box-shadow: 0 5px 20px rgba(109, 95, 74, 0.12);
          box-shadow: 0 5px 20px rgba(109, 95, 74, 0.12);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footBtn:hover {
  color: var(--textMain);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.footBtn__icon {
  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;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--accentBlue);
  color: var(--white);
  font-size: clamp(12px, 0.859375vw, 12px);
}
.footBtn__label {
  font-weight: 600;
}
.footBtn--gold .footBtn__icon {
  background-color: var(--accentGold);
}
.footBtn--blue .footBtn__icon {
  background-color: var(--accentBlue);
}

.footPortalLink {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 600;
  line-height: 1.6;
  color: #B6ABA5;
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footPortalLink:hover {
  color: #B6ABA5;
  opacity: 0.6;
}
@media only screen and (max-width: 959px) {
  .footPortalLink {
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.gFooterInfo {
  text-align: right;
}
@media only screen and (max-width: 959px) {
  .gFooterInfo {
    text-align: left;
  }
}

.gFooterCompany {
  text-align: left;
  margin-bottom: 0.8em;
}

.gFooterLogo {
  display: inline-block;
}
.gFooterLogo img {
  width: 203px;
  height: auto;
  margin: 0;
}

.gFooterAddress {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--textMain);
  margin-bottom: 1em;
}

.gFooterContact {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--textMain);
}

/*------------ コピーライト ------------*/
.gFooterCopy {
  text-align: center;
  font-size: clamp(12px, 1.09375vw, 14px);
  font-weight: 600;
  color: var(--textMuted);
  margin-top: min(60px, 4.6875vw);
}
@media only screen and (max-width: 767px) {
  .gFooterCopy {
    margin-top: 40px;
    font-size: clamp(12px, 0.9375vw, 12px);
  }
}

/*==================================================
 * トップページ
*================================================*/
/*------------ 見出し内アクセント文字 ------------*/
.hl {
  font-weight: inherit;
}
.hl--terracotta {
  color: var(--accentTerracotta);
}
.hl--gold {
  color: var(--accentGold);
}
.hl--olive {
  color: var(--accentOlive);
}
.hl--blue {
  color: var(--accentBlue);
}
.hl--taupe {
  color: var(--accentTaupe);
}

/*------------ セクション共通：大見出し ------------*/
.topConcept__title,
.topReason__title,
.topBusiness__title,
.topRecruit__title,
.topStaff__title,
.topCompany__title {
  font-size: clamp(32px, 3.359375vw, 43px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .topConcept__title,
  .topReason__title,
  .topBusiness__title,
  .topRecruit__title,
  .topStaff__title,
  .topCompany__title {
    font-size: clamp(24px, 2.34375vw, 30px);
    line-height: 1.4;
  }
}

/*------------ セクション共通：リード文 ------------*/
.topRecruit__lead,
.topStaff__lead {
  font-size: clamp(14px, 1.40625vw, 18px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--textMain);
}
@media only screen and (max-width: 767px) {
  .topRecruit__lead,
  .topStaff__lead {
    font-size: 15px;
  }
}

/*------------ セクション共通：メニューリスト ------------*/
.topMenuList li {
  position: relative;
  padding-left: 1.3em;
  margin-bottom: min(18px, 1.40625vw);
}
.topMenuList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--textMain);
}
.topMenuList li a {
  font-size: clamp(12px, 1.71875vw, 22px);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--textMain);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topMenuList li a:hover {
  opacity: 0.6;
  color: var(--textMain);
}
@media only screen and (max-width: 767px) {
  .topMenuList li {
    margin-bottom: 14px;
  }
  .topMenuList li a {
    font-size: 17px;
  }
}

.topMenuList--blue li:hover a {
  color: var(--accentBlue);
}
.topMenuList--blue li:hover::before {
  border-left-color: var(--accentBlue);
}

.topMenuList--gold li:hover a {
  color: var(--accentGold);
}
.topMenuList--gold li:hover::before {
  border-left-color: var(--accentGold);
}

.topMenuList--olive li:hover a {
  color: var(--accentOlive);
}
.topMenuList--olive li:hover::before {
  border-left-color: var(--accentOlive);
}

.topMenuList--terracotta li:hover a {
  color: var(--accentTerracotta);
}
.topMenuList--terracotta li:hover::before {
  border-left-color: var(--accentTerracotta);
}

.topMenuList--taupe li:hover a {
  color: var(--accentTaupe);
}
.topMenuList--taupe li:hover::before {
  border-left-color: var(--accentTaupe);
}

/*==================================================
 * TOP / FV ヒーロー
*================================================*/
.topFv {
  position: relative;
  width: 100%;
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
}
@media only screen and (max-width: 959px) {
  .topFv {
    padding: 0;
  }
}

.topFvStage {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  aspect-ratio: 1280/700;
}
@media only screen and (max-width: 959px) {
  .topFvStage {
    width: auto;
    max-width: none;
    aspect-ratio: auto;
    overflow: visible;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(0, auto);
    gap: 8px;
    margin-top: -90px;
  }
}

/*------------ FV ロードインアニメーション ------------*/
@-webkit-keyframes topFvReveal {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px) scale(1.06);
            transform: translateY(24px) scale(1.06);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes topFvReveal {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px) scale(1.06);
            transform: translateY(24px) scale(1.06);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes topFvRise {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes topFvRise {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes topFvFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes topFvFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .topFvCell, .topFvCatch, .topFvBadge,
  .recruitFv__tile, .recruitFv__title {
    -webkit-animation: none !important;
            animation: none !important;
    opacity: 1 !important;
  }
  .topFvCell, .topFvCatch,
  .recruitFv__tile, .recruitFv__title {
    -webkit-transform: none !important;
            transform: none !important;
  }
}
/*------------ コラージュ写真（%絶対配置） ------------*/
.topFvCell {
  position: absolute;
  overflow: hidden;
  border-radius: 20px;
  width: 23.97%;
  height: 33.76%;
  opacity: 0;
  -webkit-animation: topFvReveal 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
          animation: topFvReveal 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.topFvCell img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.topFvCell--a {
  left: -0.62%;
  top: -13.14%;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.topFvCell--b {
  left: 25.16%;
  top: -13.14%;
  -webkit-animation-delay: 0.18s;
          animation-delay: 0.18s;
}
.topFvCell--c {
  left: 50.94%;
  top: -13.14%;
  -webkit-animation-delay: 0.26s;
          animation-delay: 0.26s;
}
.topFvCell--d {
  left: 76.72%;
  top: -13.14%;
  -webkit-animation-delay: 0.34s;
          animation-delay: 0.34s;
}
.topFvCell--e {
  left: 50.94%;
  top: 24%;
  -webkit-animation-delay: 0.42s;
          animation-delay: 0.42s;
}
.topFvCell--f {
  left: 77.03%;
  top: 27.43%;
  width: 21.94%;
  height: 27.43%;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.topFvCell--g {
  left: 51.02%;
  top: 61.14%;
}
.topFvCell--g img {
  -o-object-position: center 30%;
     object-position: center 30%;
}
.topFvCell--g {
  -webkit-animation-delay: 0.58s;
          animation-delay: 0.58s;
}
.topFvCell--h {
  left: 76.72%;
  top: 61.14%;
  -webkit-animation-delay: 0.66s;
          animation-delay: 0.66s;
}
@media only screen and (max-width: 959px) {
  .topFvCell {
    position: static;
    width: auto;
    height: auto;
    aspect-ratio: 185/236;
  }
  .topFvCell img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .topFvCell--a, .topFvCell--b {
    aspect-ratio: 1/1.2;
  }
  .topFvCell--d, .topFvCell--e {
    aspect-ratio: 1/0.8;
  }
  .topFvCell--c, .topFvCell--f, .topFvCell--g, .topFvCell--h {
    display: none;
  }
}

/*------------ FVキャッチコピー（左・中段） ------------*/
.topFvCatch {
  position: absolute;
  left: 7.23%;
  top: 28.86%;
  width: 40%;
  z-index: 2;
  opacity: 0;
  -webkit-animation: topFvRise 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s both;
          animation: topFvRise 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s both;
}
@media only screen and (max-width: 959px) {
  .topFvCatch {
    position: static;
    grid-column: 1/-1;
    grid-row: 2;
    width: auto;
    align-self: center;
    padding: 10px 16px 14px;
  }
}
.topFvCatch__jp {
  font-size: clamp(30px, 4.21875vw, 54px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.12em;
  color: var(--titleBlack);
}
.topFvCatch__en {
  margin-top: min(24px, 1.875vw);
  font-size: clamp(12px, 1.328125vw, 17px);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accentTaupe);
}
@media only screen and (max-width: 767px) {
  .topFvCatch__en {
    font-size: 13px;
    margin-top: 16px;
  }
}

/*------------ FV採用バッジ（右下に浮かせる） ------------*/
.topFvBadge {
  position: absolute;
  left: 69.9%;
  top: 66.7%;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: var(--white);
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 20px rgba(109, 95, 74, 0.15);
          box-shadow: 0 5px 20px rgba(109, 95, 74, 0.15);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  -webkit-animation: topFvFade 0.8s ease 0.78s both;
          animation: topFvFade 0.8s ease 0.78s both;
}
.topFvBadge:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.topFvBadge__photo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(95px, 7.421875vw);
  margin-block: min(-20px, -1.5625vw);
}
.topFvBadge__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
@media only screen and (max-width: 959px) {
  .topFvBadge__photo {
    width: 62px;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-right: -8px;
    margin-bottom: -2px;
    z-index: 1;
  }
  .topFvBadge__photo img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.topFvBadge__card {
  padding: 15px 22px 15px 20px;
}
.topFvBadge__en {
  display: block;
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accentBlue);
  margin-bottom: 6px;
}
.topFvBadge__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.topFvBadge__txt {
  font-size: clamp(12px, 1.40625vw, 18px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: var(--textMain);
}
@media only screen and (max-width: 767px) {
  .topFvBadge__txt {
    font-size: clamp(12px, 1.015625vw, 13px);
  }
}
.topFvBadge__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--accentOlive);
  color: var(--white);
  font-size: clamp(12px, 0.78125vw, 12px);
}
@media only screen and (max-width: 959px) {
  .topFvBadge {
    left: auto;
    right: -10px;
    top: auto;
    bottom: -5%;
    width: 65%;
    z-index: 4;
    -webkit-box-shadow: none;
            box-shadow: none;
    overflow: visible;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

/*------------ 常駐 採用バッジ（FV通過後に出現・TOPのみ） ------------*/
.topFloatBadge {
  position: fixed;
  right: 0;
  bottom: 12%;
  z-index: 90;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: var(--white);
  border-radius: 14px 0 0 14px;
  -webkit-box-shadow: 0 6px 24px rgba(109, 95, 74, 0.2);
          box-shadow: 0 6px 24px rgba(109, 95, 74, 0.2);
  overflow: hidden;
  text-decoration: none;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.topFloatBadge.is-visible {
  pointer-events: auto;
  -webkit-transform: translateX(calc(100% - 104px));
          transform: translateX(calc(100% - 104px));
}
@media print, screen and (min-width: 768px) {
  .topFloatBadge.is-visible:hover {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.topFloatBadge__tab {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 104px;
          flex: 0 0 104px;
  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: 6px;
  padding: 14px 12px;
}
.topFloatBadge__en {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accentBlue);
}
.topFloatBadge__illust {
  width: 56px;
}
.topFloatBadge__illust img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
.topFloatBadge__panel {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 16px 24px 16px 4px;
  white-space: nowrap;
}
.topFloatBadge__txt {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--textMain);
}
.topFloatBadge__sp {
  display: none;
}
.topFloatBadge__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--accentOlive);
  color: var(--white);
  font-size: 13px;
}
@media only screen and (max-width: 959px) {
  .topFloatBadge {
    right: 0;
    left: 0;
    bottom: 0;
    top: auto;
    width: auto;
    border-radius: 0;
    background-color: var(--accentOlive);
    color: var(--white);
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
    padding: 14px 16px;
    -webkit-box-shadow: 0 -4px 20px rgba(109, 95, 74, 0.18);
            box-shadow: 0 -4px 20px rgba(109, 95, 74, 0.18);
  }
  .topFloatBadge.is-visible {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .topFloatBadge .topFloatBadge__tab {
    display: none;
  }
  .topFloatBadge .topFloatBadge__txt {
    display: none;
  }
  .topFloatBadge .topFloatBadge__panel {
    padding: 0;
    gap: 12px;
    white-space: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .topFloatBadge .topFloatBadge__sp {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--white);
  }
  .topFloatBadge .topFloatBadge__icon {
    background-color: var(--white);
    color: var(--accentOlive);
  }
  .topFloatBadge--entry {
    background-color: var(--accentBlue);
  }
  .topFloatBadge--entry .topFloatBadge__icon {
    background-color: var(--white);
    color: var(--accentBlue);
  }
}

/*==================================================
 * TOP / Concept
*================================================*/
.topConcept {
  position: relative;
  padding-top: min(120px, 9.375vw);
  overflow: hidden;
}
@media only screen and (max-width: 959px) {
  .topConcept {
    padding-block: 160px 60px;
  }
}

/*------------ 上部：散らし配置ステージ（1372×1112基準の%絶対配置） ------------*/
.topConceptStage {
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 1372/1112;
}
@media only screen and (max-width: 959px) {
  .topConceptStage {
    aspect-ratio: auto;
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 15px;
  }
}

.topConcept__photo {
  position: absolute;
  overflow: hidden;
}
.topConcept__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.topConcept__photo--01 {
  left: 1.46%;
  top: 0;
  width: 18.7%;
  aspect-ratio: 257/154;
  border-radius: 6px;
}
.topConcept__photo--02 {
  left: 43.4%;
  top: 3.1%;
  width: 56.6%;
  aspect-ratio: 733/438;
  border-radius: 6px;
}
.topConcept__photo--03 {
  left: 70.4%;
  top: 79.6%;
  width: 24.4%;
  aspect-ratio: 335/227;
  border-radius: 6px;
}
.topConcept__photo--04 {
  left: 0;
  top: 63.4%;
  width: 38.2%;
  aspect-ratio: 524/322;
  border-radius: 6px;
}
@media only screen and (max-width: 959px) {
  .topConcept__photo {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .topConcept__photo--01 {
    left: -1.54%;
    top: -10%;
    width: 38.7%;
  }
  .topConcept__photo--02 {
    position: static;
    width: 80%;
    margin-left: auto;
    margin-right: -15px;
  }
  .topConcept__photo--03 {
    left: 58.4%;
    top: 7.6%;
    width: 46.4%;
  }
  .topConcept__photo--04 {
    position: static;
    margin-top: 15px;
    width: 65%;
    margin-left: -15px;
  }
}

.topConcept__head {
  position: absolute;
  left: 8.45%;
  top: 16.4%;
  width: 38%;
  z-index: 2;
}
@media only screen and (max-width: 959px) {
  .topConcept__head {
    position: static;
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 24px;
  }
}

.topConcept__eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 18px;
  margin-bottom: min(40px, 3.125vw);
  color: var(--accentTaupe);
}
@media only screen and (max-width: 767px) {
  .topConcept__eyebrow {
    gap: 12px;
    margin-bottom: 20px;
  }
}

.topConcept__eyebrowEn {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .topConcept__eyebrowEn {
    font-size: clamp(12px, 1.25vw, 16px);
  }
}

.topConcept__eyebrowJp {
  font-size: clamp(12px, 1.71875vw, 22px);
  font-weight: 600;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .topConcept__eyebrowJp {
    font-size: clamp(12px, 1.40625vw, 18px);
  }
}

.topConcept__title {
  line-height: 1.6;
  letter-spacing: 0.13em;
}

.topConcept__body {
  position: absolute;
  left: 44.9%;
  top: 48.6%;
  width: 37%;
  z-index: 2;
}
@media only screen and (max-width: 959px) {
  .topConcept__body {
    position: static;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 24px;
  }
}
.topConcept__body p {
  font-size: clamp(16px, 1.40625vw, 18px);
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: var(--textMain);
}
.topConcept__body p + p {
  margin-top: 1.4em;
}
@media only screen and (max-width: 767px) {
  .topConcept__body p {
    font-size: 15px;
    line-height: 1.9;
  }
}

/*------------ 下部：円形写真＋est.1956 マーキー ------------*/
.topConcept__marquee {
  position: relative;
  margin-top: min(40px, 3.125vw);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .topConcept__marquee {
    margin-top: 30px;
  }
}

.topConcept__circles {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.topConcept__circleSet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(61px, 4.765625vw);
  padding-right: min(61px, 4.765625vw);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-animation: topMarqueeLeft 60s linear infinite;
          animation: topMarqueeLeft 60s linear infinite;
}
@media only screen and (max-width: 767px) {
  .topConcept__circleSet {
    gap: 12px;
    padding-right: 12px;
  }
}

.topConcept__circle {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.topConcept__circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.topConcept__circle:nth-child(1) {
  width: min(251px, 19.609375vw);
}
.topConcept__circle:nth-child(2) {
  width: min(358px, 27.96875vw);
}
.topConcept__circle:nth-child(3) {
  width: min(271px, 21.171875vw);
}
.topConcept__circle:nth-child(4) {
  width: min(358px, 27.96875vw);
}
@media only screen and (max-width: 767px) {
  .topConcept__circle:nth-child(1) {
    width: 100px;
  }
  .topConcept__circle:nth-child(2) {
    width: 150px;
  }
  .topConcept__circle:nth-child(3) {
    width: 100px;
  }
  .topConcept__circle:nth-child(4) {
    width: 150px;
  }
}

.topConcept__est {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-top: min(-60px, -4.6875vw);
}
@media only screen and (max-width: 767px) {
  .topConcept__est {
    margin-top: -20px;
  }
}

.topConcept__estTxt {
  font-size: clamp(12px, 9.140625vw, 117px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
  color: var(--crumbGray);
  padding-right: 0.2em;
  -webkit-animation: topMarqueeLeft 68s linear infinite;
          animation: topMarqueeLeft 68s linear infinite;
}
@media only screen and (max-width: 767px) {
  .topConcept__estTxt {
    font-size: 42px;
  }
}

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

@keyframes topMarqueeLeft {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/*==================================================
 * TOP / Reason
*================================================*/
.topReason {
  padding-block: min(60px, 4.6875vw);
}
@media only screen and (max-width: 767px) {
  .topReason {
    padding-block: 40px;
  }
}

.topReason__panel {
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  border-radius: 20px;
  padding: min(80px, 6.25vw) min(40px, 3.125vw);
}
@media only screen and (max-width: 767px) {
  .topReason__panel {
    padding: 40px 20px;
    border-radius: 12px;
  }
}

.topReason__head {
  text-align: center;
}

.topReason__en {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accentBlue);
  margin-bottom: min(20px, 1.5625vw);
}
@media only screen and (max-width: 767px) {
  .topReason__en {
    font-size: clamp(18px, 1.875vw, 24px);
  }
}

.topReason__title {
  text-align: center;
  letter-spacing: 0.13em;
}

.topReason__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(17px, 1.328125vw);
  margin-top: min(46px, 3.59375vw);
}
@media only screen and (max-width: 767px) {
  .topReason__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.topReasonCard {
  background-color: var(--white);
  border-radius: 14px;
  padding: min(40px, 3.125vw) min(20px, 1.5625vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(30px, 2.34375vw);
  text-align: center;
}
.topReasonCard__no {
  font-size: clamp(20px, 3.125vw, 40px);
  font-weight: 700;
  line-height: 1;
  color: var(--accentBlue);
}
.topReasonCard__img {
  width: 100%;
}
.topReasonCard__img img {
  width: 100%;
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  .topReasonCard__img {
    aspect-ratio: 1/0.7;
    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;
  }
}
.topReasonCard__title {
  width: 100%;
  text-align: center;
  font-size: clamp(18px, 1.71875vw, 22px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--titleBlack);
}
@media print, screen and (min-width: 768px) {
  .topReasonCard:not(:nth-child(2)) .topReasonCard__title {
    padding-top: 0.7em;
  }
}

.topReason__btn {
  text-align: center;
  margin-top: min(42px, 3.28125vw);
}

/*==================================================
 * TOP / Business
*================================================*/
.topBusiness {
  padding-block: min(80px, 6.25vw) 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .topBusiness {
    padding-block: 50px;
  }
}

/*------------ マーキー（テキスト＋イラストアイコン） ------------*/
.topBusiness__marquee {
  margin-bottom: min(100px, 7.8125vw);
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  display: grid;
  gap: 40px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .topBusiness__marquee {
    margin-bottom: 36px;
  }
}

.topBusiness__marqueeText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}

.topBusiness__marqueeTxt {
  font-size: clamp(36px, 5.46875vw, 70px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--crumbGray);
  -webkit-animation: topMarqueeLeft 51s linear infinite;
          animation: topMarqueeLeft 51s linear infinite;
}

.topBusiness__marqueeIcons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  margin-top: min(-6px, -0.46875vw);
}

.topBusiness__iconSet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-animation: topMarqueeLeft 77s linear infinite;
          animation: topMarqueeLeft 77s linear infinite;
}
.topBusiness__iconSet img {
  width: min(140px, 137.2549019608vw);
  height: auto;
  margin: 0 min(22px, 1.71875vw);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .topBusiness__iconSet img {
    margin: 0 12px;
    width: 90px;
  }
}

.topBusinessInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(46px, 3.59375vw);
  padding-block: min(110px, 8.59375vw);
  position: relative;
  z-index: 1;
}
.topBusinessInner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  width: 100vw;
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  z-index: -1;
}
.topBusinessInner::after {
  content: "";
  position: absolute;
  --domeH: min(160px, 12.5vw);
  top: calc(var(--domeH) * -1);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  clip-path: ellipse(55% 100% at 50% 100%);
  height: var(--domeH);
  width: 100vw;
  z-index: -1;
}
@media only screen and (max-width: 959px) {
  .topBusinessInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 40px;
  }
}

.topBusiness__lead {
  width: min(372px, 29.0625vw);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 959px) {
  .topBusiness__lead {
    width: 100%;
  }
}

.topBusiness__title {
  margin-top: min(30px, 2.34375vw);
  line-height: 1.4;
}

/*------------ 番号タブ ------------*/
.topBusiness__nums {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: min(40px, 3.125vw);
}

.topBusinessNum {
  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: 61px;
  height: 61px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--white);
  -webkit-box-shadow: 0 3px 10px rgba(109, 95, 74, 0.12);
          box-shadow: 0 3px 10px rgba(109, 95, 74, 0.12);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topBusinessNum span {
  font-size: clamp(16px, 1.953125vw, 25px);
  font-weight: 600;
  letter-spacing: 0.07em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topBusinessNum--olive span {
  color: var(--accentOlive);
}
.topBusinessNum--terracotta span {
  color: var(--accentTerracotta);
}
.topBusinessNum--gold span {
  color: var(--accentGold);
}
.topBusinessNum--blue span {
  color: var(--accentBlue);
}
.topBusinessNum.is-active span {
  color: var(--white);
}
.topBusinessNum.is-active.topBusinessNum--olive {
  background-color: var(--accentOlive);
}
.topBusinessNum.is-active.topBusinessNum--terracotta {
  background-color: var(--accentTerracotta);
}
.topBusinessNum.is-active.topBusinessNum--gold {
  background-color: var(--accentGold);
}
.topBusinessNum.is-active.topBusinessNum--blue {
  background-color: var(--accentBlue);
}
@media only screen and (max-width: 767px) {
  .topBusinessNum {
    width: 52px;
    height: 52px;
  }
}

.topBusiness__btn {
  margin-top: min(40px, 3.125vw);
}

/*------------ 詳細カード（タブ切替・フェードスライド） ------------*/
.topBusinessPanels {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: min(630px, 49.21875vw);
  min-width: 0;
}
@media only screen and (max-width: 959px) {
  .topBusinessPanels {
    width: 100%;
  }
}

.topBusinessCard {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 5px 25px rgba(109, 95, 74, 0.15);
          box-shadow: 0 5px 25px rgba(109, 95, 74, 0.15);
  border-radius: 7px;
  opacity: 0;
  -webkit-transition: opacity 0.45s ease;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.topBusinessCard.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (max-width: 767px) {
  .topBusinessCard {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.topBusinessCard__strip {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  color: var(--white);
  border-radius: 7px 0 0 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding-block: 20px;
}
@media only screen and (max-width: 767px) {
  .topBusinessCard__strip {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-radius: 7px 7px 0 0;
  }
}
.topBusinessCard__stripEn {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.topBusinessCard__stripNo {
  font-size: 43px;
  font-weight: 600;
  line-height: 1;
}
.topBusinessCard__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
}
.topBusinessCard__img img {
  width: 100%;
  height: min(304px, 23.75vw);
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  border-radius: 0 7px 0 0;
}
@media only screen and (max-width: 767px) {
  .topBusinessCard__img img {
    height: 220px;
    border-radius: 0;
  }
}
.topBusinessCard__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: var(--white);
  padding: min(25px, 1.953125vw) min(30px, 2.34375vw);
  border-radius: 0 0 7px 0;
}
@media only screen and (max-width: 767px) {
  .topBusinessCard__info {
    padding: 24px 20px;
  }
}
.topBusinessCard__title {
  font-size: clamp(12px, 2.1875vw, 28px);
  font-weight: 600;
  letter-spacing: 0.13em;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .topBusinessCard__title {
    font-size: 22px;
  }
}
.topBusinessCard__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-block: min(16px, 1.25vw);
}
.topBusinessCard__tags li {
  color: var(--white);
  font-size: clamp(12px, 1.09375vw, 14px);
  font-weight: 600;
  letter-spacing: 0.13em;
  padding: 7px 16px;
  border-radius: 20px;
}
.topBusinessCard__desc {
  position: relative;
  padding-left: 1.2em;
  font-size: clamp(12px, 1.40625vw, 18px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
  color: var(--titleBlack);
}
.topBusinessCard__desc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .topBusinessCard__desc {
    font-size: 15px;
  }
}

.topBusinessCard--blue .topBusinessCard__strip {
  background-color: var(--accentBlue);
}
.topBusinessCard--blue .topBusinessCard__tags li {
  background-color: var(--accentBlue);
}
.topBusinessCard--blue .topBusinessCard__desc::before {
  background-color: var(--accentBlue);
}

.topBusinessCard--gold .topBusinessCard__strip {
  background-color: var(--accentGold);
}
.topBusinessCard--gold .topBusinessCard__tags li {
  background-color: var(--accentGold);
}
.topBusinessCard--gold .topBusinessCard__desc::before {
  background-color: var(--accentGold);
}

.topBusinessCard--olive .topBusinessCard__strip {
  background-color: var(--accentOlive);
}
.topBusinessCard--olive .topBusinessCard__tags li {
  background-color: var(--accentOlive);
}
.topBusinessCard--olive .topBusinessCard__desc::before {
  background-color: var(--accentOlive);
}

.topBusinessCard--terracotta .topBusinessCard__strip {
  background-color: var(--accentTerracotta);
}
.topBusinessCard--terracotta .topBusinessCard__tags li {
  background-color: var(--accentTerracotta);
}
.topBusinessCard--terracotta .topBusinessCard__desc::before {
  background-color: var(--accentTerracotta);
}

.topBusinessCard--taupe .topBusinessCard__strip {
  background-color: var(--accentTaupe);
}
.topBusinessCard--taupe .topBusinessCard__tags li {
  background-color: var(--accentTaupe);
}
.topBusinessCard--taupe .topBusinessCard__desc::before {
  background-color: var(--accentTaupe);
}

/*==================================================
 * TOP / Recruit・Staff・Company（下層導線）
*================================================*/
.topLower {
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  border-radius: 50px 50px 0 0;
  padding-block: min(110px, 8.59375vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(120px, 9.375vw);
}
@media only screen and (max-width: 767px) {
  .topLower {
    border-radius: 24px 24px 0 0;
    padding-block: 60px;
    gap: 70px;
  }
}

/*------------ セクション共通：英＋和の見出し ------------*/
.topSecEyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 18px;
  margin-bottom: min(40px, 3.125vw);
}
.topSecEyebrow .fontEn {
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.topSecEyebrow__jp {
  font-size: clamp(18px, 1.71875vw, 22px);
  font-weight: 600;
  letter-spacing: 0.15em;
}
.topSecEyebrow--terracotta {
  color: var(--accentTerracotta);
}
.topSecEyebrow--gold {
  color: var(--accentGold);
}
.topSecEyebrow--olive {
  color: var(--accentOlive);
}
@media only screen and (max-width: 767px) {
  .topSecEyebrow {
    gap: 12px;
    margin-bottom: 20px;
  }
  .topSecEyebrow .fontEn {
    font-size: 16px;
  }
  .topSecEyebrow__jp {
    font-size: 18px;
  }
}

/*------------ Recruit ------------*/
.topRecruitInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(40px, 3.125vw);
}
@media only screen and (max-width: 959px) {
  .topRecruitInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.topRecruit__body {
  width: 48%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 959px) {
  .topRecruit__body {
    width: 100%;
  }
}

.topRecruit__title {
  margin-bottom: min(24px, 1.875vw);
}

.topRecruit__lead {
  margin-bottom: min(40px, 3.125vw);
}

.topRecruit__menu {
  background-color: var(--white);
  border-radius: 12px;
  -webkit-box-shadow: 5px 5px 15px rgba(109, 95, 74, 0.18);
          box-shadow: 5px 5px 15px rgba(109, 95, 74, 0.18);
  padding: min(40px, 3.125vw) min(50px, 3.90625vw);
  margin-bottom: min(40px, 3.125vw);
}
@media (min-width: 960px) {
  .topRecruit__menu {
    margin-left: min(0px, 565px - 50vw);
    margin-right: 90px;
    padding-left: calc(min(150px, 11.71875vw) + max(0px, 50vw - 565px));
  }
}
.topRecruit__menu .topMenuList li:last-child {
  margin-bottom: 0;
}

.topRecruit__btn {
  text-align: center;
}

.topRecruit__visual {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(20px, 1.5625vw);
}
@media print, screen and (min-width: 768px) {
  .topRecruit__visual {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 42.65625%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 959px) {
  .topRecruit__visual {
    width: 100%;
    gap: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .topRecruit__visual {
    display: block;
    padding-block: 26px;
    margin-inline: -15px;
    width: 100vw;
  }
}

/*------------ Recruit 写真マーキー（Swiper） ------------*/
.topRecruitPhSwiper {
  width: 100%;
}
@media (min-width: 960px) {
  .topRecruitPhSwiper .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: min(20px, 1.5625vw);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .topRecruitPhSwiper .topRecruitPh {
    width: 100%;
    max-width: 375px;
    height: auto;
    aspect-ratio: 374/374;
  }
  .topRecruitPhSwiper .topRecruitPh--01 {
    aspect-ratio: 374/372.79;
  }
}
@media (max-width: 959px) {
  .topRecruitPhSwiper .swiper-wrapper {
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
  }
  .topRecruitPhSwiper .topRecruitPh {
    width: 68vw;
    height: auto;
    aspect-ratio: 374/260;
    -webkit-box-shadow: 0 8px 20px rgba(109, 95, 74, 0.18);
            box-shadow: 0 8px 20px rgba(109, 95, 74, 0.18);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topRecruitPhSwiper .topRecruitPh {
    width: 40vw;
  }
}

.topRecruitPh {
  overflow: hidden;
  border-radius: 16px;
}
.topRecruitPh img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  display: block;
}

.topRecruitIl {
  position: absolute;
  z-index: 2;
}
.topRecruitIl img {
  width: 100%;
  height: auto;
  margin: 0;
}
.topRecruitIl--01 {
  left: 0;
  top: 0;
  width: 39%;
}
.topRecruitIl--02 {
  left: 72.5%;
  top: 35.5%;
  width: 27.5%;
}
.topRecruitIl--03 {
  left: 70.9%;
  top: 74.3%;
  width: 27.5%;
}
.topRecruitIl--04 {
  left: 0;
  top: 69.5%;
  width: 32%;
}
@media only screen and (max-width: 959px) {
  .topRecruitIl {
    display: block;
    z-index: 3;
    pointer-events: none;
  }
  .topRecruitIl img {
    width: 100%;
  }
  .topRecruitIl--01 {
    left: -6px;
    top: -6px;
    width: 20%;
  }
  .topRecruitIl--02 {
    right: 0px;
    top: -36px;
    width: 11%;
  }
  .topRecruitIl--03 {
    left: auto;
    right: 4%;
    top: auto;
    bottom: -8px;
    width: 18%;
  }
  .topRecruitIl--04 {
    left: 22px;
    top: auto;
    bottom: -6px;
    width: 20%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topRecruitIl--01 {
    left: -16px;
    top: -66px;
    width: 15%;
  }
  .topRecruitIl--02 {
    left: auto;
    right: 12px;
    top: -66px;
    width: 18%;
  }
  .topRecruitIl--03 {
    left: auto;
    right: 4%;
    top: auto;
    bottom: -48px;
    width: 14%;
  }
  .topRecruitIl--04 {
    left: 32px;
    top: auto;
    bottom: -26px;
    width: 14%;
  }
}

/*------------ Staff ------------*/
.topStaff__card {
  background-color: var(--white);
  border-radius: 30px;
  padding: min(70px, 5.46875vw) min(70px, 5.46875vw) min(90px, 7.03125vw) min(110px, 8.59375vw);
  -webkit-box-shadow: 0 5px 25px rgba(109, 95, 74, 0.08);
          box-shadow: 0 5px 25px rgba(109, 95, 74, 0.08);
}
@media only screen and (max-width: 767px) {
  .topStaff__card {
    padding: 40px 20px;
    border-radius: 16px;
  }
}

.topStaff__top {
  position: relative;
  margin-bottom: min(60px, 4.6875vw);
}

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

.topStaff__title {
  margin-bottom: min(24px, 1.875vw);
}

.topStaff__illusts {
  position: absolute;
  right: -110px;
  top: -130px;
  width: 70%;
  aspect-ratio: 654/408;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topStaff__illusts {
    right: -60px;
    top: -100px;
    width: 55%;
  }
}
@media only screen and (max-width: 767px) {
  .topStaff__illusts {
    right: -20px;
    top: -80px;
  }
}

.topStaffIl {
  position: absolute;
}
.topStaffIl img {
  width: 100%;
  height: auto;
  margin: 0;
}
.topStaffIl--01 {
  left: 0;
  top: 0;
  width: 23%;
}
.topStaffIl--02 {
  left: 24%;
  top: 33%;
  width: 21%;
}
.topStaffIl--03 {
  left: 55%;
  top: 47%;
  width: 21%;
}
.topStaffIl--04 {
  left: 83%;
  top: 72%;
  width: 17%;
}

.topStaffInterview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(86px, 6.71875vw);
}
@media only screen and (max-width: 959px) {
  .topStaffInterview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.topStaffInterview__photo {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(428px, 33.4375vw);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 20px;
  background-color: #f7f4e9;
}
.topStaffInterview__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.topStaffInterview__photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(164, 145, 112, 0.9)), to(rgba(164, 145, 112, 0)));
  background: linear-gradient(0deg, rgba(164, 145, 112, 0.9) 0%, rgba(164, 145, 112, 0) 100%);
  pointer-events: none;
}
@media only screen and (max-width: 959px) {
  .topStaffInterview__photo {
    width: 100%;
    max-width: 360px;
  }
}
.topStaffInterview__pager {
  position: absolute;
  right: 22px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
  font-size: clamp(22px, 3.125vw, 40px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
.topStaffInterview__pager span {
  font-size: 20px;
  margin-inline: 6px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .topStaffInterview__pager span {
    font-size: 16px;
  }
}
.topStaffInterview__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.topStaffInterview__no {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accentGold);
  margin-bottom: min(20px, 1.5625vw);
}
.topStaffInterview__title {
  font-size: clamp(12px, 2.1875vw, 28px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--titleBlack);
  margin-bottom: min(24px, 1.875vw);
}
@media only screen and (max-width: 767px) {
  .topStaffInterview__title {
    font-size: 21px;
  }
}
.topStaffInterview__name {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  color: var(--titleBlack);
  margin-bottom: 12px;
}
.topStaffInterview__career {
  display: inline-block;
  background-color: var(--accentGold);
  color: var(--white);
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  padding: 0.4em 1.3em;
  line-height: 1;
  border-radius: 20px;
  margin-bottom: min(30px, 2.34375vw);
}
.topStaffInterview + .topStaffInterview {
  margin-top: 60px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 959px) {
  .topStaffInterview + .topStaffInterview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

/*------------ Company ------------*/
.topCompany__card {
  background-color: var(--white);
  border-radius: 30px;
  padding: min(110px, 8.59375vw) min(70px, 5.46875vw) min(110px, 8.59375vw) min(110px, 8.59375vw);
  -webkit-box-shadow: 0 5px 25px rgba(109, 95, 74, 0.08);
          box-shadow: 0 5px 25px rgba(109, 95, 74, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: min(65px, 5.078125vw);
}
@media only screen and (max-width: 959px) {
  .topCompany__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 40px;
    padding: 40px 20px;
    border-radius: 16px;
  }
}

.topCompany__left {
  width: min(519px, 40.546875vw);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 959px) {
  .topCompany__left {
    width: 100%;
  }
}

.topCompany__head {
  margin-bottom: min(40px, 3.125vw);
}

.topCompany__title {
  line-height: 1.5;
}

.topCompany__photos {
  position: relative;
  width: 100%;
  aspect-ratio: 519/375;
}
@media only screen and (max-width: 959px) {
  .topCompany__photos {
    aspect-ratio: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .topCompany__photos {
    padding-block: 60px 40px;
  }
}

.topCompanyPh {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
}
.topCompanyPh img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.topCompanyPh--01 {
  left: 55%;
  top: 10%;
  width: 45%;
  height: 61%;
}
.topCompanyPh--02 {
  left: 11%;
  top: 61%;
  width: 42%;
  height: 39%;
}
.topCompanyPh--03 {
  left: 0;
  top: 0;
  width: 44%;
  height: 33%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topCompanyPh {
    position: absolute;
  }
  .topCompanyPh--01 {
    position: static;
    margin-inline: auto;
    width: 30%;
  }
  .topCompanyPh--02 {
    left: 67%;
    top: 23%;
    width: 27%;
    height: auto;
  }
  .topCompanyPh--03 {
    left: 6%;
    top: 0%;
    width: 26%;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .topCompanyPh {
    position: absolute;
  }
  .topCompanyPh--01 {
    position: static;
    margin-inline: auto;
    width: 65%;
  }
  .topCompanyPh--02 {
    left: 64%;
    top: 73%;
  }
  .topCompanyPh--03 {
    left: 0;
    top: 0;
  }
}

.topCompany__right {
  position: relative;
  width: min(443px, 34.609375vw);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 959px) {
  .topCompany__right {
    width: 100%;
  }
}

.topCompany__menu {
  position: relative;
  z-index: 2;
  width: min(308px, 24.0625vw);
  margin-inline: auto;
  background-color: var(--white);
  border-radius: 12px;
  -webkit-box-shadow: 5px 5px 20px rgba(109, 95, 74, 0.18);
          box-shadow: 5px 5px 20px rgba(109, 95, 74, 0.18);
  padding: min(50px, 3.90625vw) min(52px, 4.0625vw) min(48px, 3.75vw);
}
@media only screen and (max-width: 959px) {
  .topCompany__menu {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .topCompany__menu {
    margin-block: 60px;
  }
}
.topCompany__menu .topMenuList li:last-child {
  margin-bottom: 0;
}

.topCompany__btn {
  position: relative;
  z-index: 2;
  margin-top: min(40px, 3.125vw);
  text-align: center;
}

.topCompanyIl {
  position: absolute;
  z-index: 3;
}
.topCompanyIl img {
  width: 100%;
  height: auto;
  margin: 0;
}
.topCompanyIl--01 {
  right: 9%;
  top: -28%;
  width: 31%;
}
.topCompanyIl--02 {
  left: -6%;
  top: 42%;
  width: 28%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topCompanyIl--01 {
    right: -2%;
    top: -33%;
    width: 21%;
  }
  .topCompanyIl--02 {
    left: -6%;
    top: 54%;
    width: 18%;
  }
}
@media only screen and (max-width: 767px) {
  .topCompanyIl--01 {
    right: -7%;
    top: 5%;
  }
  .topCompanyIl--02 {
    left: -6%;
    top: 54%;
  }
}

/*==================================================
 * 会社案内ページ
*================================================*/
/*------------ FV / 会社案内 ------------*/
.companyFv {
  position: relative;
  overflow: hidden;
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
}
.companyFv__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  min-height: min(828px, 64.6875vw);
}
.companyFv__head {
  position: absolute;
  z-index: 2;
  top: min(190px, 14.84375vw);
  left: min(114px, 8.90625vw);
}
.companyFv__en {
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--accentBlue);
}
.companyFv__title {
  margin-top: min(36px, 2.8125vw);
  font-size: clamp(32px, 4.6875vw, 60px);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.16;
  color: var(--titleBlack);
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .companyFv__title {
    font-size: clamp(12px, 4.6875vw, 60px);
  }
}
.companyFv .breadcrumbs {
  margin-top: min(56px, 4.375vw);
}
.companyFv__photos {
  position: absolute;
  z-index: 1;
  top: min(192px, 15vw);
  left: min(530px, 41.40625vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(23px, 1.796875vw);
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.companyFv__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 min(307px, 23.984375vw);
          flex: 0 0 min(307px, 23.984375vw);
  width: min(307px, 23.984375vw);
  aspect-ratio: 307/236;
  position: relative;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  will-change: transform;
}
.companyFv__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
  border-radius: min(12px, 0.9375vw);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.companyFv__photo img.is-back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.companyFv__icons {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: min(80px, 6.25vw);
  width: 100%;
  overflow: hidden;
}
.companyFv__iconsTrack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: fvIconsMarquee 40s linear infinite;
          animation: fvIconsMarquee 40s linear infinite;
  will-change: transform;
}
.companyFv__iconSet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: min(46px, 3.59375vw);
  padding-right: min(46px, 3.59375vw);
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.companyFv__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  margin: 0;
}
.companyFv__icon img {
  height: auto;
  display: block;
  margin: 0;
}
.companyFv__icon--1 img {
  width: min(188px, 14.6875vw);
}
.companyFv__icon--2 img {
  width: min(150px, 11.71875vw);
}
.companyFv__icon--3 img {
  width: min(150px, 11.71875vw);
}
.companyFv__icon--4 img {
  width: min(138px, 10.78125vw);
}
.companyFv__icon--5 img {
  width: min(150px, 11.71875vw);
}
.companyFv__icon--6 img {
  width: min(138px, 10.78125vw);
}
.companyFv__icon--7 img {
  width: min(138px, 10.78125vw);
}
.companyFv__icon--8 img {
  width: min(164px, 12.8125vw);
}
.companyFv__icon--9 img {
  width: min(170px, 13.28125vw);
}
.companyFv__icon--1 {
  margin-top: min(0px, 0vw);
}
.companyFv__icon--2 {
  margin-top: min(94px, 7.34375vw);
}
.companyFv__icon--3 {
  margin-top: min(20px, 1.5625vw);
}
.companyFv__icon--4 {
  margin-top: min(105px, 8.203125vw);
}
.companyFv__icon--5 {
  margin-top: min(25px, 1.953125vw);
}
.companyFv__icon--6 {
  margin-top: min(108px, 8.4375vw);
}
.companyFv__icon--7 {
  margin-top: min(41px, 3.203125vw);
}
.companyFv__icon--8 {
  margin-top: min(99px, 7.734375vw);
}
.companyFv__icon--9 {
  margin-top: min(13px, 1.015625vw);
}
@media only screen and (max-width: 959px) {
  .companyFv {
    padding-top: 90px;
  }
  .companyFv__inner {
    min-height: 0;
  }
  .companyFv__head {
    position: static;
    padding: 0 25px;
  }
  .companyFv__title {
    margin-top: 14px;
  }
  .companyFv .breadcrumbs {
    margin-top: 18px;
  }
  .companyFv__photos {
    position: static;
    margin-top: 28px;
    padding-left: 25px;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .companyFv__photos::-webkit-scrollbar {
    display: none;
  }
  .companyFv__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 56vw;
            flex: 0 0 56vw;
    width: 56vw;
    border-radius: 10px;
  }
  .companyFv__icons {
    position: static;
    bottom: auto;
    margin-top: 32px;
  }
  .companyFv__iconSet {
    gap: 16px;
    padding-right: 16px;
  }
  .companyFv__icon--1 img {
    width: auto;
    height: 75px;
  }
  .companyFv__icon--2 img {
    width: auto;
    height: 75px;
  }
  .companyFv__icon--3 img {
    width: auto;
    height: 75px;
  }
  .companyFv__icon--4 img {
    width: auto;
    height: 75px;
  }
  .companyFv__icon--5 img {
    width: auto;
    height: 75px;
  }
  .companyFv__icon--6 img {
    width: auto;
    height: 75px;
  }
  .companyFv__icon--7 img {
    width: auto;
    height: 75px;
  }
  .companyFv__icon--8 img {
    width: auto;
    height: 75px;
  }
  .companyFv__icon--9 img {
    width: auto;
    height: 75px;
  }
}

@-webkit-keyframes fvIconsMarquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes fvIconsMarquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .companyFv__iconsTrack,
  .serviceFv__iconsTrack {
    -webkit-animation: none;
            animation: none;
  }
}
/*------------ セクション見出し（EN + 大見出し） ------------*/
.companySecHead__en {
  display: block;
  font-size: clamp(18px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: min(20px, 1.5625vw);
  color: var(--accentTaupe);
}
@media only screen and (max-width: 767px) {
  .companySecHead__en {
    font-size: clamp(14px, 1.25vw, 16px);
  }
}
.companySecHead__en--taupe {
  color: var(--accentTaupe);
}
.companySecHead__en--olive {
  color: var(--accentOlive);
}
.companySecHead__title {
  font-size: clamp(28px, 3.359375vw, 43px);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.2;
  color: var(--titleBlack);
}

/*------------ Message / 代表挨拶 ------------*/
.companyMessage {
  padding-top: min(120px, 9.375vw);
}
@media only screen and (max-width: 767px) {
  .companyMessage {
    padding-top: 60px;
  }
}

.companyMessage__head {
  margin-bottom: min(49px, 3.828125vw);
}

.companyMessage__title {
  font-size: clamp(28px, 3.359375vw, 43px);
  font-weight: 600;
  line-height: 1.63;
  letter-spacing: 0.03em;
  color: var(--titleBlack);
  margin-top: min(36px, 2.8125vw);
}

.companyMessage__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(79px, 6.171875vw);
}
@media only screen and (max-width: 959px) {
  .companyMessage__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.companyMessage__portrait {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(470px, 36.71875vw);
  aspect-ratio: 470/627;
  overflow: hidden;
  border-radius: 24px;
}
.companyMessage__portrait img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  margin: 0;
}
@media only screen and (max-width: 959px) {
  .companyMessage__portrait {
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
    border-radius: 20px;
  }
}

.companyMessage__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.companyMessage__text p {
  font-size: clamp(14px, 1.40625vw, 18px);
  font-weight: 600;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--textMain);
}
.companyMessage__text p + p {
  margin-top: 1.2em;
}
@media only screen and (max-width: 767px) {
  .companyMessage__text p {
    font-size: 15px;
    line-height: 1.9;
  }
}

.companyMessage__sign {
  text-align: right;
  margin-top: 1.6em !important;
}
.companyMessage__sign span {
  font-weight: 600;
  font-size: clamp(16px, 1.5625vw, 20px);
}

/*------------ History / 沿革 ------------*/
.companyHistory {
  position: relative;
  overflow: hidden;
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  margin-top: min(120px, 9.375vw);
  padding-top: min(150px, 11.71875vw);
  padding-bottom: min(120px, 9.375vw);
  border-top-left-radius: 50% min(160px, 12.5vw);
  border-top-right-radius: 50% min(160px, 12.5vw);
}
@media only screen and (max-width: 959px) {
  .companyHistory {
    margin-top: 60px;
    padding-top: 70px;
    padding-bottom: 60px;
    border-top-left-radius: 50% 30px;
    border-top-right-radius: 50% 30px;
  }
}

.companyHistory__head {
  text-align: center;
  margin-bottom: min(70px, 5.46875vw);
}

.companyHistory__en {
  display: block;
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--accentTaupe);
}

.companyHistory__title {
  font-size: clamp(28px, 3.359375vw, 43px);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  color: var(--titleBlack);
  margin-top: min(14px, 1.09375vw);
}

/*------------ タイムライン（各項目バラ組み） ------------*/
.cTimeline {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}
.cTimeline__line {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 30.703125%;
  border-left: 2px dashed var(--crumbGray);
}
@media only screen and (max-width: 959px) {
  .cTimeline__line {
    left: 16px;
  }
}
.cTimeline__lineFill {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 30.703125%;
  width: 4px;
  margin-left: -1px;
  background-color: var(--accentTaupe);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}
@media only screen and (max-width: 959px) {
  .cTimeline__lineFill {
    left: 16px;
    width: 3px;
  }
}

.cTl {
  position: relative;
  width: 100%;
}
.cTl__year {
  position: absolute;
  top: 0;
  left: 11.71875%;
  width: min(181px, 14.140625vw);
}
.cTl__num {
  display: block;
  font-size: clamp(12px, 4.6875vw, 60px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--accentTaupe);
}
.cTl__era {
  display: block;
  margin-top: min(17px, 1.328125vw);
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1;
  color: var(--titleBlack);
}
.cTl__body {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.cTl__title {
  font-size: clamp(12px, 2.34375vw, 30px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.11em;
  color: var(--titleBlack);
}
.cTl__labels {
  margin-top: min(26px, 2.03125vw);
  max-width: 100%;
}
.cTl__desc {
  margin-top: min(35px, 2.734375vw);
  width: min(256px, 20vw);
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 600;
  line-height: 1.875;
  letter-spacing: 0.02em;
  color: var(--titleBlack);
}
.cTl__desc--wide {
  width: min(388px, 30.3125vw);
}
.cTl__labels + .cTl__desc {
  margin-top: min(36px, 2.8125vw);
}
.cTl__vtitle {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: clamp(12px, 2.34375vw, 30px);
  font-weight: 600;
  line-height: 1.67;
  letter-spacing: 0.11em;
  color: var(--titleBlack);
}
.cTl__vdesc {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 600;
  line-height: 1.94;
  letter-spacing: 0.02em;
  color: var(--titleBlack);
}
.cTl__photo {
  position: absolute;
}
.cTl__photo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
.cTl {
  /* ===== 1920 ===== */
}
.cTl--1920 {
  height: min(610px, 47.65625vw);
}
.cTl--1920 .cTl__body {
  left: 35%;
  top: min(136px, 10.625vw);
}
.cTl .cTl__photo--main1920 {
  left: 57.890625%;
  top: min(218px, 17.03125vw);
  width: 42.578125%;
}
.cTl {
  /* ===== 1956 ===== */
}
.cTl--1956 {
  height: min(623px, 48.671875vw);
}
.cTl--1956 .cTl__body {
  left: 46.171875%;
  top: min(64px, 5vw);
}
.cTl .cTl__photo--bleedL1956 {
  left: 0;
  top: min(180px, 14.0625vw);
  width: 41.875%;
}
@media only screen and (min-width: 1280px) {
  .cTl .cTl__photo--bleedL1956 {
    left: calc((1280px - 100vw) / 2);
  }
}
.cTl .cTl__photo--sub1956 {
  left: 71.09375%;
  top: min(288px, 22.5vw);
  width: 28.203125%;
}
.cTl {
  /* ===== 1963 ===== */
}
.cTl--1963 {
  height: min(504px, 39.375vw);
}
.cTl--1963 .cTl__year {
  top: min(37px, 2.890625vw);
}
.cTl--1963 .cTl__body {
  left: 36.09375%;
  top: 0;
}
.cTl .cTl__photo--main1963 {
  left: 65.390625%;
  top: min(101px, 7.890625vw);
  width: 39.6875%;
}
.cTl {
  /* ===== 1966 ===== */
}
.cTl--1966 {
  height: min(612px, 47.8125vw);
}
.cTl--1966 .cTl__body {
  left: 36.09375%;
  top: min(8px, 0.625vw);
}
.cTl .cTl__photo--bleedL1966 {
  left: -0.625%;
  top: min(152px, 11.875vw);
  width: 35.390625%;
}
@media only screen and (min-width: 1280px) {
  .cTl .cTl__photo--bleedL1966 {
    left: calc((1280px - 100vw) / 2);
  }
}
.cTl .cTl__photo--sub1966 {
  left: 66.484375%;
  top: min(141px, 11.015625vw);
  width: 28.75%;
}
.cTl {
  /* ===== 1982（縦書き） ===== */
}
.cTl--1982 {
  height: min(604px, 47.1875vw);
}
.cTl--1982 .cTl__vtitle {
  right: 42.421875%;
  top: min(102px, 7.96875vw);
}
.cTl--1982 .cTl__vdesc {
  right: 53.046875%;
  top: min(106px, 8.28125vw);
}
.cTl .cTl__photo--big1982 {
  left: 63.4375%;
  top: 0;
  width: 42.421875%;
}
.cTl {
  /* ===== 1999 ===== */
}
.cTl--1999 {
  height: min(503px, 39.296875vw);
}
.cTl--1999 .cTl__body {
  left: 65.46875%;
  top: min(55px, 4.296875vw);
}
.cTl .cTl__photo--left1999 {
  left: 21.5625%;
  top: min(60px, 4.6875vw);
  width: 39.53125%;
}
.cTl {
  /* ===== 2007（縦書き） ===== */
}
.cTl--2007 {
  height: min(407px, 31.796875vw);
}
.cTl--2007 .cTl__vtitle {
  right: 46.328125%;
  top: min(45px, 3.515625vw);
}
.cTl--2007 .cTl__vdesc {
  right: 53.046875%;
  top: min(49px, 3.828125vw);
}
.cTl .cTl__photo--big2007 {
  left: 58.984375%;
  top: min(6px, 0.46875vw);
  width: 55.703125%;
}
.cTl {
  /* ===== タブレット〜SP：縦積み ===== */
}
@media only screen and (max-width: 959px) {
  .cTl {
    height: auto !important;
    padding: 0 25px 0 48px;
    margin-bottom: 48px;
  }
  .cTl:last-child {
    margin-bottom: 0;
  }
  .cTl .cTl__year,
  .cTl .cTl__body,
  .cTl .cTl__vbody,
  .cTl .cTl__photo {
    position: static !important;
    width: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
  }
  .cTl .cTl__num {
    font-size: 40px;
  }
  .cTl .cTl__era {
    font-size: 15px;
    margin-top: 6px;
  }
  .cTl .cTl__body {
    margin-top: 16px;
  }
  .cTl .cTl__title {
    font-size: 22px;
    line-height: 1.4;
  }
  .cTl .cTl__label {
    font-size: 18px;
  }
  .cTl .cTl__desc,
  .cTl .cTl__desc--wide {
    width: auto !important;
    margin-top: 16px;
    font-size: 14px;
  }
  .cTl .cTl__vbody {
    margin-top: 16px;
  }
  .cTl .cTl__vtitle,
  .cTl .cTl__vdesc {
    position: static !important;
    -webkit-writing-mode: horizontal-tb !important;
        -ms-writing-mode: lr-tb !important;
            writing-mode: horizontal-tb !important;
    font-size: 21px;
  }
  .cTl .cTl__vtitle {
    display: block;
  }
  .cTl .cTl__vdesc {
    font-size: 14px;
    line-height: 1.9;
    margin-top: 16px;
  }
  .cTl .cTl__photo {
    margin-top: 20px;
    max-width: 360px;
  }
  .cTl .cTl__photo--main1920 {
    max-width: 220px;
    margin-left: auto;
  }
  .cTl .cTl__photo--sub1956 {
    max-width: 200px;
    margin-top: -30px;
    margin-left: auto;
  }
  .cTl .cTl__photo--bleedL1966 {
    max-width: 200px;
    margin-bottom: -50px;
    position: relative !important;
    z-index: 2;
  }
  .cTl .cTl__photo--left1999 {
    max-width: 230px;
    margin-inline: auto;
  }
  .cTl .cTl__photo img {
    width: 100%;
  }
  .cTl .cTl__photo--bleedL1956 {
    max-width: 280px;
  }
}

/*------------ 会社概要 ------------*/
.companyOutline {
  padding-block: min(120px, 9.375vw);
}
@media only screen and (max-width: 767px) {
  .companyOutline {
    padding-block: 60px;
  }
}

.companyOutlineInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(178px, 13.90625vw);
}
@media only screen and (max-width: 959px) {
  .companyOutlineInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.companySecHead--side {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.companyOutlineTable {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 724px;
  padding-top: min(70px, 5.46875vw);
}
@media only screen and (max-width: 959px) {
  .companyOutlineTable {
    padding-top: 0;
  }
}
.companyOutlineTable__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(40px, 3.125vw);
  padding-block: min(32px, 2.5vw);
  border-top: 1px solid var(--crumbGray);
}
.companyOutlineTable__row:last-child {
  border-bottom: 1px solid var(--crumbGray);
}
.companyOutlineTable__row dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(161px, 12.578125vw);
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
  color: var(--titleBlack);
}
.companyOutlineTable__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .companyOutlineTable__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding-block: 18px;
  }
  .companyOutlineTable__row dt {
    width: auto;
  }
  .companyOutlineTable__row dt, .companyOutlineTable__row dd {
    font-size: 14px;
  }
}

.companyOutlineMap {
  margin-top: min(36px, 2.8125vw);
  width: min(508px, 39.6875vw);
  max-width: 100%;
  aspect-ratio: 508/272;
  overflow: hidden;
}
.companyOutlineMap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media only screen and (max-width: 767px) {
  .companyOutlineMap {
    width: 100%;
    aspect-ratio: 16/10;
    margin-top: 16px;
  }
}

/*==================================================
 * 事業内容ページ
*================================================*/
/*------------ FV / 事業内容 ------------*/
.serviceFv {
  position: relative;
  overflow: hidden;
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
}
.serviceFv__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  min-height: min(828px, 64.6875vw);
}
.serviceFv__head {
  position: absolute;
  z-index: 2;
  top: min(190px, 14.84375vw);
  left: min(114px, 8.90625vw);
}
.serviceFv__en {
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--accentOlive);
}
.serviceFv__title {
  margin-top: min(36px, 2.8125vw);
  font-size: clamp(32px, 4.6875vw, 60px);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.16;
  color: var(--titleBlack);
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .serviceFv__title {
    font-size: clamp(12px, 4.6875vw, 60px);
  }
}
.serviceFv .breadcrumbs {
  margin-top: min(56px, 4.375vw);
}
.serviceFv__photos {
  position: absolute;
  z-index: 1;
  top: min(192px, 15vw);
  left: min(530px, 41.40625vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(23px, 1.796875vw);
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.serviceFv__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 min(307px, 23.984375vw);
          flex: 0 0 min(307px, 23.984375vw);
  width: min(307px, 23.984375vw);
  aspect-ratio: 307/236;
  position: relative;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  will-change: transform;
}
.serviceFv__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0;
  border-radius: min(12px, 0.9375vw);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.serviceFv__photo img.is-back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.serviceFv__icons {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: min(80px, 6.25vw);
  width: 100%;
  overflow: hidden;
}
.serviceFv__iconsTrack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: fvIconsMarquee 40s linear infinite;
          animation: fvIconsMarquee 40s linear infinite;
  will-change: transform;
}
.serviceFv__iconSet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: min(46px, 3.59375vw);
  padding-right: min(46px, 3.59375vw);
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.serviceFv__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  margin: 0;
}
.serviceFv__icon img {
  height: auto;
  display: block;
  margin: 0;
}
.serviceFv__icon--1 img {
  width: min(163px, 12.734375vw);
}
.serviceFv__icon--2 img {
  width: min(188px, 14.6875vw);
}
.serviceFv__icon--3 img {
  width: min(201px, 15.703125vw);
}
.serviceFv__icon--4 img {
  width: min(150px, 11.71875vw);
}
.serviceFv__icon--5 img {
  width: min(163px, 12.734375vw);
}
.serviceFv__icon--6 img {
  width: min(163px, 12.734375vw);
}
.serviceFv__icon--7 img {
  width: min(156px, 12.1875vw);
}
.serviceFv__icon--8 img {
  width: min(190px, 14.84375vw);
}
.serviceFv__icon--1 {
  margin-top: min(4px, 0.3125vw);
}
.serviceFv__icon--2 {
  margin-top: min(78px, 6.09375vw);
}
.serviceFv__icon--3 {
  margin-top: min(11px, 0.859375vw);
}
.serviceFv__icon--4 {
  margin-top: min(101px, 7.890625vw);
}
.serviceFv__icon--5 {
  margin-top: min(12px, 0.9375vw);
}
.serviceFv__icon--6 {
  margin-top: min(103px, 8.046875vw);
}
.serviceFv__icon--7 {
  margin-top: min(0px, 0vw);
}
.serviceFv__icon--8 {
  margin-top: min(94px, 7.34375vw);
}
@media only screen and (max-width: 959px) {
  .serviceFv {
    padding-top: 90px;
  }
  .serviceFv__inner {
    min-height: 0;
  }
  .serviceFv__head {
    position: static;
    padding: 0 25px;
  }
  .serviceFv__title {
    margin-top: 14px;
  }
  .serviceFv .breadcrumbs {
    margin-top: 18px;
  }
  .serviceFv__photos {
    position: static;
    margin-top: 28px;
    padding-left: 25px;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .serviceFv__photos::-webkit-scrollbar {
    display: none;
  }
  .serviceFv__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 56vw;
            flex: 0 0 56vw;
    width: 56vw;
    border-radius: 10px;
  }
  .serviceFv__icons {
    position: static;
    bottom: auto;
    margin-top: 32px;
  }
  .serviceFv__iconSet {
    gap: 16px;
    padding-right: 16px;
  }
  .serviceFv__icon--1 img {
    width: auto;
    height: 56px;
  }
  .serviceFv__icon--2 img {
    width: auto;
    height: 56px;
  }
  .serviceFv__icon--3 img {
    width: auto;
    height: 56px;
  }
  .serviceFv__icon--4 img {
    width: auto;
    height: 56px;
  }
  .serviceFv__icon--5 img {
    width: auto;
    height: 56px;
  }
  .serviceFv__icon--6 img {
    width: auto;
    height: 56px;
  }
  .serviceFv__icon--7 img {
    width: auto;
    height: 56px;
  }
  .serviceFv__icon--8 img {
    width: auto;
    height: 56px;
  }
}

/*------------ セクション共通見出し（.commonSecHead と同一定義を再利用） ------------*/
.serviceInfoEn {
  display: block;
  font-size: clamp(18px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: min(20px, 1.5625vw);
  color: var(--accentTaupe);
}
@media only screen and (max-width: 767px) {
  .serviceInfoEn {
    font-size: clamp(14px, 1.25vw, 16px);
  }
}
.serviceInfoEn--terracotta {
  color: var(--accentTerracotta);
}
.serviceInfoEn--blue {
  color: var(--accentBlue);
}
.serviceInfoEn--gold {
  color: var(--accentGold);
}
.serviceInfoEn--olive {
  color: var(--accentOlive);
}

.serviceInfoTitle {
  font-size: clamp(28px, 3.359375vw, 43px);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.2;
  color: var(--titleBlack);
}
.serviceInfoTitle--center {
  text-align: center;
}

.serviceInfoLead {
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.03em;
  color: var(--textMain);
}

/*------------ Business 導入 ------------*/
.serviceIntro {
  padding-top: min(120px, 9.375vw);
  padding-bottom: min(60px, 4.6875vw);
}
@media only screen and (max-width: 767px) {
  .serviceIntro {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.serviceIntro__en {
  display: block;
  font-size: clamp(18px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: min(20px, 1.5625vw);
  color: var(--accentTaupe);
}
@media only screen and (max-width: 767px) {
  .serviceIntro__en {
    font-size: clamp(14px, 1.25vw, 16px);
  }
}
.serviceIntro__en {
  color: var(--accentBlue);
  margin-bottom: min(42px, 3.28125vw);
}
@media only screen and (max-width: 767px) {
  .serviceIntro__en {
    margin-bottom: 24px;
  }
}
.serviceIntro__title {
  font-size: clamp(28px, 3.359375vw, 43px);
  font-weight: 600;
  line-height: 1.63;
  letter-spacing: 0.03em;
  color: var(--titleBlack);
  margin-bottom: min(42px, 3.28125vw);
}
@media only screen and (max-width: 767px) {
  .serviceIntro__title {
    margin-bottom: 24px;
  }
}
.serviceIntro__lead {
  font-size: clamp(14px, 1.40625vw, 18px);
  font-weight: 600;
  line-height: 1.44;
  letter-spacing: 0.03em;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .serviceIntro__lead {
    font-size: 15px;
    line-height: 1.7;
  }
}

/*------------ 事業内容カード ------------*/
.serviceList {
  padding-block: min(80px, 6.25vw);
}
@media only screen and (max-width: 767px) {
  .serviceList {
    padding-block: 50px;
  }
}

.serviceCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: min(10px, 0.78125vw);
  margin-bottom: min(80px, 6.25vw);
}
@media only screen and (max-width: 767px) {
  .serviceCard {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
  }
}
.serviceCard--olive {
  margin-bottom: min(10px, 0.78125vw);
}
.serviceCard__visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(7px, 0.546875vw);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(535px, 41.796875vw);
}
@media only screen and (max-width: 767px) {
  .serviceCard__visual {
    width: 100%;
  }
}
.serviceCard__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(23px, 1.796875vw);
  border-radius: 10px;
  padding: min(40px, 3.125vw) min(23px, 1.796875vw);
  min-height: min(230px, 17.96875vw);
  color: var(--white);
}
.serviceCard__badge {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(137px, 10.703125vw);
  height: min(137px, 10.703125vw);
  border-radius: 50%;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.serviceCard__labelEn {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
.serviceCard__no {
  font-size: clamp(12px, 4.6875vw, 60px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
.serviceCard__title {
  font-size: clamp(12px, 2.96875vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.03em;
}
.serviceCard__icon {
  position: absolute;
  right: min(23px, 1.796875vw);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: min(150px, 11.71875vw);
}
.serviceCard__icon img {
  width: 100%;
  height: auto;
  margin: 0;
}
.serviceCard--olive .serviceCard__icon {
  width: min(150px, 11.71875vw);
}
.serviceCard--terracotta .serviceCard__icon {
  width: min(136px, 10.625vw);
}
.serviceCard--gold .serviceCard__icon {
  width: min(163px, 12.734375vw);
}
.serviceCard--blue .serviceCard__icon {
  width: min(92px, 7.1875vw);
}
.serviceCard__photo {
  aspect-ratio: 537/355;
  overflow: hidden;
  border-radius: 10px;
}
.serviceCard__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.serviceCard__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  border-radius: 10px;
  padding: min(60px, 4.6875vw) min(90px, 7.03125vw);
}
@media only screen and (max-width: 767px) {
  .serviceCard__body {
    padding: 32px 24px;
  }
}
.serviceCard__headline {
  font-size: clamp(21px, 1.875vw, 24px);
  font-weight: 600;
  line-height: 1.58;
  letter-spacing: 0.07em;
  color: var(--titleBlack);
  padding-left: min(27px, 2.109375vw);
  border-left: 3px solid;
  margin-bottom: min(22px, 1.71875vw);
}
@media only screen and (max-width: 767px) {
  .serviceCard__headline {
    padding-left: 16px;
  }
}
.serviceCard__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(6px, 0.46875vw);
  margin-bottom: min(30px, 2.34375vw);
}
.serviceCard__tags li {
  background-color: var(--white);
  border-radius: 20px;
  padding: min(9px, 0.703125vw) min(16px, 1.25vw);
  font-size: clamp(12px, 1.40625vw, 18px);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .serviceCard__tags li {
    font-size: clamp(12px, 1.09375vw, 14px);
    padding: 8px 14px;
  }
}
.serviceCard__desc {
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 600;
  line-height: 1.875;
  letter-spacing: 0.03em;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .serviceCard__desc {
    line-height: 1.7;
  }
}

.serviceCard--blue .serviceCard__label {
  background-color: var(--accentBlue);
}
.serviceCard--blue .serviceCard__badge {
  color: var(--accentBlue);
}
.serviceCard--blue .serviceCard__headline {
  border-left-color: var(--accentBlue);
}
.serviceCard--blue .serviceCard__tags li {
  color: var(--accentBlue);
}

.serviceReasonRow--blue .serviceReasonRow__no {
  color: var(--accentBlue);
}

.serviceReasonRow--blue .serviceReasonRow__title {
  border-left-color: var(--accentBlue);
}

.serviceCard--gold .serviceCard__label {
  background-color: var(--accentGold);
}
.serviceCard--gold .serviceCard__badge {
  color: var(--accentGold);
}
.serviceCard--gold .serviceCard__headline {
  border-left-color: var(--accentGold);
}
.serviceCard--gold .serviceCard__tags li {
  color: var(--accentGold);
}

.serviceReasonRow--gold .serviceReasonRow__no {
  color: var(--accentGold);
}

.serviceReasonRow--gold .serviceReasonRow__title {
  border-left-color: var(--accentGold);
}

.serviceCard--olive .serviceCard__label {
  background-color: var(--accentOlive);
}
.serviceCard--olive .serviceCard__badge {
  color: var(--accentOlive);
}
.serviceCard--olive .serviceCard__headline {
  border-left-color: var(--accentOlive);
}
.serviceCard--olive .serviceCard__tags li {
  color: var(--accentOlive);
}

.serviceReasonRow--olive .serviceReasonRow__no {
  color: var(--accentOlive);
}

.serviceReasonRow--olive .serviceReasonRow__title {
  border-left-color: var(--accentOlive);
}

.serviceCard--terracotta .serviceCard__label {
  background-color: var(--accentTerracotta);
}
.serviceCard--terracotta .serviceCard__badge {
  color: var(--accentTerracotta);
}
.serviceCard--terracotta .serviceCard__headline {
  border-left-color: var(--accentTerracotta);
}
.serviceCard--terracotta .serviceCard__tags li {
  color: var(--accentTerracotta);
}

.serviceReasonRow--terracotta .serviceReasonRow__no {
  color: var(--accentTerracotta);
}

.serviceReasonRow--terracotta .serviceReasonRow__title {
  border-left-color: var(--accentTerracotta);
}

.serviceCard--taupe .serviceCard__label {
  background-color: var(--accentTaupe);
}
.serviceCard--taupe .serviceCard__badge {
  color: var(--accentTaupe);
}
.serviceCard--taupe .serviceCard__headline {
  border-left-color: var(--accentTaupe);
}
.serviceCard--taupe .serviceCard__tags li {
  color: var(--accentTaupe);
}

.serviceReasonRow--taupe .serviceReasonRow__no {
  color: var(--accentTaupe);
}

.serviceReasonRow--taupe .serviceReasonRow__title {
  border-left-color: var(--accentTaupe);
}

@media only screen and (max-width: 959px) {
  .serviceCard__label {
    min-height: 0;
    padding: 22px 24px;
    gap: 20px;
  }
  .serviceCard__badge {
    width: 84px;
    height: 84px;
  }
  .serviceCard__labelEn {
    font-size: 14px;
  }
  .serviceCard__no {
    font-size: 38px;
  }
  .serviceCard__title {
    font-size: 24px;
    line-height: 1.3;
  }
  .serviceCard--olive .serviceCard__icon,
  .serviceCard--terracotta .serviceCard__icon,
  .serviceCard--gold .serviceCard__icon,
  .serviceCard--blue .serviceCard__icon {
    width: 84px;
    right: 20px;
  }
  .serviceCard__tags li {
    font-size: 14px;
    padding: 8px 14px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceCard__label {
    padding: 15px 10px;
  }
  .serviceCard__badge {
    width: 64px;
    height: 64px;
  }
  .serviceCard__no {
    font-size: 30px;
  }
  .serviceCard__labelEn {
    font-size: 12px;
  }
  .serviceCard--olive .serviceCard__icon,
  .serviceCard--terracotta .serviceCard__icon,
  .serviceCard--gold .serviceCard__icon,
  .serviceCard--blue .serviceCard__icon {
    width: 64px;
    right: 20px;
  }
  .serviceCard__body {
    padding: 20px 25px;
  }
}
/*------------ 料金について ------------*/
.servicePrice {
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  border-radius: 20px;
  padding: min(80px, 6.25vw) min(47px, 3.671875vw);
  margin-bottom: min(80px, 6.25vw);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .servicePrice {
    padding: 40px 20px;
    border-radius: 12px;
    margin-bottom: 50px;
  }
}
.servicePrice__title {
  font-size: clamp(12px, 2.96875vw, 38px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--titleBlack);
  margin-bottom: min(20px, 1.5625vw);
}
@media only screen and (max-width: 767px) {
  .servicePrice__title {
    font-size: 26px;
  }
}
.servicePrice__sub {
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 600;
  line-height: 1.875;
  color: var(--textMain);
  margin-bottom: min(52px, 4.0625vw);
}
@media only screen and (max-width: 767px) {
  .servicePrice__sub {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.servicePrice__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(15px, 1.171875vw);
  margin-bottom: min(40px, 3.125vw);
}
@media only screen and (max-width: 767px) {
  .servicePrice__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.servicePrice__plus {
  -ms-flex-item-align: center;
      align-self: center;
  font-size: clamp(12px, 4.6875vw, 60px);
  font-weight: 600;
  color: var(--accentTaupe);
  line-height: 1;
}
.servicePrice__adjust {
  background-color: var(--accentTaupe);
  border-radius: 10px;
  padding: min(30px, 2.34375vw);
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: min(20px, 1.5625vw);
  margin-inline: auto;
  max-width: 900px;
}
.servicePrice__adjustLabel {
  background-color: var(--white);
  color: var(--accentTaupe);
  font-size: clamp(12px, 2.34375vw, 30px);
  font-weight: 600;
  padding: 6px 15px;
  line-height: 1;
}
.servicePrice__adjustLabel span {
  font-size: 20px;
  margin-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .servicePrice__adjustLabel {
    font-size: 20px;
  }
  .servicePrice__adjustLabel span {
    display: block;
    margin-left: 0;
    font-size: 14px;
  }
}
.servicePrice__adjustValue {
  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: min(14px, 1.09375vw);
}
@media only screen and (max-width: 767px) {
  .servicePrice__adjustValue {
    gap: 8px;
  }
}
.servicePrice__adjustCompare {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: clamp(12px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .servicePrice__adjustCompare {
    font-size: 18px;
  }
}
.servicePrice__adjustNum {
  font-size: clamp(12px, 10.15625vw, 130px);
  font-weight: 700;
  line-height: 0.85;
}
@media only screen and (max-width: 767px) {
  .servicePrice__adjustNum {
    font-size: 72px;
  }
}
.servicePrice__adjustRight {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-block: min(8px, 0.625vw);
  gap: min(10px, 0.78125vw);
}
@media only screen and (max-width: 767px) {
  .servicePrice__adjustRight {
    padding-block: 3px;
  }
}
.servicePrice__adjustUnit {
  font-size: clamp(12px, 3.125vw, 40px);
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .servicePrice__adjustUnit {
    font-size: 26px;
  }
}
.servicePrice__adjustMonth {
  font-size: clamp(12px, 2.03125vw, 26px);
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .servicePrice__adjustMonth {
    font-size: 15px;
  }
}
.servicePrice__note {
  text-align: left;
  max-width: 882px;
  margin-inline: auto;
}
.servicePrice__noteTitle {
  position: relative;
  font-size: clamp(16px, 1.40625vw, 18px);
  font-weight: 600;
  color: var(--textMuted);
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.servicePrice__noteTitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 197px;
  max-width: 60%;
  height: 1px;
  background-color: var(--textMuted);
}
.servicePrice__noteText {
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--textMuted);
}
@media only screen and (max-width: 767px) {
  .servicePrice__noteText {
    font-size: 14px;
  }
}

.servicePriceCard {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 284px;
  background-color: var(--white);
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 25px rgba(109, 95, 74, 0.12);
          box-shadow: 0 5px 25px rgba(109, 95, 74, 0.12);
  padding: min(40px, 3.125vw) min(24px, 1.875vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(20px, 1.5625vw);
}
@media only screen and (max-width: 767px) {
  .servicePriceCard {
    max-width: none;
  }
}
.servicePriceCard__icon {
  width: min(120px, 9.375vw);
}
.servicePriceCard__icon img {
  width: 100%;
  margin: 0;
}
.servicePriceCard__title {
  font-size: clamp(18px, 1.875vw, 24px);
  font-weight: 600;
  color: var(--titleBlack);
}
.servicePriceCard__desc {
  font-size: clamp(12px, 1.40625vw, 18px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .servicePriceCard__desc {
    font-size: 15px;
  }
}

/*------------ 自主取組宣言（最新版：Figma node 915-3283） ------------*/
.servicePledge {
  max-width: 996px;
  margin: min(60px, 4.6875vw) auto 0;
  padding: min(56px, 4.375vw) min(62px, 4.84375vw);
  background-color: var(--white);
  border-radius: 10px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .servicePledge {
    padding: 28px 20px;
    margin-top: 40px;
  }
}
.servicePledge__banner {
  background-color: var(--accentBlue);
  color: var(--white);
  font-size: clamp(15px, 1.71875vw, 22px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  border-radius: 3px;
  padding: min(10px, 0.78125vw) min(30px, 2.34375vw);
  margin-bottom: min(20px, 1.5625vw);
}
@media only screen and (max-width: 767px) {
  .servicePledge__banner {
    padding: 10px 16px;
  }
}
.servicePledge__lead {
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 600;
  line-height: 1.625;
  letter-spacing: 0.02em;
  color: var(--textMain);
}
@media only screen and (max-width: 767px) {
  .servicePledge__lead {
    line-height: 1.8;
  }
}
.servicePledge__body {
  max-width: 635px;
  margin: min(32px, 2.5vw) auto 0;
}
@media only screen and (max-width: 767px) {
  .servicePledge__body {
    max-width: none;
  }
}
.servicePledge__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin: 0 0 12px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .servicePledge__list {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.servicePledge__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  max-width: 100%;
  background-color: var(--pageBg);
  border-radius: 3px;
  padding: 5px 10px;
}
.servicePledge__no {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--accentOlive);
  font-size: clamp(20px, 1.953125vw, 25px);
  font-weight: 700;
  line-height: 1.3;
}
.servicePledge__txt {
  color: var(--textMain);
  font-size: clamp(16px, 1.71875vw, 22px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.servicePledge__txtSub {
  font-size: clamp(12px, 1.40625vw, 18px);
  letter-spacing: 0;
}
.servicePledge__note {
  margin-top: 12px;
  color: var(--accentTaupe);
  font-size: clamp(13px, 1.25vw, 16px);
  font-weight: 600;
  line-height: 1.625;
  letter-spacing: 0.02em;
}

/*------------ トラブル/凍結 共通：原因・カード ------------*/
.serviceTrouble,
.serviceFreeze {
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  padding-block: min(80px, 6.25vw);
}
@media only screen and (max-width: 767px) {
  .serviceTrouble,
  .serviceFreeze {
    padding-block: 50px;
  }
}

.serviceTrouble__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: min(122px, 9.53125vw);
  margin-bottom: min(34px, 2.65625vw);
}
@media only screen and (max-width: 959px) {
  .serviceTrouble__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.serviceTrouble__head .serviceInfoTitle {
  margin-top: min(20px, 1.5625vw);
}
.serviceTrouble__head .serviceInfoLead {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.serviceTrouble__headTtl {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.serviceCauses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(17px, 1.328125vw);
  margin-bottom: min(34px, 2.65625vw);
}
@media only screen and (max-width: 767px) {
  .serviceCauses {
    gap: 14px;
  }
}

.serviceCause {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(20px, 1.5625vw);
  background-color: var(--white);
  border-radius: 10px;
  padding: min(24px, 1.875vw) min(30px, 2.34375vw);
}
@media only screen and (max-width: 767px) {
  .serviceCause {
    max-width: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.serviceCause__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(90px, 7.03125vw);
}
.serviceCause__icon img {
  width: 100%;
  margin: 0;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceCause__icon {
    width: 90px;
  }
}
.serviceCause__label {
  font-size: clamp(18px, 1.875vw, 24px);
  font-weight: 600;
  line-height: 1.58;
  letter-spacing: 0.06em;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .serviceCause__label {
    font-size: 16px;
  }
}

/*------------ 復帰方法 / 凍結したら 共通ボックス ------------*/
.serviceRecover {
  border-radius: 20px;
  padding: min(70px, 5.46875vw) min(43px, 3.359375vw);
  color: var(--white);
  text-align: center;
}
.serviceRecover--terracotta {
  --rcv: var(--accentTerracotta);
  background-color: var(--accentTerracotta);
}
.serviceRecover--blue {
  --rcv: var(--accentBlue);
  background-color: var(--accentBlue);
}
@media only screen and (max-width: 767px) {
  .serviceRecover {
    padding: 40px 20px;
    border-radius: 14px;
  }
}
.serviceRecover__heading {
  display: inline-block;
  background-color: var(--white);
  color: var(--rcv);
  font-size: clamp(12px, 2.34375vw, 30px);
  font-weight: 600;
  padding: 7px 10px;
  line-height: 1;
  margin-bottom: min(56px, 4.375vw);
}
@media only screen and (max-width: 767px) {
  .serviceRecover__heading {
    font-size: 21px;
    margin-bottom: 30px;
  }
}
.serviceRecover__note {
  max-width: min(757px, 59.140625vw);
  margin: min(56px, 4.375vw) auto 0;
  padding-bottom: min(14px, 1.09375vw);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: clamp(12px, 1.796875vw, 23px);
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .serviceRecover__note {
    font-size: 14px;
    max-width: none;
  }
}
.serviceRecover__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(13px, 1.015625vw);
  margin-top: min(22px, 1.71875vw);
}
.serviceRecover__telRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(19px, 1.484375vw);
}
.serviceRecover__icon {
  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;
  width: min(62px, 4.84375vw);
  height: min(62px, 4.84375vw);
  border-radius: 50%;
  background-color: var(--white);
  color: var(--rcv);
  font-size: clamp(12px, 2.03125vw, 26px);
}
.serviceRecover__tel {
  font-size: clamp(12px, 4.6875vw, 60px);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--white);
}
.serviceRecover__tel:hover {
  color: var(--white);
}
@media only screen and (max-width: 767px) {
  .serviceRecover__tel {
    font-size: 30px;
  }
}
.serviceRecover__hours {
  background-color: var(--white);
  color: var(--rcv);
  border-radius: 2px;
  padding: min(10px, 0.78125vw) min(9px, 0.703125vw);
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .serviceRecover__hours {
    font-size: 13px;
  }
}

.serviceSteps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(7px, 0.546875vw);
}
@media only screen and (max-width: 959px) {
  .serviceSteps {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceSteps {
    width: 60%;
    margin-inline: auto;
  }
}
@media only screen and (max-width: 767px) {
  .serviceSteps {
    gap: 10px;
  }
}

.serviceStep {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 263px;
  background-color: #fef9f6;
  border-radius: 20px;
  padding: min(17px, 1.328125vw) min(25px, 1.953125vw) min(30px, 2.34375vw);
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 959px) {
  .serviceStep {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 10px);
            flex: 0 0 calc(50% - 10px);
    max-width: none;
  }
}
.serviceStep__no {
  top: min(17px, 1.328125vw);
  left: min(20px, 1.5625vw);
  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: min(80px, 6.25vw);
  height: min(80px, 6.25vw);
  border-radius: 50%;
  background-color: var(--rcv);
  color: var(--white);
  font-size: clamp(12px, 3.125vw, 40px);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.serviceStep__img {
  margin: min(-20px, -1.5625vw) auto min(10px, 0.78125vw);
  width: 100%;
}
.serviceStep__img img {
  width: 100%;
  margin: 0;
}
.serviceStep__label {
  font-size: clamp(12px, 1.875vw, 24px);
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.06em;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .serviceStep__label {
    font-size: 15px;
  }
}

/*------------ 冬場の凍結 個別 ------------*/
.serviceFreeze__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: min(60px, 4.6875vw);
  margin-bottom: min(40px, 3.125vw);
}
@media only screen and (max-width: 959px) {
  .serviceFreeze__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.serviceFreeze__head .serviceInfoTitle {
  margin-top: min(20px, 1.5625vw);
}
.serviceFreeze__head .serviceInfoLead {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.serviceFreeze__prevent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(16px, 1.25vw);
  margin-bottom: min(30px, 2.34375vw);
}
@media only screen and (max-width: 959px) {
  .serviceFreeze__prevent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.serviceFreeze__preventLabel {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: var(--accentBlue);
  color: var(--white);
  border-radius: 50px;
  width: min(72px, 5.625vw);
  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;
  font-size: clamp(16px, 2.03125vw, 26px);
  font-weight: 500;
}
.serviceFreeze__preventLabel span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 959px) {
  .serviceFreeze__preventLabel {
    width: 100%;
    border-radius: 40px;
    padding: 10px;
  }
  .serviceFreeze__preventLabel span {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

.serviceFreezeCards {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: min(40px, 3.125vw);
     -moz-column-gap: min(40px, 3.125vw);
          column-gap: min(40px, 3.125vw);
  row-gap: min(24px, 1.875vw);
}
@media only screen and (max-width: 767px) {
  .serviceFreezeCards {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    row-gap: 16px;
    grid-template-columns: 0.8fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.serviceFreezeCard {
  padding: min(10px, 0.78125vw) min(8px, 0.625vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(20px, 1.5625vw);
}
.serviceFreezeCard__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
}
.serviceFreezeCard__icon img {
  height: auto;
  display: block;
  margin: 0;
}
.serviceFreezeCard:nth-child(1) .serviceFreezeCard__icon img {
  width: min(123px, 9.609375vw);
}
.serviceFreezeCard:nth-child(2) .serviceFreezeCard__icon img {
  width: min(161px, 12.578125vw);
}
.serviceFreezeCard:nth-child(3) .serviceFreezeCard__icon img {
  width: min(135px, 10.546875vw);
}
.serviceFreezeCard:nth-child(4) .serviceFreezeCard__icon img {
  width: min(258px, 20.15625vw);
}
.serviceFreezeCard__label {
  font-size: clamp(16px, 1.875vw, 24px);
  font-weight: 600;
  line-height: 1.58;
  letter-spacing: 0.06em;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .serviceFreezeCard:nth-child(1) .serviceFreezeCard__icon img {
    width: 80px;
  }
  .serviceFreezeCard:nth-child(2) .serviceFreezeCard__icon img {
    width: 120px;
  }
  .serviceFreezeCard:nth-child(3) .serviceFreezeCard__icon img {
    width: 90px;
  }
  .serviceFreezeCard:nth-child(4) .serviceFreezeCard__icon img {
    width: 160px;
  }
}

.serviceThaw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(7px, 0.546875vw);
}
@media only screen and (max-width: 767px) {
  .serviceThaw {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.serviceThawCard {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 541px;
  background-color: #f0f2f6;
  border-radius: 20px;
  padding: min(17px, 1.328125vw) min(21px, 1.640625vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(22px, 1.71875vw);
}
@media only screen and (max-width: 767px) {
  .serviceThawCard {
    max-width: none;
  }
}
.serviceThawCard__mark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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: min(80px, 6.25vw);
  height: min(80px, 6.25vw);
  border-radius: 50%;
  color: var(--white);
  font-size: clamp(12px, 3.125vw, 40px);
  font-weight: 600;
  line-height: 1;
}
.serviceThawCard--terracotta .serviceThawCard__mark {
  background-color: var(--accentTerracotta);
}
.serviceThawCard--blue .serviceThawCard__mark {
  background-color: var(--accentBlue);
}
.serviceThawCard__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(130px, 10.15625vw);
}
.serviceThawCard__icon img {
  width: 100%;
  margin: 0;
}
.serviceThawCard__label {
  font-size: clamp(12px, 1.875vw, 24px);
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.06em;
  color: var(--titleBlack);
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .serviceThawCard__label {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceThawCard__icon {
    width: 70px;
  }
}

/*------------ Reason / 選ばれる理由 ------------*/
.serviceReason {
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  padding-block: min(120px, 9.375vw);
}
@media only screen and (max-width: 767px) {
  .serviceReason {
    padding-block: 60px;
  }
}

.serviceReason__head {
  margin-bottom: min(45px, 3.515625vw);
}

.serviceReason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(40px, 3.125vw);
}

.serviceReasonRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .serviceReasonRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.serviceReasonRow:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .serviceReasonRow:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.serviceReasonRow__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45.3095684803%;
          flex: 0 0 45.3095684803%;
  overflow: hidden;
}
.serviceReasonRow__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .serviceReasonRow__photo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    aspect-ratio: 483/380;
  }
}
.serviceReasonRow__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: min(70px, 5.46875vw) min(66px, 5.15625vw);
}
@media only screen and (max-width: 767px) {
  .serviceReasonRow__body {
    padding: 32px 24px;
  }
}
.serviceReasonRow__no {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: min(35px, 2.734375vw);
}
.serviceReasonRow__title {
  padding-left: min(21px, 1.640625vw);
  border-left: 3px solid var(--titleBlack);
  font-size: clamp(22px, 2.1875vw, 28px);
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0.07em;
  color: var(--titleBlack);
  margin-bottom: min(21px, 1.640625vw);
}
@media only screen and (max-width: 767px) {
  .serviceReasonRow__title {
    font-size: 21px;
    padding-left: 14px;
  }
}
.serviceReasonRow__desc {
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 600;
  line-height: 1.875;
  color: var(--textMain);
}
@media only screen and (max-width: 767px) {
  .serviceReasonRow__desc {
    font-size: 14px;
    line-height: 1.7;
  }
}

/*------------ 対応エリア ------------*/
.serviceArea {
  padding-block: min(120px, 9.375vw);
}
@media only screen and (max-width: 767px) {
  .serviceArea {
    padding-block: 60px;
  }
}

.serviceArea__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(88px, 6.875vw);
}
@media only screen and (max-width: 959px) {
  .serviceArea__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.serviceArea__body {
  width: min(445px, 34.765625vw);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 959px) {
  .serviceArea__body {
    width: 100%;
  }
}
.serviceArea__body .serviceInfoTitle {
  margin-block: min(42px, 3.28125vw) min(42px, 3.28125vw);
}

.serviceArea__text {
  font-size: clamp(14px, 1.40625vw, 18px);
  font-weight: 600;
  line-height: 1.44;
  letter-spacing: 0.03em;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .serviceArea__text {
    line-height: 1.7;
  }
}

.serviceArea__map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: min(362px, 28.28125vw);
}
.serviceArea__map img {
  width: 100%;
  margin: 0;
}
@media only screen and (max-width: 959px) {
  .serviceArea__map {
    max-width: 320px;
  }
}

/*==================================================
 * 採用情報ページ
*================================================*/
/*------------ FV / 採用情報（フォトモザイク） ------------*/
.recruitFv {
  background-color: #f9f8f4;
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  overflow: hidden;
}

.recruitFv__stage {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  aspect-ratio: 1280/733;
}
@media only screen and (max-width: 767px) {
  .recruitFv__stage {
    margin-top: -40px;
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(0, auto);
    gap: 8px;
    padding: 0;
  }
}

.recruitFv__tile {
  position: absolute;
  left: calc(var(--x) / 1280 * 100%);
  top: calc(var(--y) / 733 * 100%);
  width: 23.984375%;
  height: 32.1964529332%;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-animation: topFvReveal 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
          animation: topFvReveal 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  -webkit-animation-delay: calc(var(--i, 0) * 0.08s);
          animation-delay: calc(var(--i, 0) * 0.08s);
}
.recruitFv__tile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.recruitFv__tile--illust img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .recruitFv__tile {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    aspect-ratio: 1/0.9;
  }
  .recruitFv__tile:nth-child(4), .recruitFv__tile:nth-child(7), .recruitFv__tile:nth-child(8), .recruitFv__tile:nth-child(9), .recruitFv__tile:nth-child(10) {
    display: none;
  }
}

.recruitFv__title {
  position: absolute;
  left: 57.578125%;
  top: 30.1500682128%;
  opacity: 0;
  -webkit-animation: topFvRise 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) 0.55s both;
          animation: topFvRise 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) 0.55s both;
}
@media only screen and (max-width: 767px) {
  .recruitFv__title {
    position: static;
    grid-column: 2;
    grid-row: 2;
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 6px;
  }
}

.recruitFv__en {
  font-size: clamp(15px, 1.5625vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--accentGold);
  margin-bottom: min(52px, 4.0625vw);
}
@media only screen and (max-width: 767px) {
  .recruitFv__en {
    margin-bottom: 10px;
  }
}

.recruitFv__jp {
  font-size: clamp(28px, 4.6875vw, 60px);
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  color: var(--titleBlack);
}

.recruitFv__crumb {
  margin-top: 16px;
}
.recruitFv__crumb .breadcrumbsInner span {
  font-size: clamp(12px, 0.9375vw, 12px);
  letter-spacing: 0.02em;
  color: var(--textMain);
}
.recruitFv__crumb .breadcrumbsInner a,
.recruitFv__crumb .breadcrumbsInner a span {
  color: var(--crumbGray);
}
.recruitFv__crumb--btm {
  position: absolute;
  left: 4.6875%;
  top: 94.5429740791%;
  margin-top: 0;
  z-index: 3;
}
.recruitFv__crumb--btm .breadcrumbsInner span {
  font-size: clamp(13px, 1.25vw, 16px);
}

/*------------ セクション共通見出し ------------*/
.recruitSecEn {
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: min(20px, 1.5625vw);
}

.recruitSecTitle {
  font-size: clamp(28px, 3.359375vw, 43px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--titleBlack);
}
.recruitSecTitle--center {
  text-align: center;
}

.recruitSecEn--blue {
  color: var(--accentBlue);
}

.recruitDataCard--blue .recruitDataCard__num {
  color: var(--accentBlue);
}

.recruitDataCard--blue .recruitDataCard__dot {
  background-color: var(--accentBlue);
}

.recruitWorkBlock--blue .recruitWorkCard__en {
  color: var(--accentBlue);
}

.recruitWorkBlock--blue .recruitWorkCard__badge {
  background-color: var(--accentBlue);
}

.recruitWorkBlock--blue .recruitWorkCard__dailyTitle {
  color: var(--accentBlue);
}

.recruitWorkBlock--blue .recruitWorkCard__tags li::before {
  background-color: var(--accentBlue);
}

.recruitEnvCard--blue .recruitEnvCard__no {
  color: var(--accentBlue);
}

.recruitEnvCard--blue .recruitEnvCard__tags li {
  background-color: var(--accentBlue);
}

.recruitCareerStep--blue .recruitCareerStep__term {
  background-color: var(--accentBlue);
}

.recruitCareerStep--blue .recruitCareerStep__title::before {
  background-color: var(--accentBlue);
}

.recruitIvBlock--blue .recruitIvIntro__no {
  color: var(--accentBlue);
}

.recruitIvBlock--blue .recruitIvIntro__career {
  background-color: var(--accentBlue);
}

.recruitIvBlock--blue .recruitIvQa__dash {
  background-color: var(--accentBlue);
}

.recruitSecEn--gold {
  color: var(--accentGold);
}

.recruitDataCard--gold .recruitDataCard__num {
  color: var(--accentGold);
}

.recruitDataCard--gold .recruitDataCard__dot {
  background-color: var(--accentGold);
}

.recruitWorkBlock--gold .recruitWorkCard__en {
  color: var(--accentGold);
}

.recruitWorkBlock--gold .recruitWorkCard__badge {
  background-color: var(--accentGold);
}

.recruitWorkBlock--gold .recruitWorkCard__dailyTitle {
  color: var(--accentGold);
}

.recruitWorkBlock--gold .recruitWorkCard__tags li::before {
  background-color: var(--accentGold);
}

.recruitEnvCard--gold .recruitEnvCard__no {
  color: var(--accentGold);
}

.recruitEnvCard--gold .recruitEnvCard__tags li {
  background-color: var(--accentGold);
}

.recruitCareerStep--gold .recruitCareerStep__term {
  background-color: var(--accentGold);
}

.recruitCareerStep--gold .recruitCareerStep__title::before {
  background-color: var(--accentGold);
}

.recruitIvBlock--gold .recruitIvIntro__no {
  color: var(--accentGold);
}

.recruitIvBlock--gold .recruitIvIntro__career {
  background-color: var(--accentGold);
}

.recruitIvBlock--gold .recruitIvQa__dash {
  background-color: var(--accentGold);
}

.recruitSecEn--olive {
  color: var(--accentOlive);
}

.recruitDataCard--olive .recruitDataCard__num {
  color: var(--accentOlive);
}

.recruitDataCard--olive .recruitDataCard__dot {
  background-color: var(--accentOlive);
}

.recruitWorkBlock--olive .recruitWorkCard__en {
  color: var(--accentOlive);
}

.recruitWorkBlock--olive .recruitWorkCard__badge {
  background-color: var(--accentOlive);
}

.recruitWorkBlock--olive .recruitWorkCard__dailyTitle {
  color: var(--accentOlive);
}

.recruitWorkBlock--olive .recruitWorkCard__tags li::before {
  background-color: var(--accentOlive);
}

.recruitEnvCard--olive .recruitEnvCard__no {
  color: var(--accentOlive);
}

.recruitEnvCard--olive .recruitEnvCard__tags li {
  background-color: var(--accentOlive);
}

.recruitCareerStep--olive .recruitCareerStep__term {
  background-color: var(--accentOlive);
}

.recruitCareerStep--olive .recruitCareerStep__title::before {
  background-color: var(--accentOlive);
}

.recruitIvBlock--olive .recruitIvIntro__no {
  color: var(--accentOlive);
}

.recruitIvBlock--olive .recruitIvIntro__career {
  background-color: var(--accentOlive);
}

.recruitIvBlock--olive .recruitIvQa__dash {
  background-color: var(--accentOlive);
}

.recruitSecEn--terracotta {
  color: var(--accentTerracotta);
}

.recruitDataCard--terracotta .recruitDataCard__num {
  color: var(--accentTerracotta);
}

.recruitDataCard--terracotta .recruitDataCard__dot {
  background-color: var(--accentTerracotta);
}

.recruitWorkBlock--terracotta .recruitWorkCard__en {
  color: var(--accentTerracotta);
}

.recruitWorkBlock--terracotta .recruitWorkCard__badge {
  background-color: var(--accentTerracotta);
}

.recruitWorkBlock--terracotta .recruitWorkCard__dailyTitle {
  color: var(--accentTerracotta);
}

.recruitWorkBlock--terracotta .recruitWorkCard__tags li::before {
  background-color: var(--accentTerracotta);
}

.recruitEnvCard--terracotta .recruitEnvCard__no {
  color: var(--accentTerracotta);
}

.recruitEnvCard--terracotta .recruitEnvCard__tags li {
  background-color: var(--accentTerracotta);
}

.recruitCareerStep--terracotta .recruitCareerStep__term {
  background-color: var(--accentTerracotta);
}

.recruitCareerStep--terracotta .recruitCareerStep__title::before {
  background-color: var(--accentTerracotta);
}

.recruitIvBlock--terracotta .recruitIvIntro__no {
  color: var(--accentTerracotta);
}

.recruitIvBlock--terracotta .recruitIvIntro__career {
  background-color: var(--accentTerracotta);
}

.recruitIvBlock--terracotta .recruitIvQa__dash {
  background-color: var(--accentTerracotta);
}

.recruitSecEn--taupe {
  color: var(--accentTaupe);
}

.recruitDataCard--taupe .recruitDataCard__num {
  color: var(--accentTaupe);
}

.recruitDataCard--taupe .recruitDataCard__dot {
  background-color: var(--accentTaupe);
}

.recruitWorkBlock--taupe .recruitWorkCard__en {
  color: var(--accentTaupe);
}

.recruitWorkBlock--taupe .recruitWorkCard__badge {
  background-color: var(--accentTaupe);
}

.recruitWorkBlock--taupe .recruitWorkCard__dailyTitle {
  color: var(--accentTaupe);
}

.recruitWorkBlock--taupe .recruitWorkCard__tags li::before {
  background-color: var(--accentTaupe);
}

.recruitEnvCard--taupe .recruitEnvCard__no {
  color: var(--accentTaupe);
}

.recruitEnvCard--taupe .recruitEnvCard__tags li {
  background-color: var(--accentTaupe);
}

.recruitCareerStep--taupe .recruitCareerStep__term {
  background-color: var(--accentTaupe);
}

.recruitCareerStep--taupe .recruitCareerStep__title::before {
  background-color: var(--accentTaupe);
}

.recruitIvBlock--taupe .recruitIvIntro__no {
  color: var(--accentTaupe);
}

.recruitIvBlock--taupe .recruitIvIntro__career {
  background-color: var(--accentTaupe);
}

.recruitIvBlock--taupe .recruitIvQa__dash {
  background-color: var(--accentTaupe);
}

/*------------ 導入 ------------*/
.recruitIntro {
  padding-block: min(60px, 4.6875vw);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .recruitIntro {
    padding-block: 48px 8px;
  }
}

.recruitIntro__stage {
  position: relative;
  width: 100%;
  max-width: 1278px;
  margin-inline: auto;
  min-height: min(1110px, 86.71875vw);
}
@media only screen and (max-width: 767px) {
  .recruitIntro__stage {
    min-height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.recruitIntro__text {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .recruitIntro__text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.recruitIntro__text {
  max-width: 836px;
  margin-inline: auto;
  padding-top: min(47px, 3.671875vw);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .recruitIntro__text {
    padding-top: 0;
  }
}

.recruitIntro__title {
  font-size: clamp(28px, 3.359375vw, 43px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: var(--titleBlack);
  margin-bottom: min(68px, 5.3125vw);
}
@media print, screen and (min-width: 768px) {
  .recruitIntro__title {
    white-space: nowrap;
  }
}
@media only screen and (max-width: 767px) {
  .recruitIntro__title {
    margin-bottom: 28px;
  }
}

.recruitIntro__lead {
  max-width: 450px;
  margin-inline: auto;
}
.recruitIntro__lead p {
  font-size: clamp(12px, 1.40625vw, 18px);
  font-weight: 700;
  line-height: 2.11;
  letter-spacing: 0.04em;
  color: var(--textMain);
}
.recruitIntro__lead p + p {
  margin-top: min(27px, 2.109375vw);
}
@media only screen and (max-width: 767px) {
  .recruitIntro__lead {
    padding-inline: 15px;
  }
  .recruitIntro__lead p {
    font-size: 15px;
    line-height: 1.9;
  }
  .recruitIntro__lead p + p {
    margin-top: 1.2em;
  }
}

.recruitIntro__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
}
.recruitIntro__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.recruitIntro__photo--01 {
  left: 4.6165884194%;
  top: min(280px, 21.875vw);
  width: min(296px, 23.125vw);
  height: min(272px, 21.25vw);
}
.recruitIntro__photo--02 {
  left: 74.882629108%;
  top: min(474px, 37.03125vw);
  width: min(303px, 23.671875vw);
  height: min(202px, 15.78125vw);
}
@media only screen and (max-width: 767px) {
  .recruitIntro__photo {
    display: none;
  }
}

.recruitIntro__deco {
  position: absolute;
  z-index: 1;
  line-height: 0;
}
.recruitIntro__deco img {
  width: 100%;
  height: auto;
  margin: 0;
}
.recruitIntro__deco--drive {
  left: 71.2832550861%;
  top: min(265px, 20.703125vw);
  width: min(246px, 19.21875vw);
}
.recruitIntro__deco--family {
  left: 4.6948356808%;
  top: min(635px, 49.609375vw);
  width: min(256px, 20vw);
}
.recruitIntro__deco--walk {
  left: 77.2300469484%;
  top: min(750px, 58.59375vw);
  width: min(280px, 21.875vw);
}
.recruitIntro__deco--town {
  left: 19.9530516432%;
  top: min(911px, 71.171875vw);
  width: min(767px, 59.921875vw);
}
@media only screen and (max-width: 767px) {
  .recruitIntro__deco {
    display: none;
  }
}

/* スマホ用：写真＋イラストの横スライド（無限ループ） */
.recruitIntro__slider {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
}

.recruitIntro__slideTrack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: recruitIntroSlide 40s linear infinite;
          animation: recruitIntroSlide 40s linear infinite;
}

.recruitIntro__slideGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-right: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.recruitIntro__slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 130px;
  margin: 0;
  line-height: 0;
}
.recruitIntro__slide img {
  height: 100%;
  width: auto;
  max-width: none;
  margin: 0;
}
.recruitIntro__slide--photo {
  border-radius: 16px;
  overflow: hidden;
}
.recruitIntro__slide--photo img {
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes recruitIntroSlide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes recruitIntroSlide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .recruitIntro__slideTrack {
    -webkit-animation: none;
            animation: none;
  }
}
/*------------ Data / 数字で見る ------------*/
.recruitData {
  position: relative;
  background-color: var(--white);
  padding-block: min(160px, 12.5vw) min(100px, 7.8125vw);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .recruitData {
    padding-block: 60px;
  }
}
.recruitData::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 280%;
  height: 2800px;
  background-color: #f9f8f4;
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  border-radius: 50%;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .recruitData::before {
    height: 1200px;
  }
}
.recruitData > .cnt {
  position: relative;
  z-index: 1;
}

.recruitData__head {
  max-width: 1089px;
  margin-inline: auto;
  margin-bottom: min(40px, 3.125vw);
}

.recruitData__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(13px, 1.015625vw);
  max-width: 1089px;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .recruitData__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.recruitDataCard {
  position: relative;
  background-color: var(--white);
  border-radius: 10px;
  padding: min(35px, 2.734375vw);
  aspect-ratio: 348/301;
}
@media only screen and (max-width: 767px) {
  .recruitDataCard {
    aspect-ratio: auto;
    padding: 16px 14px 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruitDataCard__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(9px, 0.703125vw);
  margin: 0;
}
.recruitDataCard__dot {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(12px, 0.9375vw);
  height: min(12px, 0.9375vw);
  border-radius: 50%;
  margin-top: min(13px, 1.015625vw);
}
@media only screen and (max-width: 767px) {
  .recruitDataCard__dot {
    width: 9px;
    height: 9px;
    margin-top: 8px;
  }
}
.recruitDataCard__labelTxt {
  font-size: clamp(12px, 2.1875vw, 28px);
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 0.07em;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .recruitDataCard__labelTxt {
    font-size: 16px;
    line-height: 1.4;
  }
}
.recruitDataCard__icon {
  position: absolute;
  top: min(24px, 1.875vw);
  right: min(22px, 1.71875vw);
  margin: 0;
}
.recruitDataCard__icon img {
  width: 100%;
  margin: 0;
}
.recruitDataCard--icon1 .recruitDataCard__icon {
  width: min(138px, 10.78125vw);
}
.recruitDataCard--icon2 .recruitDataCard__icon {
  width: min(147px, 11.484375vw);
}
.recruitDataCard--icon3 .recruitDataCard__icon {
  width: min(191px, 14.921875vw);
  top: min(74px, 5.78125vw);
}
.recruitDataCard--icon4 .recruitDataCard__icon {
  width: min(168px, 13.125vw);
  top: min(40px, 3.125vw);
}
.recruitDataCard--icon5 .recruitDataCard__icon {
  width: min(150px, 11.71875vw);
  top: min(18px, 1.40625vw);
}
.recruitDataCard--icon6 .recruitDataCard__icon {
  width: min(138px, 10.78125vw);
}
.recruitDataCard__value {
  position: absolute;
  left: min(35px, 2.734375vw);
  bottom: min(28px, 2.1875vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: min(8px, 0.625vw);
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .recruitDataCard__value {
    position: static;
    margin-top: auto;
    padding-top: 14px;
  }
}
.recruitDataCard__num {
  font-size: clamp(12px, 9.375vw, 120px);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .recruitDataCard__num {
    font-size: 52px;
  }
}
.recruitDataCard__unit {
  font-size: clamp(12px, 3.125vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.07em;
  color: var(--titleBlack);
  padding-bottom: min(4px, 0.3125vw);
}
@media only screen and (max-width: 767px) {
  .recruitDataCard__unit {
    font-size: 20px;
  }
}

/*------------ 仕事を知る / Work ------------*/
.recruitWork {
  padding-block: min(100px, 7.8125vw);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .recruitWork {
    padding-block: 60px;
  }
}

.recruitWork__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: min(122px, 9.53125vw);
  margin-bottom: min(48px, 3.75vw);
}
@media only screen and (max-width: 959px) {
  .recruitWork__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}
.recruitWork__head .recruitWork__headTtl {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.recruitWork__head .recruitWork__lead {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 591px;
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--textMain);
}
@media only screen and (max-width: 767px) {
  .recruitWork__head .recruitWork__lead {
    font-size: 14px;
  }
  .recruitWork__head .recruitWork__lead br {
    display: none;
  }
}

.recruitWork__list {
  max-width: 1280px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(72px, 5.625vw);
}
@media only screen and (max-width: 767px) {
  .recruitWork__list {
    gap: 48px;
  }
}

.recruitWorkBlock__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: min(18px, 1.40625vw);
}
@media only screen and (max-width: 767px) {
  .recruitWorkBlock__photos {
    gap: 4px;
    margin-bottom: 12px;
  }
}

.recruitWorkBlock__photo {
  margin: 0;
  overflow: hidden;
}
.recruitWorkBlock__photo img {
  width: 100%;
  height: min(329px, 25.703125vw);
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .recruitWorkBlock__photo img {
    height: 120px;
  }
}

.recruitWorkCard {
  width: 90.625%;
  margin-inline: auto;
  background-color: #f9f8f4;
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  border-radius: 20px;
  padding: min(55px, 4.296875vw) min(62px, 4.84375vw) min(55px, 4.296875vw) min(81px, 6.328125vw);
}
@media only screen and (max-width: 767px) {
  .recruitWorkCard {
    width: calc(100% - 24px);
    padding: 24px 18px;
    border-radius: 14px;
  }
}
.recruitWorkCard__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(25px, 1.953125vw);
  margin-bottom: min(31px, 2.421875vw);
}
@media only screen and (max-width: 959px) {
  .recruitWorkCard__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}
.recruitWorkCard__label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(282px, 22.03125vw);
}
@media only screen and (max-width: 959px) {
  .recruitWorkCard__label {
    width: auto;
  }
}
.recruitWorkCard__en {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: min(31px, 2.421875vw);
}
@media only screen and (max-width: 767px) {
  .recruitWorkCard__en {
    font-size: 16px;
    margin-bottom: 14px;
  }
}
.recruitWorkCard__badge {
  display: inline-block;
  color: var(--white);
  font-size: clamp(12px, 2.03125vw, 26px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.27;
  border-radius: 3px;
  padding: min(10px, 0.78125vw) min(19px, 1.484375vw);
}
@media only screen and (max-width: 767px) {
  .recruitWorkCard__badge {
    font-size: 19px;
    padding: 8px 16px;
  }
}
.recruitWorkCard__illusts {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: min(18px, 1.40625vw);
}
@media only screen and (max-width: 959px) {
  .recruitWorkCard__illusts {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.recruitWorkCard__illust {
  line-height: 0;
}
.recruitWorkCard__illust img {
  height: min(148px, 11.5625vw);
  width: auto;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .recruitWorkCard__illust img {
    height: 64px;
  }
}
.recruitWorkCard__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(25px, 1.953125vw);
}
@media only screen and (max-width: 959px) {
  .recruitWorkCard__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.recruitWorkCard__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 700;
  line-height: 1.69;
  letter-spacing: 0.02em;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .recruitWorkCard__desc {
    font-size: 14px;
    line-height: 1.8;
  }
}
.recruitWorkCard__daily {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: min(326px, 25.46875vw);
  background-color: var(--white);
  border-radius: 10px;
  padding: min(28px, 2.1875vw) min(40px, 3.125vw);
}
@media only screen and (max-width: 959px) {
  .recruitWorkCard__daily {
    width: 100%;
  }
}
.recruitWorkCard__dailyTitle {
  display: table;
  margin: 0 auto min(16px, 1.25vw);
  padding-bottom: min(12px, 0.9375vw);
  border-bottom: 1px solid currentColor;
  font-size: clamp(12px, 1.875vw, 24px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .recruitWorkCard__dailyTitle {
    font-size: 20px;
  }
}
.recruitWorkCard__tags {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(9px, 0.703125vw);
}
.recruitWorkCard__tags li {
  position: relative;
  padding-left: 17px;
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  color: var(--titleBlack);
}
.recruitWorkCard__tags li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .recruitWorkCard__tags li {
    font-size: 15px;
  }
}

/*------------ 働く環境 / Environment ------------*/
.recruitEnv {
  padding-bottom: min(100px, 7.8125vw);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .recruitEnv {
    padding-bottom: 60px;
  }
}

.recruitEnv__marquee {
  padding-block: min(54px, 4.21875vw) min(60px, 4.6875vw);
}
@media only screen and (max-width: 767px) {
  .recruitEnv__marquee {
    padding-block: 28px 32px;
  }
}

.recruitEnv__marqueeRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: recruitEnvMarquee 40s linear infinite;
          animation: recruitEnvMarquee 40s linear infinite;
}
.recruitEnv__marqueeRow--2 {
  -webkit-animation-duration: 50s;
          animation-duration: 50s;
  animation-direction: reverse;
}

.recruitEnv__mGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(8px, 0.625vw);
  padding-right: min(8px, 0.625vw);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .recruitEnv__mGroup {
    gap: 6px;
    padding-right: 6px;
  }
}

@-webkit-keyframes recruitEnvMarquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes recruitEnvMarquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .recruitEnv__marqueeRow {
    -webkit-animation: none;
            animation: none;
  }
}
.recruitEnv__mTxt {
  font-size: clamp(26px, 5.546875vw, 71px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #b6aba5;
  white-space: nowrap;
}

.recruitEnv__mIcon {
  width: min(88px, 6.875vw);
  height: auto;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .recruitEnv__mIcon {
    width: 44px;
  }
}

.recruitEnv__head {
  max-width: 1160px;
  margin-inline: auto;
  margin-bottom: min(40px, 3.125vw);
}

.recruitEnv__photos {
  max-width: 1160px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(19px, 1.484375vw);
  margin-bottom: min(30px, 2.34375vw);
}
@media only screen and (max-width: 767px) {
  .recruitEnv__photos {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.recruitEnv__photo {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1/1;
}
.recruitEnv__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .recruitEnv__photo {
    aspect-ratio: 16/10;
  }
}

.recruitEnv__cards {
  max-width: 1160px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  grid-auto-flow: row;
  gap: min(20px, 1.5625vw);
}
@media only screen and (max-width: 767px) {
  .recruitEnv__cards {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
}

.recruitEnvCard {
  background-color: #f9f8f4;
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  border-radius: 10px;
  padding: min(50px, 3.90625vw) min(70px, 5.46875vw);
}
@media only screen and (max-width: 767px) {
  .recruitEnvCard {
    padding: 28px 22px;
  }
}
.recruitEnvCard__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(31px, 2.421875vw);
  margin-bottom: min(17px, 1.328125vw);
}
.recruitEnvCard__no {
  font-size: clamp(12px, 5.3125vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.recruitEnvCard__title {
  font-size: clamp(12px, 2.34375vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .recruitEnvCard__title {
    font-size: 21px;
  }
}
.recruitEnvCard__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(3px, 0.234375vw);
  margin-bottom: min(27px, 2.109375vw);
}
.recruitEnvCard__tags li {
  color: var(--white);
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  border-radius: 50px;
  padding: min(13px, 1.015625vw) min(16px, 1.25vw);
}
@media only screen and (max-width: 767px) {
  .recruitEnvCard__tags li {
    font-size: 13px;
    padding: 8px 13px;
  }
}
.recruitEnvCard__desc {
  font-size: clamp(12px, 1.40625vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .recruitEnvCard__desc {
    font-size: 14px;
  }
}

/*------------ キャリアパス / Career ------------*/
.recruitCareer {
  padding-bottom: min(120px, 9.375vw);
}
@media only screen and (max-width: 767px) {
  .recruitCareer {
    padding-bottom: 60px;
  }
}

.recruitCareer__inner {
  max-width: 1160px;
  margin-inline: auto;
  background-color: #f9f8f4;
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  border-radius: 20px;
  padding: min(120px, 9.375vw) min(60px, 4.6875vw);
}
@media only screen and (max-width: 767px) {
  .recruitCareer__inner {
    padding: 50px 20px;
    border-radius: 14px;
  }
}

.recruitCareer__head {
  max-width: 889px;
  margin: 0 auto min(46px, 3.59375vw);
}

.recruitCareer__steps {
  max-width: 889px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(19px, 1.484375vw);
}

.recruitCareerStep__term {
  display: block;
  color: var(--white);
  font-size: clamp(12px, 2.1875vw, 28px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  border-radius: 30px;
  padding: min(15px, 1.171875vw) min(20px, 1.5625vw);
  line-height: 1;
  margin-bottom: min(17px, 1.328125vw);
}
@media only screen and (max-width: 767px) {
  .recruitCareerStep__term {
    font-size: clamp(12px, 1.484375vw, 19px);
    padding: 13px;
  }
}
.recruitCareerStep__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 959px) {
  .recruitCareerStep__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruitCareerStep__photo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 45.6692913386%;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin: 0;
}
.recruitCareerStep__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
@media only screen and (max-width: 959px) {
  .recruitCareerStep__photo {
    width: 100%;
  }
  .recruitCareerStep__photo img {
    aspect-ratio: 406/194;
  }
}
.recruitCareerStep__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: min(40px, 3.125vw) min(25px, 1.953125vw);
}
@media only screen and (max-width: 767px) {
  .recruitCareerStep__text {
    padding: 22px 20px;
  }
}
.recruitCareerStep__title {
  position: relative;
  padding-left: min(21px, 131.25vw);
  font-size: clamp(19px, 1.875vw, 24px);
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--titleBlack);
  margin-bottom: min(18px, 1.40625vw);
}
.recruitCareerStep__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: min(12px, 0.9375vw);
  height: min(12px, 0.9375vw);
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .recruitCareerStep__title::before {
    width: 10px;
    height: 10px;
  }
}
.recruitCareerStep__desc {
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 700;
  line-height: 1.69;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .recruitCareerStep__desc {
    font-size: clamp(12px, 1.09375vw, 14px);
  }
}

/*------------ 社員インタビュー ------------*/
.recruitInterview {
  background-color: #f9f8f4;
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  padding-block: min(100px, 7.8125vw);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .recruitInterview {
    padding-block: 60px;
  }
}

.recruitInterview__band {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: min(40px, 3.125vw);
  margin-bottom: min(-80px, -6.25vw);
}
.recruitInterview__band img {
  height: min(263px, 20.546875vw);
  width: auto;
  max-width: none;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .recruitInterview__band {
    padding-top: 24px;
    margin-bottom: 28px;
  }
  .recruitInterview__band img {
    height: 90px;
  }
}

.recruitInterview__head {
  margin-bottom: min(46px, 3.59375vw);
}

.recruitIvBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(28px, 2.1875vw);
  margin-bottom: min(57px, 4.453125vw);
}

/* イントロ（写真＋プロフィールカード） */
.recruitIvIntro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  max-width: var(--cnt);
}
@media only screen and (max-width: 959px) {
  .recruitIvIntro {
    position: static;
    left: auto;
    -webkit-transform: none;
            transform: none;
    width: auto;
    max-width: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: min(24px, 1.875vw);
  }
}
.recruitIvIntro--photoLeft {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 959px) {
  .recruitIvIntro--photoLeft {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruitIvIntro__photo {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/0.56;
  width: 751px;
}
.recruitIvIntro__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
@media only screen and (max-width: 959px) {
  .recruitIvIntro__photo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .recruitIvIntro__photo {
    border-radius: 16px;
  }
}
.recruitIvIntro__card {
  position: relative;
  z-index: 1;
  margin-left: calc(var(--interval) + 15px);
  margin-right: max(-70px, -5.46875vw);
  margin-top: 70px;
  background-color: var(--white);
  border-radius: 30px;
  padding: min(60px, 4.6875vw) min(55px, 4.296875vw);
  width: 622px;
}
@media only screen and (max-width: 959px) {
  .recruitIvIntro__card {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    margin-inline: 0;
    padding: min(40px, 3.125vw);
  }
}
@media only screen and (max-width: 767px) {
  .recruitIvIntro__card {
    padding: 28px 24px;
    border-radius: 16px;
  }
}
.recruitIvIntro--photoLeft .recruitIvIntro__card {
  margin-left: -150px;
  margin-right: 60px;
}
@media only screen and (max-width: 959px) {
  .recruitIvIntro--photoLeft .recruitIvIntro__card {
    margin-inline: 0;
  }
}
.recruitIvIntro__no {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: min(35px, 2.734375vw);
}
@media only screen and (max-width: 767px) {
  .recruitIvIntro__no {
    font-size: 15px;
    margin-bottom: 18px;
  }
}
.recruitIvIntro__headline {
  font-size: clamp(12px, 2.1875vw, 28px);
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: 0.07em;
  color: var(--titleBlack);
  margin-bottom: min(35px, 2.734375vw);
}
@media only screen and (max-width: 767px) {
  .recruitIvIntro__headline {
    font-size: 20px;
    margin-bottom: 18px;
  }
}
.recruitIvIntro__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(7px, 0.546875vw);
}
.recruitIvIntro__name {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 700;
  color: #333;
}
.recruitIvIntro__career {
  color: var(--white);
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  border-radius: 20px;
  padding: min(13px, 1.015625vw) min(16px, 1.25vw);
}
@media only screen and (max-width: 767px) {
  .recruitIvIntro__career {
    font-size: 13px;
    padding: 8px 14px;
  }
}

/* Q&A（カード＋写真の交互配置） */
.recruitIvQa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  max-width: var(--cnt);
}
@media only screen and (max-width: 959px) {
  .recruitIvQa {
    position: static;
    left: auto;
    -webkit-transform: none;
            transform: none;
    width: auto;
    max-width: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: min(24px, 1.875vw);
  }
}
.recruitIvQa--photoLeft {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 959px) {
  .recruitIvQa--photoLeft {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruitIvQa__card {
  position: relative;
  z-index: 1;
  margin-left: calc(var(--interval) + 15px);
  margin-right: min(20px, 1.5625vw);
  background-color: var(--white);
  border-radius: 30px;
  padding: min(45px, 3.515625vw) min(66px, 5.15625vw) min(50px, 3.90625vw);
  width: 648px;
}
@media only screen and (max-width: 959px) {
  .recruitIvQa__card {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    margin-inline: 0;
  }
}
@media only screen and (max-width: 767px) {
  .recruitIvQa__card {
    padding: 26px 24px;
    border-radius: 16px;
  }
}
.recruitIvQa--photoLeft .recruitIvQa__card {
  margin-left: min(20px, 1.5625vw);
  margin-right: calc(var(--interval) + 15px);
}
@media only screen and (max-width: 959px) {
  .recruitIvQa--photoLeft .recruitIvQa__card {
    margin-inline: 0;
  }
}
.recruitIvQa__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(16px, 1.25vw);
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  color: var(--titleBlack);
  margin-bottom: min(21px, 1.640625vw);
}
@media only screen and (max-width: 767px) {
  .recruitIvQa__q {
    font-size: 16px;
    margin-bottom: 14px;
  }
}
.recruitIvQa__dash {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(28px, 2.1875vw);
  height: min(5px, 0.390625vw);
}
@media only screen and (max-width: 767px) {
  .recruitIvQa__dash {
    width: 22px;
    height: 4px;
  }
}
.recruitIvQa__a {
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 700;
  line-height: 1.69;
  color: #333;
}
@media only screen and (max-width: 767px) {
  .recruitIvQa__a {
    font-size: 14px;
  }
}
.recruitIvQa__photo {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  width: 552px;
}
.recruitIvQa__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
@media only screen and (max-width: 959px) {
  .recruitIvQa__photo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .recruitIvQa__photo img {
    height: auto;
    aspect-ratio: 552/319;
  }
}

/*------------ ある1日の流れ ------------*/
.recruitSchedule {
  background-color: var(--white);
  border-radius: 20px;
  padding: min(100px, 7.8125vw) min(88px, 6.875vw);
  margin-bottom: min(40px, 3.125vw);
}
@media only screen and (max-width: 767px) {
  .recruitSchedule {
    padding: 40px 20px;
    border-radius: 14px;
  }
}

.recruitSchedule__head {
  margin-bottom: min(40px, 3.125vw);
}

.recruitSchedule__title {
  font-size: clamp(22px, 3.359375vw, 43px);
  font-weight: 600;
  color: var(--titleBlack);
}

.recruitSchedule__list {
  --sch-rail: min(170px, 13.28125vw);
  --sch-gap: min(30px, 2.34375vw);
  --sch-dot: min(11px, 0.859375vw);
  --sch-dotY: min(22px, 1.71875vw);
  position: relative;
  padding-left: var(--sch-rail);
}
@media only screen and (max-width: 767px) {
  .recruitSchedule__list {
    --sch-rail: 70px;
    --sch-gap: 16px;
    --sch-dot: 8px;
    --sch-dotY: 14px;
  }
}

.recruitScheduleItem {
  position: relative;
  padding-bottom: min(30px, 2.34375vw);
}
@media only screen and (max-width: 767px) {
  .recruitScheduleItem {
    padding-bottom: 22px;
  }
}
.recruitScheduleItem:last-child {
  padding-bottom: 0;
}
.recruitScheduleItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: var(--sch-dotY);
  height: 100%;
  width: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--accentTerracotta);
}
.recruitScheduleItem:last-child::before {
  display: none;
}
.recruitScheduleItem__time {
  position: absolute;
  left: calc(-1 * var(--sch-rail));
  top: 0;
  width: min(100px, 7.8125vw);
  font-size: clamp(17px, 3.125vw, 40px);
  font-weight: 600;
  color: var(--accentTerracotta);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .recruitScheduleItem__time {
    width: 56px;
  }
}
.recruitScheduleItem__body {
  padding-left: var(--sch-gap);
}
.recruitScheduleItem__title {
  font-size: clamp(16px, 2.1875vw, 28px);
  font-weight: 600;
  color: var(--titleBlack);
  margin-bottom: 4px;
  position: relative;
}
.recruitScheduleItem__title::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--sch-gap) - var(--sch-dot) / 2);
  top: calc(var(--sch-dotY) - var(--sch-dot) / 2);
  width: var(--sch-dot);
  height: var(--sch-dot);
  border-radius: 50%;
  background-color: var(--accentTerracotta);
}
.recruitScheduleItem__note {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 500;
  color: var(--textMain);
}
@media only screen and (max-width: 767px) {
  .recruitScheduleItem__note {
    font-size: clamp(12px, 1.09375vw, 14px);
  }
}

/*------------ 募集要項 ------------*/
.recruitReq {
  padding-block: min(120px, 9.375vw);
}
@media only screen and (max-width: 767px) {
  .recruitReq {
    padding-block: 60px;
  }
}

.recruitReq__head {
  margin-bottom: min(40px, 3.125vw);
}

.recruitReqTable {
  max-width: 989px;
}
.recruitReqTable__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(148px, 11.5625vw);
  padding-block: min(32px, 2.5vw);
  padding-inline: min(40px, 3.125vw);
  border-top: 1px solid var(--crumbGray);
}
.recruitReqTable__row:last-child {
  border-bottom: 1px solid var(--crumbGray);
}
.recruitReqTable__row dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(71px, 5.546875vw);
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--titleBlack);
  white-space: nowrap;
}
.recruitReqTable__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .recruitReqTable__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    padding-block: 16px;
    padding-inline: 0;
  }
  .recruitReqTable__row dt {
    width: auto;
  }
  .recruitReqTable__row dt, .recruitReqTable__row dd {
    font-size: 14px;
  }
}
.recruitReqTable__map {
  margin-top: 16px;
  width: min(694px, 54.21875vw);
  max-width: 100%;
  aspect-ratio: 694/272;
  overflow: hidden;
}
.recruitReqTable__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 38%;
     object-position: center 38%;
  margin: 0;
}
.recruitReqTable__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media only screen and (max-width: 767px) {
  .recruitReqTable__map {
    width: 100%;
    aspect-ratio: 343/200;
  }
}

/*------------ 募集要項：職種アコーディオン ------------*/
.recruitReqAcc {
  max-width: 989px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(16px, 1.25vw);
}
.recruitReqAcc__item {
  border: 1px solid var(--crumbGray);
  border-radius: min(12px, 0.9375vw);
  overflow: hidden;
  -webkit-transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.recruitReqAcc__item.is-open {
  border-color: var(--accentTerracotta);
}
.recruitReqAcc__head {
  width: 100%;
  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: min(20px, 1.5625vw);
  padding-block: min(24px, 1.875vw);
  padding-inline: min(32px, 2.5vw);
  background-color: #f6efeb;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--titleBlack);
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.recruitReqAcc__head:hover {
  background-color: #eee1d9;
}
@media only screen and (max-width: 767px) {
  .recruitReqAcc__head {
    padding-block: 16px;
    padding-inline: 18px;
  }
}
.recruitReqAcc__item.is-open .recruitReqAcc__head {
  background-color: var(--accentTerracotta);
  color: #fff;
}
.recruitReqAcc__job {
  font-size: clamp(15px, 1.5625vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: inherit;
}
@media only screen and (max-width: 767px) {
  .recruitReqAcc__job {
    font-size: 16px;
  }
}
.recruitReqAcc__icon {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--accentTerracotta);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .recruitReqAcc__icon {
    width: 26px;
    height: 26px;
  }
}
.recruitReqAcc__icon::before, .recruitReqAcc__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transition: -webkit-transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
.recruitReqAcc__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.recruitReqAcc__item.is-open .recruitReqAcc__icon {
  background-color: #fff;
}
.recruitReqAcc__item.is-open .recruitReqAcc__icon::before, .recruitReqAcc__item.is-open .recruitReqAcc__icon::after {
  background-color: var(--accentTerracotta);
}
.recruitReqAcc__item.is-open .recruitReqAcc__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
.recruitReqAcc__body {
  padding-inline: min(32px, 2.5vw);
}
@media only screen and (max-width: 767px) {
  .recruitReqAcc__body {
    padding-inline: 18px;
  }
}
.recruitReqAcc__body .recruitReqTable {
  max-width: none;
}
.recruitReqAcc__body .recruitReqTable__row {
  padding-inline: 0;
}
.recruitReqAcc__body .recruitReqTable__row:first-child {
  border-top: 0;
}
.recruitReqAcc__body .recruitReqTable__row:last-child {
  border-bottom: 0;
}

/*------------ コンタクト（採用専用 CTA） ------------*/
.recruitContact {
  padding-block: min(120px, 9.375vw);
}
@media only screen and (max-width: 767px) {
  .recruitContact {
    padding-block: 60px;
  }
}

.recruitContact__panel {
  position: relative;
  width: 100%;
  max-width: 1018px;
  margin-inline: auto;
  aspect-ratio: 1018/624;
  background-color: #f0b656;
  border-radius: min(60px, 4.6875vw);
  overflow: hidden;
  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;
}
@media only screen and (max-width: 767px) {
  .recruitContact__panel {
    aspect-ratio: auto;
    border-radius: 30px;
    padding: 50px 15px;
  }
}

.recruitContact__arc {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation: recruitArcSpin 60s linear infinite;
          animation: recruitArcSpin 60s linear infinite;
}
@media only screen and (max-width: 767px) {
  .recruitContact__arc {
    width: 150%;
  }
}
.recruitContact__arc svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.recruitContact__arcText {
  font-family: var(--fontEn);
  font-size: 110px;
  font-weight: 600;
  letter-spacing: 0.02em;
  fill: #e29a37;
}

@-webkit-keyframes recruitArcSpin {
  from {
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(360deg);
            transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes recruitArcSpin {
  from {
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
  }
  to {
    -webkit-transform: translateX(-50%) rotate(360deg);
            transform: translateX(-50%) rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .recruitContact__arc {
    -webkit-animation: none;
            animation: none;
  }
}
.recruitContact__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(866px, 67.65625vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(37px, 2.890625vw);
}
@media only screen and (max-width: 767px) {
  .recruitContact__inner {
    gap: 28px;
    max-width: 100%;
  }
}

.recruitContact__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(18px, 1.40625vw);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .recruitContact__head {
    gap: 14px;
  }
}

.recruitContact__title {
  font-size: clamp(20px, 3.359375vw, 43px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: var(--white);
}

.recruitContact__lead {
  font-size: clamp(15px, 1.40625vw, 18px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: var(--white);
}

.recruitContact__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(20px, 1.5625vw);
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .recruitContact__body {
    gap: 24px;
  }
}

.recruitContact__illusts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(866px, 67.65625vw);
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .recruitContact__illusts {
    max-width: none;
    width: 110%;
    margin-inline: -15px;
  }
}
.recruitContact__illusts .recruitContact__illust {
  height: auto;
  margin: 0;
}
.recruitContact__illusts .recruitContact__illust--1 {
  width: 17.3210161663%;
}
.recruitContact__illusts .recruitContact__illust--2 {
  width: 14.4341801386%;
}
.recruitContact__illusts .recruitContact__illust--3 {
  width: 39.1454965358%;
}
.recruitContact__illusts .recruitContact__illust--4 {
  width: 14.4341801386%;
}
.recruitContact__illusts .recruitContact__illust--5 {
  width: 14.4341801386%;
}

.recruitContact__btn {
  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: 10px;
  background-color: var(--white);
  color: #333;
  border-radius: 70px;
  padding: min(30px, 2.34375vw) min(37px, 2.890625vw);
  font-size: clamp(16px, 1.640625vw, 21px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  -webkit-box-shadow: 0 5px 20px rgba(109, 95, 74, 0.15);
          box-shadow: 0 5px 20px rgba(109, 95, 74, 0.15);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recruitContact__btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  color: #333;
}
@media only screen and (max-width: 767px) {
  .recruitContact__btn {
    padding: 18px 32px;
  }
}

.recruitContact__btnIcon {
  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;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--accentBlue);
  color: var(--white);
  font-size: clamp(12px, 0.78125vw, 12px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.recruitContact__btnLabel {
  font-weight: 600;
}

/*------------ エントリーフォーム ------------*/
.recruitEntry {
  padding-bottom: min(120px, 9.375vw);
}
@media only screen and (max-width: 767px) {
  .recruitEntry {
    padding-bottom: 60px;
  }
}

.recruitEntry__panel {
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  border-radius: 20px;
  padding: min(110px, 8.59375vw) min(202px, 15.78125vw) min(50px, 3.90625vw);
}
@media only screen and (max-width: 959px) {
  .recruitEntry__panel {
    padding: 60px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitEntry__panel {
    padding: 40px 20px;
    border-radius: 14px;
  }
}

.recruitEntry__head {
  text-align: center;
  margin-bottom: min(41px, 3.203125vw);
}

.recruitEntry__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(67px, 5.234375vw);
  margin-bottom: min(50px, 3.90625vw);
}
@media only screen and (max-width: 767px) {
  .recruitEntry__steps {
    gap: 24px;
  }
}

.recruitEntryStep {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--crumbGray);
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  height: 195px;
  width: 195px;
}
@media only screen and (max-width: 767px) {
  .recruitEntryStep {
    height: 95px;
    width: 95px;
  }
}
.recruitEntryStep.is-active {
  color: var(--accentTerracotta);
}
.recruitEntryStep__no {
  font-size: clamp(28px, 6.25vw, 80px);
  font-weight: 600;
  line-height: 1;
}
.recruitEntryStep__label {
  font-size: clamp(14px, 1.71875vw, 22px);
  font-weight: 600;
  color: var(--titleBlack);
  margin-top: 8px;
}
.recruitEntryStep:not(.is-active) .recruitEntryStep__label {
  color: var(--crumbGray);
}

/* --- Snow Monkey Forms の画面状態に応じてステップのアクティブを切り替え --- */
/* 確認画面（data-screen="confirm"）：2「内容の確認」をアクティブに */
.recruitEntry__panel:has([data-screen=confirm]) .recruitEntryStep:nth-child(1) {
  color: var(--crumbGray);
}
.recruitEntry__panel:has([data-screen=confirm]) .recruitEntryStep:nth-child(1) .recruitEntryStep__label {
  color: var(--crumbGray);
}
.recruitEntry__panel:has([data-screen=confirm]) .recruitEntryStep:nth-child(2) {
  color: var(--accentTerracotta);
}
.recruitEntry__panel:has([data-screen=confirm]) .recruitEntryStep:nth-child(2) .recruitEntryStep__label {
  color: var(--titleBlack);
}

/* 完了画面（data-screen="complete"）：3「送信」をアクティブに */
.recruitEntry__panel:has([data-screen=complete]) .recruitEntryStep:nth-child(1),
.recruitEntry__panel:has([data-screen=complete]) .recruitEntryStep:nth-child(2) {
  color: var(--crumbGray);
}
.recruitEntry__panel:has([data-screen=complete]) .recruitEntryStep:nth-child(1) .recruitEntryStep__label,
.recruitEntry__panel:has([data-screen=complete]) .recruitEntryStep:nth-child(2) .recruitEntryStep__label {
  color: var(--crumbGray);
}
.recruitEntry__panel:has([data-screen=complete]) .recruitEntryStep:nth-child(3) {
  color: var(--accentTerracotta);
}
.recruitEntry__panel:has([data-screen=complete]) .recruitEntryStep:nth-child(3) .recruitEntryStep__label {
  color: var(--titleBlack);
}

/* 完了画面のメッセージはセンター揃え */
.recruitEntry [data-screen=complete] {
  text-align: center;
}

.recruitForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(34px, 2.65625vw);
}
.recruitForm__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.recruitForm__label {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 500;
  color: var(--titleBlack);
}
@media only screen and (max-width: 767px) {
  .recruitForm__label {
    font-size: clamp(12px, 1.25vw, 16px);
  }
}
.recruitForm__req {
  color: #ff5b5b;
  margin-left: 0.3em;
}
.recruitForm input[type=text],
.recruitForm input[type=email],
.recruitForm input[type=tel],
.recruitForm textarea {
  width: 100%;
  background-color: var(--white);
  border: none;
  border-radius: 2px;
  padding: 17px 18px;
  font-size: clamp(12px, 1.25vw, 16px);
  font-family: var(--fontJp);
}
.recruitForm input[type=text]::-webkit-input-placeholder, .recruitForm input[type=email]::-webkit-input-placeholder, .recruitForm input[type=tel]::-webkit-input-placeholder, .recruitForm textarea::-webkit-input-placeholder {
  color: var(--crumbGray);
}
.recruitForm input[type=text]::-moz-placeholder, .recruitForm input[type=email]::-moz-placeholder, .recruitForm input[type=tel]::-moz-placeholder, .recruitForm textarea::-moz-placeholder {
  color: var(--crumbGray);
}
.recruitForm input[type=text]:-ms-input-placeholder, .recruitForm input[type=email]:-ms-input-placeholder, .recruitForm input[type=tel]:-ms-input-placeholder, .recruitForm textarea:-ms-input-placeholder {
  color: var(--crumbGray);
}
.recruitForm input[type=text]::-ms-input-placeholder, .recruitForm input[type=email]::-ms-input-placeholder, .recruitForm input[type=tel]::-ms-input-placeholder, .recruitForm textarea::-ms-input-placeholder {
  color: var(--crumbGray);
}
.recruitForm input[type=text]::placeholder,
.recruitForm input[type=email]::placeholder,
.recruitForm input[type=tel]::placeholder,
.recruitForm textarea::placeholder {
  color: var(--crumbGray);
}
.recruitForm textarea {
  resize: vertical;
  min-height: 171px;
}
.recruitForm__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 32px;
}
.recruitForm__radios label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 500;
}
.recruitForm__consent {
  text-align: center;
}
.recruitForm__consent label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 500;
}
.recruitForm__submit {
  text-align: center;
  margin-top: min(10px, 0.78125vw);
}
.recruitForm__btn {
  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: 12px;
  background-color: var(--white);
  color: var(--textMain);
  border: none;
  cursor: pointer;
  border-radius: 70px;
  padding: 20px 60px;
  font-size: clamp(12px, 1.640625vw, 21px);
  font-weight: 500;
  -webkit-box-shadow: 0 5px 20px rgba(109, 95, 74, 0.15);
          box-shadow: 0 5px 20px rgba(109, 95, 74, 0.15);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recruitForm__btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.recruitForm__btnIcon {
  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;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accentGold);
  color: var(--white);
  font-size: clamp(12px, 0.859375vw, 12px);
}

/* --- Snow Monkey Forms を .recruitForm デザインに合わせる（実フォームは smf-* 出力） --- */
.recruitEntry .snow-monkey-form {
  max-width: 756px;
  margin-inline: auto;
}
.recruitEntry .smf-form {
  color: var(--titleBlack);
}
.recruitEntry .smf-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: min(34px, 2.65625vw);
  padding: 0;
  border: none;
}
.recruitEntry .smf-item:last-child {
  margin-bottom: 0;
}
.recruitEntry .smf-item__col {
  width: 100%;
  max-width: none;
  padding: 0;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background: none;
  border: none;
}
.recruitEntry .smf-item__label,
.recruitEntry .smf-item__label__text {
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--titleBlack);
}
.recruitEntry .smf-item__label,
.recruitEntry .smf-item__label__text {
  background: none;
}
.recruitEntry .smf-item__label__require,
.recruitEntry .smf-item__label [class*=require],
.recruitEntry .smf-item__label [class*=optional] {
  margin-left: 0.5em;
  padding: 0;
  background: none;
  font-size: clamp(12px, 1.015625vw, 13px);
  font-weight: 600;
  vertical-align: middle;
}
.recruitEntry .smf-item__label__require,
.recruitEntry .smf-item__label [class*=require] {
  color: #ff5b5b;
}
.recruitEntry .smf-item__label [class*=optional] {
  color: var(--crumbGray);
}
.recruitEntry .smf-item:has([data-validations~=required]) .smf-item__label__text::after {
  content: "*";
  margin-left: 0.25em;
  color: #C98867;
  font-weight: 700;
  vertical-align: middle;
}
.recruitEntry .smf-text-control__control,
.recruitEntry .smf-textarea-control__control {
  width: 100%;
  max-width: none;
  background-color: var(--white);
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 17px 18px;
  font-size: clamp(12px, 1.25vw, 16px);
  font-family: var(--fontJp);
  color: var(--titleBlack);
}
.recruitEntry .smf-text-control__control::-webkit-input-placeholder, .recruitEntry .smf-textarea-control__control::-webkit-input-placeholder {
  color: var(--crumbGray);
}
.recruitEntry .smf-text-control__control::-moz-placeholder, .recruitEntry .smf-textarea-control__control::-moz-placeholder {
  color: var(--crumbGray);
}
.recruitEntry .smf-text-control__control:-ms-input-placeholder, .recruitEntry .smf-textarea-control__control:-ms-input-placeholder {
  color: var(--crumbGray);
}
.recruitEntry .smf-text-control__control::-ms-input-placeholder, .recruitEntry .smf-textarea-control__control::-ms-input-placeholder {
  color: var(--crumbGray);
}
.recruitEntry .smf-text-control__control::placeholder,
.recruitEntry .smf-textarea-control__control::placeholder {
  color: var(--crumbGray);
}
.recruitEntry .smf-text-control__control:hover,
.recruitEntry .smf-textarea-control__control:hover {
  border-color: var(--crumbGray);
}
.recruitEntry .smf-text-control__control:focus, .recruitEntry .smf-text-control__control:focus-within,
.recruitEntry .smf-textarea-control__control:focus,
.recruitEntry .smf-textarea-control__control:focus-within {
  border-color: var(--accentGold);
}
@media only screen and (max-width: 767px) {
  .recruitEntry .smf-text-control__control,
  .recruitEntry .smf-textarea-control__control {
    font-size: 16px;
  }
}
.recruitEntry .smf-textarea-control__control {
  min-height: 171px;
  resize: vertical;
}
.recruitEntry .smf-text-control__control:has(input[type=text]),
.recruitEntry .smf-text-control__control:has(input[type=email]) {
  background-color: var(--white);
}
.recruitEntry .smf-text-control__control:has(input[type=tel]),
.recruitEntry .smf-textarea-control__control {
  border: none;
}
.recruitEntry .smf-checkboxes-control,
.recruitEntry .smf-radio-buttons-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 28px;
}
.recruitEntry .smf-checkbox-control,
.recruitEntry .smf-radio-button-control {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruitEntry .smf-checkbox-control__label,
.recruitEntry .smf-radio-button-control__label,
.recruitEntry .smf-label {
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 500;
  color: var(--titleBlack);
  cursor: pointer;
}
.recruitEntry .smf-checkbox-control__control:checked,
.recruitEntry .smf-radio-button-control__control:checked {
  background-color: var(--accentGold) !important;
  border-color: var(--accentGold) !important;
}
.recruitEntry .smf-action {
  margin-top: min(41px, 3.203125vw);
  text-align: center;
}
.recruitEntry .smf-action button {
  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: 10px;
  white-space: nowrap;
  background-color: var(--white);
  background-image: none;
  color: var(--textMain);
  border: none;
  border-radius: 60px;
  padding: 18px 50px;
  font-size: clamp(12px, 1.40625vw, 18px);
  font-weight: 500;
  font-family: var(--fontJp);
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .recruitEntry .smf-action button {
    padding: 16px 36px;
    font-size: 16px;
  }
}
.recruitEntry .smf-action button::after {
  content: "→";
  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;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--accentGold);
  color: var(--white);
  font-size: clamp(12px, 0.859375vw, 12px);
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recruitEntry .smf-action button:hover::after {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
.recruitEntry .smf-action button[data-action=back]::after {
  background-color: var(--accentBlue);
}
.recruitEntry .smf-action button.smf-button-control--back, .recruitEntry .smf-action button[class*="--back"] {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--textMain);
}
.recruitEntry .smf-action button.smf-button-control--back::after, .recruitEntry .smf-action button[class*="--back"]::after {
  content: none;
}

/*==================================================
 * お問い合わせページ
*================================================*/
/*------------ FV（中央寄せ見出し＋リード＋パンくず） ------------*/
.contactFv {
  position: relative;
  overflow: hidden;
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  padding: min(245px, 19.140625vw) 15px min(64px, 5vw);
}
@media only screen and (max-width: 959px) {
  .contactFv {
    padding: 120px 15px 40px;
  }
}

.contactFv__inner {
  width: 100%;
  max-width: 1062px;
  margin-inline: auto;
}

.contactFv__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: min(52px, 4.0625vw);
}
@media only screen and (max-width: 767px) {
  .contactFv__head {
    gap: 22px;
  }
}

.contactFv__en {
  font-size: clamp(12px, 1.5625vw, 20px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--accentTerracotta);
}
@media only screen and (max-width: 767px) {
  .contactFv__en {
    font-size: clamp(12px, 1.171875vw, 15px);
  }
}

.contactFv__title {
  font-size: clamp(28px, 4.6875vw, 60px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0.13em;
  color: var(--titleBlack);
}

.contactFv__lead {
  font-size: clamp(12px, 1.40625vw, 18px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--textMain);
}
@media only screen and (max-width: 767px) {
  .contactFv__lead {
    font-size: clamp(12px, 1.09375vw, 14px);
  }
}

.contactFv .breadcrumbs {
  margin-top: min(48px, 3.75vw);
}
@media only screen and (max-width: 767px) {
  .contactFv .breadcrumbs {
    margin-top: 28px;
  }
}
.contactFv .breadcrumbs .breadcrumbsInner span {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--textMain);
}
.contactFv .breadcrumbs .breadcrumbsInner a,
.contactFv .breadcrumbs .breadcrumbsInner a span {
  color: var(--crumbGray);
}
@media only screen and (max-width: 767px) {
  .contactFv .breadcrumbs .breadcrumbsInner span {
    font-size: 12px;
  }
}

/*------------ お電話でお問い合わせ ------------*/
.contactTel {
  background-color: var(--white);
  padding-block: min(90px, 7.03125vw);
}
@media only screen and (max-width: 767px) {
  .contactTel {
    padding-block: 50px;
  }
}

.contactTel__inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(74px, 5.78125vw);
}
@media only screen and (max-width: 767px) {
  .contactTel__inner {
    gap: 40px;
  }
}

.contactTel__head {
  width: 100%;
  max-width: 908px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: min(60px, 4.6875vw);
}
@media only screen and (max-width: 959px) {
  .contactTel__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}

.contactTel__en {
  font-size: clamp(16px, 1.5625vw, 20px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--accentBlue);
  margin-bottom: min(16px, 1.25vw);
}

.contactTel__title {
  font-size: clamp(28px, 3.359375vw, 43px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--titleBlack);
}

.contactTel__note {
  font-size: clamp(14px, 1.5625vw, 20px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--textMain);
}

.contactTel__box {
  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: min(26px, 2.03125vw);
}
@media only screen and (max-width: 767px) {
  .contactTel__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}

.contactTel__icon {
  width: min(143px, 11.171875vw);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contactTel__icon img {
  width: 100%;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .contactTel__icon {
    width: 110px;
  }
}

.contactTel__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(19px, 1.484375vw);
  text-align: center;
}

.contactTel__num {
  display: block;
  font-size: clamp(28px, 4.6875vw, 60px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.13em;
  color: var(--titleBlack);
}
.contactTel__num:hover {
  color: var(--titleBlack);
}

.contactTel__hours {
  display: block;
  font-size: clamp(15px, 2.1875vw, 28px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--textMain);
}

/*==================================================
 * 404 / ページが見つかりません
*================================================*/
.notFound {
  position: relative;
  overflow: hidden;
  background-color: var(--pageBg);
  background-image: url(../img/contact/contact__texture.png);
  background-repeat: repeat;
  background-size: 128px 128px;
  padding: min(220px, 17.1875vw) 15px min(150px, 11.71875vw);
}
@media only screen and (max-width: 959px) {
  .notFound {
    padding: 120px 15px 80px;
  }
}

.notFound__inner {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.notFound__code {
  font-size: clamp(80px, 9.375vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--accentBlue);
}

.notFound__en {
  margin-top: min(14px, 1.09375vw);
  font-size: clamp(12px, 1.71875vw, 22px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--accentBlue);
}
@media only screen and (max-width: 767px) {
  .notFound__en {
    font-size: 16px;
  }
}

.notFound__title {
  margin-top: min(44px, 3.4375vw);
  font-size: clamp(20px, 2.1875vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--titleBlack);
}

.notFound__lead {
  margin-top: min(24px, 1.875vw);
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--textMain);
}

.notFound__btn {
  margin-top: min(48px, 3.75vw);
}
@media only screen and (max-width: 767px) {
  .notFound__btn {
    margin-top: 36px;
  }
}

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