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

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


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

*/
/* ----------------------------------
使う↓
---------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
:root {
  --mainColor: #036EB8;
  --subColor: #E62524;
  --mainGrade: linear-gradient(120deg, #E62524 0%, #460A54 45%, #08389F 100%);
  --blueGrade: linear-gradient(135deg, #009FE8 0%, #1C3B7D 100%);
  --logoBlack: #150201;
}

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

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

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

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

.grayColor {
  color: #F7F7F7;
}

.bgGrayColor {
  background-color: #F7F7F7;
}

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

.bgGrayColorLight {
  background-color: #f9f9f9;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

.bgBlueLight {
  background-color: #ECF0F3;
}

.deepBlueGrade {
  background: linear-gradient(45deg, #150201 28%, #036EB8 100%);
}

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

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

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

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

:root {
  --fontJp: "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

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

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

:root {
  --serif: "Libre Baskerville", serif;
}

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

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

:root {
  --fontColor: #1E1E1E;
}

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

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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

input,
select {
  vertical-align: middle;
}

li {
  list-style-type: none;
}

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

html {
  font-size: 10px;
}

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

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

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

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

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

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

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

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

.ls_xl {
  letter-spacing: 0.2em;
}

.ls_l {
  letter-spacing: 0.15em;
}

.ls_m {
  letter-spacing: 0.1em;
}

.ls_s {
  letter-spacing: 0.05em;
}

.ls_xs {
  letter-spacing: 0.01em;
}

.ls_0 {
  letter-spacing: 0;
}

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

.thin {
  font-weight: 100;
}

.normal {
  font-weight: 400;
}

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

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

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

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

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}

.black {
  color: #333;
}

.gray {
  color: #686868;
}

.red {
  color: #EC462F !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h000 {
  font-size: 100px;
}

.h00 {
  font-size: 64px;
}

.h0 {
  font-size: 42px;
}

.h1 {
  font-size: 32px;
}

.h2 {
  font-size: 28px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 16px;
}

.text_m {
  font-size: 14px;
}

.text_sm {
  font-size: 13px;
}

.text_s {
  font-size: 12px;
}

.text_ss {
  font-size: 10px;
}

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

html,
body {
  width: 100%;
}

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

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

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

hr {
  margin: 10px auto;
}

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

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

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

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

.inlineBlockUl li {
  display: inline-block;
}

.disNone {
  display: none !important;
}

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

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

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

.overHidden {
  overflow: hidden;
}

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

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

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

.p0 {
  padding: 0;
}

.mtAuto {
  margin-top: auto;
}

.mrAuto {
  margin-right: auto;
}

.mbAuto {
  margin-bottom: auto;
}

.mlAuto {
  margin-left: auto;
}

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

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

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

.ml05 {
  margin-left: 0.5em;
}

.ml1 {
  margin-left: 1em;
}

.ml2 {
  margin-left: 2em;
}

.ml3 {
  margin-left: 3em;
}

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

.mtL2 {
  margin-top: 25%;
}

.mtL3 {
  margin-top: 20%;
}

.mtL4 {
  margin-top: 15%;
}

.mtM {
  margin-top: 10%;
}

.mtM2 {
  margin-top: 7.5%;
}

.mtM3 {
  margin-top: 5%;
}

.mtS {
  margin-top: 3.5%;
}

.mtS2 {
  margin-top: 2%;
}

.mtS3 {
  margin-top: 1%;
}

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

.mbL2 {
  margin-bottom: 25%;
}

.mbL3 {
  margin-bottom: 20%;
}

.mbL4 {
  margin-bottom: 15%;
}

.mbM {
  margin-bottom: 10%;
}

.mbM2 {
  margin-bottom: 7.5%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS3 {
  margin-bottom: 1%;
}

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

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

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

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

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

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

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

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

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

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

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

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

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

.pl1 {
  padding-left: 1em;
}

.pl2 {
  padding-left: 2em;
}

.pl3 {
  padding-left: 3em;
}

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

.pbL2 {
  padding-bottom: 25%;
}

.pbL3 {
  padding-bottom: 20%;
}

.pbL4 {
  padding-bottom: 15%;
}

.pbM {
  padding-bottom: 10%;
}

.pbM2 {
  padding-bottom: 7.5%;
}

.pbM3 {
  padding-bottom: 5%;
}

.pbS {
  padding-bottom: 3.5%;
}

.pbS2 {
  padding-bottom: 2%;
}

.pbS3 {
  padding-bottom: 1%;
}

@media only screen and (max-width: 767px) {
  .pbSpL {
    padding-bottom: 30%;
  }
  .pbSpL2 {
    padding-bottom: 25%;
  }
  .pbSpL3 {
    padding-bottom: 20%;
  }
  .pbSpL4 {
    padding-bottom: 15%;
  }
  .pbSpM {
    padding-bottom: 10%;
  }
  .pbSpM2 {
    padding-bottom: 7.5%;
  }
  .pbSpM3 {
    padding-bottom: 5%;
  }
  .pbSpS {
    padding-bottom: 3.5%;
  }
  .pbSpS2 {
    padding-bottom: 2%;
  }
  .pbSpS3 {
    padding-bottom: 1%;
  }
}
.gap10 {
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .gap10 {
    gap: calc(10px / 2);
  }
}

.gap-row-10 {
  row-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .gap-row-10 {
    row-gap: calc(10px / 2);
  }
}

.gap-column-10 {
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .gap-column-10 {
    -webkit-column-gap: calc(10px / 2);
       -moz-column-gap: calc(10px / 2);
            column-gap: calc(10px / 2);
  }
}

.gap20 {
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .gap20 {
    gap: calc(20px / 2);
  }
}

.gap-row-20 {
  row-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .gap-row-20 {
    row-gap: calc(20px / 2);
  }
}

.gap-column-20 {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .gap-column-20 {
    -webkit-column-gap: calc(20px / 2);
       -moz-column-gap: calc(20px / 2);
            column-gap: calc(20px / 2);
  }
}

.gap30 {
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .gap30 {
    gap: calc(30px / 2);
  }
}

.gap-row-30 {
  row-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .gap-row-30 {
    row-gap: calc(30px / 2);
  }
}

.gap-column-30 {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .gap-column-30 {
    -webkit-column-gap: calc(30px / 2);
       -moz-column-gap: calc(30px / 2);
            column-gap: calc(30px / 2);
  }
}

.gap40 {
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .gap40 {
    gap: calc(40px / 2);
  }
}

.gap-row-40 {
  row-gap: 40px;
}
@media only screen and (max-width: 767px) {
  .gap-row-40 {
    row-gap: calc(40px / 2);
  }
}

.gap-column-40 {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media only screen and (max-width: 767px) {
  .gap-column-40 {
    -webkit-column-gap: calc(40px / 2);
       -moz-column-gap: calc(40px / 2);
            column-gap: calc(40px / 2);
  }
}

.gap50 {
  gap: 50px;
}
@media only screen and (max-width: 767px) {
  .gap50 {
    gap: calc(50px / 2);
  }
}

.gap-row-50 {
  row-gap: 50px;
}
@media only screen and (max-width: 767px) {
  .gap-row-50 {
    row-gap: calc(50px / 2);
  }
}

.gap-column-50 {
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
@media only screen and (max-width: 767px) {
  .gap-column-50 {
    -webkit-column-gap: calc(50px / 2);
       -moz-column-gap: calc(50px / 2);
            column-gap: calc(50px / 2);
  }
}

.gap60 {
  gap: 60px;
}
@media only screen and (max-width: 767px) {
  .gap60 {
    gap: calc(60px / 2);
  }
}

.gap-row-60 {
  row-gap: 60px;
}
@media only screen and (max-width: 767px) {
  .gap-row-60 {
    row-gap: calc(60px / 2);
  }
}

.gap-column-60 {
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media only screen and (max-width: 767px) {
  .gap-column-60 {
    -webkit-column-gap: calc(60px / 2);
       -moz-column-gap: calc(60px / 2);
            column-gap: calc(60px / 2);
  }
}

.gap70 {
  gap: 70px;
}
@media only screen and (max-width: 767px) {
  .gap70 {
    gap: calc(70px / 2);
  }
}

.gap-row-70 {
  row-gap: 70px;
}
@media only screen and (max-width: 767px) {
  .gap-row-70 {
    row-gap: calc(70px / 2);
  }
}

.gap-column-70 {
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
}
@media only screen and (max-width: 767px) {
  .gap-column-70 {
    -webkit-column-gap: calc(70px / 2);
       -moz-column-gap: calc(70px / 2);
            column-gap: calc(70px / 2);
  }
}

.gap80 {
  gap: 80px;
}
@media only screen and (max-width: 767px) {
  .gap80 {
    gap: calc(80px / 2);
  }
}

.gap-row-80 {
  row-gap: 80px;
}
@media only screen and (max-width: 767px) {
  .gap-row-80 {
    row-gap: calc(80px / 2);
  }
}

.gap-column-80 {
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}
@media only screen and (max-width: 767px) {
  .gap-column-80 {
    -webkit-column-gap: calc(80px / 2);
       -moz-column-gap: calc(80px / 2);
            column-gap: calc(80px / 2);
  }
}

.gap90 {
  gap: 90px;
}
@media only screen and (max-width: 767px) {
  .gap90 {
    gap: calc(90px / 2);
  }
}

.gap-row-90 {
  row-gap: 90px;
}
@media only screen and (max-width: 767px) {
  .gap-row-90 {
    row-gap: calc(90px / 2);
  }
}

.gap-column-90 {
  -webkit-column-gap: 90px;
     -moz-column-gap: 90px;
          column-gap: 90px;
}
@media only screen and (max-width: 767px) {
  .gap-column-90 {
    -webkit-column-gap: calc(90px / 2);
       -moz-column-gap: calc(90px / 2);
            column-gap: calc(90px / 2);
  }
}

.gap100 {
  gap: 100px;
}
@media only screen and (max-width: 767px) {
  .gap100 {
    gap: calc(100px / 2);
  }
}

.gap-row-100 {
  row-gap: 100px;
}
@media only screen and (max-width: 767px) {
  .gap-row-100 {
    row-gap: calc(100px / 2);
  }
}

.gap-column-100 {
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
}
@media only screen and (max-width: 767px) {
  .gap-column-100 {
    -webkit-column-gap: calc(100px / 2);
       -moz-column-gap: calc(100px / 2);
            column-gap: calc(100px / 2);
  }
}

/*flex・グリッド系*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

.flexCol {
  width: 100%;
}

.col1 {
  width: 100%;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 33.3333%;
}

.col-3 {
  width: 66.6666%;
}

.col4 {
  width: 25%;
}

.col-4 {
  width: 75%;
}

.col5 {
  width: 20%;
}

.col-5 {
  width: 80%;
}

.col6 {
  width: 16.666%;
}

.col-6 {
  width: 83.333%;
}

.col3-2 {
  width: 60%;
}

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

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

.w100 {
  width: 100%;
}

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

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

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

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

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

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

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

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

.paNone {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

.marginCenter {
  margin-inline: auto;
}

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

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

.bgImgHeight {
  padding-bottom: 67%;
}

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

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

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

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

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

.bgWhite {
  background-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.radiusL {
  border-radius: 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;
}

:root {
  --haederH: 62px;
  --footerH: 50px;
}
@media only screen and (max-width: 959px) {
  :root {
    --haederH: 50px;
  }
}

/*マウスストーカー*/
#pageHeader {
  background-color: var(--logoBlack);
  padding-top: calc(var(--haederH) + 30px);
  overflow: hidden;
}
#pageHeader.recruitPageHeader {
  background-color: var(--mainColor);
}

.pageHeaderBigTitleEn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: clamp(100px, 15.7vw, 200px);
  font-family: var(--fontEn);
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(var(--logoBlack)), color-stop(55%, white), to(var(--logoBlack)));
  background: linear-gradient(to right, var(--logoBlack) 0%, white 55%, var(--logoBlack) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0.15;
  z-index: -1;
}
.recruitPageHeader .pageHeaderBigTitleEn {
  background: -webkit-gradient(linear, left top, right top, from(var(--mainColor)), color-stop(55%, white), to(var(--mainColor)));
  background: linear-gradient(to right, var(--mainColor) 0%, white 55%, var(--mainColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 767px) {
  .pageHeaderBigTitleEn {
    right: -0.5em;
  }
}

.pageHeaderTitleEn {
  color: #fff;
  font-family: var(--fontEn);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 0.1em;
}

.pageHeaderTitleJp span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 2.5em;
  line-height: 1;
  letter-spacing: 0.12em;
  display: inline-block;
}
.pageHeaderTitleJp span::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 2px;
  width: 1.7em;
}
@media only screen and (max-width: 767px) {
  .pageHeaderTitleJp span {
    font-size: 18px;
  }
}

