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

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


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

*/
/* ----------------------------------
使う↓
---------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
:root {
  --mainColorLight: #529E1C;
  --mainColor: #12765E;
  --mainColorDeep: #05503E;
  --subColor: #401B17;
  --grayColor: #F7F7F7;
  --fontColor: #1E1E1E;
  --lemon: #FEFFF7;
  --teal: #EBF2EE;
  --khaki: #D4D9D7;
  --beige: #EFF0E7;
  --white100: #fff;
  --natural700: #747474;
  --natural500: #B9B9B9;
  --natural300: #E0E0E0;
  --white80: rgba(255,255,255,0.8);
  --white60: rgba(255,255,255,0.6);
  --white40: rgba(255,255,255,0.4);
}

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

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

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

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

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

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

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

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

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

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

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

.bgLemon {
  background-color: var(--lemon);
}

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

.bgTeal {
  background-color: var(--teal);
}

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

.bgKhaki {
  background-color: var(--khaki);
}

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

.bgBeige {
  background-color: var(--beige);
}

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

.bgWhite100 {
  background-color: var(--white100);
}

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

.bgWhite80 {
  background-color: var(--white80);
}

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

.bgWhite60 {
  background-color: var(--white60);
}

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

.bgWhite40 {
  background-color: var(--white40);
}

/*フォント系*/
:root {
  --fontEn: "Shippori Mincho B1", serif;
  --fontJp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

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

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

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

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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

input,
select {
  vertical-align: middle;
}

li {
  list-style-type: none;
}

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

html {
  font-size: 10px;
}

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

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

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

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

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

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

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

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

.ls_xl {
  letter-spacing: 0.2em;
}

.ls_l {
  letter-spacing: 0.15em;
}

.ls_m {
  letter-spacing: 0.1em;
}

.ls_s {
  letter-spacing: 0.05em;
}

.ls_xs {
  letter-spacing: 0.01em;
}

.ls_0 {
  letter-spacing: 0;
}

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

.thin {
  font-weight: 100;
}

.normal {
  font-weight: 400;
}

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

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

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

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

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}

.black {
  color: #333;
}

.gray {
  color: #686868;
}

.red {
  color: #EC462F !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h000 {
  font-size: 100px;
}

.h00 {
  font-size: 64px;
}

.h0 {
  font-size: 42px;
}

.h1 {
  font-size: 32px;
}

.h2 {
  font-size: 28px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 16px;
}

.text_m {
  font-size: 14px;
}

.text_sm {
  font-size: 13px;
}

.text_s {
  font-size: 12px;
}

.text_ss {
  font-size: 10px;
}

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

html,
body {
  width: 100%;
}

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

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

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

hr {
  margin: 10px auto;
}

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

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

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

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

.inlineBlockUl li {
  display: inline-block;
}

.disNone {
  display: none !important;
}

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

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

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

.overHidden {
  overflow: hidden;
}

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

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

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

.p0 {
  padding: 0;
}

.mtAuto {
  margin-top: auto;
}

.mrAuto {
  margin-right: auto;
}

.mbAuto {
  margin-bottom: auto;
}

.mlAuto {
  margin-left: auto;
}

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

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

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

.ml05 {
  margin-left: 0.5em;
}

.ml1 {
  margin-left: 1em;
}

.ml2 {
  margin-left: 2em;
}

.ml3 {
  margin-left: 3em;
}

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

.mtL2 {
  margin-top: 25%;
}

.mtL3 {
  margin-top: 20%;
}

.mtL4 {
  margin-top: 15%;
}

.mtM {
  margin-top: 10%;
}

.mtM2 {
  margin-top: 7.5%;
}

.mtM3 {
  margin-top: 5%;
}

.mtS {
  margin-top: 3.5%;
}

.mtS2 {
  margin-top: 2%;
}

.mtS3 {
  margin-top: 1%;
}

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

.mbL2 {
  margin-bottom: 25%;
}

.mbL3 {
  margin-bottom: 20%;
}

.mbL4 {
  margin-bottom: 15%;
}

.mbM {
  margin-bottom: 10%;
}