.pageHeaderImg {
  padding-bottom: 29.3%;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
}
@media only screen and (max-width: 767px) {
  .pageHeaderImg {
    padding-bottom: 37.5%;
  }
}

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

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

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

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

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

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

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

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

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

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

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

html.open {
  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: #150201;
}
.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: #150201;
}
.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 {
  color: #fff;
  font-size: 12px;
}
.breadcrumbsInner span {
  font-size: 12px;
  font-family: var(--fontJp);
  padding-inline: 0.4em;
}
.breadcrumbsInner span:nth-child(1) {
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .breadcrumbsInner span {
    font-size: 11px;
  }
}

/*パンくず終わり*/
/*新着情報------------------------------------*/
@media print, screen and (min-width: 768px) {
  .topics-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
  }
  .topics-block .topics-listIn,
  .topics-block .topics-contents {
    width: 73%;
  }
  .topics-block .topics-side {
    width: 27%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topics-block {
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .topics-block .topics-side {
    margin-top: 10%;
  }
}

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

.topics-titleBox {
  border-bottom: 1px dashed #A8BED4;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.topics-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.topics-info .topics-cate {
  background-color: #DEDEDE;
  padding-inline: 0.6em;
  padding-block: 0.4em;
  line-height: 1;
  font-size: 14px;
}
.topics-info .topics-time {
  font-size: 13px;
}

.topics-title {
  font-size: 33px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .topics-title {
    font-size: 20px;
  }
}

.topics-tag {
  display: grid;
  grid-template-columns: 50px auto;
  gap: 5px;
}

.topics-tagslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 10px;
}
.topics-tagslist li a {
  background-color: var(--mainColorLight);
  font-size: 14px;
  border-radius: 30px;
  line-height: 1;
  padding-inline: 1.1em;
  padding-block: 0.4em;
}

/*お問い合わせページ------------------------------------*/
.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: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 8px;
  width: 8px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .cform input[type=radio] + span::after {
    top: 47%;
  }
}
.cform input[type=radio]:checked + span::after {
  display: block;
}
.cform input[type=checkbox] {
  display: none;
}
.cform input[type=checkbox] + span {
  cursor: pointer;
  padding-left: 1.7em;
  position: relative;
}
.cform input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  border: 1px solid #333;
  background-color: #fff;
  top: 0;
  left: 0;
  height: 1em;
  width: 1em;
}
.cform input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  border-left: 2px solid var(--mainColor);
  border-bottom: 2px solid var(--mainColor);
  top: 2px;
  left: 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  height: 8px;
  width: 14px;
  display: none;
}
.cform input[type=checkbox]:checked + span::after {
  display: block;
}
@media only screen and (max-width: 767px) {
  .cform tr {
    margin-bottom: 2em;
  }
  .cform .title {
    font-size: 14px;
  }
}

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

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

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

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

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

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

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

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

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

.submit-btn {
  text-align: center;
  margin-top: 4%;
}
.submit-btn input {
  border: none;
  background: var(--blueGrade);
  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 {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
.submit-btn input[name=submitBack] {
  border: 1px solid #838383;
  background: #838383;
  color: #fff;
  width: 250px;
}
.submit-btn input[name=submitBack]:hover {
  background: #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);
  letter-spacing: 0.05em;
  font-size: 17px;
}
.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: #f9f9f9;
  padding: 3% 5%;
}
.entry li {
  list-style-type: none;
  line-height: 1.8;
  font-weight: normal;
  margin-bottom: 0.3em;
  position: relative;
  padding-left: 1.5em;
}
.entry li:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f14a";
  color: var(--mainColor);
  position: absolute;
  left: 0;
  font-weight: 400;
}

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

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

.toc_list li:before {
  display: none;
}

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

.toc_toggle {
  font-size: 14px;
}

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

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

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

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

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

.lkc-excerpt {
  display: none;
}

.lkc-url {
  display: none;
}

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

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

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

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

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

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

.lkc-domain {
  color: #fff;
}

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

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

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

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

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

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

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

.singleColumnArticleContent {
  margin-top: 5%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.singlePageLink {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.13em;
}
.singlePageLink::before, .singlePageLink::after {
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.singlePageLink::before {
  background: var(--mainColor);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 35px;
  width: 35px;
}
.singlePageLink::after {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #fff;
  height: 13px;
  width: 8px;
  z-index: 2;
}
.singlePageLink.prev {
  padding-left: 3.5em;
}
.singlePageLink.prev::before {
  left: 0;
}
.singlePageLink.prev::after {
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
  left: 13px;
}
.singlePageLink.next {
  padding-right: 3.5em;
}
.singlePageLink.next::before {
  right: 0;
}
.singlePageLink.next::after {
  right: 13px;
}
.singlePageLink:hover {
  color: var(--mainColor);
}
.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;
  }
}

.otherNewsBlockTitle {
  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) {
  .otherNewsBlockTitle {
    font-size: 20px;
    padding: 0.6em 1.2em;
  }
}

:root {
  --otherImg: 160px;
}
@media only screen and (max-width: 767px) {
  :root {
    --otherImg: 120px;
  }
}

.otherNewsItem + .otherNewsItem {
  margin-top: 20px;
}

.otherNewsLink {
  display: grid;
  grid-template-columns: var(--otherImg) auto;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .otherNewsLink {
    gap: 20px;
  }
}

.otherNewsImg {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 70.7%;
  width: 100%;
}

.otherNewsInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-size: 13px;
  margin-bottom: 10px;
}
.otherNewsInfo .otherNewsCate {
  background-color: #dedede;
  display: inline-block;
  text-align: center;
  line-height: 1;
  padding-inline: 0.4em;
  padding-block: 0.3em;
}

.otherNewsTitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*==================================================/*==================================================
 * サイドバー
 *================================================*/
.sidebarBox + .sidebarBox {
  margin-top: 30px;
}

.sidebarBoxTitleCnt {
  border-bottom: 1px solid #A8BED4;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.sidebarBoxTitleCnt::before {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 4em;
}
.sidebarBoxTitleCnt .sidebarBoxTitleEn {
  color: var(--mainColor);
  font-family: var(--fontEn);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.sidebarBoxTitleCnt .sidebarBoxTitlejp {
  color: var(--mainColor);
  font-size: 14px;
  line-height: 1;
  margin-top: 0.5em;
}

.side-tagBlock ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.side-tagBlock li {
  display: inline-block;
}
.side-tagBlock li a {
  display: inline-block;
  background-color: #DEDEDE;
  text-align: center;
  padding-block: 0.3em;
  padding-inline: 0.7em;
  font-size: 14px !important;
}

.side-listCnt a {
  display: block;
  padding-block: 0.3em;
}

.side-archvieBlock li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

/* ==========================================================================
   ========================================================================== */
/*==================================================
 * 全サイト共通
*================================================*/
/*共通部分*/
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;
  }
}

/*==================================================
 * 当サイト共通
*================================================*/
:root {
  --haederH: 62px;
  --footerH: 50px;
}
@media only screen and (max-width: 959px) {
  :root {
    --haederH: 50px;
  }
}

main {
  contain: paint;
}

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

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

.secTitleEn {
  color: var(--fontColor);
  font-family: var(--fontEn);
  font-size: clamp(56px, 7.9vw, 100px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 0.1em;
}
.secTitleEn.white {
  color: #fff;
}
.secTitleEn.font_m {
  font-size: clamp(32px, 5vw, 64px);
}
.secTitleEn.ls_s {
  letter-spacing: 0.03em;
}

.secTitleJp span {
  color: var(--fontColor);
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 2.5em;
  line-height: 1;
  letter-spacing: 0.12em;
  display: inline-block;
}
.secTitleJp span::before {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 2px;
  width: 1.7em;
}
.secTitleJp.white span {
  color: #fff;
}
.secTitleJp.white span::before {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .secTitleJp span {
    font-size: 18px;
  }
}

.commonTitle {
  color: var(--fontColor);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-bottom: 0.4em;
}
.commonTitle * {
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.commonTitle.font-m {
  font-size: clamp(23px, 2.5vw, 32px);
}
.commonTitle.font-l {
  font-size: clamp(28px, 3.8vw, 48px);
}
.commonTitle.white {
  color: #fff;
}

.scrollTextBox {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.scrollTextInner {
  white-space: nowrap;
  -webkit-animation: scrollText 120s linear infinite;
          animation: scrollText 120s linear infinite;
}
.scrollTextInner p {
  line-height: 1;
}
.scrollTextInner span {
  padding-inline: 0.2em;
  font-size: clamp(150px, 19.6vw, 250px);
  font-family: var(--fontEn);
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  opacity: 0.07;
}

@-webkit-keyframes scrollText {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scrollText {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.commonBtn {
  background: var(--mainGrade);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  padding-block: 1em;
  padding-inline: 1.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.commonBtn .commonBtnTx {
  color: #fff;
  line-height: 1.2;
}
.commonBtn .commonBtnArw {
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 20px;
  width: 20px;
}
.commonBtn .commonBtnArw i {
  color: var(--mainColor);
}
.commonBtn:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
.commonBtn.blueGrade {
  background: var(--blueGrade);
}
.commonBtn.white {
  background: #fff;
}
.commonBtn.white .commonBtnTx {
  color: var(--fontColor);
}
.commonBtn.white .commonBtnArw {
  background-color: var(--mainColor);
}
.commonBtn.white .commonBtnArw i {
  color: #fff;
}
.commonBtn.entryBtn {
  padding-block: 2em;
  gap: 30px;
  padding-inline: 2em;
  display: grid;
  grid-template-columns: auto 40px;
}
.commonBtn.entryBtn .commonBtnTx {
  font-size: 30px;
}
.commonBtn.entryBtn .commonBtnArw {
  height: 40px;
  width: 40px;
}
@media only screen and (max-width: 767px) {
  .commonBtn.entryBtn {
    padding-inline: 1em;
  }
  .commonBtn.entryBtn .commonBtnTx {
    font-size: 24px;
  }
}

.mainGrade {
  background: var(--mainGrade);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mainGrade:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.mainGradeTx {
  background: var(--mainGrade);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.blueGrade {
  background: var(--blueGrade);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blueGrade:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.blueGradeTx {
  background: var(--blueGrade);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.deepBlueGrade {
  background: linear-gradient(45deg, #150201 28%, #036EB8 100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.deepBlueGrade:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.floatBlock {
  position: fixed;
  bottom: 60px;
  right: 0;
  z-index: 999;
}
@media print, screen and (min-width: 768px) {
  .floatBlock {
    background: var(--mainGrade);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: grid;
    grid-template-columns: 40px auto;
    -webkit-transform: translateX(calc(100% - 40px));
            transform: translateX(calc(100% - 40px));
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .floatBlock:hover {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media only screen and (max-width: 767px) {
  .floatBlock {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
}

.floatBlockTitle {
  padding: 20px 10px;
}
.floatBlockTitle .title {
  color: #fff;
  font-weight: 600;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.13em;
  line-height: 1;
  font-size: 18px;
}
.floatBlockTitle .icon {
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  height: 20px;
  width: 20px;
}
.floatBlockTitle .icon i {
  color: var(--mainColor);
  font-weight: 600;
}

.floatBlockList li a {
  background-color: #fff;
  padding-inline: 1em;
  padding-block: 0.4em;
  font-size: 14px;
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.floatBlockList li a:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
@media print, screen and (min-width: 768px) {
  .floatBlockList {
    padding-inline: 0 10px;
    padding-block: 10px;
  }
  .floatBlockList li + li {
    margin-top: 10px;
  }
  .floatBlockList li a {
    display: grid;
    grid-template-columns: 20px auto;
  }
}
@media only screen and (max-width: 767px) {
  .floatBlockList {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .floatBlockList li {
    width: 50%;
  }
  .floatBlockList li + li a {
    background: var(--blueGrade);
  }
  .floatBlockList li a {
    background: var(--mainGrade);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: 0.6em;
  }
  .floatBlockList li a .icon {
    width: 19px;
  }
  .floatBlockList li a .icon img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .floatBlockList li a .icon.group {
    width: 24px;
  }
  .floatBlockList li a .icon.group img {
    aspect-ratio: 2/1.3;
  }
}

/*==================================================
 * ヘッダー
*================================================*/
header {
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #EBEBEB;
  position: fixed;
  top: 0;
  left: 0;
  height: var(--haederH);
  width: 100%;
  z-index: 999;
}

.headerInner {
  margin-inline: auto;
  padding-inline: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: 85px auto;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerInner {
    grid-template-columns: 55px auto;
  }
}
@media only screen and (max-width: 767px) {
  .headerInner {
    padding-block: calc((var(--haederH) - 35px) / 2);
    padding-inline: 10px;
    grid-template-columns: 70px auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.headerList {
  margin-right: -15px;
}
@media only screen and (max-width: 767px) {
  .headerList {
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}

@media print, screen and (min-width: 768px) {
  .overRayBlock {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  .overRayBlock {
    background-color: var(--logoBlack);
    position: fixed;
    top: 50px;
    left: 0;
    padding-inline: 30px;
    padding-block: 5%;
    overflow-y: scroll;
    height: calc(100dvh - 50px);
    width: 100%;
  }
}

.headerListMenu li a {
  padding-block: calc((var(--haederH) - 1em) / 2);
  font-weight: 600;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: clamp(11px, 1.3vw, 16px);
  line-height: 1;
  display: block;
}
.headerListMenu li a:hover {
  color: var(--mainColor);
}
@media only screen and (min-width: 1280px) {
  .headerListMenu {
    gap: 30px;
  }
  .headerListMenu li a {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 768px) {
  .headerListMenu {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-right: 20px;
  }
  .headerListMenu li a::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    background-color: var(--mainColor);
    display: none;
    height: 3px;
    width: 100%;
  }
  .headerListMenu li a.active::before {
    display: block;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerListMenu {
    gap: 10px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .headerListMenu li a {
    color: #fff;
    font-size: 16px;
    border-bottom: 1px solid #fff;
  }
}

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

.headerBtn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  height: var(--haederH);
  padding-inline: 15px;
}
.headerBtn .headerBtnIcon.m_size {
  height: 28px;
  width: 28px;
}
.headerBtn .headerBtnIcon.s_size {
  height: 20px;
  width: 20px;
}
.headerBtn .headerBtnTx {
  color: white;
  font-size: clamp(11px, 1.3vw, 16px);
  font-weight: 600;
  line-height: 1.1;
}
@media only screen and (min-width: 1280px) {
  .headerBtn .headerBtnTx {
    font-size: 16px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerBtn {
    padding-inline: 10px;
  }
  .headerBtn .headerBtnTx {
    display: none;
  }
}

.telIconLink {
  background-color: var(--logoBlack);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  width: 30px;
}
.telIconLink i {
  color: #fff;
}

/*==================================================
 * フッター - コンタクトパーツ
*================================================*/
.contactParts {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.contactParts::before {
  content: "";
  background: var(--mainGrade);
  position: absolute;
  opacity: 0.8;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.contactPartsBigTitle {
  font-size: clamp(150px, 100vw, 250px);
  font-family: var(--fontEn);
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(black), color-stop(55%, white), to(black));
  background: linear-gradient(to right, black 0%, white 55%, black 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .contactPartsBigTitle {
    font-size: 82px;
  }
}

.contactPartsTitleEn {
  color: #fff;
  font-size: clamp(26px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--fontEn);
  line-height: 1;
  margin-bottom: 0.5em;
}

.contactPartsTitleJp {
  color: #fff;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-bottom: 0.4em;
}

.contactPartsTx {
  color: #fff;
  line-height: 1.9;
  letter-spacing: 0.12em;
}
@media only screen and (max-width: 767px) {
  .contactPartsTx {
    line-height: 1.7;
    letter-spacing: 0.08em;
    text-align: left;
  }
}

.contactPartsBtns {
  display: grid;
  grid-template-columns: 0.5fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.contactPartsBtns.contactPage {
  grid-template-columns: repeat(2, min(100%, 373px));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .contactPartsBtns {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contactPartsBtns.contactPage {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.contactPartsBtn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding-block: 2.1em;
  padding-inline: 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contactPartsBtn:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
.contactPartsBtn .contactPartsBtnIcon {
  width: 35px;
}
.contactPartsBtn .contactPartsBtnTx {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.contactPartsBtn .contactPartsBtnArw {
  background-color: var(--mainColor);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.7em;
  width: 1.7em;
}
.contactPartsBtn .contactPartsBtnArw i {
  color: #fff;
  line-height: 1;
  letter-spacing: 1;
  font-weight: 600;
}
.contactPage .contactPartsBtn {
  background-color: var(--mainColor);
}
.contactPage .contactPartsBtn .contactPartsBtnTx {
  color: #fff;
}
.contactPage .contactPartsBtn .contactPartsBtnArw {
  background-color: #fff;
}
.contactPage .contactPartsBtn .contactPartsBtnArw i {
  color: var(--mainColor);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .contactPartsBtn {
    padding-block: 1.7em;
    padding-inline: 0.2em;
    gap: 5px;
  }
  .contactPartsBtn .contactPartsBtnIcon {
    width: 20px;
  }
  .contactPartsBtn .contactPartsBtnTx {
    font-size: 18px;
  }
  .contactPartsBtn .contactPartsBtnArw {
    height: 1.2em;
    width: 1.2em;
  }
}
@media only screen and (max-width: 767px) {
  .contactPartsBtn {
    padding-block: 1.7em;
  }
  .contactPartsBtn .contactPartsBtnIcon {
    width: 30px;
  }
  .contactPartsBtn .contactPartsBtnTx {
    font-size: 20px;
  }
}

.contactPartsTelBox {
  border: 1px solid #fff;
  max-width: 768px;
  margin-inline: auto;
  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;
  padding-block: 1.5em;
  padding-inline: 1em;
  gap: 30px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .contactPartsTelBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.contactTelNumber {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.contactTelNumber span {
  color: #fff;
  font-size: 24px;
  font-family: var(--fontEn);
  line-height: 1;
  letter-spacing: 0.05em;
}
.contactTelNumber .contactTelNumberTx {
  font-size: clamp(28px, 3.2vw, 40px);
}
@media only screen and (max-width: 767px) {
  .contactTelNumber {
    gap: 10px;
  }
  .contactTelNumber span {
    font-size: 18px;
  }
}

.contactTime {
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .headerSpInfo {
    background-color: #fff;
    padding-block: 30px 60px;
    padding-inline: 30px;
    margin-top: 30px;
    margin-inline: -30px;
    width: calc(100% + 60px);
  }
}

/*==================================================
 * フッター
*================================================*/
@media only screen and (max-width: 767px) {
  footer {
    margin-bottom: var(--footerH);
  }
}

.footerInner {
  background-color: #F6F7FA;
  padding-block: 40px 20px;
}
@media only screen and (max-width: 767px) {
  .footerInner {
    padding-block: 40px 10px;
  }
}

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

.footerLogo {
  width: 120px;
}
@media only screen and (max-width: 959px) {
  .footerLogo {
    width: 90px;
  }
}

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

.footerSiteMapList dl + dl {
  margin-top: 20px;
}
.footerSiteMapList dl dt, .footerSiteMapList dl dd {
  line-height: 1.2;
}
.footerSiteMapList dl dt a, .footerSiteMapList dl dd a {
  display: block;
  position: relative;
  display: inline-block;
}
.footerSiteMapList dl dt a::after, .footerSiteMapList dl dd a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--mainColor);
  bottom: -1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s; /*変形の時間*/
}
.footerSiteMapList dl dt a:hover::after, .footerSiteMapList dl dd a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  -webkit-transform-origin: left top;
          transform-origin: left top; /*左から右に向かう*/
}
.footerSiteMapList dl dt {
  font-weight: 600;
  font-size: 16px;
}
.footerSiteMapList dl dd ul li a {
  font-size: 14px;
  margin-left: 1em;
  margin-block: 0.6em;
}
@media only screen and (max-width: 767px) {
  .footerSiteMapList dl + dl {
    margin-top: 15px;
  }
}

.copyright {
  border-top: 1px solid #BCBCBC;
  padding-top: 1.5em;
  margin-top: 4em;
  text-align: center;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .copyright {
    padding-top: 0.8em;
    margin-top: 3em;
    font-size: 12px;
  }
}

/*==================================================
 * トップページ
*================================================*/
.topFvBg {
  position: relative;
  background-color: var(--logoBlack);
  background-image: url("../img/noise.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 2;
}

.topFvSlide {
  position: absolute;
  top: var(--haederH);
  left: 0;
  width: 100%;
}

.topFvHead {
  padding-block: calc(var(--haederH) + 30px) 60px;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-template-columns: 0.55fr 0.45fr;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFvHead {
    grid-template-columns: 0.6fr 0.4fr;
  }
}
@media only screen and (max-width: 767px) {
  .topFvHead {
    padding-block: calc(var(--haederH) + 30px) 40px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.topFvHeadTitle {
  color: #fff;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.topFvImgList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.topFvImgList .topFvImgListItem {
  width: 11.5%;
  height: 530px;
  -webkit-transition: width 0.6s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  transition: width 0.6s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  overflow: hidden;
}
.topFvImgList .topFvImgListItem.showNow {
  width: 51%;
}
.topFvImgList .topFvImgListItem img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  transition: -webkit-transform 0.6s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  transition: transform 0.6s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  transition: transform 0.6s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02), -webkit-transform 0.6s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
}
@media only screen and (max-width: 767px) {
  .topFvImgList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .topFvImgList .topFvImgListItem {
    -webkit-transition: height 0.6s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
    transition: height 0.6s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
    height: 70px;
    width: 100%;
  }
  .topFvImgList .topFvImgListItem.showNow {
    height: 210px;
    width: 100%;
  }
}

.topConceptBlock {
  position: relative;
  padding-block: 140px;
  overflow: hidden;
  z-index: 2;
}
.topConceptBlock::before {
  content: "";
  position: absolute;
  background-image: url("../img/topConceptBg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .topConceptBlock {
    padding-block: 60px min(25vh, 250px);
  }
  .topConceptBlock::before {
    top: 20%;
  }
}

.topServiceBlock {
  position: relative;
  z-index: 2;
}
.topServiceBlock::before {
  content: "";
  position: absolute;
  background-image: url("../img/topServiceBg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  opacity: 0.15;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .topServiceBlock {
    padding-top: 100px;
  }
}

.topServiceMain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.topServiceMain .topServiceImgs {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .topServiceMain .topServiceTxBox {
    width: 55%;
  }
  .topServiceMain .topServiceImgs {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .topServiceMain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.topServiceImg {
  position: absolute;
  -webkit-box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.14);
          box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.14);
}
.topServiceImg.small {
  top: -120px;
  right: 0;
  width: clamp(90px, 8.8vw, 150px);
}
.topServiceImg.big {
  top: -30px;
  right: 80px;
  width: clamp(150px, 26.9vw, 320px);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topServiceImg.small {
    top: -100px;
  }
}
@media only screen and (max-width: 767px) {
  .topServiceImg.small {
    top: -270px;
    right: -10px;
  }
  .topServiceImg.big {
    top: -230px;
    left: 53%;
  }
}

@media only screen and (max-width: 767px) {
  .topServiceBody {
    margin-left: -10%;
    width: 120%;
  }
}

.topServiceDetailHeader {
  margin-top: -40px;
  padding-bottom: 34%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .topServiceDetailHeader {
    margin-top: -20px;
    padding-bottom: 42%;
  }
}

.topServiceDetailTitleBox {
  background-color: #fff;
  padding: 40px 20px;
  margin-top: -8.7%;
  margin-inline: auto;
  width: calc(100% - 120px);
}
@media only screen and (max-width: 767px) {
  .topServiceDetailTitleBox {
    padding: 30px 5px;
    width: calc(100% - 20px);
  }
}

.topServiceDetailTitle {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 48px;
  line-height: 1.2;
}
.topServiceDetailTitle * {
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.topServiceDetailTitle small {
  font-size: 75%;
  margin-bottom: -1.1em;
  display: block;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topServiceDetailTitle {
    font-size: 33px;
  }
}
@media only screen and (max-width: 767px) {
  .topServiceDetailTitle {
    font-size: 26px;
  }
}

.topServiceDetailInner {
  background-color: #DCEBF5;
}
.topServiceDetailInner .innerTitle {
  background-color: var(--mainColor);
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-block: 0.3em;
  padding-inline: 0.5em;
}
.topServiceDetailInner .innerBox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 20px;
}
.topServiceDetailInner .innerItem {
  text-align: center;
}
.topServiceDetailInner .innerItemImg {
  margin-bottom: 15px;
}
.topServiceDetailInner .innerItemTitle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: var(--mainColor);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  padding-inline: 0.4em;
  padding-block: 0.2em;
  margin-bottom: 0.5em;
}
.topServiceDetailInner .innerItemtxt {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topServiceDetailInner .innerTitle {
    font-size: 22px;
  }
  .topServiceDetailInner .innerItemTitle {
    font-size: 18px;
  }
  .topServiceDetailInner .innerItemtxt {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .topServiceDetailInner .innerTitle {
    font-size: 22px;
  }
  .topServiceDetailInner .innerBox {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 10px;
  }
  .topServiceDetailInner .innerItemTitle {
    font-size: 18px;
  }
  .topServiceDetailInner .innerItemtxt {
    font-size: 16px;
  }
}

.topGroupBg {
  background: linear-gradient(135deg, #150201 28%, #036EB8 100%);
}

.topGroupHead {
  display: grid;
  grid-template-columns: auto 53%;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .topGroupHead {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.topGroupGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.topGroupSlideInner .slick-arrow {
  background-color: var(--mainColor);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  width: 30px;
  z-index: 2;
}
.topGroupSlideInner .slick-arrow::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
}
.topGroupSlideInner .slick-arrow:hover, .topGroupSlideInner .slick-arrow:focus {
  background-color: var(--mainColor);
  opacity: 0.8;
}
.topGroupSlideInner .slick-prev {
  left: -5px;
}
.topGroupSlideInner .slick-prev::before {
  content: "\f060";
}
.topGroupSlideInner .slick-next {
  right: -5px;
}
.topGroupSlideInner .slick-next::before {
  content: "\f061";
}
@media only screen and (max-width: 959px) {
  .topGroupSlideInner {
    margin-inline: -15px;
  }
  .topGroupSlideInner .slick-prev {
    left: 5px;
  }
  .topGroupSlideInner .slick-next {
    right: 5px;
  }
}

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

.groupItemCard {
  background-color: #fff;
  position: relative;
  display: block;
  padding: 15px 15px 40px;
  height: 100%;
}

.groupItemImg {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 65.5%;
  width: 100%;
}
.groupItem:hover .groupItemImg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.9;
}

.groupItemTitle {
  color: var(--mainColor);
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0.1em;
}
@media only screen and (max-width: 767px) {
  .groupItemTitle {
    font-size: 22px;
  }
}

.tagList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.tagList .tag {
  background-color: #DEDEDE;
  font-size: 12px;
  display: inline-block;
  padding-inline: 0.4em;
  padding-block: 0.2em;
  line-height: 1;
}
.tagList .tag.whitePt {
  background-color: #fff;
  color: var(--fontColor);
}

.groupItemFoot {
  border-top: 1px solid #E7E7E7;
  margin-block: 20px 10px;
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .groupItemFoot {
    margin-block: 15px 10px;
    padding-top: 15px;
  }
}

.groupItemFootTitle {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.4em;
}
@media only screen and (max-width: 767px) {
  .groupItemFootTitle {
    font-size: 18px;
  }
}

.groupArw {
  background-color: var(--mainColor);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  position: absolute;
  bottom: 10px;
  right: 10px;
  height: 25px;
  width: 25px;
}
.groupArw i {
  color: #fff;
}

.groupItemFootTx {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.topWantedBlock .topWantedTxBox {
  padding-block: 60px;
}
@media print, screen and (min-width: 768px) {
  .topWantedBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .topWantedBlock .topWantedTxBox {
    width: 55%;
  }
  .topWantedBlock .topWantedImgBox {
    width: 45%;
  }
}

.topWantedImg {
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 60px;
  height: 100%;
  width: 45.5vw;
}
@media only screen and (max-width: 767px) {
  .topWantedImg {
    margin-inline: -15px;
    width: calc(100% + 30px);
    aspect-ratio: 2/1;
  }
}

:root {
  --wantedItemW: 120px;
}
@media only screen and (max-width: 767px) {
  :root {
    --wantedItemW: 80px;
  }
}

.topWantedItem {
  display: grid;
  grid-template-columns: var(--wantedItemW) auto;
  gap: 20px;
  padding-block: 20px;
}
.topWantedItem:last-child {
  border-bottom: 1px solid #E7E7E7;
}
.topWantedItem + .topWantedItem {
  border-top: 1px solid #E7E7E7;
}

.topWantedItemImg {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: var(--wantedItemW);
  width: var(--wantedItemW);
}
.topWantedItem:hover .topWantedItemImg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.9;
}

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

.topWantedItemTitleEn {
  font-size: 14px;
  color: var(--mainColor);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: var(--fontEn);
  line-height: 1;
  margin-bottom: 0.6em;
}

.topWantedItemTitle {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media only screen and (max-width: 959px) {
  .topWantedItemTitle {
    font-size: 20px;
  }
}

.topWantedItemLink {
  margin-top: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.topWantedItemLink .topWantedItemLinkTx {
  color: var(--mainColor);
  text-decoration: underline;
  display: inline-block;
}
.topWantedItemLink .topWantedItemLinkArw {
  background-color: var(--mainColor);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 25px;
  width: 25px;
}
.topWantedItemLink .topWantedItemLinkArw i {
  color: #fff;
}

.topCaseBlock {
  background-color: #F6F7FA;
}

.topCaseSlide {
  overflow: hidden;
  position: relative;
}
.topCaseSlide .topCaseArw {
  cursor: pointer;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 40px;
  width: 40px;
}
.topCaseSlide .topCaseArw i {
  color: var(--mainColor);
}
.topCaseSlide .topCaseArw:hover {
  opacity: 0.8;
}
.topCaseSlide .topCaseArw + .topCaseArw {
  margin-top: 15px;
}
@media only screen and (max-width: 959px) {
  .topCaseSlide .topCaseArwBox {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .topCaseSlide .topCaseArw {
    height: 30px;
    width: 30px;
  }
  .topCaseSlide .topCaseArw + .topCaseArw {
    margin-top: 0;
  }
}

.topCaseControls {
  background-color: var(--mainColor);
  padding: 80px 70px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.topCaseSlideInner.no-slick .topCaseControls {
  display: none;
}
@media only screen and (max-width: 959px) {
  .topCaseControls {
    padding: 15px;
    position: static;
    margin-left: auto;
    width: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}

.topCasePagenation {
  border-inline: 1px solid #fff;
  padding-inline: 10px;
  margin-bottom: 30px;
}
.topCasePagenation .pageNum {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  display: block;
  text-align: center;
}
.topCasePagenation .pageNum.max {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid;
}
@media only screen and (max-width: 959px) {
  .topCasePagenation {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .topCasePagenation .pageNum.max {
    padding-top: 0;
    padding-left: 10px;
    margin-top: 0;
    margin-left: 10px;
    border-top: none;
    border-left: 1px solid #fff;
  }
}

.topCaseSlideInner {
  width: 135%;
}
.topCaseSlideInner.no-slick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topCaseSlideInner {
    width: 150%;
  }
}
@media only screen and (max-width: 767px) {
  .topCaseSlideInner {
    width: 100%;
  }
  .topCaseSlideInner.no-slick {
    grid-template-columns: 1fr;
  }
}

.topCaseItemIn {
  padding-bottom: 57%;
  position: relative;
  z-index: 2;
}
.topCaseItemIn::before {
  content: "";
  position: absolute;
  background-color: var(--logoBlack);
  opacity: 0.1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.topCaseItemLink:hover .topCaseItemIn::before {
  opacity: 0.4;
}
@media only screen and (max-width: 767px) {
  .topCaseItemIn {
    padding-bottom: 84%;
  }
}

.topCaseItemTxBox {
  position: absolute;
  bottom: 20px;
  left: 30px;
  width: 60%;
}
.topCaseSlideInner.no-slick .topCaseItemTxBox {
  width: 80%;
}
@media only screen and (max-width: 959px) {
  .topCaseItemTxBox {
    bottom: 15px;
    left: 15px;
    width: calc(100% - 15px);
  }
  .topCaseSlideInner.no-slick .topCaseItemTxBox {
    width: calc(100% - 15px);
  }
}

.topCaseItemNum {
  color: #fff;
  font-size: 56px;
  font-family: var(--fontEn);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.topCaseItemNum small {
  font-size: 46%;
}
@media only screen and (max-width: 959px) {
  .topCaseItemNum {
    font-size: 23px;
  }
}

.topCaseItemTitle {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 959px) {
  .topCaseItemTitle {
    font-size: 24px;
  }
}

.topCaseItemComName {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.3em;
}
@media only screen and (max-width: 959px) {
  .topCaseItemComName {
    font-size: 18px;
  }
}

.topRecruitBg {
  background: var(--blueGrade);
}

.topRecruitBlock .topRecruitTxBox {
  padding-block: 60px;
}
@media print, screen and (min-width: 768px) {
  .topRecruitBlock {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .topRecruitBlock .topRecruitTxBox {
    padding-right: 5%;
    width: 45%;
  }
  .topRecruitBlock .topRecruitImgBox {
    width: 55%;
  }
}

.topRecruitBtn {
  padding: 16px 21px;
  position: relative;
  display: block;
  min-height: 112px;
  max-width: 390px;
  z-index: 2;
}
.topRecruitBtn::before {
  content: "";
  position: absolute;
  background-color: var(--fontColor);
  top: 0;
  left: 0;
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.topRecruitBtn + .topRecruitBtn {
  margin-top: 10px;
}
.topRecruitBtn:hover::before {
  opacity: 0.8;
}

.topRecruitBtnTxEn {
  color: #fff;
  font-size: 12px;
  font-family: var(--fontEn);
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.8em;
}

.topRecruitBtnTitle {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media only screen and (max-width: 959px) {
  .topRecruitBtnTitle {
    font-size: 18px;
  }
}

.topRecruitBtnArw {
  position: absolute;
  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;
  right: 10px;
  bottom: 10px;
  height: 25px;
  width: 25px;
}
.topRecruitBtnArw i {
  color: var(--mainColor);
}

.topRecruitImgBoxInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 1127.5px;
  margin-left: 60px;
  width: calc(72.5vw - 45%);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topRecruitImgBoxInner {
    height: 902px;
    margin-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .topRecruitImgBoxInner {
    margin-inline: -15px;
    display: block;
    height: 100%;
    width: calc(100% + 30px);
  }
}

.topRecruitLeft,
.topRecruitRight {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .topRecruitLeft,
  .topRecruitRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .topRecruitLeft .topRecruitImg,
  .topRecruitRight .topRecruitImg {
    width: 300px;
  }
}

.topRecruitListWrap {
  display: grid;
}
.topRecruitLeft .topRecruitListWrap {
  -webkit-animation: verscrollDown 30s linear infinite;
          animation: verscrollDown 30s linear infinite;
}
.topRecruitRight .topRecruitListWrap {
  -webkit-animation: verscrollUp 30s linear infinite;
          animation: verscrollUp 30s linear infinite;
}
@media only screen and (max-width: 767px) {
  .topRecruitListWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .topRecruitLeft .topRecruitListWrap {
    -webkit-animation: verscrollLeft 30s linear infinite;
            animation: verscrollLeft 30s linear infinite;
  }
  .topRecruitRight .topRecruitListWrap {
    -webkit-animation: verscrollRight 30s linear infinite;
            animation: verscrollRight 30s linear infinite;
  }
}

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

@keyframes verscrollUp {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes verscrollDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes verscrollDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes verscrollLeft {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes verscrollLeft {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes verscrollRight {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes verscrollRight {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.topStaffBg {
  background: linear-gradient(135deg, #150201 28%, #036EB8 100%);
  position: relative;
  z-index: 2;
}
.topStaffBg::before {
  content: "";
  position: absolute;
  background-image: url("../img/staffBg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.25;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.topStaffHeadBox {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 20px;
}
@media only screen and (max-width: 959px) {
  .topStaffHeadBox {
    grid-template-columns: 1fr;
  }
}

:root {
  --staffItemW: 323px;
  --staffItemH: 315px;
  --strong-ease: cubic-bezier(.39, .575, .4, .995);
}

.staffRotation {
  position: relative;
}

.staffRotationArw {
  cursor: pointer;
  position: absolute;
  top: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  width: 60px;
  z-index: 4;
}
.staffRotationArw i {
  color: var(--mainColor);
  font-size: 2em;
}
.staffRotationArw.prev-arw {
  left: 170px;
}
.staffRotationArw.next-arw {
  right: 170px;
}
.staffRotationArw:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .staffRotationArw {
    height: 40px;
    width: 40px;
  }
  .staffRotationArw.prev-arw {
    left: 10px;
  }
  .staffRotationArw.next-arw {
    right: 10px;
  }
}

.staffRotationInner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: calc(var(--staffItemH) * 1.5);
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  padding: 0 0 130px;
}

.staffRotationItem {
  height: var(--staffItemW);
  width: var(--staffItemH);
  position: absolute;
  -webkit-transform: translate3d(-50%, 0, 0) scale(1);
          transform: translate3d(-50%, 0, 0) scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 0;
}
.staffRotationItem.carouselItem1 {
  left: 10%;
}
.staffRotationItem.carouselItem2 {
  left: 27%;
}
.staffRotationItem.carouselItem3 {
  left: 50%;
  z-index: 3;
}
.staffRotationItem.carouselItem4 {
  left: 72%;
}
.staffRotationItem.carouselItem5 {
  left: 90%;
}
.staffRotationItem.carouselItem1, .staffRotationItem.carouselItem5 {
  -webkit-transform: translate3d(-50%, -14%, 0) scale(0.66);
          transform: translate3d(-50%, -14%, 0) scale(0.66);
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}
.staffRotationItem.carouselItem2, .staffRotationItem.carouselItem4 {
  -webkit-transform: translate3d(-50%, -2%, 0) scale(0.8);
          transform: translate3d(-50%, -2%, 0) scale(0.8);
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
  z-index: 1;
}

.staffCircleTx {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: 0.3s;
          transform: 0.3s;
}
.staffRotationItem.active .staffCircleTx {
  -webkit-transition: opacity 0.8s ease 0.1s, -webkit-transform 1.3s var(--strong-ease) 0.1s;
  transition: opacity 0.8s ease 0.1s, -webkit-transform 1.3s var(--strong-ease) 0.1s;
  transition: transform 1.3s var(--strong-ease) 0.1s, opacity 0.8s ease 0.1s;
  transition: transform 1.3s var(--strong-ease) 0.1s, opacity 0.8s ease 0.1s, -webkit-transform 1.3s var(--strong-ease) 0.1s;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1.3);
          transform: translate3d(-50%, -50%, 0) scale(1.3);
  opacity: 1;
  visibility: visible;
}
.staffCircleTx img {
  -webkit-animation: spin 10s linear infinite;
          animation: spin 10s linear infinite;
}

.staffRotationItemImg {
  aspect-ratio: 315/307;
  height: 100%;
  width: 100%;
}
.staffRotationItemImg img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.staffRotationItemTxBox {
  position: absolute;
  left: -15%;
  bottom: 0;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  z-index: 4;
  width: 130%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.staffRotationItemTxBox .tag {
  font-size: 14px;
}
.staffRotationItem.active .staffRotationItemTxBox {
  -webkit-transition: opacity 0.8s ease 0.1s, -webkit-transform 1.3s var(--strong-ease) 0.1s;
  transition: opacity 0.8s ease 0.1s, -webkit-transform 1.3s var(--strong-ease) 0.1s;
  transition: transform 1.3s var(--strong-ease) 0.1s, opacity 0.8s ease 0.1s;
  transition: transform 1.3s var(--strong-ease) 0.1s, opacity 0.8s ease 0.1s, -webkit-transform 1.3s var(--strong-ease) 0.1s;
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 767px) {
  .staffRotationItemTxBox {
    margin-inline: auto;
    left: 0;
    width: 100%;
  }
}

.staffRotationItemTitle {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0.4em;
}

.staffRotationItemInfo {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  line-height: 1;
  margin-bottom: 0.3em;
}
.staffRotationItemInfo .staffRotationItemName {
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .staffRotationItemInfo {
    gap: 10px;
  }
  .staffRotationItemInfo .staffRotationItemName {
    font-size: 18px;
  }
  .staffRotationItemInfo .staffRotationItemTxt {
    font-size: 12px;
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.topAboutBlock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .topAboutBlock {
    grid-template-columns: 1fr;
  }
}

.topAboutLogo {
  position: absolute;
  top: 140px;
  left: -110px;
  width: clamp(403px, 58.1vw, 745px);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .topAboutLogo {
    top: 230px;
    left: -60px;
    opacity: 0.15 !important;
  }
}

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

.topNewsSlideInner .slick-arrow {
  background-color: var(--mainColor);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  width: 30px;
  z-index: 2;
}
.topNewsSlideInner .slick-arrow::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
}
.topNewsSlideInner .slick-arrow:hover, .topNewsSlideInner .slick-arrow:focus {
  background-color: var(--mainColor);
  opacity: 0.8;
}
.topNewsSlideInner .slick-prev {
  left: 12px;
}
.topNewsSlideInner .slick-prev::before {
  content: "\f060";
}
.topNewsSlideInner .slick-next {
  right: 12px;
}
.topNewsSlideInner .slick-next::before {
  content: "\f061";
}

.newsItem.topNewsItem {
  padding-inline: 30px;
}
.newsItem.topNewsItem + .newsItem {
  border-left: 1px solid #E7E7E7;
}
@media only screen and (max-width: 959px) {
  .newsItem.topNewsItem {
    padding-inline: 20px;
  }
}

.newsCardImg {
  padding-bottom: 65%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
.newsCard:hover .newsCardImg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.8;
}

.newsCardInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.newsCardTime {
  font-size: 12px;
}

.newsCardCate {
  font-size: 12px;
  background-color: #DEDEDE;
  padding-inline: 0.2em;
  padding-block: 0.2em;
  line-height: 1;
}

.newsCardTitle {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/*==================================================
 * 会社案内
*================================================*/
.companyConcept {
  background: linear-gradient(135deg, #150201 28%, #036EB8 100%);
  padding-inline: 60px;
}
.companyConcept .commonTitleBox {
  padding-bottom: 300px;
}
@media only screen and (max-width: 767px) {
  .companyConcept {
    padding-inline: 15px;
  }
  .companyConcept .commonTitleBox {
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .companyConceptImgBox {
    margin-inline: -15px;
    width: calc(100% + 30px);
  }
}

@media print, screen and (min-width: 768px) {
  .companyConceptImg {
    position: absolute;
  }
  .companyConceptImg.img-1 {
    top: 0;
    right: -60px;
    width: 136px;
  }
  .companyConceptImg.img-2 {
    top: 170px;
    right: -30px;
    width: clamp(275px, 34vw, 435px);
  }
  .companyConceptImg.img-3 {
    bottom: -100px;
    left: calc(-100% - 100px);
    width: clamp(314px, 33.2vw, 424px);
  }
  .companyConceptImg.img-4 {
    bottom: 0;
    left: -163%;
    width: 136px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .companyConceptImg.img-3 {
    bottom: -60px;
    left: calc(-100% - 30px);
  }
  .companyConceptImg.img-4 {
    bottom: 80px;
    width: 136px;
  }
}
@media only screen and (max-width: 767px) {
  .companyConceptImg {
    margin-inline: 10px;
  }
  .companyConceptImg.img-1 {
    margin-top: 20vw;
  }
  .companyConceptImg.img-3 {
    margin-top: 50vw;
  }
}

.companyPhiloBg {
  background-color: #F6F7FA;
}

.companyPhiloItem .commonTitleBox {
  display: inline-block;
  text-align: left;
}
.companyPhiloItem:nth-child(2) {
  text-align: right;
}

.companyPhiloItemEn {
  font-size: clamp(70px, 15.7vw, 200px);
  font-family: var(--fontEn);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  top: -30px;
  right: -180px;
  opacity: 0.07;
  z-index: -1;
}
.companyPhiloItem:nth-child(2) .companyPhiloItemEn {
  right: auto;
  left: -180px;
}
@media only screen and (max-width: 767px) {
  .companyPhiloItemEn {
    right: -15px;
  }
  .companyPhiloItem:nth-child(2) .companyPhiloItemEn {
    left: -15px;
  }
}

@media print, screen and (min-width: 768px) {
  .companyMessageBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .companyMessageBlock .companyMessageImgBox {
    padding-right: 6%;
    width: 40%;
  }
  .companyMessageBlock .companyMessageTxBox {
    width: 60%;
  }
  .companyMessageBlock.recruitPage .companyMessageImgBox {
    padding-right: 60px;
    width: 460px;
  }
  .companyMessageBlock.recruitPage .companyMessageTxBox {
    padding-right: 6%;
    width: calc(100% - 460px);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .companyMessageBlock.recruitPage .companyMessageImgBox {
    padding-right: 0;
    width: 300px;
  }
  .companyMessageBlock.recruitPage .companyMessageTxBox {
    padding-right: 6%;
    width: calc(100% - 300px);
  }
}
@media only screen and (max-width: 767px) {
  .companyMessageBlock .companyMessageImgBox {
    margin-inline: auto;
    margin-bottom: 20px;
    width: 75%;
  }
  .companyMessageBlock.recruitPage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.recruitPage .companyMessageImg {
  overflow: hidden;
  border-radius: 50%;
  margin-inline: auto;
  width: 400px;
  height: 400px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitPage .companyMessageImg {
    width: 300px;
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitPage .companyMessageImg {
    width: 250px;
    height: 250px;
  }
}

.messageName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
  font-size: 25px;
  font-weight: 600;
}
.messageName * {
  font-weight: 600;
}
.messageName span {
  font-size: 73%;
  margin-right: 1em;
}
@media only screen and (max-width: 767px) {
  .messageName {
    font-size: 22px;
  }
  .messageName span {
    font-size: 65%;
  }
}

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

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

.companyAboutBg {
  background: linear-gradient(135deg, #150201 28%, #036EB8 100%);
  position: relative;
  z-index: 2;
}
.companyAboutBg::before {
  content: "";
  position: absolute;
  background-image: url("../img/companyAboutBg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  opacity: 0.05;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.companyAboutBg .scrollTextBox {
  top: 180px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .companyAboutBg .scrollTextBox {
    top: 30px;
  }
}

.companyAboutHead {
  padding-bottom: clamp(400px, 42vw, 533px);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .companyAboutHead {
    padding-block: 140px 0;
    margin-inline: -15px;
    width: calc(100% + 30px);
  }
}

@media print, screen and (min-width: 768px) {
  .companyAboutImg {
    position: absolute;
  }
  .companyAboutImg.item-1 {
    top: -220px;
    left: -60px;
    width: 460px;
  }
  .companyAboutImg.item-2 {
    left: 460px;
    top: -40px;
    width: 200px;
  }
  .companyAboutImg.item-3 {
    top: -160px;
    right: -60px;
    width: 324px;
  }
  .companyAboutImg.item-4 {
    bottom: 10px;
    left: 70px;
    width: 520px;
  }
}
@media only screen and (max-width: 767px) {
  .companyAboutImg {
    margin-inline: 10px;
  }
  .companyAboutImg.item-2 {
    margin-top: 45vw;
  }
  .companyAboutImg.item-4 {
    margin-top: 30vw;
  }
}

.companyTable {
  width: 100%;
}
.companyTable dl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 0.5em;
  border-bottom: 1px solid #D4D4D4;
}
.companyTable dl dt, .companyTable dl dd {
  color: #fff;
}
.companyTable dl dt {
  line-height: 1.2;
  font-weight: 600;
  width: 180px;
}
.companyTable dl dd {
  width: calc(100% - 180px);
}
@media only screen and (max-width: 767px) {
  .companyTable dl dt {
    width: 130px;
  }
  .companyTable dl dd {
    width: calc(100% - 130px);
  }
}

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

.otherLink {
  position: relative;
  padding: 10px 15px 105px;
  z-index: 2;
}
.otherLink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--logoBlack);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  mix-blend-mode: multiply;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.otherLink:hover::before {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .otherLink {
    padding: 10px 10px 45px;
  }
}

.otherLinkTitleEn {
  color: #fff;
  font-size: 14px;
  font-family: var(--fontEn);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .otherLinkTitleEn {
    margin-bottom: 0.3em;
  }
}

.otherLinkTitleJp {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .otherLinkTitleJp {
    font-size: 20px;
  }
}

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

/*==================================================
 * 事業内容
*================================================*/
.serviceMainBg {
  background: linear-gradient(135deg, #150201 28%, #036EB8 100%);
}

.serviceGroupFlowHead {
  text-align: center;
  position: relative;
  z-index: 2;
}
.serviceGroupFlowHead::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #8B8B8B;
  height: 1px;
  width: 100%;
  z-index: -1;
}
.serviceGroupFlowHead .serviceFlowLogo {
  border-inline: 1px solid #8B8B8B;
  line-height: 1;
}
.serviceGroupFlowHead .serviceFlowLogo > div {
  display: inline-block;
  padding-inline: 1em;
  background-color: var(--logoBlack);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .serviceGroupFlowHead .serviceFlowLogo > div {
    width: 180px;
  }
}

:root {
  --serviceFlowItemW: 185px;
}
@media only screen and (max-width: 767px) {
  :root {
    --serviceFlowItemW: clamp(105px,23.5vw,180px);
  }
}

.serviceGroupFlowList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
  padding-left: 30px;
  position: relative;
  z-index: 2;
}
.serviceGroupFlowList::before {
  content: "";
  position: absolute;
  background-image: url("../img/serviceFlow.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: clamp(60px, 7.3vw, 91px);
  width: 100%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceGroupFlowList {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .serviceGroupFlowList {
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .serviceGroupFlowList::before {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-size: contain;
    left: 50%;
    top: 25%;
    height: clamp(42px, 9.4vw, 72px);
    width: 235%;
  }
  .serviceGroupFlowList::after {
    content: "";
    position: absolute;
    background-image: url("../img/serviceFlow.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: -15%;
    top: 75%;
    height: clamp(42px, 9.4vw, 72px);
    width: 235%;
  }
}

.serviceFlowItem {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--serviceFlowItemW);
  width: var(--serviceFlowItemW);
  z-index: 2;
}
.serviceFlowItem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #003357;
  opacity: 0.6;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.serviceFlowItemTitle {
  color: #fff;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .serviceFlowItemTitle {
    font-size: clamp(12px, 2.8vw, 21px);
  }
}

.sreviceItem + .sreviceItem {
  margin-top: 80px;
}
@media print, screen and (min-width: 768px) {
  .sreviceItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sreviceItem .sreviceItemImgBox {
    padding-right: 3%;
    width: 50%;
  }
  .sreviceItem .sreviceItemTxtBox {
    width: 50%;
  }
  .sreviceItem:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .sreviceItem .sreviceItemImgBox {
    margin-bottom: 5%;
  }
  .sreviceItem + .sreviceItem {
    margin-top: 40px;
  }
}

.sreviceItemImg {
  margin-left: -60px;
  width: calc(100% + 60px);
}
.sreviceItem:nth-child(2n) .sreviceItemImg {
  margin-left: 60px;
}
@media only screen and (max-width: 767px) {
  .sreviceItemImg {
    margin-left: -15px;
    width: 100%;
  }
  .sreviceItem:nth-child(2n) .sreviceItemImg {
    margin-left: 15px;
  }
}

.sreviceItemSubTitle {
  font-size: 32px;
  color: #FFF;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .sreviceItemSubTitle {
    font-size: 23px;
  }
}

.sreviceItemTagList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.sreviceItemTagList .sreviceItemTag {
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  padding-inline: 0.7em;
  padding-block: 0.1em;
}

.sreviceItemFoot {
  background-color: #fff;
}

.sreviceItemFootTitle {
  background-color: var(--mainColor);
  color: #fff;
  padding-inline: 0.6em;
  line-height: 1;
  padding-block: 0.5em;
  font-weight: 600;
}

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

.sreviceItemCard {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .sreviceItemCard {
    grid-template-columns: 60px auto;
  }
}

.sreviceItemCardImg {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 80px;
  width: 100%;
}
.sreviceItemCard:hover .sreviceItemCardImg {
  opacity: 0.8;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media only screen and (max-width: 767px) {
  .sreviceItemCardImg {
    padding-bottom: 60px;
  }
}

.sreviceItemCardInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sreviceItemCardName {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1em;
}

.sreviceItemCardMore {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.sreviceItemCardMore .sreviceItemCardMoreTx {
  color: var(--mainColor);
  text-decoration: underline;
  font-weight: 600;
  line-height: 1;
}
.sreviceItemCardMore .sreviceItemCardMoreArw {
  background-color: var(--mainColor);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 20px;
  width: 20px;
}
.sreviceItemCardMore .sreviceItemCardMoreArw i {
  color: #fff;
}

.serviceAboutMainImg {
  padding-bottom: 31.5%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .serviceAboutMainImg {
    padding-bottom: 42.5%;
  }
}

.serviceAboutMainTitleBox {
  background-color: #fff;
  margin-block: -11.5% 60px;
  max-width: 1040px;
  margin-inline: auto;
  width: calc(100% - 30px);
}

.serviceAboutMainSubTitle {
  font-size: 36px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  background-color: var(--mainColor);
  padding-block: 0.1em;
}
@media only screen and (max-width: 767px) {
  .serviceAboutMainSubTitle {
    font-size: 24px;
  }
}

.serviceAboutMainTitle {
  padding: 20px;
  font-size: clamp(28px, 4vw, 50px);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.serviceAboutMainTitle * {
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.serviceAboutMainTitle small {
  font-size: 65%;
  margin-bottom: -1.5em;
  display: block;
}
@media only screen and (max-width: 767px) {
  .serviceAboutMainTitle {
    padding: 10px 15px;
  }
}

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

@media print, screen and (min-width: 768px) {
  .serviceAboutItemMainBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .serviceAboutItemMainBlock .serviceAboutItemImgBox {
    padding-right: 3%;
    width: 50%;
  }
  .serviceAboutItemMainBlock .serviceAboutItemTxtBox {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .serviceAboutItemMainBlock .serviceAboutItemImgBox {
    margin-bottom: 5%;
  }
}

.serviceAboutItemNum {
  background-color: var(--mainColor);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  padding-inline: 0.6em;
  padding-block: 0.3em;
  margin-bottom: 0.5em;
  display: inline-block;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .serviceAboutItemNum {
    font-size: 16px;
  }
}

.serviceAboutItemGridTitle {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  z-index: 2;
}
.serviceAboutItemGridTitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--mainColor);
  height: 1px;
  width: 100%;
  z-index: -1;
}
.serviceAboutItemGridTitle p {
  display: inline-block;
  padding-inline: 1em;
  background-color: #fff;
  color: var(--mainColor);
  font-size: 18px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .serviceAboutItemGridTitle {
    margin-bottom: 15px;
  }
}

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

.serviceAboutCardTitle {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  margin-block: 0.7em;
}
@media only screen and (max-width: 767px) {
  .serviceAboutCardTitle {
    font-size: 18px;
  }
}

.serviceJoinBg {
  padding-block: 90px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.serviceJoinBg::before {
  content: "";
  position: absolute;
  background-image: url("../img/serviceJoinImg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-filter: blur(15px);
          filter: blur(15px);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: calc(100% + 30px);
  width: calc(100% + 30px);
  z-index: -2;
}
.serviceJoinBg::after {
  content: "";
  position: absolute;
  background-color: var(--logoBlack);
  opacity: 0.15;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .serviceJoinBg {
    padding-block: 45px;
  }
}

@media print, screen and (min-width: 768px) {
  .serviceJoinInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .serviceJoinInner .serviceJoinImgBox {
    width: 35%;
  }
  .serviceJoinInner .serviceJoinTxtBox {
    padding-left: 6%;
    width: 65%;
  }
}
@media only screen and (max-width: 767px) {
  .serviceJoinInner .serviceJoinImgBox {
    margin-bottom: 5%;
    margin-inline: auto;
    width: 65%;
  }
}

.serviceJoinSubTitle {
  display: inline-block;
  background-color: var(--mainColor);
  color: #fff;
  line-height: 1.2;
  font-size: 24px;
  font-weight: 600;
  padding-inline: 0.4em;
  padding-block: 0.2em;
  margin-bottom: 0.8em;
}
@media only screen and (max-width: 767px) {
  .serviceJoinSubTitle {
    font-size: 18px;
  }
}

/*==================================================
 * グループ企業
*================================================*/
.groupMainBg {
  background: linear-gradient(135deg, #150201 28%, #036EB8 100%);
}

@media print, screen and (min-width: 768px) {
  .groupMainTitleBox {
    margin-inline: -15px;
  }
}
@media only screen and (max-width: 959px) {
  .groupMainTitleBox {
    margin-inline: auto;
  }
}

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

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

.groupBoxHead + .groupBoxFoot {
  margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
  .groupBoxHead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .groupBoxHead .groupBox--leftBox {
    width: 50%;
  }
  .groupBoxHead .groupBox--rightBox {
    padding-left: 4%;
    width: 50%;
  }
}

.groupBoxImg {
  margin-bottom: 20px;
  padding-bottom: 59%;
  width: 100%;
}

.groupBoxTagList {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
}
.groupBoxTagList .groupBoxTag {
  background-color: #DEDEDE;
  line-height: 1;
  padding-inline: 0.5em;
  padding-block: 0.3em;
  display: inline-block;
}

.groupBoxTable {
  margin-bottom: 30px;
}
.groupBoxTable dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 0.5em;
  border-bottom: 1px solid #D4D4D4;
}
.groupBoxTable dl dt {
  font-weight: 600;
  width: 180px;
}
.groupBoxTable dl dd {
  width: calc(100% - 180px);
}
@media only screen and (max-width: 959px) {
  .groupBoxTable dl dt {
    width: 140px;
  }
  .groupBoxTable dl dd {
    width: calc(100% - 140px);
  }
}

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

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

.groupBoxImgItem img {
  aspect-ratio: 2/1.47;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

/*==================================================
 * グループへの参画
*================================================*/
.joinMainBg {
  background: linear-gradient(135deg, #150201 28%, #036EB8 100%);
}

.joinConceptBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.joinConceptBody .left {
  position: sticky;
  top: 0;
  height: 100svh;
  width: 50%;
}
.joinConceptBody .left .img {
  position: absolute;
  top: var(--haederH);
  left: -60px;
  height: 100%;
  width: 100%;
}
.joinConceptBody .left .img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.joinConceptBody .left .img-2 {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.joinConceptBody .right {
  padding-left: 5%;
  width: 50%;
}
.joinConceptBody .right .txt {
  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: 100vh;
}
@media only screen and (max-width: 767px) {
  .joinConceptBody {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .joinConceptBody .left {
    display: none;
  }
  .joinConceptBody .right {
    padding-left: 0;
    width: 100%;
  }
  .joinConceptBody .right .txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
  .joinConceptBody .right .txt + .txt {
    margin-top: 60px;
  }
  .joinConceptBody .right .img {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: clip-path 1.2s cubic-bezier(0.3, 0.29, 0, 1);
    transition: clip-path 1.2s cubic-bezier(0.3, 0.29, 0, 1);
    margin-inline: -15px;
    margin-bottom: 20px;
    width: calc(100% + 30px);
  }
  .joinConceptBody .right .img.is-active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.joinMeritBlock {
  border-top: 1px solid var(--mainColor);
  padding-block: 30px;
}
.joinMeritBlock .joinMeritBlockInner {
  display: grid;
  gap: 30px;
}
.joinMeritBlock .joinMeritBlockInner.grid-2 {
  grid-template-columns: 150px auto;
}
.joinMeritBlock .joinMeritBlockInner.grid-3 {
  grid-template-columns: 150px auto 380px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .joinMeritBlock .joinMeritBlockInner.grid-2 {
    grid-template-columns: 90px auto;
  }
  .joinMeritBlock .joinMeritBlockInner.grid-3 {
    grid-template-columns: 90px auto 230px;
  }
}
@media only screen and (max-width: 767px) {
  .joinMeritBlock .joinMeritBlockInner {
    gap: 10px;
  }
  .joinMeritBlock .joinMeritBlockInner.grid-2 {
    grid-template-columns: 1fr;
  }
  .joinMeritBlock .joinMeritBlockInner.grid-3 {
    grid-template-columns: 1fr;
  }
}

.joinMeritBlockNum {
  font-size: clamp(42px, 9.4vw, 120px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.joinMeritBlockSubTitle {
  background: var(--mainColor);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  padding-inline: 0.4em;
  padding-block: 0.1em;
  margin-bottom: 0.7em;
}
@media only screen and (max-width: 767px) {
  .joinMeritBlockSubTitle {
    font-size: 18px;
  }
}

.joinMeritBlockTitle {
  font-size: clamp(26px, 2.7vw, 34px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-bottom: 0.5em;
}

.joinMeritBlockTxt {
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.joinMeritBlockImgBox {
  display: grid;
  grid-template-columns: auto 30px;
  gap: 10px;
}
@media only screen and (max-width: 959px) {
  .joinMeritBlockImgBox {
    grid-template-columns: auto 20px;
  }
}

.joinMeritBlockEnTx {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: var(--serif);
  color: var(--mainColor);
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
}
@media only screen and (max-width: 959px) {
  .joinMeritBlockEnTx {
    font-size: 16px;
  }
}

.joinMeritBoxIn {
  background-color: #F6F7FA;
}

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

.joinMeritBoxTitle {
  text-align: center;
  background-color: var(--mainColor);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: 1.2;
  padding-inline: 1em;
  padding-block: 0.6em;
}
@media only screen and (max-width: 767px) {
  .joinMeritBoxTitle {
    font-size: 18px;
  }
}

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

.joinMeritListItem {
  background-color: var(--mainColor);
  padding: 30px 20px 20px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .joinMeritListItem {
    padding: 10px;
  }
}

.joinMeritListTitle {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .joinMeritListTitle {
    font-size: 18px;
  }
}

.joinFlowItem {
  background-color: #F6F7FA;
  display: grid;
  grid-template-columns: 310px auto;
  gap: 40px;
}
.joinFlowItem + .joinFlowItem {
  margin-top: 40px;
  position: relative;
}
.joinFlowItem + .joinFlowItem::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--mainColor);
  height: 18px;
  width: 22px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .joinFlowItem {
    grid-template-columns: 150px auto;
  }
}
@media only screen and (max-width: 767px) {
  .joinFlowItem {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.joinFlowItemImg {
  padding-bottom: 77%;
}
@media only screen and (max-width: 767px) {
  .joinFlowItemImg {
    padding-bottom: 53%;
  }
}

.joinFlowItemIn {
  padding-block: 30px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .joinFlowItemIn {
    padding-block: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .joinFlowItemIn {
    padding-block: 20px;
  }
}

.joinFlowItemInTitle {
  font-size: 26px;
  color: var(--mainColor);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 0.6em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .joinFlowItemInTitle {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .joinFlowItemInTitle {
    font-size: 20px;
  }
}

.joinQaItem + .joinQaItem {
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .joinQaItem + .joinQaItem {
    margin-top: 10px;
  }
}

.joinQaItemInner {
  display: none;
}

.joinQaItemTitle,
.joinQaItemInnerBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: 80px auto 50px;
  gap: 10px;
  padding-block: 1.4em;
  padding-inline: 0.5em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .joinQaItemTitle,
  .joinQaItemInnerBox {
    grid-template-columns: 40px auto 30px;
    padding-block: 1.2em;
  }
}
@media only screen and (max-width: 767px) {
  .joinQaItemTitle,
  .joinQaItemInnerBox {
    grid-template-columns: 20px auto 20px;
    padding-block: 1.2em;
  }
}

.joinQaItemTitle {
  cursor: pointer;
  color: #fff;
  background-color: var(--mainColor);
}

.joinQaPoint.point-1 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
.joinQaItemInner .joinQaPoint.point-1 {
  color: var(--mainColor);
}
@media only screen and (max-width: 959px) {
  .joinQaPoint.point-1 {
    font-size: 22px;
  }
}
.joinQaPoint.point-2 {
  line-height: 1.2;
}
.joinQaPoint.point-2.title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 959px) {
  .joinQaPoint.point-2.title {
    font-size: 18px;
  }
}
.joinQaPoint.point-3 {
  position: relative;
}
.joinQaPoint.point-3::before, .joinQaPoint.point-3::after {
  content: "";
  position: absolute;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 20px;
}
.joinQaPoint.point-3::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.joinQaPoint.point-3::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.joinQaItemTitle.open .joinQaPoint.point-3::after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}
@media only screen and (max-width: 767px) {
  .joinQaPoint.point-3::before, .joinQaPoint.point-3::after {
    width: 15px;
  }
}

.joinContactBg::before {
  background-image: url("../img/joinContact.jpg");
}

/*==================================================
 * 参画ストーリー
*================================================*/
.caseGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .caseGrid {
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .caseGrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.caseCardImg {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 64%;
  width: 100%;
}
.caseCardLink:hover .caseCardImg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.8;
}

.caseCardTitle {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.4em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .caseCardTitle {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .caseCardTitle {
    font-size: 22px;
    margin-bottom: 0.2em;
  }
}

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

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

.caseDetailCompanyInfoInner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 0.5em;
  border-bottom: 1px solid #D4D4D4;
}
.caseDetailCompanyInfoInner dt {
  font-weight: 600;
  width: 150px;
}
.caseDetailCompanyInfoInner dd {
  width: calc(100% - 150px);
}
@media only screen and (max-width: 767px) {
  .caseDetailCompanyInfoInner dt, .caseDetailCompanyInfoInner dd {
    font-size: 15px;
  }
  .caseDetailCompanyInfoInner dt {
    width: 110px;
  }
  .caseDetailCompanyInfoInner dd {
    width: calc(100% - 110px);
  }
}

.caseDetailBackGroud {
  background: var(--blueGrade);
  padding: 30px 60px;
}
.caseDetailBackGroud .caseDetailBackGroudTxt {
  color: #fff;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .caseDetailBackGroud {
    padding: 40px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .caseDetailBackGroud {
    padding: 25px 20px;
  }
}

.caseDetailComment {
  background-color: #F6F7FA;
  padding-inline: 40px;
  padding-block: 40px;
}
.caseDetailComment + .caseDetailComment {
  margin-top: 20px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .caseDetailComment {
    padding-inline: 20px;
    padding-block: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .caseDetailComment {
    padding-inline: 20px;
    padding-block: 20px;
  }
  .caseDetailComment + .caseDetailComment {
    margin-top: 10px;
  }
}

:root {
  --commentImg: 205px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  :root {
    --commentImg: 180px;
  }
}

.caseDetailCommentIn {
  display: grid;
  grid-template-columns: var(--commentImg) auto;
  gap: 60px;
}
.caseDetailCommentIn .caseDetailCommentImgBox {
  text-align: center;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .caseDetailCommentIn {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .caseDetailCommentIn {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.caseDetailCommentTxtBoxIn + .caseDetailCommentTxtBoxIn {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .caseDetailCommentTxtBoxIn + .caseDetailCommentTxtBoxIn {
    margin-top: 20px;
  }
}

.caseDetailCommentImg {
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 5%;
  height: var(--commentImg);
  width: var(--commentImg);
}
.caseDetailCommentImg img {
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.caseDetailCommentJob {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.3em;
}

.caseDetailCommentName {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.caseDetailCommentTitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--mainColor);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0.8em;
}
@media only screen and (max-width: 767px) {
  .caseDetailCommentTitle {
    font-size: 20px;
  }
}

.caseDetailCommentTxt {
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.caseOtherSlideInnner {
  position: relative;
}
.caseOtherSlideInnner.not-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.caseOtherSlideInnner .caseCard {
  margin-inline: 30px;
}
.caseOtherSlideInnner .slickArw {
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--mainColor);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 35px;
  width: 35px;
  z-index: 2;
}
.caseOtherSlideInnner .slickArw:hover {
  opacity: 0.8;
}
.caseOtherSlideInnner .slickArw i {
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
}
.caseOtherSlideInnner .slickArw.prev {
  left: 15px;
}
.caseOtherSlideInnner .slickArw.next {
  right: 15px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .caseOtherSlideInnner .caseCard {
    margin-inline: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .caseOtherSlideInnner .slickArw.prev {
    left: 0px;
  }
  .caseOtherSlideInnner .slickArw.next {
    right: 0px;
  }
}

/*==================================================
 * スタッフインタビュー
 *================================================*/
.staffGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .staffGrid {
    gap: 40px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .staffGrid {
    grid-template-columns: 0.88fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}

.staffOtherSlideInnner.not-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.staffOtherSlideInnner .staffCard {
  margin-inline: 30px;
}
.staffOtherSlideInnner .slickArw {
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--mainColor);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 35px;
  width: 35px;
  z-index: 2;
}
.staffOtherSlideInnner .slickArw:hover {
  opacity: 0.8;
}
.staffOtherSlideInnner .slickArw i {
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
}
.staffOtherSlideInnner .slickArw.prev {
  left: 15px;
}
.staffOtherSlideInnner .slickArw.next {
  right: 15px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .staffOtherSlideInnner .staffCard {
    margin-inline: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .staffOtherSlideInnner .slickArw.prev {
    left: 0px;
  }
  .staffOtherSlideInnner .slickArw.next {
    right: 0px;
  }
}

.staffCardImg {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 118%;
  width: 100%;
}
.staffCardLink:hover .staffCardImg {
  opacity: 0.9;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

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

.staffCardInfo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 5px;
}
.staffCardInfo .staffCardName {
  font-size: 18px;
  font-weight: 600;
}
.staffCardInfo .staffCardInfoIn {
  font-size: 14px;
  line-height: 1.2;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .staffCardInfo {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  .staffCardInfo .staffCardName {
    font-size: 16px;
  }
  .staffCardInfo .staffCardInfoIn {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .staffCardInfo {
    gap: 10px;
  }
  .staffCardInfo .staffCardInfoIn {
    font-size: 12px;
  }
}

.staffCateBlock {
  background-color: #F5F5F5;
}
.staffCateBlock dl {
  display: grid;
  grid-template-columns: 200px auto;
  gap: 40px;
}
.staffCateBlock dd {
  padding-block: 20px;
}
@media only screen and (max-width: 767px) {
  .staffCateBlock dl {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .staffCateBlock dd {
    padding-block: 10px;
    padding-inline: 20px;
  }
}

.staffCateDt {
  background-color: var(--logoBlack);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 43px;
  padding-inline: 30px;
}
@media only screen and (max-width: 767px) {
  .staffCateDt {
    padding-block: 10px;
    padding-inline: 10px;
    font-size: 16px;
  }
}

.staffCateList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 10px;
}
.staffCateList li a {
  display: inline-block;
  background-color: #fff;
  border: 1px solid var(--mainColor);
  text-align: center;
  padding-inline: 1.5em;
  padding-block: 0.1em;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.staffCateList li a:hover, .staffCateList li a.active {
  background-color: var(--mainColor);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .staffCateList li a {
    font-size: 16px;
  }
}

.staffDetailBg {
  background: linear-gradient(135deg, #150201 28%, #036EB8 100%);
  padding-bottom: 0;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .staffDetailBg {
    padding-bottom: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .staffDetailBg {
    padding-bottom: 45px;
  }
}

.staffDetailBlock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.staffDetailBlock .staffDetailImgBox {
  padding-right: 19%;
}
.staffDetailBlock .staffDetailTxtBox .tag {
  font-size: 14px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .staffDetailBlock .staffDetailImgBox {
    padding-right: 9%;
  }
}
@media only screen and (max-width: 767px) {
  .staffDetailBlock {
    grid-template-columns: 1fr;
  }
  .staffDetailBlock .staffDetailImgBox {
    padding-right: 0;
    margin-bottom: 30px;
    margin-inline: auto;
    width: 80%;
  }
}

.staffDetailImg {
  margin-bottom: -90px;
}
.staffDetailImg img {
  aspect-ratio: 435/511;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 959px) {
  .staffDetailImg {
    margin-bottom: 0;
  }
}

.staffDetailTitle {
  color: #fff;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 0.4em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .staffDetailTitle {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .staffDetailTitle {
    font-size: 24px;
  }
}

.staffDetailInfo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.staffDetailInfo .staffDetailName {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}
.staffDetailInfo .staffDetailInfoIn {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}
@media only screen and (max-width: 959px) {
  .staffDetailInfo {
    gap: 10px;
  }
  .staffDetailInfo .staffDetailName {
    font-size: 20px;
  }
  .staffDetailInfo .staffDetailInfoIn {
    font-size: 14px;
  }
}

/*==================================================
 * トピックス　カード
*================================================*/
.topicsItem .img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 71%;
  width: 100%;
}
.topicsItem:hover .img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.8;
}
.topicsItem .inner {
  padding-block: 15px;
}
.topicsItem .title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.13em;
}
@media only screen and (max-width: 767px) {
  .topicsItem .title {
    font-size: 16px;
  }
}
.topicsItem .innerInfo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.topicsItem .cate {
  background-color: #DEDEDE;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  display: inline-block;
  padding-inline: 0.4em;
  padding-block: 0.4em;
}
.topicsItem .time {
  font-size: 12px;
}
.side-otherNewsBlock .topicsItem + .topicsItem {
  margin-top: 20px;
}
.side-otherNewsBlock .topicsItem .img {
  padding-bottom: 63%;
}
.side-otherNewsBlock .topicsItem .inner {
  padding-block: 10px;
}
.side-otherNewsBlock .topicsItem .title {
  font-size: 15px;
}
.side-otherNewsBlock .topicsItem .cate {
  font-size: 12px;
}
.side-otherNewsBlock .topicsItem .time {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .side-otherNewsBlock .topicsItem {
    margin-inline: auto;
    width: 80%;
  }
}

/*==================================================
 * お問い合わせ
*================================================*/
.contactTelNum {
  font-size: 40px;
  font-family: var(--fontEn);
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
}
.contactTelNum small {
  font-weight: 600;
  margin-right: 0.8em;
  font-size: 60%;
}
@media only screen and (max-width: 767px) {
  .contactTelNum {
    font-size: 36px;
  }
}

/*==================================================
 * 採用情報
*================================================*/
.recruitMainBg {
  background: var(--blueGrade);
}

.recruitEntryBg::before {
  background-image: url("../img/recruitEntry.jpg");
}

.recruitFv {
  position: relative;
}

.recruitFvImgBox {
  aspect-ratio: 1280/756;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.recruitFvImg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-height: 756px;
  overflow: hidden;
  width: 100vw;
}
.recruitFvImg img {
  aspect-ratio: 640/378;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1920px) {
  .recruitFvImg img {
    aspect-ratio: 2/0.6;
  }
}
@media only screen and (max-width: 767px) {
  .recruitFvImg img {
    aspect-ratio: 2/2.2;
  }
}

.recruitFvTxtBox {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.recruitFvTxtTitle {
  color: #fff;
  font-weight: 600;
  font-size: clamp(28px, 5.5vw, 70px);
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 0.3em;
  text-shadow: 4px 4px 30px rgba(0, 0, 0, 0.9);
}
@media only screen and (max-width: 767px) {
  .recruitFvTxtTitle {
    margin-bottom: 0.6em;
  }
}

:root {
  --recruitJobBlock: 90px;
}
@media only screen and (max-width: 959px) {
  :root {
    --recruitJobBlock: 45px;
  }
}

.recruitJobBg {
  background-color: #F6F7FA;
  padding-block: var(--recruitJobBlock) calc(var(--recruitJobBlock) * 3);
}

@media print, screen and (min-width: 768px) {
  .recruitJobListBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
  .recruitJobListBlock .recruitListLinkBox {
    width: 230px;
  }
  .recruitJobListBlock .recruitJobIn {
    width: calc(100% - 260px);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitJobListBlock {
    gap: 30px;
  }
  .recruitJobListBlock .recruitListLinkBox {
    width: 180px;
  }
  .recruitJobListBlock .recruitJobIn {
    width: calc(100% - 210px);
  }
}
@media only screen and (max-width: 767px) {
  .recruitJobListBlock {
    position: relative;
    padding-top: 100px;
  }
  .recruitJobListBlock .recruitListLinkBox {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
}

.recruitListLinkBoxIn {
  position: sticky;
  top: calc(var(--haederH) + 30px);
  z-index: 10;
}

@media only screen and (max-width: 767px) {
  .recruitListIndex {
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--mainColor);
    padding: 10px;
    font-weight: 600;
    height: 55px;
    width: 55px;
  }
  .recruitListIndex::before {
    content: "\f101";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 1em;
    color: var(--mainColor);
    font-weight: 400;
  }
  .is_show .recruitListIndex {
    opacity: 0;
    visibility: hidden;
  }
}

.recruitList {
  padding-left: 15px;
}
.recruitList li {
  margin-block: 20px;
}
.recruitList .recruitListLink {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  position: relative;
  color: #C5C5C5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recruitList .recruitListLink::before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: -20px;
  background-color: var(--mainColor);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  height: 0.5em;
  width: 0.5em;
}
.recruitList .recruitListLink.active {
  color: var(--fontColor);
}
.recruitList .recruitListLink.active::before {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitList .recruitListLink {
    font-size: 18px;
  }
  .recruitList .recruitListLink::before {
    left: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitList {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: #fff;
    padding-inline: 20px;
    margin-inline: -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    overflow-x: auto;
    position: relative;
  }
  .is_show .recruitList {
    opacity: 1;
    visibility: visible;
  }
  .recruitList li + li .recruitListLink::after {
    content: "";
    background: var(--fontColor);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    height: 0.8em;
    width: 1px;
  }
  .recruitList .recruitListLink {
    padding-inline: 1.4em 0.8em;
    font-size: 16px;
  }
  .recruitList .recruitListLink::before {
    left: 10px;
  }
}

.recruitJobItem {
  -webkit-box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.4);
          box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  background-color: #fff;
  padding-inline: 60px 40px;
  padding-block: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recruitJobItem + .recruitJobItem {
  margin-top: 20px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitJobItem {
    padding-inline: 40px 20px;
    padding-block: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitJobItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 25px;
    padding-block: 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .recruitJobItemTxtBox {
    padding-right: 5%;
    width: calc(100% - 286px);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitJobItemTxtBox {
    width: calc(100% - 156px);
  }
}
@media only screen and (max-width: 767px) {
  .recruitJobItemTxtBox {
    margin-bottom: 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .recruitJobItemImgBox {
    max-width: 286px;
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitJobItemImgBox {
    max-width: 156px;
  }
}

.recruitJobItemTitle {
  font-size: 22px;
  color: var(--mainColor);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.4em;
  position: relative;
}
.recruitJobItemTitle::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: -60px;
  background-color: var(--mainColor);
  height: 1px;
  width: 45px;
}
@media only screen and (max-width: 767px) {
  .recruitJobItemTitle {
    font-size: 18px;
  }
  .recruitJobItemTitle::before {
    left: -30px;
    width: 20px;
  }
}

.recruitJobCate .companyCate {
  display: inline-block;
  background-color: #F6F7FA;
  line-height: 1;
  padding-inline: 1em;
  padding-block: 0.8em;
  font-size: 18px;
}
@media only screen and (max-width: 959px) {
  .recruitJobCate .companyCate {
    font-size: 15px;
  }
}

.recruitSlideImgs {
  margin-top: calc(var(--recruitJobBlock) - var(--recruitJobBlock) * 3);
}

.scrollInfinity.last {
  position: absolute;
  top: 0;
  z-index: 2;
}
.scrollInfinity.last .scrollBoxItem.item-2 img,
.scrollInfinity.last .scrollBoxItem.item-4 img {
  display: none;
}

@-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%);
  }
}
.scrollBoxWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
}

.scrollBox {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  -webkit-animation: infinity-scroll-left 40s infinite linear both;
          animation: infinity-scroll-left 40s infinite linear both;
}

.scrollBoxItem {
  -webkit-box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.14);
          box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.14);
  margin-inline: 40px;
  width: 25vw;
  position: relative;
}
.scrollBoxItem.item-2 {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.scrollBoxItem.item-3 {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
.scrollBoxItem.item-4 {
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
}
@media only screen and (max-width: 767px) {
  .scrollBoxItem {
    margin-inline: 20px;
    width: 50vw;
  }
}

.recruitSlide {
  z-index: 1;
}
.recruitSlide .scrollTextInner span {
  background: var(--mainColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .recruitSlide .scrollTextInner span {
    font-size: 110px;
  }
}

.recruitAppealItem + .recruitAppealItem {
  margin-top: 60px;
}
@media print, screen and (min-width: 768px) {
  .recruitAppealItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .recruitAppealItem .recruitAppealImgBox {
    padding-right: 5%;
    width: 50%;
  }
  .recruitAppealItem .recruitAppealImgBox .recruitAppealImg {
    margin-left: -60px;
    width: calc(100% + 60px);
  }
  .recruitAppealItem .recruitAppealTxtBox {
    width: 50%;
  }
  .recruitAppealItem:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .recruitAppealItem:nth-child(2n) .recruitAppealImgBox {
    padding-inline: 5% 0;
  }
  .recruitAppealItem:nth-child(2n) .recruitAppealImgBox .recruitAppealImg {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .recruitAppealItem + .recruitAppealItem {
    margin-top: 30px;
  }
  .recruitAppealItem .recruitAppealImgBox {
    margin-bottom: 10px;
  }
}

.recruitAppealNum {
  color: var(--mainColor);
  font-size: 26px;
  font-family: var(--fontEn);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 0.7em;
}
.recruitAppealNum span {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  font-size: 72px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitAppealNum span {
    font-size: 52px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitAppealNum {
    font-size: 18px;
  }
  .recruitAppealNum span {
    font-size: 33px;
  }
}

.recruitWelBlock {
  background: var(--blueGrade);
}

.recruitWelItem {
  background-color: #fff;
  padding-block: 20px;
  padding-inline: 30px;
}
.recruitWelItem + .recruitWelItem {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .recruitWelItem {
    padding-inline: 20px;
  }
}

.recruitWelItemHead {
  --iconW: 60px;
  display: grid;
  grid-template-columns: var(--iconW) auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #D4D4D4;
}
.recruitWelItemHead .recruitWelItemIcon {
  border-radius: 50%;
  background-color: var(--mainColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  height: var(--iconW);
  width: var(--iconW);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitWelItemHead {
    --iconW: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitWelItemHead {
    --iconW: 45px;
    padding: 5px;
    gap: 15px;
  }
}

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

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

.recruitWelCardImg {
  margin-bottom: 20px;
}

.recruitWelCardTitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 0.5em;
  text-align: center;
}

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

.recruitCareerIn {
  position: relative;
  height: 100%;
  z-index: 2;
}
.recruitCareerIn::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(190deg, rgba(255, 255, 255, 0) 0%, #036EB8 55%, #1C3B7D 100%);
  bottom: 0;
  left: 0;
  opacity: 0.7;
  mix-blend-mode: multiply;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.recruitCareerTxBox {
  padding-inline: 20px 40px;
  padding-block: 250px 20px;
  height: 100%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitCareerTxBox {
    padding-inline: 15px 30px;
    padding-block: 150px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitCareerTxBox {
    padding-inline: 10px 20px;
    padding-block: 140px 10px;
  }
}

.recruitCareerTitle {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0.2em;
}
@media only screen and (max-width: 959px) {
  .recruitCareerTitle {
    font-size: 24px;
  }
}

.recruitCareerTxt {
  color: #fff;
  letter-spacing: 0.08em;
}

.recruitDetailItem {
  border: 1px solid var(--mainColor);
}
.recruitDetailItem + .recruitDetailItem {
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .recruitDetailItem + .recruitDetailItem {
    margin-top: 10px;
  }
}

.recruitDetailItemInner {
  display: none;
}

.recruitDetailItemTitle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: auto 50px;
  gap: 10px;
  padding-block: 1.4em;
  padding-inline: 0.5em;
}
@media only screen and (max-width: 767px) {
  .recruitDetailItemTitle {
    grid-template-columns: auto 20px;
    padding-block: 1.2em;
  }
}

.recruitDetailItemTitle {
  cursor: pointer;
  color: #fff;
  background-color: var(--mainColor);
  padding-left: 50px;
}
@media only screen and (max-width: 767px) {
  .recruitDetailItemTitle {
    padding-left: 20px;
  }
}

.recruitDetailPoint.point-1 {
  line-height: 1.2;
}
.recruitDetailPoint.point-1.title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 959px) {
  .recruitDetailPoint.point-1.title {
    font-size: 18px;
  }
}
.recruitDetailPoint.point-2 {
  position: relative;
}
.recruitDetailPoint.point-2::before, .recruitDetailPoint.point-2::after {
  content: "";
  position: absolute;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 20px;
}
.recruitDetailPoint.point-2::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.recruitDetailPoint.point-2::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.recruitDetailItemTitle.open .recruitDetailPoint.point-2::after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}
@media only screen and (max-width: 767px) {
  .recruitDetailPoint.point-2::before, .recruitDetailPoint.point-2::after {
    width: 15px;
  }
}

.recruitDetailItemInnerBox {
  padding-inline: 120px;
  padding-block: 40px;
}
.recruitDetailItemInnerBox dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #A1A1A1;
  padding-block: 1em;
}
.recruitDetailItemInnerBox dl:first-child {
  border-top: 1px solid #A1A1A1;
}
.recruitDetailItemInnerBox dt {
  color: var(--mainColor);
  font-weight: 600;
  width: 200px;
}
.recruitDetailItemInnerBox dd {
  width: calc(100% - 200px);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitDetailItemInnerBox {
    padding-inline: 60px;
    padding-block: 30px;
  }
  .recruitDetailItemInnerBox dt {
    width: 100px;
  }
  .recruitDetailItemInnerBox dd {
    width: calc(100% - 100px);
  }
}
@media only screen and (max-width: 767px) {
  .recruitDetailItemInnerBox {
    padding-inline: 20px;
    padding-block: 30px;
  }
  .recruitDetailItemInnerBox dt {
    width: 100px;
  }
  .recruitDetailItemInnerBox dd {
    width: calc(100% - 100px);
  }
}

.recruitEntrySlide {
  position: relative;
  margin-bottom: -3em;
}
.recruitEntrySlide::before, .recruitEntrySlide::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 20%;
  z-index: 2;
}
.recruitEntrySlide::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.recruitEntrySlide::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#fff), to(transparent));
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.recruitEntrySlide .scrollTextInner span {
  color: var(--mainColor);
  opacity: 1;
}

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