.mbM2 {
  margin-bottom: 7.5%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS3 {
  margin-bottom: 1%;
}

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

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

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

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

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

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

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

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

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

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

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

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

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

.pl1 {
  padding-left: 1em;
}

.pl2 {
  padding-left: 2em;
}

.pl3 {
  padding-left: 3em;
}

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

.pbL2 {
  padding-bottom: 25%;
}

.pbL3 {
  padding-bottom: 20%;
}

.pbL4 {
  padding-bottom: 15%;
}

.pbM {
  padding-bottom: 10%;
}

.pbM2 {
  padding-bottom: 7.5%;
}

.pbM3 {
  padding-bottom: 5%;
}

.pbS {
  padding-bottom: 3.5%;
}

.pbS2 {
  padding-bottom: 2%;
}

.pbS3 {
  padding-bottom: 1%;
}

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

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

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

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

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

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

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

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

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

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

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

.flexCol {
  width: 100%;
}

.col1 {
  width: 100%;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 33.3333%;
}

.col-3 {
  width: 66.6666%;
}

.col4 {
  width: 25%;
}

.col-4 {
  width: 75%;
}

.col5 {
  width: 20%;
}

.col-5 {
  width: 80%;
}

.col6 {
  width: 16.666%;
}

.col-6 {
  width: 83.333%;
}

.col3-2 {
  width: 60%;
}

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

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

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

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

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

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

.gap-10 {
  gap: 10px;
}

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

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

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

.gap-20 {
  gap: 20px;
}

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

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

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

.gap-30 {
  gap: 30px;
}

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

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

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

.gap-40 {
  gap: 40px;
}

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

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

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

.gap-50 {
  gap: 50px;
}

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

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

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

.gap-60 {
  gap: 60px;
}

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

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

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

.gap-70 {
  gap: 70px;
}

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

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

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

.gap-80 {
  gap: 80px;
}

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

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

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

.gap-90 {
  gap: 90px;
}

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

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

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

.gap-100 {
  gap: 100px;
}

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

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

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

.w100 {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

.paNone {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

.marginCenter {
  margin-inline: auto;
}

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

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

.bgImgHeight {
  padding-bottom: 67%;
}

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

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

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

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

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

.bgWhite {
  background-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

.radiusCircle {
  border-radius: 50%;
}

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

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

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

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

/*マウスストーカー*/
.pageHeader {
  position: relative;
  background-size: 168vw;
  background-position: bottom center;
  padding-block: clamp(100px, 18.4vw, 240px) clamp(85px, 21.9vw, 350px);
  z-index: 10;
}
.pageHeader.__single {
  padding-block: 140px 10px;
  background-size: 100vw;
  background-position: top center;
}
.pageHeader.__service {
  padding-block: 135px 0;
  background-size: 100vw;
  background-position: top center;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageHeader.__single {
    padding-block: 70px 10px;
  }
  .pageHeader.__service {
    padding-block: 70px 0;
  }
}
@media only screen and (max-width: 767px) {
  .pageHeader {
    background-size: 200vw;
    background-position: top center;
  }
  .pageHeader.__single {
    padding-block: 80px 10px;
    background-size: 180vw;
    background-position: -53vw top;
  }
  .pageHeader.__service {
    padding-block: 80px 0;
    background-size: 185vw;
    background-position: -76vw top;
  }
}

.pageHeaderIn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pageHeaderTitleEn {
  color: #fff;
  font-size: clamp(42px, 5.7vw, 72px);
  font-family: var(--fontEn);
  line-height: 0.9;
}

.pageHeaderTitleJp {
  color: #fff;
  line-height: 1;
  font-size: clamp(14px, 1.6vw, 20px);
  padding-left: 1.5em;
  margin-left: 1.5em;
  border-left: 1px solid var(--white40);
  margin-top: 1em;
  padding-block: 0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

:root {
  --menuTrigeHeight: 22px;
}

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

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

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

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

.topicsItemImgBox {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--mainColor);
}
.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] {
  background-color: #F9F9F9;
  width: 100%;
  border: none;
  border-radius: 2px;
  padding: 1em;
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 1.4;
  border-radius: 7px;
}
.cform option::-webkit-input-placeholder,
.cform textarea::-webkit-input-placeholder,
.cform select::-webkit-input-placeholder,
.cform input[type=text]::-webkit-input-placeholder,
.cform input[type=email]::-webkit-input-placeholder,
.cform input[type=search]::-webkit-input-placeholder,
.cform input[type=url]::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cform option::-moz-placeholder,
.cform textarea::-moz-placeholder,
.cform select::-moz-placeholder,
.cform input[type=text]::-moz-placeholder,
.cform input[type=email]::-moz-placeholder,
.cform input[type=search]::-moz-placeholder,
.cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option:-ms-input-placeholder,
.cform textarea:-ms-input-placeholder,
.cform select:-ms-input-placeholder,
.cform input[type=text]:-ms-input-placeholder,
.cform input[type=email]:-ms-input-placeholder,
.cform input[type=search]:-ms-input-placeholder,
.cform input[type=url]:-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::-ms-input-placeholder,
.cform textarea::-ms-input-placeholder,
.cform select::-ms-input-placeholder,
.cform input[type=text]::-ms-input-placeholder,
.cform input[type=email]::-ms-input-placeholder,
.cform input[type=search]::-ms-input-placeholder,
.cform input[type=url]::-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::-webkit-input-placeholder, .cform textarea::-webkit-input-placeholder, .cform select::-webkit-input-placeholder, .cform input[type=text]::-webkit-input-placeholder, .cform input[type=email]::-webkit-input-placeholder, .cform input[type=search]::-webkit-input-placeholder, .cform input[type=url]::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cform option::-moz-placeholder, .cform textarea::-moz-placeholder, .cform select::-moz-placeholder, .cform input[type=text]::-moz-placeholder, .cform input[type=email]::-moz-placeholder, .cform input[type=search]::-moz-placeholder, .cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option:-ms-input-placeholder, .cform textarea:-ms-input-placeholder, .cform select:-ms-input-placeholder, .cform input[type=text]:-ms-input-placeholder, .cform input[type=email]:-ms-input-placeholder, .cform input[type=search]:-ms-input-placeholder, .cform input[type=url]:-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::-ms-input-placeholder, .cform textarea::-ms-input-placeholder, .cform select::-ms-input-placeholder, .cform input[type=text]::-ms-input-placeholder, .cform input[type=email]::-ms-input-placeholder, .cform input[type=search]::-ms-input-placeholder, .cform input[type=url]::-ms-input-placeholder {
  color: #c1c1c1;
}
.cform option::placeholder,
.cform textarea::placeholder,
.cform select::placeholder,
.cform input[type=text]::placeholder,
.cform input[type=email]::placeholder,
.cform input[type=search]::placeholder,
.cform input[type=url]::placeholder {
  color: #c1c1c1;
}
.cform .zip {
  max-width: 200px;
}
.cform .title {
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cform input[type=radio] {
  display: none;
}
.cform input[type=radio] + span {
  padding-left: 2em;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.08em;
}
.cform input[type=radio] + span::before {
  content: "";
  position: absolute;
  border: 1px solid #333;
  background-color: #fff;
  top: -1px;
  left: 0;
  border-radius: 50%;
  height: 16px;
  width: 16px;
}
.cform input[type=radio] + span::after {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  border-radius: 50%;
  top: 45%;
  left: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 8px;
  width: 8px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .cform input[type=radio] + span::after {
    top: 47%;
  }
}
.cform input[type=radio]:checked + span::after {
  display: block;
}
.cform input[type=checkbox] {
  display: none;
}
.cform input[type=checkbox] + span {
  cursor: pointer;
  padding-left: 1.7em;
  position: relative;
}
.cform input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  border: 1px solid #333;
  background-color: #fff;
  top: 0;
  left: 0;
  height: 1em;
  width: 1em;
}
.cform input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  border-left: 2px solid var(--mainColor);
  border-bottom: 2px solid var(--mainColor);
  top: 2px;
  left: 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  height: 8px;
  width: 14px;
  display: none;
}
.cform input[type=checkbox]:checked + span::after {
  display: block;
}
@media only screen and (max-width: 767px) {
  .cform tr {
    margin-bottom: 2em;
  }
  .cform .title {
    font-size: 14px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.sidebarCategoryBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.sidebarCategoryBlock li a {
  display: inline-block;
  font-size: 14px;
  background-color: var(--mainColor);
  font-family: var(--fontJp);
  color: #fff;
  border-radius: 50rem;
  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: 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;
}

.sectionTitleBox:not(.top) {
  border-bottom: 1px solid var(--khaki);
  padding-bottom: 8px;
}
.sectionTitleBox.__borderNone {
  border-bottom: none;
}
.sectionTitleBox.__bg {
  border-bottom-color: #A2B2AC;
}

.sectionTitleEn {
  line-height: 1;
  margin-bottom: 0.4em;
}
.top .sectionTitleEn {
  display: inline-block;
  margin-bottom: 0.7%;
}
.top .sectionTitleEn.__about {
  width: clamp(200px, 23.4vw, 300px);
}
.top .sectionTitleEn.__feature {
  width: clamp(200px, 23.4vw, 300px);
}
.top .sectionTitleEn.__service {
  width: clamp(200px, 19.6vw, 250px);
}
.top .sectionTitleEn.__works {
  width: clamp(160px, 18vw, 230px);
}
.top .sectionTitleEn.__area {
  width: clamp(130px, 13.3vw, 170px);
}
.top .sectionTitleEn.__sdgs {
  width: clamp(150px, 15.7vw, 200px);
}
.top .sectionTitleEn.__recruit {
  width: clamp(130px, 13.3vw, 170px);
}
.top .sectionTitleEn.__partners {
  width: clamp(170px, 15.7vw, 200px);
}
.top .sectionTitleEn.__news {
  width: clamp(110px, 10.2vw, 130px);
}
.sectionTitleEn span {
  color: var(--mainColor);
  font-family: var(--fontEn);
  font-size: 18px;
  line-height: 1;
  padding-left: 1em;
  display: inline-block;
  position: relative;
}
.sectionTitleEn span::before {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  border-radius: 50%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 0.4em;
  width: 0.4em;
}
@media only screen and (max-width: 767px) {
  .sectionTitleEn span {
    font-size: 14px;
  }
}

.sectionTitleJp {
  font-size: clamp(22px, 2.5vw, 32px);
  font-family: var(--fontEn);
}
.top .sectionTitleJp {
  font-size: 20px;
  color: var(--natural700);
}
.sectionTitleJp.white {
  color: #fff !important;
}
.sectionTitleJp.__small {
  font-size: clamp(17px, 1.6vw, 20px);
}
@media only screen and (max-width: 767px) {
  .top .sectionTitleJp {
    font-size: 15px;
  }
}

.commonTitle {
  font-family: var(--fontEn);
  font-size: clamp(25px, 2.5vw, 32px);
  line-height: 1.4;
}
.commonTitle span {
  font-family: var(--fontEn);
  line-height: 1.4;
}
.commonTitle span.c-1 {
  color: #006B64;
}
.commonTitle span.c-2 {
  color: #197D19;
}
.commonTitle span.c-3 {
  color: var(--mainColorLight);
}
.commonTitle.__small {
  font-size: clamp(24px, 2.2vw, 28px);
}
.commonTitle.__large {
  font-size: clamp(28px, 3.2vw, 40px);
}
.commonTitle.__recruit {
  font-size: clamp(20px, 2.2vw, 24px);
  font-family: var(--fontJp);
  font-weight: 600;
}

.commonBtn {
  --circleW: 95px;
  overflow: hidden;
  display: inline-block;
  border-radius: 50rem;
  background-color: var(--mainColorDeep);
  position: relative;
  padding-inline: 1.5em 4.5em;
  padding-block: 1em 1.2em;
  line-height: 1;
  z-index: 2;
}
.commonBtn::before, .commonBtn::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: calc(var(--circleW) / 2 - 90px);
  aspect-ratio: 1/1;
  width: var(--circleW);
}
.commonBtn::before {
  background-color: var(--mainColorLight);
  top: 30%;
  z-index: -1;
}
.commonBtn::after {
  background-color: var(--mainColor);
  top: 12%;
  z-index: -1;
}
.commonBtn:hover::before, .commonBtn:hover::after {
  -webkit-transform: translateY(-50%) scale(1.25);
          transform: translateY(-50%) scale(1.25);
}
.commonBtn.teal {
  background-color: var(--teal);
}

.commonBtnTx {
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
.commonBtn.teal .commonBtnTx {
  color: var(--mainColor);
}

.commonBtnArw {
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}

.scrollWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: marquee-scroll 15s linear infinite;
          animation: marquee-scroll 15s linear infinite;
}

.scrollTx {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
  padding-right: 2rem;
  font-size: clamp(60px, 9.4vw, 120px);
  font-family: var(--fontEn);
  line-height: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 81, 0, 0.06)), to(rgba(20, 81, 0, 0.02)));
  background: linear-gradient(180deg, rgba(20, 81, 0, 0.06) 0%, rgba(20, 81, 0, 0.02) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

@keyframes marquee-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/*==================================================
 * ヘッダー
*================================================*/
:root {
  --headerH: 75px;
}
@media only screen and (max-width: 959px) {
  :root {
    --headerH: 55px;
  }
}

header {
  position: fixed;
  top: 20px;
  left: 15px;
  right: 15px;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  header {
    top: 5px;
    left: 5px;
    right: 5px;
  }
}

.headerIn {
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 4px 4px 24px -10px;
          box-shadow: rgba(0, 0, 0, 0.2) 4px 4px 24px -10px;
  background-color: #fff;
  border-radius: 8px;
  padding-inline: 20px;
  padding-block: 10px;
  max-width: 1240px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  height: var(--headerH);
}
@media only screen and (max-width: 959px) {
  .headerIn {
    padding-inline: 8px;
    padding-block: 10px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerIn {
    gap: 10px;
  }
}

.headerlogoLnk .siteTx {
  font-size: 10px;
  color: var(--natural700);
  margin-bottom: 0.3em;
}
.headerlogoLnk .logoImg {
  width: 200px;
}
@media only screen and (max-width: 959px) {
  .headerlogoLnk .siteTx {
    font-size: 9px;
    line-height: 1;
  }
  .headerlogoLnk .logoImg {
    width: 140px;
  }
}

@media only screen and (max-width: 767px) {
  .headerNavBox {
    background-color: #fff;
    position: absolute;
    top: -5px;
    left: -5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    padding-block: calc(var(--headerH) + 30px) var(--headerH);
    padding-inline: 15px;
    overflow-y: auto;
    height: 100vh;
    width: 100vw;
    z-index: -1;
  }
  .open .headerNavBox {
    opacity: 1;
    visibility: visible;
  }
}

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

.headerTel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 5px;
}
.headerTel .icon {
  line-height: 1;
  font-size: 1em;
}
.headerTel .telNum {
  font-size: 18px;
  line-height: 1;
}
.headerTel .time {
  font-size: 13px;
  color: var(--natural700);
  margin-left: 1em;
  line-height: 1;
}

.headerListMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.headerListMenu > li > a,
.headerListMenu > li .hoverTx {
  font-size: clamp(10px, 1.1vw, 15px);
  font-weight: 600;
  display: block;
  padding-inline: 0.7em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.headerListMenu > li > a:hover,
.headerListMenu > li .hoverTx:hover {
  color: var(--mainColor);
}
.headerListMenu > li .hoverTx {
  cursor: pointer;
  position: relative;
  padding-right: 1.5em;
}
.headerListMenu > li .hoverTx::before {
  content: "";
  position: absolute;
  top: 45%;
  right: 0.5em;
  border-bottom: 1px solid var(--fontColor);
  border-right: 1px solid var(--fontColor);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  height: 7px;
  width: 7px;
}
@media only screen and (min-width: 1280px) {
  .headerListMenu > li > a,
  .headerListMenu > li .hoverTx {
    font-size: 15px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerListMenu > li > a {
    padding-inline: 0.4em;
  }
}
@media only screen and (max-width: 767px) {
  .headerListMenu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .headerListMenu > li {
    border-bottom: 1px solid var(--natural500);
  }
  .headerListMenu > li > a,
  .headerListMenu > li .hoverTx {
    font-size: 16px;
    padding-block: 0.6em;
    width: 100%;
  }
  .headerListMenu > li .hoverTx.open::before {
    -webkit-transform: translateY(-50%) rotate(-135deg);
            transform: translateY(-50%) rotate(-135deg);
  }
}

.hoverIn li a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 0.5em;
}
.hoverIn li a:hover {
  color: var(--mainColor);
}
@media print, screen and (min-width: 768px) {
  .hoverIn {
    background-color: #fff;
    border-radius: 8px;
    position: absolute;
    top: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    padding-inline: 10px;
    padding-block: 10px;
    width: calc(100% + 70px);
  }
  .hoberList:hover .hoverIn {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 767px) {
  .hoverIn {
    display: none;
    padding-inline: 20px;
    padding-block: 0px 15px;
  }
  .hoverIn li a {
    width: 100%;
  }
}

.contactBtn {
  display: inline-block;
  padding-inline: 1.6em;
  padding-block: 1.1em;
  border: 1px solid var(--mainColorDeep);
  background-color: var(--mainColorDeep);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  border-radius: 50rem;
  font-size: clamp(10px, 1.1vw, 14px);
  line-height: 1;
}
.contactBtn:hover {
  background-color: #fff;
  color: var(--mainColor);
}
@media only screen and (min-width: 1280px) {
  .contactBtn {
    font-size: 14px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .contactBtn {
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .contactBtn {
    font-size: 16px;
  }
}

/*==================================================
 * フッター - CTA
*================================================*/
.partnersPageFooterCta {
  background-color: #FBFFE7;
}

.ctaBg {
  background-position: top center;
  padding-block: 140px 100px;
}
@media only screen and (max-width: 767px) {
  .ctaBg {
    padding-block: 90px 40px;
  }
}

.ctaHeadTitleEn {
  font-size: clamp(18px, 2.1vw, 26px);
  color: #fff;
  font-family: var(--fontEn);
  line-height: 1;
  margin-bottom: 0.4em;
}

.ctaHeadTitleJp {
  font-size: clamp(26px, 3.2vw, 40px);
  color: #fff;
  font-family: var(--fontEn);
  margin-bottom: 1em;
  line-height: 1.4;
}

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

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

@media print, screen and (min-width: 768px) {
  .ctaBox {
    padding-right: 40px;
  }
  .ctaBox + .ctaBox {
    border-left: 1px solid var(--white40);
    padding-inline: 40px 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .ctaBox {
    padding-right: 20px;
  }
  .ctaBox + .ctaBox {
    padding-inline: 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .ctaBox + .ctaBox {
    border-top: 1px solid var(--white40);
    padding-top: 30px;
    margin-top: 30px;
  }
}

.ctaBoxTitle {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.5;
  color: #fff;
  font-family: var(--fontEn);
  text-align: center;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .ctaBoxTitle {
    line-height: 1.3;
  }
}

.ctaBoxImg {
  border-radius: 12px;
  padding-bottom: 48%;
  margin-bottom: 1.4em;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .ctaBoxImg {
    border-radius: 8px;
    margin-inline: auto;
    width: 86%;
  }
}

.ctaBoxBtn {
  border: 1px solid var(--mainColorDeep);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50rem;
  background-color: #fff;
  padding-inline: 2em;
  padding-block: 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  gap: 10px;
}
.ctaBoxBtn:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
.ctaBoxBtn .icon {
  color: var(--mainColor);
  font-size: 26px;
  line-height: 1;
}
.ctaBoxBtn .tx {
  font-size: 20px;
  color: var(--mainColor);
  font-weight: 600;
  line-height: 1;
}
.ctaBoxBtn .arw {
  border-radius: 50%;
  border: 1px solid #B0CAC4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
}
.ctaBoxBtn .arw i {
  color: var(--mainColor);
}
.ctaBoxBtn.telLink .tx {
  font-size: 24px;
}
@media only screen and (max-width: 959px) {
  .ctaBoxBtn .icon {
    font-size: 22px;
  }
  .ctaBoxBtn .tx {
    font-size: 16px;
  }
  .ctaBoxBtn .arw {
    height: 30px;
    width: 30px;
  }
  .ctaBoxBtn.telLink .tx {
    font-size: 18px;
  }
}

.ctaFootTitle {
  font-size: 20px;
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .ctaFootTitle {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .ctaFootTitle {
    font-size: 14px;
  }
}

.ctaInfoTx {
  color: #fff;
}
.ctaInfoTx .tag {
  border: 1px solid var(--white80);
  color: var(--white80);
  font-size: 14px;
  padding-inline: 0.8em;
  padding-block: 0.2em 0.3em;
  margin-right: 1em;
  border-radius: 50rem;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .ctaInfoTx + .ctaInfoTx {
    margin-top: 15px;
  }
}

.recruitCtaBg {
  background-color: #EBF2EE;
}

.recruitCtaTitleEn {
  color: var(--mainColorLight);
  font-family: var(--fontEn);
  font-size: 28px;
}
@media only screen and (max-width: 767px) {
  .recruitCtaTitleEn {
    font-size: 18px;
  }
}

.recruitCtaTitleJp {
  color: var(--mainColorLight);
  font-family: var(--fontEn);
  font-size: 24px;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .recruitCtaTitleJp {
    font-size: 22px;
  }
}

.recruitCtaSubTitle {
  color: var(--mainColorDeep);
  font-family: var(--fontEn);
  font-size: clamp(30px, 3.8vw, 48px);
  margin-bottom: 0.5em;
}

.recruitCtaTx {
  color: var(--mainColorDeep);
  font-size: clamp(13px, 1.5vw, 18px);
}

/*==================================================
 * フッター
*================================================*/
.footerBg {
  background-color: var(--khaki);
  padding-block: 120px 30px;
}
@media only screen and (max-width: 959px) {
  .footerBg {
    padding-block: 60px 15px;
  }
}

.footerIn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 100px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerIn {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .footerIn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
}

.footerBox {
  padding-right: 5%;
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .footerBox {
    padding-right: 0;
    margin-bottom: 8%;
    width: 100%;
  }
}

.footerLogo {
  display: block;
  margin-bottom: 20px;
  width: 200px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerLogo {
    width: 140px;
  }
}
@media only screen and (max-width: 767px) {
  .footerLogo {
    width: 170px;
  }
}

.footerAddress p {
  font-size: 14px;
}
.footerAddress p + p {
  margin-top: 5px;
}

.footerInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footerInfo .tag {
  font-size: 11px;
  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: 1px solid var(--natural700);
  line-height: 1;
  padding-inline: 1em;
  padding-block: 0.3em;
  border-radius: 50rem;
}

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

.siteList dt a {
  font-family: var(--fontEn);
  font-size: 18px;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.siteList dt a:hover {
  color: var(--mainColorDeep);
  opacity: 0.85;
}
.siteList dt + dt {
  margin-top: 10px;
}
.siteList dt + dd {
  margin-top: 10px;
}
.siteList dd a {
  color: var(--mainColor);
  font-size: 14px;
  line-height: 1;
  padding-block: 0.2em;
  display: inline-block;
  border-bottom: 1px solid var(--mainColor);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.siteList dd a:hover {
  color: var(--mainColorDeep);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .siteList dt a {
    font-size: 16px;
  }
  .siteList dd a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .siteList:nth-child(2) {
    grid-row: 2/3;
    grid-column: 1/2;
  }
  .siteList:nth-child(3) {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .siteList dt a {
    font-size: 16px;
  }
  .siteList dd a {
    font-size: 14px;
    padding-block: 0.5em;
  }
}

.copyright {
  text-align: center;
  font-size: 10px;
  color: var(--natural700);
}

/*==================================================
 * トップページ
*================================================*/
.fvIn {
  z-index: 2;
}
.fvIn::before {
  content: "";
  position: absolute;
  bottom: -3vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url("../img/aboutDeco.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  aspect-ratio: 1310/145;
  width: 100vw;
  z-index: 2;
}

.fvImg {
  padding-bottom: 70%;
  width: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media only screen and (max-width: 767px) {
  .fvImg {
    padding-bottom: 90vh;
  }
}

.fvSwiper--left,
.fvSwiper--right {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.fvSwiper--left .swiper-slide-active .fvImg,
.fvSwiper--left .swiper-slide-duplicate-active .fvImg,
.fvSwiper--left .swiper-slide-prev .fvImg,
.fvSwiper--right .swiper-slide-active .fvImg,
.fvSwiper--right .swiper-slide-duplicate-active .fvImg,
.fvSwiper--right .swiper-slide-prev .fvImg {
  -webkit-animation: zoomUp 10s linear 0s normal both;
  animation: zoomUp 10s linear 0s normal both;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.fvTitle {
  font-size: clamp(32px, 3.8vw, 48px);
}

.fvTxBox {
  position: absolute;
  bottom: 5vw;
  left: 51%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  -webkit-animation: fadeInUp 1.2s ease forwards;
          animation: fadeInUp 1.2s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
  z-index: 3;
}
.fvTxBox .commonTx {
  text-indent: -2.5em;
}
@media only screen and (max-width: 767px) {
  .fvTxBox {
    width: calc(100% - 30px);
  }
}

@-webkit-keyframes fadeInUp {
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
  }
}
.fvDeco {
  position: absolute;
  bottom: -14vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 140vw;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .fvDeco {
    bottom: -33vw;
    width: 280vw;
  }
}

.topAboutBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.topAboutBlock .left {
  padding-right: 8%;
  width: 50%;
}
.topAboutBlock .right {
  width: 50%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topAboutBlock .left {
    padding-right: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .topAboutBlock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .topAboutBlock .left {
    padding-right: 0;
    width: 100%;
  }
  .topAboutBlock .right {
    margin-bottom: 8%;
    width: 100%;
  }
}

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

.ourLinkItem {
  background-color: var(--mainColorLight);
  border-radius: 12px;
}
.ourLinkItem:nth-child(1) {
  grid-row: 1/2;
  grid-column: 1/3;
}
.ourLinkItem:nth-child(2) {
  grid-row: 2/3;
  grid-column: 1/2;
}
.ourLinkItem:nth-child(3) {
  grid-row: 2/3;
  grid-column: 2/3;
}

.ourLink {
  display: block;
  padding-block: 32% 20px;
  padding-inline: 20px;
  border-radius: 12px 12px 52px 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ourLink:hover {
  border-radius: 12px 12px 72px 12px;
}
@media only screen and (max-width: 767px) {
  .ourLink {
    padding-inline: 15px;
    padding-block: 32% 15px;
  }
}

.ourLinkTxBox .titleEn {
  color: #fff;
  font-family: var(--fontEn);
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1;
  margin-bottom: 0.35em;
}
.ourLinkTxBox .titleEn.__large {
  font-size: clamp(26px, 2.9vw, 36px);
}
.ourLinkTxBox .titleJp {
  color: #fff;
  line-height: 1;
}

.topFeatureBg {
  padding-block: 10px 19.5vw;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(4.85%, #F7FBF9), to(#D3D8D6));
  background: linear-gradient(180deg, #F7FBF9 4.85%, #D3D8D6 100%);
}

.topServiceBg {
  padding-block: 100px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(4.85%, #FEFFF7), to(#EBF2EE));
  background: linear-gradient(180deg, #FEFFF7 4.85%, #EBF2EE 100%);
  position: relative;
}
.topServiceBg::before {
  content: "";
  position: absolute;
  background-image: url("../img/serviceDeco.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  aspect-ratio: 1280/190;
  top: -14.8vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
}

.featureCard .img {
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
}
.featureCard .num {
  color: var(--mainColorLight);
  position: absolute;
  font-size: 20px;
  top: 8px;
  left: 23px;
  font-family: var(--fontEn);
}
.featureCard .title {
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.4;
  margin-bottom: 0.3em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .featureCard .tx {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .featureCard .num {
    top: 5px;
    left: 15px;
  }
  .featureCard .tx {
    font-size: 15px;
  }
}

.serviceItem {
  padding: 10px;
  background-color: #fff;
  border-radius: 12px;
}
.serviceItem + .serviceItem {
  margin-top: 15px;
}
.serviceItem .img {
  overflow: hidden;
  border-radius: 12px;
}
.serviceItem .num {
  color: var(--mainColorLight);
  font-family: var(--fontEn);
  margin-bottom: 1em;
}
.serviceItem .num span {
  font-size: 140%;
}
.serviceItem .title {
  font-size: 36px;
  font-family: var(--fontEn);
  margin-bottom: 0.7em;
}
.serviceItem .subTitle {
  color: var(--natural700);
  font-size: 22px;
  margin-bottom: 0.5em;
}
.serviceItem .tx {
  font-size: 14px;
}
@media only screen and (max-width: 959px) {
  .serviceItem .num {
    margin-bottom: 0.2em;
  }
  .serviceItem .title {
    font-size: 22px;
  }
  .serviceItem .subTitle {
    font-size: 17px;
  }
  .serviceItem .tx {
    font-size: 13px;
  }
}

.nextArw {
  margin-block: 3%;
}
.nextArw img {
  display: inline-block;
  width: clamp(160px, 22.5vw, 290px);
}
.nextArw.__recruit {
  margin-block: 2%;
}
.nextArw.__recruit img {
  width: clamp(90px, 11.8vw, 150px);
}
@media only screen and (max-width: 959px) {
  .nextArw {
    margin-block: 5%;
  }
}

.serviceLink {
  background-color: #fff;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 2.5em;
  padding-block: 2.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
.serviceLink:hover {
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
}
.serviceLink .tx {
  font-size: 32px;
  font-family: var(--fontEn);
  line-height: 1;
}
.serviceLink .more {
  font-size: 13px;
  color: var(--mainColorLight);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.serviceLink .more .icon {
  border-radius: 50%;
  border: 1px solid var(--mainColorLight);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  width: 30px;
}
.serviceLink .more .icon i {
  color: var(--mainColorLight);
}
@media only screen and (max-width: 959px) {
  .serviceLink {
    padding-inline: 1.5em;
    padding-block: 1.5em;
  }
  .serviceLink .tx {
    font-size: 20px;
  }
  .serviceLink .more {
    font-size: 11px;
  }
  .serviceLink .more .icon {
    height: 20px;
    width: 20px;
  }
}

.topWorkBg {
  padding-block: 90px 160px;
}

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

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

.worksCard {
  background-color: #fff;
  display: block;
  border-radius: 12px;
  padding: 12px;
}
.worksCard .imgBox {
  border-radius: 12px;
  overflow: hidden;
}
.worksCard .img {
  padding-bottom: 63%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
.worksCard .txBox {
  padding-inline: 10px;
  margin-block: 20px;
}
.worksCard .time {
  font-size: 14px;
  color: var(--natural700);
}
.worksCard .area {
  font-size: 14px;
  color: var(--natural700);
}
.worksCard .cate {
  display: inline-block;
  font-size: 12px;
  color: var(--mainColor);
  background-color: var(--teal);
  padding-inline: 1em;
  padding-block: 0.3em;
  border-radius: 50rem;
  line-height: 1;
}
.worksCard .title {
  font-size: 20px;
  font-family: var(--fontEn);
  line-height: 1.3;
  letter-spacing: -0.01em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.worksCard:hover .img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.worksCard:hover .title {
  color: var(--mainColor);
}

.topArea {
  position: relative;
  z-index: 2;
}
.topArea::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  aspect-ratio: 1/0.3;
  height: 100%;
  width: 150vw;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .topArea::before {
    top: -40px;
    height: auto;
  }
}

.areaImg {
  margin-left: auto;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  max-width: 450px;
  position: relative;
  z-index: -1;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .areaImg {
    margin-top: -120px;
    margin-right: -50px;
  }
}

.sdgsBox .left .img {
  margin-left: -50px;
  width: calc(100% + 30px);
}
@media only screen and (max-width: 767px) {
  .sdgsBox .left .img {
    margin-left: -20px;
    width: 100%;
  }
}

.sdgsLogo {
  width: clamp(260px, 52.4vw, 670px);
}
.sdgsLogo.top {
  width: 330px;
}

.topRecruitImg {
  border-radius: 16px;
  padding-bottom: 60%;
  margin-inline: -50px;
  width: calc(100% + 100px);
}

.topRecruitBlock {
  border-radius: 16px;
  background: -webkit-gradient(linear, left top, right top, from(#F3F8F7), to(#F4F8F2));
  background: linear-gradient(90deg, #F3F8F7 0%, #F4F8F2 100%);
  padding: 48px 64px;
  max-width: 800px;
  margin-inline: auto;
  margin-top: -31%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .topRecruitBlock {
    padding-inline: 15px;
    padding-block: 20px;
  }
}

.recruitLinkItem {
  background-color: var(--mainColorDeep);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 8px;
}
.recruitLinkItem:hover {
  background-color: #DFE9D2;
}

.recruitLink {
  overflow: hidden;
  border-radius: 8px 8px 29px 8px;
  padding-inline: 20px;
  padding-block: 40px;
  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: relative;
  height: 100%;
  z-index: 2;
}
.recruitLink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(105deg, #CCE9E3 5.52%, #DFE9D2 100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.recruitLink .title {
  color: var(--mainColor);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.recruitLinkItem:hover .recruitLink::before {
  opacity: 0;
}
.recruitLinkItem:hover .recruitLink .title {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .recruitLink {
    padding-inline: 15px;
    padding-block: 30px;
  }
}

.topPartners {
  border-bottom: 1px solid var(--khaki);
}

.partnersImg {
  margin-left: auto;
  max-width: 480px;
  width: 100%;
}

.newsLink {
  background-color: var(--teal);
  display: block;
  border-radius: 12px;
  padding-inline: 20px 60px;
  padding-block: 20px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.newsLink + .newsLink {
  margin-top: 10px;
}
.newsLink:hover {
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
}
.newsLink .time {
  color: var(--natural700);
  font-size: 14px;
  margin-bottom: 0.5em;
  line-height: 1;
}
.newsLink .title {
  margin-bottom: 0.8em;
}
.newsLink .cate {
  color: var(--natural700);
  font-size: 12px;
  background-color: #E7ECE9;
  border-radius: 50rem;
  padding-inline: 1em;
  padding-block: 0.7em;
  line-height: 1;
  display: inline-block;
}
.newsLink .arw {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #B0CAC4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.newsLink .arw i {
  color: var(--mainColor);
  font-size: 0.8em;
  margin-top: 0.15em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .newsLink {
    padding-inline: 15px 45px;
    padding-block: 15px;
  }
  .newsLink .arw {
    height: 25px;
    width: 25px;
    right: 15px;
  }
}

.otherLinkItem {
  margin-inline: -50px;
  width: calc(100% + 100px);
}
@media only screen and (max-width: 959px) {
  .otherLinkItem {
    grid-template-columns: repeat(2, 1fr);
    margin-inline: auto;
    width: 100%;
  }
}

.otherLink {
  border-radius: 12px;
  padding-inline: 20px;
  padding-block: 20px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.otherLink:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
.otherLink .title {
  color: #fff;
  font-size: 26px;
  font-family: var(--fontEn);
  text-align: center;
  line-height: 1;
}
.otherLink .arw {
  border-radius: 50%;
  border: 1px solid var(--white40);
  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;
  margin-block: 100px;
  height: 60px;
  width: 60px;
}
.otherLink .arw i {
  color: #fff;
}
.otherLink .tx {
  border-top: 1px solid var(--white40);
  padding-top: 10px;
  line-height: 1;
  font-family: var(--fontEn);
  text-align: center;
  color: #fff;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 959px) {
  .otherLink {
    padding-inline: 15px;
    padding-block: 15px;
  }
  .otherLink .title {
    font-size: 20px;
  }
  .otherLink .arw {
    margin-block: 30px;
    height: 40px;
    width: 40px;
  }
  .otherLink .tx {
    padding-top: 5px;
  }
}

/*==================================================
 * 橋本塗装について
*================================================*/
.aboutMain {
  padding-block: 46vw 100px;
  margin-top: -50vw;
}
@media only screen and (max-width: 767px) {
  .aboutMain {
    padding-block: 59vw 60px;
    margin-top: -53vw;
  }
  .aboutMain .commonTx {
    font-size: 15px;
  }
}

.messageBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.messageBox .left {
  padding-right: 7%;
  width: 41%;
}
.messageBox .left .img {
  border-radius: 12px;
  overflow: hidden;
}
.messageBox .right {
  width: 59%;
}
@media only screen and (max-width: 767px) {
  .messageBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .messageBox .left {
    padding-right: 0;
    padding-bottom: 5%;
    margin-inline: auto;
    width: 80%;
  }
  .messageBox .right {
    width: 100%;
  }
  .messageBox .right > p {
    font-size: 15px;
  }
}

.aboutFeatureBg {
  background-color: var(--teal);
}

.aboutFeatureItem {
  border: 1px solid var(--mainColor);
  background-color: var(--teal);
  border-radius: 12px;
  padding-inline: 15px;
  padding-block: 15px;
  -webkit-box-shadow: 0 0 32px 0 rgba(130, 227, 60, 0.21) inset;
          box-shadow: 0 0 32px 0 rgba(130, 227, 60, 0.21) inset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aboutFeatureItem + .aboutFeatureItem {
  margin-top: 30px;
}
.aboutFeatureItem .imgBox {
  padding-right: 4%;
  width: 45%;
}
.aboutFeatureItem .imgBox .img {
  border-radius: 12px;
  overflow: hidden;
}
.aboutFeatureItem .txBox {
  padding-right: 3%;
  padding-block: 15px;
  width: 55%;
}
.aboutFeatureItem .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: var(--fontEn);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 1em;
}
.aboutFeatureItem .title .num {
  color: var(--mainColor);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .aboutFeatureItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 10px;
    padding-block: 10px;
  }
  .aboutFeatureItem + .aboutFeatureItem {
    margin-top: 20px;
  }
  .aboutFeatureItem .imgBox {
    padding-right: 0;
    margin-bottom: 5%;
    width: 100%;
  }
  .aboutFeatureItem .txBox {
    padding-right: 0;
    width: 100%;
  }
  .aboutFeatureItem .title {
    font-size: 22px;
    margin-bottom: 0.6em;
  }
}

.companyDl dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--natural300);
  padding-block: 1.5em;
}
.companyDl dl:nth-child(2n) {
  background-color: #FBFBFB;
}
.companyDl dt {
  width: 13em;
}
.companyDl dd {
  width: calc(100% - 13em);
}
@media only screen and (max-width: 767px) {
  .companyDl dl {
    padding-block: 0.8em;
  }
  .companyDl dt {
    width: 7em;
  }
  .companyDl dd {
    width: calc(100% - 7em);
  }
}

.googleMap .commonFrameWrap {
  position: relative;
  width: 100%;
  padding-top: 35%;
}
.googleMap .commonFrameWrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.googleMap {
  border-radius: 12px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .googleMap .commonFrameWrap {
    position: relative;
    width: 100%;
    padding-top: 58%;
  }
  .googleMap .commonFrameWrap iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}

.historyBg {
  background-color: var(--teal);
}

.historyBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.historyBlock .imgBox {
  padding-right: 9%;
  width: 43%;
}
.historyBlock .imgBox .img {
  border-radius: 12px;
  overflow: hidden;
}
.historyBlock .listBox {
  width: 57%;
}
@media only screen and (max-width: 767px) {
  .historyBlock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .historyBlock .imgBox {
    padding-right: 0;
    margin-inline: auto;
    margin-bottom: 8%;
    width: 70%;
  }
  .historyBlock .listBox {
    width: 100%;
  }
  .historyBlock .listBox dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .historyBlock .listBox dt {
    width: 100%;
  }
  .historyBlock .listBox dt span {
    font-size: 22px;
  }
  .historyBlock .listBox dd {
    font-size: 14px;
    padding-top: 0.8em;
    padding-left: 2.5em;
    width: 100%;
  }
}

.listBox dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  padding-bottom: 2em;
  z-index: 2;
}
.listBox dl::before {
  content: "";
  top: 0.5em;
  left: 8px;
  position: absolute;
  background-color: var(--mainColor);
  height: 100%;
  width: 1px;
  z-index: -1;
}
.listBox dl:last-child {
  padding-bottom: 0;
}
.listBox dl:last-child::before {
  content: none;
}
.listBox dt {
  font-family: var(--fontEn);
  font-size: 16px;
  line-height: 1;
  position: relative;
  padding-left: 2.5em;
  width: 11em;
}
.listBox dt::before, .listBox dt::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.listBox dt::before {
  background-color: var(--mainColor);
  left: 3px;
  height: 12px;
  width: 12px;
  z-index: 2;
}
.listBox dt::after {
  content: "";
  background-color: #529E1C;
  opacity: 0.22;
  left: 0;
  height: 18px;
  width: 18px;
  z-index: 1;
}
.listBox dt span {
  font-size: 24px;
  line-height: 1;
}
.listBox dd {
  font-size: 14px;
  line-height: 1.3;
  width: calc(100% - 11em);
}
@media only screen and (max-width: 767px) {
  .listBox dl {
    padding-bottom: 1.3em;
  }
  .listBox dt {
    font-size: 12px;
    width: 9em;
  }
  .listBox dt span {
    font-size: 20px;
  }
  .listBox dd {
    font-size: 12px;
    width: calc(100% - 9em);
  }
}

.aboutCompanySec {
  border-bottom: 1px solid var(--natural300);
}

.comCard .img {
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
}
.comCard .title {
  padding-left: 0.5em;
  font-size: 20px;
  border-left: 3px solid var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .comCard .title {
    font-size: 16px;
  }
}

/*==================================================
 * 事業内容一覧
*================================================*/
.serviceBg {
  background-color: var(--teal);
  padding-block: 50vw 190px;
  margin-top: -50vw;
}
@media only screen and (max-width: 767px) {
  .serviceBg {
    padding-block: 59vw 60px;
    margin-top: -53vw;
  }
}

.serviceLinkCard {
  background-color: #fff;
  padding: 10px;
  border-radius: 12px;
}
.serviceLinkCard .imgBox {
  border-radius: 12px;
  overflow: hidden;
}
.serviceLinkCard .img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
          transform: scale(1);
  width: 100%;
}
.serviceLinkCard .txBox {
  padding-inline: 20px;
  padding-block: 30px;
}
.serviceLinkCard .title {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 32px;
  font-family: var(--fontEn);
  line-height: 1.2;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--natural300);
}
.serviceLinkCard .subTitle {
  font-size: 18px;
  color: var(--natural700);
  line-height: 1.3;
  margin-bottom: 0.7em;
}
.serviceLinkCard .tx {
  font-size: 14px;
  margin-bottom: 5%;
}
.serviceLinkCard .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}
.serviceLinkCard .btnTx {
  color: var(--mainColor);
  font-size: 13px;
}
.serviceLinkCard .btnArw {
  border-radius: 50%;
  border: 1px solid var(--mainColorLight);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  width: 30px;
}
.serviceLinkCard .btnArw i {
  color: var(--mainColorLight);
  font-size: 0.8em;
}
.serviceLinkCard:hover .img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.serviceLinkCard:hover .title {
  color: var(--mainColor);
}
@media only screen and (max-width: 959px) {
  .serviceLinkCard .txBox {
    padding-inline: 10px;
    padding-block: 20px;
  }
  .serviceLinkCard .title {
    font-size: 23px;
    margin-bottom: 0.7em;
    padding-bottom: 0.7em;
  }
  .serviceLinkCard .subTitle {
    font-size: 16px;
  }
  .serviceLinkCard .tx {
    font-size: 12px;
  }
}

.servicePromise {
  position: relative;
  z-index: 2;
}
.servicePromise::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  aspect-ratio: 1/0.3;
  height: 60vh;
  width: 150vw;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .servicePromise::before {
    top: -40px;
    height: auto;
  }
}

.promiseTitle {
  margin-bottom: 2em;
}
.promiseTitle span {
  font-family: var(--fontEn);
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1;
  position: relative;
}
.promiseTitle span::before {
  content: "";
  position: absolute;
  background-image: url(../img/promiseDeco.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 15px;
  width: 30px;
}

.promiseBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .promiseBody {
    gap: 15px;
  }
}

.promiseItem {
  text-align: center;
  width: 30%;
}
.promiseItem .img {
  max-width: 230px;
  margin-inline: auto;
  margin-bottom: 3%;
  width: 100%;
}
.promiseItem .tx {
  font-size: 20px;
  line-height: 1.5;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .promiseItem .img {
    width: 90%;
  }
  .promiseItem .tx {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .promiseItem {
    width: 45%;
  }
  .promiseItem .img {
    width: 90%;
  }
  .promiseItem .tx {
    font-size: 14px;
  }
}

/*==================================================
 * サービス詳細
*================================================*/
.serviceDetailTitle {
  font-size: clamp(24px, 3.2vw, 40px);
  font-family: var(--fontEn);
  line-height: 1;
}

.serviceDetailFeautreItem {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.serviceDetailFeautreItem .num {
  font-size: 20px;
}
.serviceDetailFeautreItem .img {
  margin-top: auto;
}
.serviceDetailFeautreItem .title {
  font-size: 26px;
}
@media only screen and (max-width: 767px) {
  .serviceDetailFeautreItem .num {
    font-size: 18px;
  }
  .serviceDetailFeautreItem .title {
    font-size: 22px;
  }
  .serviceDetailFeautreItem .tx {
    font-size: 14px;
  }
}

.serviceFeatureBg {
  background-image: url("../img/serviceFeatureBg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.serviceFlowBg {
  background-image: url("../img/serviceFlowBg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.facilitiesCard {
  background-color: #fff;
  border-radius: 12px;
  padding: 10px;
}
@media only screen and (max-width: 767px) {
  .facilitiesCard .title {
    font-size: 17px;
  }
}

.facilitiesHead {
  font-size: 20px;
  padding-left: 0.6em;
  padding-block: 0.6em;
  margin-bottom: 1em;
  line-height: 1;
  border-left: 3px solid var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .facilitiesHead {
    font-size: 18px;
    padding-block: 0.4em 0.6em;
  }
}

.facilitiesNote {
  background-image: url("../img/facilitiesNoteBg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 12px;
  padding-inline: 40px;
  padding-block: 50px;
}
@media only screen and (max-width: 767px) {
  .facilitiesNote {
    padding-inline: 20px;
    padding-block: 25px;
  }
}

@media print, screen and (min-width: 768px) {
  .serviceFlow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .serviceFlow .commonTitleBox {
    padding-right: 5%;
    width: 45%;
  }
  .serviceFlow .serviceFlowIn {
    width: 55%;
  }
}
@media only screen and (max-width: 767px) {
  .serviceFlow .commonTitleBox {
    margin-bottom: 8%;
  }
}

.serviceFlowIn dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}
.serviceFlowIn dl::before {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  top: 0;
  left: 26px;
  height: 100%;
  width: 2px;
  z-index: -1;
}
.serviceFlowIn dl:last-child {
  padding-bottom: 0;
}
.serviceFlowIn dl:last-child::before {
  content: none;
}
.serviceFlowIn dt {
  border-radius: 50%;
  border: 1px solid var(--mainColor);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--fontEn);
  color: var(--mainColor);
  height: 55px;
  width: 55px;
}
.serviceFlowIn dd {
  padding-left: 20px;
  width: calc(100% - 55px);
}
.serviceFlowIn dd .title {
  font-size: 24px;
  font-family: var(--fontEn);
  margin-bottom: 0.4em;
}
@media only screen and (max-width: 767px) {
  .serviceFlowIn dl {
    padding-bottom: 25px;
  }
  .serviceFlowIn dl::before {
    left: 18px;
  }
  .serviceFlowIn dt {
    height: 40px;
    width: 40px;
  }
  .serviceFlowIn dd {
    width: calc(100% - 40px);
  }
  .serviceFlowIn dd .title {
    font-size: 20px;
  }
  .serviceFlowIn dd .tx {
    font-size: 14px;
  }
}

.voiceItem {
  background-color: #fff;
  border-radius: 12px;
  padding-inline: 20px;
  padding-block: 30px;
}
.voiceItem .info {
  color: var(--natural700);
  font-size: 13px;
}
.voiceItem .title {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--mainColor);
  line-height: 1.4;
  font-size: 21px;
}
@media only screen and (max-width: 767px) {
  .voiceItem .info {
    font-size: 11px;
  }
  .voiceItem .title {
    font-size: 18px;
  }
}

/*==================================================
 * 施工実績
*================================================*/
.worksBg {
  padding-block: 50vw 120px;
  margin-top: -50vw;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(92.3%, var(--Background-Teal, #EBF2EE)), to(var(--Base-White-100, #FFF)));
  background: linear-gradient(180deg, var(--Background-Teal, #EBF2EE) 92.3%, var(--Base-White-100, #FFF) 100%);
}

.worksCateList li a {
  color: var(--natural700);
  font-size: 18px;
  display: block;
  padding-left: 1.3em;
  padding-block: 0.3em;
  position: relative;
}
.worksCateList li a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--natural500);
  left: 0;
  height: 0.5em;
  width: 0.5em;
}
.worksCateList li.active a {
  color: var(--fontColor);
}
.worksCateList li.active a::before {
  background-color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .worksCateList li a {
    font-size: 16px;
    padding-block: 0.1em;
  }
}

.worksSignleHead .cate {
  background-color: var(--teal);
  border-radius: 50rem;
  padding-inline: 1em;
  padding-block: 0.6em;
  font-size: 13px;
  color: var(--mainColor);
  line-height: 1;
  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;
}
.worksSignleHead .title {
  font-size: 30px;
  font-family: var(--fontEn);
}
@media only screen and (max-width: 767px) {
  .worksSignleHead .cate {
    font-size: 11px;
  }
  .worksSignleHead .title {
    font-size: 22px;
  }
}

.headInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.headInfo .time, .headInfo .area {
  color: var(--natural700);
}
@media only screen and (max-width: 767px) {
  .headInfo .time, .headInfo .area {
    font-size: 12px;
  }
}

.worksGallary .mainImgSlide {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.worksGallary .subSlide .swiper-slide {
  cursor: pointer;
  padding: 12px;
}
.worksGallary .subSlide .swiper-slide img {
  border-radius: 8px;
  overflow: hidden;
}
.worksGallary .subSlide .swiper-slide.swiper-slide-thumb-active img {
  -webkit-box-shadow: 0 0 0 6px rgba(18, 118, 94, 0.4), 0 0 0 12px rgba(18, 118, 94, 0.12);
          box-shadow: 0 0 0 6px rgba(18, 118, 94, 0.4), 0 0 0 12px rgba(18, 118, 94, 0.12);
}

.worksInfoBlock {
  background-color: var(--teal);
  padding-inline: 30px;
  padding-block: 30px;
  border-radius: 12px;
}
.worksInfoBlock dl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.worksInfoBlock dl + dl {
  margin-top: 10px;
}
.worksInfoBlock dt {
  font-size: 14px;
  color: var(--natural700);
  background-color: #D5E1DA;
  border-radius: 4px;
  padding-block: 0.5em;
  line-height: 1;
  text-align: center;
  width: 100px;
}
.worksInfoBlock dd {
  padding-left: 10px;
  line-height: 1.4;
  width: calc(100% - 100px);
}
@media only screen and (max-width: 767px) {
  .worksInfoBlock {
    padding-inline: 15px;
    padding-block: 20px;
  }
  .worksInfoBlock dt {
    font-size: 12px;
    width: 80px;
  }
  .worksInfoBlock dd {
    width: calc(100% - 80px);
  }
}

/*==================================================
 * 対応エリア
*================================================*/
.areaBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.areaBlock .left {
  width: 60%;
}
.areaBlock .right {
  width: 40%;
}
.areaBlock .right .img {
  width: 150%;
  margin-left: -50%;
  position: relative;
  z-index: -1;
}
.areaBlock .commonTitle {
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .areaBlock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .areaBlock .left {
    width: 100%;
  }
  .areaBlock .right {
    width: 100%;
  }
  .areaBlock .right .img {
    margin-top: -22%;
    margin-left: -24%;
    width: 130%;
  }
  .areaBlock .commonTitle {
    line-height: 1.4;
  }
}

.areaBoxTitle {
  font-size: 20px;
  font-family: var(--fontEn);
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid var(--mainColor);
}

.areaBox dl + dl {
  margin-top: 10px;
}
.areaBox dt {
  color: var(--mainColor);
  font-size: 18px;
}

.areaReasonBg {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(78.66%, var(--beige)), to(#FFF));
  background: linear-gradient(180deg, var(--beige) 78.66%, #FFF 100%);
}

.areaReasonBlock {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 70px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .areaReasonBlock {
    gap: 10px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .areaReasonBlock {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.reasonItem {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 30px;
}
.reasonItem:nth-child(2n) {
  margin-top: 100px;
}
.reasonItem .img {
  border-radius: 12px;
  overflow: hidden;
}
.reasonItem .title {
  font-family: var(--fontEn);
  font-size: 24px;
  margin-bottom: 0.7em;
  padding-bottom: 0.7em;
  border-bottom: 1px solid var(--natural500);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .reasonItem {
    grid-template-columns: 0.45fr 0.55fr;
    gap: 15px;
  }
  .reasonItem:nth-child(2n) {
    margin-top: 60px;
  }
  .reasonItem .title {
    font-size: 17px;
    margin-bottom: 0.4em;
    padding-bottom: 0.4em;
  }
  .reasonItem .tx {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .reasonItem {
    grid-template-columns: 0.45fr 0.55fr;
    gap: 15px;
  }
  .reasonItem:nth-child(2n) {
    margin-top: 0;
  }
  .reasonItem .title {
    font-size: 19px;
    margin-bottom: 0.4em;
    padding-bottom: 0.4em;
  }
  .reasonItem .tx {
    font-size: 13px;
  }
}

.areaReasonBox {
  background-color: #fff;
  border-radius: 12px;
  background: #FFF;
  -webkit-box-shadow: 0 0 38px 0 rgba(18, 118, 94, 0.32) inset;
          box-shadow: 0 0 38px 0 rgba(18, 118, 94, 0.32) inset;
  text-align: center;
  padding-block: 36px;
  padding-inline: 20px;
}
.areaReasonBox .tx {
  font-size: 20px;
  color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .areaReasonBox {
    padding-inline: 35px;
  }
  .areaReasonBox .tx {
    font-size: 16px;
  }
}

.sdgsBg {
  background: linear-gradient(205deg, #F5F6E9 18.05%, #EAF5EE 62.74%);
  position: relative;
  z-index: 2;
}
.sdgsBg::before {
  content: "";
  position: absolute;
  background-color: #F5F6E9;
  top: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  aspect-ratio: 1/0.3;
  width: 150vw;
  z-index: -1;
}
.sdgsBg::after {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#EAF5EE), to(#FFF));
  background: linear-gradient(180deg, #EAF5EE 0%, #FFF 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 150px;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .sdgsBg::before {
    top: -40px;
  }
}

.sdgsMain {
  padding-block: 46vw 190px;
  margin-top: -50vw;
}
@media only screen and (max-width: 767px) {
  .sdgsMain {
    padding-block: 70vw 70px;
    margin-top: -53vw;
  }
}

.sdgsItem {
  border-radius: 12px;
  padding-inline: 40px;
  padding-block: 50px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sdgsItem + .sdgsItem {
  margin-top: 25px;
}
.sdgsItem .left {
  padding-inline: 0 5%;
  width: 40%;
}
.sdgsItem .right {
  padding-inline: 5% 0;
  border-left: 1px solid var(--natural300);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60%;
}
.sdgsItem .num {
  color: var(--mainColor);
  font-size: 14px;
  font-family: var(--fontEn);
  margin-bottom: 0.7em;
  line-height: 1;
}
.sdgsItem .title {
  font-size: 28px;
  font-family: var(--fontEn);
  margin-bottom: 1em;
}
.sdgsItem .img {
  border-radius: 12px;
  overflow: hidden;
}
.sdgsItem .icon {
  width: 160px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sdgsItem .left {
    padding-inline: 0 3%;
  }
  .sdgsItem .right {
    padding-inline: 3% 0;
  }
  .sdgsItem .title {
    font-size: 20px;
  }
  .sdgsItem .tx {
    font-size: 14px;
  }
  .sdgsItem .icon {
    width: 130px;
  }
}
@media only screen and (max-width: 767px) {
  .sdgsItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 20px;
    padding-block: 30px;
  }
  .sdgsItem .left {
    padding-inline: 0;
    padding-block: 0 5%;
    width: 100%;
  }
  .sdgsItem .right {
    padding-inline: 0;
    padding-block: 5% 0;
    border-left: none;
    border-top: 1px solid var(--natural300);
    width: 100%;
  }
  .sdgsItem .num {
    font-size: 12px;
    margin-bottom: 0.4em;
  }
  .sdgsItem .title {
    font-size: 22px;
    margin-bottom: 0.6em;
    line-height: 1.4;
  }
  .sdgsItem .icon {
    width: 120px;
  }
}

/*==================================================
 * 協力会社様募集
*================================================*/
.partnersMainSection {
  border-bottom: 1px solid var(--natural300);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(7.53%, #F8F9F5), to(var(--beige)));
  background: linear-gradient(180deg, #F8F9F5 7.53%, var(--beige) 100%);
  padding-block: 50vw 90px;
  margin-top: -50vw;
}

.partnersMainTitle {
  font-family: var(--fontEn);
  margin-bottom: 1em;
  font-size: 32px;
}
.partnersMainTitle span {
  position: relative;
  padding-bottom: 0.4em;
  display: inline-block;
  line-height: 1.4;
}
.partnersMainTitle span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--mainColor);
  height: 3px;
  width: 45px;
}
@media only screen and (max-width: 767px) {
  .partnersMainTitle {
    font-size: 24px;
  }
}

.partnersConcept {
  background-image: url("../img/partnerConceptBg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.partnersAboutImg {
  position: absolute;
  overflow: hidden;
}
.partnersAboutImg.__01 {
  border-radius: 12px;
  width: 150px;
  top: 0;
  left: 110px;
  z-index: 1;
}
.partnersAboutImg.__02 {
  border-radius: 0 12px 12px 0;
  width: clamp(200px, 19.5vw, 250px);
  top: 100px;
  left: -60px;
  z-index: 0;
}
.partnersAboutImg.__03 {
  border-radius: 12px;
  width: 150px;
  bottom: 0;
  right: 110px;
  z-index: 1;
}
.partnersAboutImg.__04 {
  border-radius: 12px 0 0 12px;
  width: clamp(200px, 19.5vw, 250px);
  right: -60px;
  bottom: 100px;
  z-index: 0;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .partnersAboutImg.__01 {
    left: 70px;
    width: 130px;
  }
  .partnersAboutImg.__03 {
    right: 70px;
    width: 130px;
  }
}
@media only screen and (max-width: 767px) {
  .partnersAboutImg {
    position: static;
  }
  .partnersAboutImg.__01, .partnersAboutImg.__02, .partnersAboutImg.__03, .partnersAboutImg.__04 {
    border-radius: 12px;
  }
  .partnersAboutImg.__01 {
    margin-top: 25px;
  }
  .partnersAboutImg.__03 {
    margin-top: auto;
    margin-bottom: 20px;
  }
}

.scrollImgBoxWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-inline: -15px;
}

.scrollImgBoxList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.scrollImgBoxList.__left {
  -webkit-animation: infinity-scroll-left 50s infinite linear 0.5s both;
          animation: infinity-scroll-left 50s infinite linear 0.5s both;
}
.scrollImgBoxList .partnersImg {
  margin-inline: 10px;
  width: calc(55.5555555556vw - 10px);
}

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

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.partnersAboutTitleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 30px;
}
.partnersAboutTitleBox .title {
  font-family: var(--fontEn);
  color: var(--mainColor);
  font-size: 40px;
}
.partnersAboutTitleBox .tx {
  color: var(--mainColor);
  font-size: 18px;
  line-height: 1.8;
}
@media print, screen and (min-width: 768px) {
  .partnersAboutTitleBox .title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 0.1em;
    line-height: 1.8;
  }
  .partnersAboutTitleBox .tx {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .partnersAboutTitleBox .tx.__01 {
    margin-top: 3em;
  }
  .partnersAboutTitleBox .tx.__02 {
    margin-top: 6em;
  }
}
@media only screen and (max-width: 767px) {
  .partnersAboutTitleBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .partnersAboutTitleBox .title {
    font-size: 28px;
    line-height: 1.4;
  }
  .partnersAboutTitleBox .tx {
    font-size: 16px;
    line-height: 1.5;
  }
}

.featureHead {
  text-align: center;
}
.featureHead .tag {
  display: inline-block;
  text-align: center;
  padding-inline: 1em;
  padding-block: 0.5em;
  border: 1px solid rgba(18, 118, 94, 0.28);
  background-color: var(--teal);
  color: var(--mainColor);
  font-family: var(--fontEn);
  border-radius: 50rem;
  margin-bottom: 0.6em;
}
.featureHead .title {
  font-size: 32px;
  font-family: var(--fontEn);
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .featureHead .tag {
    font-size: 12px;
  }
  .featureHead .title {
    font-size: 22px;
  }
}

.partnersFeatureGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}
@media only screen and (max-width: 959px) {
  .partnersFeatureGrid {
    gap: 20px;
  }
}

.partnersFeatureCard {
  background-color: var(--beige);
  padding: 10px;
  border-radius: 20px;
  width: calc(33.3333333333% - 40px);
}
.partnersFeatureCard .txBox {
  padding-block: 20px;
  padding-inline: 10px;
}
.partnersFeatureCard .titleBox {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--natural300);
}
.partnersFeatureCard .num {
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  color: var(--mainColor);
  height: 35px;
  width: 35px;
}
.partnersFeatureCard .title {
  font-size: 20px;
  font-family: var(--fontEn);
  line-height: 1.4;
  width: calc(100% - 55px);
}
.partnersFeatureCard .tx {
  font-size: 14px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .partnersFeatureCard {
    width: calc(50% - 20px);
  }
  .partnersFeatureCard .title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .partnersFeatureCard {
    margin-inline: auto;
    width: 95%;
  }
  .partnersFeatureCard .title {
    font-size: 18px;
  }
  .partnersFeatureCard .tx {
    font-size: 14px;
  }
}

.partnerDetail {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), color-stop(67.94%, var(--teal)));
  background: linear-gradient(180deg, #FFF 0%, var(--teal) 67.94%);
}

.detailList {
  max-width: 600px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 12px;
  padding-inline: 15px;
  padding-block: 15px;
}
.detailList dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 0.7em;
}
.detailList dl + dl {
  border-top: 1px solid var(--natural300);
}
.detailList dt {
  border-radius: 50%;
  overflow: hidden;
  height: 45px;
  width: 45px;
}
.detailList dd {
  font-size: 18px;
  padding-left: 20px;
  width: calc(100% - 45px);
}
@media only screen and (max-width: 767px) {
  .detailList dt {
    height: 35px;
    width: 35px;
  }
  .detailList dd {
    font-size: 15px;
    padding-left: 10px;
    width: calc(100% - 35px);
  }
}

.qaItem {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid var(--khaki);
  padding-inline: 1em;
  padding-block: 1em;
}
.qaItem + .qaItem {
  margin-top: 15px;
}
.qaItem .deco {
  font-size: 24px;
}
.qaItem .deco.__q {
  color: var(--mainColor);
}
.qaItem .deco.__a {
  color: #FF5B5B;
}
@media only screen and (max-width: 767px) {
  .qaItem .deco {
    font-size: 20px;
  }
}

.qaTitleBox {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
}
.qaTitleBox .title {
  font-size: 18px;
  padding-right: 20px;
  line-height: 1.4;
}
.qaTitleBox .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5px;
  width: 15px;
  height: 15px;
}
.qaTitleBox .icon::before, .qaTitleBox .icon::after {
  content: "";
  position: absolute;
  background-color: var(--natural700);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 100%;
}
.qaTitleBox .icon::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.qaTitleBox .icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.qaTitleBox.open .icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}
@media only screen and (max-width: 767px) {
  .qaTitleBox .title {
    font-size: 15px;
  }
}

.qaBox {
  display: none;
}
.qaBox .qaIn {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .qaBox .qaIn {
    padding-top: 15px;
  }
}

.partnersFaqBg {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--teal)), to(#ECEDE3));
  background: linear-gradient(180deg, var(--teal) 0%, #ECEDE3 100%);
}

.serviceFaqBg {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--teal)), to(#fff));
  background: linear-gradient(180deg, var(--teal) 0%, #fff 100%);
}

.partnersPageBg {
  background: linear-gradient(1deg, #FBFFE7 0.74%, #ECEDE3 99.19%);
}

/*==================================================
 * お問い合わせ
*================================================*/
.contactMainBox {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--natural300);
}
@media only screen and (max-width: 767px) {
  .contactMainBox {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}

.telBpxIn {
  background-image: url("../img/telBoxBg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 12px;
  padding-inline: 40px;
  padding-block: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.telBpxIn .telNumBox {
  width: 55%;
  padding-right: 5%;
}
.telBpxIn .infoBox {
  width: 45%;
}
.telBpxIn .infoBox .contactInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  color: #fff;
  gap: 10px;
}
.telBpxIn .infoBox .contactInfo + .contactInfo {
  margin-top: 10px;
}
.telBpxIn .infoBox .contactInfo .tag {
  font-size: 11px;
  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: 1px solid #fff;
  line-height: 1;
  padding-inline: 1em;
  padding-block: 0.3em;
  border-radius: 50rem;
}
@media only screen and (max-width: 767px) {
  .telBpxIn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 15px;
    padding-block: 15px;
  }
  .telBpxIn .telNumBox {
    padding-right: 0;
    margin-bottom: 5%;
    width: 100%;
  }
  .telBpxIn .infoBox {
    text-align: center;
    width: 100%;
  }
  .telBpxIn .infoBox .contactInfo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.telNumTx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.telNumTx .icon {
  color: #fff;
  font-size: 28px;
}
.telNumTx .num {
  color: #fff;
  font-size: 36px;
}
@media only screen and (max-width: 767px) {
  .telNumTx {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .telNumTx .icon {
    font-size: 22px;
  }
  .telNumTx .num {
    font-size: 28px;
  }
}

/*==================================================
 * 採用情報
*================================================*/
.recruitHeade {
  padding-block: 150px;
}
.recruitHeade .pageHeaderTitleEn {
  background: -webkit-gradient(linear, left top, right top, from(var(--Primary-Medium, #12765E)), to(var(--Primary-Light, #529E1C)));
  background: linear-gradient(90deg, var(--Primary-Medium, #12765E) 0%, var(--Primary-Light, #529E1C) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.recruitHeade .pageHeaderTitleJp {
  color: var(--natural700);
  border-left-color: var(--natural700);
}
@media only screen and (max-width: 767px) {
  .recruitHeade {
    padding-block: 80px 100px;
  }
}

.recruitHeadeIn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recruitHeadeIn .imgBox {
  padding-right: 5%;
  width: 45%;
}
.recruitHeadeIn .txBox {
  width: 55%;
}
.recruitHeadeIn .txBox .commonTitle {
  line-height: 1.6;
}
.recruitHeadeIn .txBox .commonTx {
  font-size: 20px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitHeadeIn .txBox .commonTx {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitHeadeIn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruitHeadeIn .imgBox {
    margin-bottom: 5%;
    margin-inline: auto;
    width: 85%;
  }
  .recruitHeadeIn .txBox {
    width: 100%;
  }
  .recruitHeadeIn .txBox .commonTitle {
    font-size: 22px;
  }
  .recruitHeadeIn .txBox .commonTx {
    font-size: 16px;
  }
}

.recruitConcept {
  position: relative;
  z-index: 1;
}
.recruitConcept::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  aspect-ratio: 1/0.3;
  height: 100%;
  width: 150vw;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .recruitConcept::before {
    top: -40px;
    height: auto;
  }
}

.recruitConceptBox {
  border-radius: 12px;
  background-color: var(--teal);
  padding-inline: 40px;
  padding-block: 40px;
}
@media only screen and (max-width: 767px) {
  .recruitConceptBox {
    padding-inline: 20px;
    padding-block: 20px;
  }
}

.numberItem {
  background-color: #fff;
  border-radius: 12px;
  padding-inline: 40px;
  padding-block: 20px 40px;
  text-align: center;
}
.numberItem .icon {
  margin-inline: auto;
  margin-bottom: 5%;
  width: 140px;
}
.numberItem .title {
  font-size: clamp(14px, 1.6vw, 20px);
  line-height: 1;
  margin-bottom: 1%;
}
.numberItem .numTx {
  font-size: clamp(36px, 4.7vw, 60px);
  line-height: 1;
  font-weight: 600;
  color: var(--mainColor);
}
.numberItem .numTx small {
  font-size: clamp(16px, 2.2vw, 28px);
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .numberItem:nth-child(1) {
    grid-row: 1/2;
    grid-column: 1/4;
  }
  .numberItem:nth-child(2) {
    grid-row: 1/2;
    grid-column: 4/7;
  }
  .numberItem:nth-child(3) {
    grid-row: 2/3;
    grid-column: 1/3;
  }
  .numberItem:nth-child(4) {
    grid-row: 2/3;
    grid-column: 3/5;
  }
  .numberItem:nth-child(5) {
    grid-row: 2/3;
    grid-column: 5/7;
  }
}
@media only screen and (max-width: 767px) {
  .numberItem {
    padding-block: 5px 20px;
    padding-inline: 20px;
  }
  .numberItem .icon {
    width: 70px;
  }
}

.jobItem {
  background-color: #fff;
  padding-inline: 60px;
  padding-block: 60px;
  border-radius: 16px;
}
.jobItem .borderbottom {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--natural300);
}
.jobItem + .jobItem {
  margin-top: 50px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .jobItem {
    padding-inline: 30px;
    padding-block: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .jobItem {
    padding-inline: 15px;
    padding-block: 30px;
    border-radius: 8px;
  }
  .jobItem .borderbottom {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .jobItem + .jobItem {
    margin-top: 30px;
  }
}

.jobTitle {
  font-size: 28px;
  padding-left: 1em;
  position: relative;
  margin-bottom: 1.8em;
  line-height: 1;
}
.jobTitle::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: var(--mainColorLight);
  border-radius: 50%;
  height: 0.5em;
  width: 0.5em;
}
@media only screen and (max-width: 959px) {
  .jobTitle {
    font-size: 18px;
  }
}

.jobBox {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.jobBox .imgBox {
  border-radius: 12px;
  overflow: hidden;
  padding-right: 5%;
  width: 45%;
}
.jobBox .txBox {
  width: 55%;
}
@media only screen and (max-width: 767px) {
  .jobBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .jobBox .imgBox {
    margin-inline: auto;
    margin-bottom: 5%;
    width: 75%;
  }
  .jobBox .txBox {
    width: 100%;
  }
}

.jobCntTitle {
  border-left: 3px solid var(--mainColorLight);
  padding-left: 0.6em;
  font-size: 20px;
  line-height: 1;
  padding-block: 0.4em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .jobCntTitle {
    font-size: 16px;
  }
}

.jobList li {
  padding-left: 1em;
  position: relative;
  margin-block: 0.8em;
  line-height: 1.2;
}
.jobList li::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 0.4em;
  width: 0.4em;
  background-color: #A5BAB2;
  border-radius: 50%;
}

.jobSchedule .listBox dt {
  width: 12em;
}
.jobSchedule .listBox dt span {
  font-size: 20px;
}
.jobSchedule .listBox dt::before {
  background-color: var(--mainColorLight);
}
.jobSchedule .listBox dd {
  font-size: 17px;
  line-height: 1.6;
  width: calc(100% - 12em);
}
@media only screen and (max-width: 767px) {
  .jobSchedule .listBox dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .jobSchedule .listBox dt {
    width: 100%;
  }
  .jobSchedule .listBox dt span {
    font-size: 20px;
  }
  .jobSchedule .listBox dt::before, .jobSchedule .listBox dt::after {
    top: 30%;
  }
  .jobSchedule .listBox dd {
    padding-top: 0.5em;
    padding-left: 2em;
    font-size: 14px;
    width: 100%;
  }
}

.careerBlock + .careerBlock {
  margin-top: 90px;
}
.careerBlock .careerTitle {
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 1em;
}
.careerBlock .tag {
  font-size: 14px;
  font-family: var(--fontEn);
  padding-inline: 0.9em;
  padding-block: 0.5em;
  line-height: 1;
  border-radius: 50rem;
  display: inline-block;
  margin-bottom: 1.5%;
}
.careerBlock.__ver1 .careerItem {
  border: 1px solid var(--mainColor);
}
.careerBlock.__ver1 .careerItem .list li::before {
  background-color: #A5BAB2;
}
.careerBlock.__ver1 .careerItemTitleBox .num {
  color: var(--mainColor);
  border-right: 1px solid var(--mainColor);
}
.careerBlock.__ver1 .careerTitle {
  color: var(--mainColor);
}
.careerBlock.__ver1 .tag {
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
  background-color: var(--teal);
}
.careerBlock.__ver2 .careerItem {
  border: 1px solid #B6B9A0;
}
.careerBlock.__ver2 .careerItem .list li::before {
  background-color: #D9DFAE;
}
.careerBlock.__ver2 .careerItemTitleBox .num {
  color: #766E12;
  border-right: 1px solid #B3B5A1;
}
.careerBlock.__ver2 .careerTitle {
  color: #766E12;
}
.careerBlock.__ver2 .tag {
  color: #766E12;
  border: 1px solid rgba(118, 110, 18, 0.3);
  background-color: var(--beige);
}
@media only screen and (max-width: 767px) {
  .careerBlock + .careerBlock {
    margin-top: 50px;
  }
  .careerBlock .careerTitle {
    font-size: 16px;
  }
  .careerBlock .tag {
    font-size: 12px;
  }
}

.careerItem {
  background-color: #fff;
  padding-inline: 30px;
  padding-block: 30px;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.careerItem .careerImg {
  border-radius: 12px;
  overflow: hidden;
  width: 35%;
}
.careerItem .txBox {
  padding-left: 5%;
  width: 65%;
}
.careerItem .list li {
  padding-left: 1em;
  position: relative;
  margin-block: 0.3em;
  line-height: 1.2;
}
.careerItem .list li::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 0.4em;
  width: 0.4em;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .careerItem {
    padding-inline: 15px;
    padding-block: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .careerItem .careerImg {
    border-radius: 6px;
    margin-inline: auto;
    margin-bottom: 5%;
    width: 65%;
  }
  .careerItem .txBox {
    padding-left: 0;
    width: 100%;
  }
}

.careerItemTitleBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5%;
}
.careerItemTitleBox .num {
  font-size: 26px;
  font-family: var(--fontEn);
  line-height: 1;
  padding-right: 20px;
  margin-right: 20px;
}
.careerItemTitleBox .num span {
  font-size: 18px;
  line-height: 1;
  padding-right: 0.3em;
}
.careerItemTitleBox .careerItemTitle {
  font-size: 24px;
  font-family: var(--fontEn);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .careerItemTitleBox .num {
    font-size: 24px;
    margin-right: 15px;
    padding-right: 15px;
  }
  .careerItemTitleBox .num span {
    font-size: 15px;
  }
  .careerItemTitleBox .careerItemTitle {
    font-size: 20px;
  }
}

.styleItem .icon {
  margin-inline: auto;
  margin-bottom: 3%;
  width: 150px;
}
.styleItem .title {
  font-size: 28px;
  font-family: var(--fontEn);
}
@media only screen and (max-width: 767px) {
  .styleItem .title {
    font-size: 22px;
  }
  .styleItem .tx {
    font-size: 14px !important;
  }
}

.staffBlock {
  margin-right: -80px;
}
@media only screen and (max-width: 959px) {
  .staffBlock {
    margin-right: -15px;
  }
}

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

.staffItem {
  background-color: #fff;
  border-radius: 12px;
  padding-inline: 30px;
  padding-block: 30px;
  width: calc(100% - 180px);
}
@media only screen and (max-width: 959px) {
  .staffItem {
    padding-inline: 15px;
    padding-block: 20px;
    width: calc(100% - 30px);
  }
}

.staffItemImgBox {
  width: 40%;
}
.staffItemImgBox .staffItemImg {
  overflow: hidden;
  border-radius: 12px;
}
@media only screen and (max-width: 767px) {
  .staffItemImgBox {
    margin-inline: auto;
    margin-bottom: 5%;
    width: 65%;
  }
}

.staffItemTxBox {
  padding-left: 3%;
  width: 60%;
}
.staffItemTxBox .staffItemHead {
  color: var(--mainColor);
  font-weight: 600;
  margin-bottom: 1em;
}
.staffItemTxBox .staffItemTitle {
  font-size: 24px;
  font-family: var(--fontEn);
  margin-bottom: 0.5em;
}
.staffItemTxBox .staffItemInfo {
  font-size: 14px;
  color: var(--natural700);
}
@media only screen and (max-width: 767px) {
  .staffItemTxBox {
    padding-left: 0;
    width: 100%;
  }
  .staffItemTxBox .staffItemHead {
    margin-bottom: 0.5em;
  }
  .staffItemTxBox .staffItemTitle {
    font-size: 18px;
  }
  .staffItemTxBox .staffItemInfo {
    font-size: 12px;
  }
}

.staffItemDl {
  margin-top: 5%;
}
.staffItemDl dl + dl {
  margin-top: 30px;
}
.staffItemDl dt {
  color: var(--natural700);
  padding-left: 3em;
  position: relative;
  margin-bottom: 0.8em;
}
.staffItemDl dt::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: var(--natural700);
  height: 1px;
  width: 2em;
}
.staffItemDl dd {
  font-size: 17px;
}
@media only screen and (max-width: 767px) {
  .staffItemDl dl + dl {
    margin-top: 20px;
  }
  .staffItemDl dd {
    font-size: 12px;
  }
}

.staffSlideArw {
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--mainColor);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  height: 65px;
  width: 65px;
  position: absolute;
}
.staffSlideArw::after {
  content: none;
}
.staffSlideArw:hover {
  opacity: 0.85;
}
.staffSlideArw i {
  font-size: 1.4em;
  color: var(--mainColor);
}
.staffSlideArw.staffPrevArw {
  left: -30px;
}
.staffSlideArw.staffNextArw {
  right: 140px;
}
.staffSlideArw.swiper-button-disabled {
  display: none;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .staffSlideArw {
    height: 45px;
    width: 45px;
  }
  .staffSlideArw i {
    font-size: 1em;
  }
  .staffSlideArw.staffPrevArw {
    left: -15px;
  }
  .staffSlideArw.staffNextArw {
    right: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .staffSlideArw {
    top: 20%;
    height: 45px;
    width: 45px;
  }
  .staffSlideArw i {
    font-size: 1em;
  }
  .staffSlideArw.staffPrevArw {
    left: -15px;
  }
  .staffSlideArw.staffNextArw {
    right: 5px;
  }
}

.detailItem {
  border-radius: 12px;
  padding-inline: 30px;
  padding-block: 30px;
  background-color: var(--teal);
}
.detailItem + .detailItem {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .detailItem {
    padding-inline: 15px;
    padding-block: 20px;
  }
  .detailItem + .detailItem {
    margin-top: 15px;
  }
}

.detailTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}
.detailTitle .title {
  font-size: 24px;
  line-height: 1;
}
.detailTitle .icon {
  position: relative;
  height: 25px;
  width: 25px;
}
.detailTitle .icon::before, .detailTitle .icon::after {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 100%;
}
.detailTitle .icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.detailTitle .icon::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.detailTitle.open .icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
@media only screen and (max-width: 959px) {
  .detailTitle .title {
    font-size: 18px;
  }
  .detailTitle .icon {
    height: 20px;
    width: 20px;
  }
}

.detailIn {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--natural300);
  display: none;
}
@media only screen and (max-width: 959px) {
  .detailIn {
    margin-top: 15px;
    padding-top: 15px;
  }
}

.detailInBox {
  background-color: #fff;
  padding-inline: 30px;
  padding-block: 20px;
  border-radius: 12px;
}
.detailInBox dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 1em;
  border-bottom: 1px solid var(--natural300);
}
.detailInBox dt {
  font-weight: 600;
  width: 10em;
}
.detailInBox dd {
  width: calc(100% - 10em);
}
@media only screen and (max-width: 767px) {
  .detailInBox {
    padding-inline: 15px;
    padding-block: 15px;
  }
  .detailInBox dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .detailInBox dt {
    font-size: 14px;
    width: 100%;
  }
  .detailInBox dd {
    font-size: 12px;
    width: 100%;
  }
}

.recruitMindsetBg {
  background: var(--khaki);
}

.recruitFlowBg {
  background: var(--Background-Beige, #EFF0E7);
}

.recruitFaqBg {
  background: -webkit-gradient(linear, left top, left bottom, from(#EFF0E7), color-stop(46.86%, var(--Background-Teal, #EBF2EE)));
  background: linear-gradient(180deg, #EFF0E7 0%, var(--Background-Teal, #EBF2EE) 46.86%);
}

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