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

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


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

*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
:root {
  --mainColor: #016AB8;
  --subColor: #FCA50D;
}

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

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

.mainColorDeep {
  color: #1a1a1a;
}

.bgMainColorDeep {
  background-color: #1a1a1a;
}

.mainColorExDeep {
  color: #03312e;
}

.mainColorLight {
  color: #808080;
}

.bgMainColorLight {
  background-color: #808080;
}

.mainColorExLight {
  color: #f2f2f2;
}

.bgMainColorExLight {
  background-color: #f2f2f2;
}

.mainColorUlLight {
  color: #f6f7f9;
}

.bgMainColorUlLight {
  background-color: #f6f7f9;
}

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

.bgSubColor {
  background-color: #FCA50D;
}

.subColorDeep {
  color: #e3e3fb;
}

.bgSubColorDeep {
  background-color: #e3e3fb;
}

.bgSubColorLight {
  background-color: #ff6f00;
}

.compColor {
  color: #ecfe02;
}

.bgCompColor {
  background-color: #ecfe02;
}

.grayColor {
  color: #a9a9a9;
}

.bgGrayColor {
  background-color: #a9a9a9;
}

.grayColorLight {
  color: #dcdcdc;
}

.bgGrayColorLight {
  background-color: #dcdcdc;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

.bgWhiteTrans {
  background-color: rgba(255, 255, 255, 0.5);
}

.bgBlackTrans {
  background-color: rgba(0, 0, 0, 0.3);
}

.bgBlack {
  background: #000;
}

.bgGrad {
  background: rgb(255, 178, 90);
  background: -webkit-gradient(linear, left top, right top, from(#016AB8), to(#016AB8));
  background: linear-gradient(90deg, #016AB8 0%, #016AB8 100%);
}

.bgTexture {
  background-image: url(../img/bg_texture_light.gif);
}

.grayLight {
  color: #9a9a9a;
}

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

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

:root {
  --fontNum: "Inter", sans-serif;
}

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

.fontEnSub {
  font-family: "Philosopher", sans-serif;
}

:root {
  --fontJp: "Noto Sans JP", sans-serif;
}

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

.gothic {
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

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

body {
  font-family: var(--fontJp);
  color: #1f1f1f;
}

/*共通部分*/
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.f-black {
  font-weight: 900;
}

.f-bold {
  font-weight: 700;
}

.f-regular {
  font-weight: 400;
}

@font-face {
  font-family: "en-bold";
  src: url(../font/AnyConv.com__CircularStd-Bold.woff) format("woff");
}
.en-bold {
  font-family: "en-bold";
  letter-spacing: 1px;
}

@media only screen and (max-width: 767px) {
  .sp70 {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

/*==================================================
 * リセット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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 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,
h7,
p,
span,
div {
  line-height: 1.8;
  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;
}

.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_s2 {
  line-height: 0.9;
}
.lh_s2 * {
  line-height: 0.9;
}

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

.ls_xl {
  letter-spacing: 0.3em;
}

.ls_l {
  letter-spacing: 0.2em;
}

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

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

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

.thin {
  font-weight: 100;
}

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}

.white-all {
  color: #fff;
}
.white-all * {
  color: #fff;
}

.black {
  color: #000;
}

.gray {
  color: #686868;
}

.red {
  color: #ff4501 !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;
  }
}

.fsM15 {
  font-size: 32px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM15 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM15 {
    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: 16px;
  }
}

.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: 13px;
  }
}

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

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

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

.ofH {
  overflow: hidden;
}

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

/*
a:hover{
	opacity: 0.8;
	transition:0.3s;
}
*/
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;
}

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

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

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

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

/*
p {
    margin-bottom: 10px;
}
*/
.linkA {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #016AB8;
}
.linkA:hover {
  color: #016AB8;
  text-decoration: underline;
}

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

.p0 {
  padding: 0;
}

.mb0 {
  margin-bottom: 0;
}

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

.mb80 {
  margin-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .mb80 {
    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;
}

.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%;
  }
  .mbSp0 {
    margin-bottom: 0;
  }
}
/*flex・グリッド系*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

.justStart {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

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

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

.gap15 {
  -moz-column-gap: 15px;
  -webkit-column-gap: 15px;
          column-gap: 15px;
}

@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%;
  }
  .gap15 {
    -moz-column-gap: 10px;
    -webkit-column-gap: 10px;
            column-gap: 10px;
  }
}
@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%;
  }
}
/*横幅*/
.cnt {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.w100 {
  width: 100%;
}

.cntS {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.cntS2 {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.cntM2 {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}
.cntM2.--left {
  padding-left: 15px;
}
@media only screen and (min-width: 1030px) {
  .cntM2.--left {
    margin-left: calc((100vw - 1000px) / 2);
    max-width: 100%;
    padding-left: 0;
  }
}

.cntM {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.cntM.--left {
  padding-left: 15px;
}
@media only screen and (min-width: 1030px) {
  .cntM.--left {
    margin-left: calc((100vw - 1000px) / 2);
    max-width: 100%;
    padding-left: 0;
  }
}

.cntL {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}

.cntL2 {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.cntXl {
  max-width: 1310px;
  margin-right: 15px;
  margin-left: 15px;
}
@media screen and (min-width: 1740px) {
  .cntXl {
    margin-right: auto;
    margin-left: auto;
  }
}

.cntWide {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.rw {
  margin-left: -15px;
  margin-right: -15px;
}

:root {
  --spaceSizeS: clamp(40px, 10vw, 80px);
  --spaceSize: clamp(80px, 10vw, 160px);
  --spaceSizeWide: clamp(160px, 20vw, 240px);
}

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

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

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

.pb0 {
  padding-bottom: 0;
}

.pt0 {
  padding-top: 0;
}

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

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

/*背景系*/
.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;
}

/*角丸*/
.radius {
  border-radius: 8px;
}
.radius.--top {
  border-radius: 8px 8px 0 0;
}

.radiusM {
  border-radius: 10px;
}

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

/*影*/
.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;
}

/*FVスライダー(CSS)*/
.mainImgBox,
.mainImg {
  padding-bottom: 65vw;
}
@media only screen and (max-width: 767px) {
  .mainImgBox,
  .mainImg {
    padding-bottom: 120vw;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .mainImgBox,
  .mainImg {
    padding-bottom: 95vw;
  }
}

.mainImgBox {
  overflow: hidden;
  position: relative;
  z-index: -1;
}

.mainImg {
  z-index: 10;
  opacity: 0;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  /*1枚6秒で×枚数*/
  -webkit-animation: anime 18s 0s infinite;
  animation: anime 18s 0s infinite;
}

/*2枚目以降6秒遅れてアニメーションスタート*/
.mainImg:nth-of-type(2) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.mainImg:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

/*
.mainImg:nth-of-type(4) {
    animation-delay: 18s;
}
.mainImg:nth-of-type(5) {
    animation-delay: 24s;
}

.mainImg:nth-of-type(6) {
    animation-delay: 30s;
}
*/
@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  /*3秒：フェードイン.3/alls*/
  16% {
    opacity: 1;
  }
  /*6秒：次のスライド再生.6/alls*/
  33% {
    opacity: 1;
  }
  /*9秒：フェードアウト&次のスライドフェードイン*/
  50% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  /*3秒：フェードイン.3/alls*/
  16% {
    opacity: 1;
  }
  /*6秒：次のスライド再生.6/alls*/
  33% {
    opacity: 1;
  }
  /*9秒：フェードアウト&次のスライドフェードイン*/
  50% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
/*FVスライダー(CSS)ここまで*/
/*==================================================
 * 独自クラス（このサイトだけ）
 *================================================*/
/* reCAPTCHA */
.grecaptcha-badge {
  bottom: 135px !important;
  z-index: 2 !important;
}

/*線系*/
.titleLine {
  /*
  background: linear-gradient(transparent 50%, #f4d862 0%);
  display: inline;
  */
  position: relative;
  display: inline-block;
  z-index: 10;
  /*
  &.white{
      background: linear-gradient(transparent 70%, $subColorDeep 0%);
  }
  */
}
.titleLine:after {
  content: "";
  display: inline-block;
  background-color: #ecfe02;
  position: absolute;
  bottom: 0;
  left: -2.5%;
  width: 105%;
  height: 0.3em;
  z-index: 0;
}
.titleLine.sub {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #FCA50D));
  background: linear-gradient(transparent 70%, #FCA50D 0%);
}

.titleBd {
  position: relative;
  margin-bottom: 7rem;
  display: inline-block;
}
.titleBd:before {
  position: absolute;
  content: " ";
  display: block;
  width: 5rem;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
  bottom: -1.5rem;
  height: 2px;
  background-color: #016AB8;
  border-radius: 50px;
}
.titleBd.compColor:before {
  background-color: #ecfe02;
}
.titleBd.white:before {
  background-color: #fff;
}
.titleBd.sub {
  display: block;
}
.titleBd.sub:before {
  width: 23rem;
  height: 2px;
  bottom: -7px;
}
@media only screen and (max-width: 767px) {
  .titleBd {
    margin-bottom: 3rem;
  }
  .titleBd:before {
    width: 2.5rem;
  }
}

.titleBdCenter {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}
.titleBdCenter:after {
  content: "";
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 80px;
  height: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #016AB8;
  border-radius: 2px;
}
.titleBdCenter.mini:after {
  bottom: -15px;
  width: 40px;
  height: 1.5px;
  border-radius: 0px;
}

.titleBdLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.titleBdLeft:before {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #016AB8;
  display: block;
  margin-right: 1.5rem;
  max-width: 3rem;
}
.titleBdLeft.white:before {
  background: #fff;
}

.titleBdLight {
  border-bottom: 1px solid #016AB8;
  display: inline-block;
}

.bdBox {
  border: 2px solid #016AB8;
}

/*==================================================
 * header
 *================================================*/
/*------------モーダルウィンドウ------------*/
/*オーバーレイメニュー*/
.overRayBox {
  position: fixed;
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}
.overRayBox > ul {
  vertical-align: middle;
  width: 100%;
  display: block;
}
.open .overRayBox {
  cursor: url(../images/cross.svg), auto;
  visibility: visible;
  opacity: 1;
}

html.open {
  overflow-y: hidden;
}

/*ハンバーガーメニュー*/
.menu-btn {
  cursor: pointer;
  position: relative;
  z-index: 1000;
  background: transparent;
  border: none;
  display: none;
}
@media only screen and (max-width: 959px) {
  .menu-btn {
    display: block;
  }
}

.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;
  width: 40px;
  height: var(--menuTrigeHeight);
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--mainColor);
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: calc(var(--menuTrigeHeight) / 2);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span {
  background-color: #fff;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) 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(-11px) rotate(45deg);
          transform: translateY(-11px) 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
 *================================================*/
/*スマホfooter追従問い合わせ*/
.footerTelSpFlexLi {
  width: 50%;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  background-color: #a9946c;
}
.footerTelSpFlexLi:last-child {
  border-right: none;
  background-color: #016AB8;
}
.footerTelSpFlexLi a {
  display: block;
  padding: 9px 0;
}
.footerTelSpFlexLi a i {
  font-size: 16px;
}

.footerTelSpText {
  font-size: 16px;
  line-height: 1.5;
}

.footerTelSp {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 100;
}

/*フッター追従コンタクト*/
.fixBarContact {
  padding: 1rem 2rem;
}

.fixBar {
  position: fixed;
  z-index: 10;
  right: 2%;
  bottom: 2%;
}
.fixBar .button {
  padding: 0.7rem 3rem;
  border: 1px solid #016AB8;
}

.fixBarA {
  margin-right: 10px;
}
.fixBarA:hover {
  background-color: #fff;
  color: #016AB8;
}

.fixBarTop {
  height: 44px;
  width: 44px;
  cursor: pointer;
  border: 1px solid #016AB8;
  border-radius: 50px;
}
.fixBarTop:hover {
  background-color: #fff;
  border: 1px solid #016AB8;
  color: #016AB8;
}

.fixBar i,
.fixBar span {
  vertical-align: middle;
}

.fixBarTop i {
  margin-top: 14px;
}

/*==================================================
 * トップページ
 *================================================*/
/*Q&Aここから*/
.topQaBoxUl li:nth-child(2) hr {
  border-top: 1px solid #dadada;
}

.topQaBoxUl li {
  display: inline-block;
  vertical-align: middle;
}

.topQaBoxDl {
  width: 48%;
  display: inline-block;
  margin-right: 1%;
  vertical-align: top;
}

.topQaBoxDl dd {
  display: none;
  margin-top: 3%;
}

.topQaBoxDl dt {
  font-weight: normal;
}

.topQaBoxDl dt:hover {
  background: rgba(242, 203, 149, 0.3);
  border-radius: 5px;
  cursor: pointer;
}

.topQaBoxUl li:nth-child(3) {
  width: 74%;
}

.topQaBoxUl li:nth-child(1) {
  margin-right: 2%;
}

.topQaBoxUl li:nth-child(2) {
  width: 8%;
  margin-right: 2%;
}

/*Q&Aここまで*/
@media screen and (max-width: 767px) {
  /*Q&Aのスマホここから*/
  .topQaBoxDl {
    width: 100%;
  }
  /*Q&Aのスマホここまで*/
}
/*==================================================
 * 下層ページ
 *================================================*/
/*共通部分------------------------------------*/
/*パンくず*/
/*パンくず終わり*/
/*about-us------------------------------------*/
/*残す--ここから*/
.pageAboutCompanyUl ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pageAboutCompanyUl li {
  padding: 0.5em 0;
}
@media only screen and (max-width: 767px) {
  .pageAboutCompanyUl li {
    padding: 0.8em 0;
    font-size: 13px;
  }
}
.pageAboutCompanyUl li:nth-child(1) {
  width: 30%;
  text-align: left;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .pageAboutCompanyUl li:nth-child(1) {
    font-size: 15px;
  }
}
.pageAboutCompanyUl li:nth-child(2) {
  width: 70%;
}
.fa-map-marker {
  color: #d9534f;
  font-size: 20px;
  margin-left: 1%;
}

/*残す--ここまで*/
/*お問い合わせページ------------------------------------*/
.cform {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.cform tr {
  margin-bottom: 1.5em;
  display: block;
}
.cform tr th,
.cform tr td {
  letter-spacing: 0.01em;
  display: block;
  width: 100%;
  text-align: left;
}
.cform tr th {
  margin-bottom: 0.5em;
}
.cform label {
  margin-right: 1.5em;
}
.cform label span {
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
}
.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
  width: 100%;
  background-color: #F9F9F9;
  border: 1px solid #696969;
  border-radius: 6px;
  padding: 1em;
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 1.4;
}
.cform option::-webkit-input-placeholder,
.cform textarea::-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 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 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 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 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 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 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 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 input[type=text]::placeholder,
.cform input[type=email]::placeholder,
.cform input[type=search]::placeholder,
.cform input[type=url]::placeholder {
  color: #c1c1c1;
}
@media only screen and (max-width: 767px) {
  .cform tr {
    margin-bottom: 2em;
  }
}

.privacyCheck {
  margin: 5px 3px 3px !important;
  vertical-align: top !important;
}
.privacyCheck + span {
  width: calc(100% - 1.8em);
  line-height: 1.5 !important;
  letter-spacing: 0.1em;
}

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

.required-srt {
  color: #f04876;
  margin-left: 0.7em;
}

.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 {
  border: 1px solid #dcdcdc;
  padding: 8% 5%;
  margin: 10% 0;
}
@media only screen and (max-width: 767px) {
  .contactAlertBox {
    padding: 12% 5%;
    margin: 13% 0;
  }
}

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

.submit-btn input {
  border: none;
  height: 70px;
  border-radius: 1000px;
  background-color: #fff;
  padding: 0 61px;
  display: block;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #016AB8;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-inline: auto;
  max-width: 300px;
  width: 100%;
}
.submit-btn input:hover {
  opacity: 0.7;
}
.submit-btn input[name=submitBack] {
  background-color: #a9a9a9;
  margin-top: 1em;
}
@media only screen and (max-width: 767px) {
  .submit-btn input {
    height: 50px;
  }
}

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

/*下層ページ共通------------------------------------*/
.mw_wp_form_input .input-none {
  display: none !important;
}

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

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

/*投稿詳細ページ------------------------------------*/
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;
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}
.entry figcaption {
  font-size: 13px;
  color: gray;
}
.entry a {
  display: inline;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
  color: #33bad4;
}
.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: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #fff7c0));
  background: linear-gradient(transparent 40%, #fff7c0 40%);
}
.entry p {
  margin: 0.5em 0 1.3em 0;
  line-height: 2;
  letter-spacing: 0.2em;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .entry p {
    font-size: 14px;
    line-height: 1.9;
  }
}
.entry h2 span,
.entry h3 span,
.entry h4 span,
.entry h5 span {
  font-weight: bold;
}
.entry h2 {
  font-size: 22px;
  margin: 8% auto 3%;
  background-color: #016AB8;
  padding: 0.5em 1em;
  border-radius: 3px;
  font-weight: bold;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .entry h2 {
    font-size: 18px;
    margin: 12% auto 6%;
  }
}
.entry h3 {
  position: relative;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  font-size: 22px;
  margin: 4% auto 3%;
  color: #016AB8;
  border-left: solid 8px #016AB8;
  background: #F7FAFC;
  font-weight: bold;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    font-size: 16px;
    padding-bottom: 0.5em;
    margin: 12% auto 6%;
    border-left: solid 4px #016AB8;
  }
}
.entry h4 {
  margin: 3% auto 3%;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  color: #016AB8;
  font-weight: bold;
  font-size: 22px;
  padding-left: 0.5em;
  border-left: solid 8px #016AB8;
}
@media only screen and (max-width: 767px) {
  .entry h4 {
    margin: 15% auto 8%;
    border-left: solid 4px #016AB8;
  }
}
.entry h5 {
  border-bottom: solid 1px #B8B8B8;
  position: relative;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  margin: 3% auto 3%;
  font-size: 22px;
}
.entry h5::before {
  content: "";
  display: block;
  position: absolute;
  width: 125px;
  height: 3px;
  background-color: #016AB8;
  left: 0;
  bottom: -1px;
}
.entry h6 {
  margin: 3% auto 3%;
  border-top: solid 1px #016AB8;
  border-bottom: solid 1px #016AB8;
  padding: 0.4em 0.2em;
  font-weight: 700;
  font-size: 22px;
}
.entry table {
  border: solid 1px #016AB8;
}
.entry table td:nth-child(1) {
  font-weight: bold;
  color: #515151;
}
.entry table th,
.entry table td {
  padding: 1rem 2rem;
  border: solid 1px #016AB8;
}
@media only screen and (max-width: 767px) {
  .entry table th,
  .entry table td {
    padding: 1rem 2rem;
    width: 100%;
    display: block;
    border-bottom: 1px solid #dad8de;
  }
}
.entry table tr:nth-of-type(even) {
  background: #F9F9F9;
}
.entry ul {
  margin-bottom: 2%;
}
.entry li {
  list-style-type: none;
  line-height: 1.7;
  font-weight: normal;
  margin-bottom: 0.3em;
  position: relative;
  padding-left: 1.5em;
  font-weight: bold;
}
.entry li:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f14a";
  color: #016AB8;
  position: absolute;
  left: 0;
  font-weight: 400;
}

.entry h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

/*目次*/
.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: #016AB8;
}

.toc_list li:before {
  display: none;
}

.toc_title {
  border-bottom: 1px solid #016AB8;
  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 5%;
}

/*リンクカードプラグイン*/
.lkc-title-text {
  font-weight: normal;
  letter-spacing: 0.15em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover .lkc-title-text {
  color: #016AB8;
  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 #016AB8;
  border-radius: 10px;
  background-color: #808080;
}

.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: #016AB8;
  font-family: var(--fontNum);
  font-size: 14px;
  display: none !important;
}

.lkc-info {
  background-color: #016AB8;
  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 {
  margin-bottom: 0.8em;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .singleColumnTitle {
    font-size: 18px;
  }
}

.singleColumnInfoUl .date {
  margin-right: 1em;
  font-family: var(--fontNum);
  font-size: 12px;
  color: #b3b3b3;
}
.singleColumnInfoUl .cateUl {
  display: inline-block;
}
.singleColumnInfoUl .cateUl li {
  display: inline-block;
  font-size: 12px;
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 5px;
  padding: 0.6em 0.8em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 12px;
  }
}

/*この記事をシェアするボタン*/
.singleColumnShare {
  padding: 3% 6%;
}
@media only screen and (max-width: 767px) {
  .singleColumnShare {
    padding: 6% 9%;
  }
}

.singleColumnShareButton {
  padding: 0.7rem 1rem;
  width: 20%;
  margin-right: 3%;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 959px) {
  .singleColumnShareButton {
    width: 45%;
    margin-right: 2.5%;
  }
}
.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: #1da1f2;
  border: 1px solid #1da1f2;
}
.singleColumnShareButton.twitter:hover {
  background: #fff;
  color: #1da1f2;
}
.singleColumnShareButton.facebook {
  background: #1877f2;
  border: 1px solid #1877f2;
}
.singleColumnShareButton.facebook:hover {
  background: #fff;
  color: #1877f2;
}

.singleColumnShareTitle {
  width: 50%;
}
@media only screen and (max-width: 959px) {
  .singleColumnShareTitle {
    width: 100%;
    margin-bottom: 6% !important;
  }
}

/*この記事を書いた人*/
.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: 3% 3%;
  margin: 6% 0 6% 0;
  border: 1px solid #016AB8;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    padding: 8%;
    margin: 12% 0 6% 0;
  }
}

.singleColumnWriterTitle {
  border-bottom: 1px solid #016AB8;
}

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

.sidebarWriterSns li {
  display: inline-block;
  margin-right: 3%;
  margin-bottom: 4%;
}
.sidebarWriterSns li a {
  border: 1px solid #d2d2d2;
  padding: 0.4em 1em;
  border-radius: 35px;
  background: #fff;
  letter-spacing: 0.05em;
}
.sidebarWriterSns li a:hover {
  background-color: #f1f1f1;
}
.sidebarWriterSns li a .fa-instagram {
  color: #fd1d1d;
}
.sidebarWriterSns li a .fa-twitter {
  color: #00acee;
}
.sidebarWriterSns li a .fa-facebook {
  color: #3b5998;
}
.sidebarWriterSns li a .fa-comment {
  color: #00b900;
}

/*次のページを見る*/
.singleColumnPreNextBox {
  padding: 5%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #ececec;
  border-radius: 10px;
}
.singleColumnPreNextBox.pre {
  margin-right: 1.5%;
}
.singleColumnPreNextBox.next {
  margin-left: 1.5%;
}

.singleClumnPreNextDescri {
  color: #727171;
}

.singleColumnPrevNextArrow {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 33px;
  height: 1px;
  background: #727171;
}
.singleColumnPrevNextArrow::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 2px;
  width: 1px;
  height: 5px;
  border-top: 1px solid #727171;
  border-left: 1px solid #727171;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.next .singleColumnPrevNextArrow {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  left: 15px;
  right: auto;
}

/*アーカイブページ------------------------------------*/
.cmNewsListUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cmNewsListUl > li {
  width: 46%;
  margin: 0 2%;
  margin-bottom: 6%;
}
@media only screen and (max-width: 767px) {
  .cmNewsListUl > li {
    width: 100%;
    margin: 0 2%;
    margin-bottom: 10%;
  }
}

.cmNewsListCard {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #F6F6F6;
  border-radius: 8px;
}
a:hover .cmNewsListCard {
  opacity: 0.7;
}

.cmNewsTitle {
  font-size: 16px;
  line-height: 1.4;
}
@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;
  }
}

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

.cmNewsListInfoUl li {
  margin-right: 0.5em;
  display: inline-block;
  font-size: 12px;
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 5px;
  padding: 0.6em 0.8em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .cmNewsListInfoUl li {
    font-size: 11px;
  }
}

.cmNewsListTxt {
  padding: 2em 1.5em;
}

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

/*Pagenation*/
.pagenation {
  margin: 1em 0;
}
.pagenation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagenation li {
  font-family: var(--fontEn);
  font-size: 18px;
  margin: 0 1%;
  color: #fff;
  background: #016AB8;
}
.pagenation li.active {
  cursor: not-allowed;
  color: #000;
  background: #f2f2f2;
  padding: 0.5em 1em;
}
.pagenation li.prev {
  display: none;
}
.pagenation li.next {
  display: none;
}
.pagenation li a {
  display: block;
  padding: 0.5em 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagenation li a:hover {
  background: #808080;
}
@media only screen and (max-width: 767px) {
  .pagenation li {
    font-size: 1.5rem;
  }
  .pagenation li.active {
    padding: 7px 12px;
  }
  .pagenation li a {
    padding: 7px 12px;
  }
}

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

span.page-numbers {
  color: #016AB8;
  font-weight: bold;
}

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

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

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

.sidebarNewsUl .cat-item {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.sidebarNewsUl .cat-item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebarNewsUl .cat-item a:hover {
  opacity: 0.7;
}
.sidebarNewsUl .cat-item .title {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .sidebarNewsUl .cat-item {
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
  }
}

.sidebarCategoryBlock li {
  display: inline-block;
  margin-bottom: 1em;
}
.sidebarCategoryBlock li a {
  display: inline-block;
  font-size: 12px;
  background-color: var(--mainColor);
  color: #fff;
  border-radius: 5px;
  padding: 0.6em 0.8em;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .sidebarCategoryBlock li a {
    font-size: 11px;
  }
}
.sidebarCategoryBlock li a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .sidebarCategoryBlock li {
    font-size: 12px;
  }
}

.sidebarTitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--mainColor);
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .sidebarTitle {
    padding-bottom: 0.25em;
    margin-bottom: 0.5em;
  }
}

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

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

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

#sidebar select {
  width: 100%;
  padding: 0.7em;
}

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

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*==================================================
 * 全サイト共通
 *================================================*/
/*共通部分*/
body {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

body {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: #101922;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

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

.fit-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.commonUl li {
  position: relative;
  padding: 1em 0;
  border-bottom: 1px solid #d1d1d1;
}
.commonUl li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  color: #016AB8;
  font-size: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 959px) {
  .commonUl li:before {
    font-size: 18px;
  }
}
.commonUl li span {
  font-size: 18px;
  margin-left: 45px;
  display: inline-block;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 959px) {
  .commonUl li span {
    font-size: 14px;
    margin-left: 30px;
  }
}
.commonUl.white li:before {
  color: #fff;
}

.bgTransBlack {
  background-color: rgba(0, 0, 0, 0.3);
}

.telA i {
  margin-right: 0.15em;
}
.telA.white:hover {
  color: #fff;
}

.externalLink {
  border-bottom: 1px solid;
  padding-bottom: 0.1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.externalLink:hover {
  color: #016AB8;
}
.externalLink:after {
  content: "\f08e";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  margin-left: 0.5em;
}

.vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  white-space: nowrap;
}

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

@media only screen and (max-width: 767px) {
  .verticalPc {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

/*==================================================
 * 当サイト共通
 *================================================*/
body {
  background-color: #fff;
}

main {
  position: relative;
  z-index: 1;
}

:root {
  --gridLinePadding: calc((100vw - 1180px) / 2);
  --gridLineInner: calc(1180px / 4);
}

.commonTitleEn {
  font-size: 76px;
  font-family: var(--fontEn);
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 0.8;
  opacity: 0.3;
}
.commonTitleEn.__small {
  font-size: 24px;
}
.commonTitleEn.__middle {
  font-size: 50px;
}
@media only screen and (max-width: 767px) {
  .commonTitleEn {
    font-size: 52px;
    line-height: 1;
  }
  .commonTitleEn.__small {
    font-size: 18px;
  }
}

.commonTitleJp {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.commonTitleJp.__large {
  font-size: 36px;
}
@media only screen and (max-width: 767px) {
  .commonTitleJp {
    font-size: 14px;
  }
  .commonTitleJp.__large {
    font-size: 24px;
  }
}

.textBox.textBox__wide p {
  line-height: 2.6;
  letter-spacing: 0.2em;
}
.loading {
  position: fixed;
  opacity: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #016AB8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 9999;
}

.loading.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

.loadingLogo {
  width: 260px; /* ロゴのサイズに応じて調整してください */
  opacity: 0;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
}
@media only screen and (max-width: 767px) {
  .loadingLogo {
    width: 220px;
  }
}

.loadingLogo.show {
  opacity: 1;
}

.cmnBtn {
  height: 70px;
  border-radius: 1000px;
  background-color: #fff;
  padding: 0 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 80px;
  background-color: #016ab8;
  color: #fff;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .cmnBtn {
    height: 50px;
  }
}
.cmnBtn span {
  font-weight: 700;
  position: relative;
  color: inherit;
}
.cmnBtn span::before {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 7px;
  right: 0;
  top: 50%;
  -webkit-transform: translateX(calc(100% + 20px)) translateY(-50%);
          transform: translateX(calc(100% + 20px)) translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/ic-btn--white.svg) no-repeat center/contain;
}
.cmnBtn:hover {
  opacity: 1;
  color: #fff;
}
.cmnBtn:hover span::before {
  -webkit-transform: translateX(calc(100% + 30px)) translateY(-50%);
          transform: translateX(calc(100% + 30px)) translateY(-50%);
}
.cmnBtn.--white {
  background-color: #fff;
  color: #101922;
}
.cmnBtn.--white span::before {
  background: url(../img/ic-btn.svg) no-repeat center/contain;
}
.cmnBtn.--white:hover span {
  color: #101922;
}
.cmnBtn.--orange {
  color: #FCA50D;
}
.cmnBtn.--orange span {
  color: inherit !important;
}
.cmnBtn.--orange span::before {
  background: url(../img/ic-btn--orange.svg) no-repeat center/contain;
}
.cmnBtn.--arwOrange span::before {
  background: url(../img/ic-btn--orange.svg) no-repeat center/contain;
}
.cmnBtn.bgSubColor {
  background-color: #FCA50D;
}
.cmnBtn.center {
  margin-left: auto;
  margin-right: auto;
}

.cmnBtnParent {
  cursor: pointer;
}
.cmnBtnParent:hover .cmnBtn {
  opacity: 1;
}
.cmnBtnParent:hover .cmnBtn span::before {
  -webkit-transform: translateX(calc(100% + 30px)) translateY(-50%);
          transform: translateX(calc(100% + 30px)) translateY(-50%);
}
.cmnBtnParent:hover .cmnBtn span {
  color: #fff;
}
.cmnBtnParent:hover .cmnBtn.--white span {
  color: #101922;
}

.ttlCmn .en {
  font-size: clamp(12px, 6.019px + 0.78vw, 16px);
  font-weight: 700;
  font-family: "en-bold";
  letter-spacing: 1px;
  letter-spacing: 1px;
  position: relative;
  margin-left: 1em;
  display: inline-block;
}
.ttlCmn .en::before {
  content: "";
  display: block;
  position: absolute;
  height: 17px;
  width: 10px;
  left: -1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.ttlCmn .en.color {
  background: linear-gradient(88deg, #fca50d 3.48%, #73b320 16.17%, #016ab8 28.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ttlCmn .en.color::before {
  background-image: url(../img/ic-ttl-color.svg);
}
.ttlCmn .ja {
  font-size: clamp(18px, 0.058px + 2.339vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}
.ttlCmn.--white .en::before {
  background-image: url(../img/ic-ttl-white.svg);
}
.ttlCmn.--white > * {
  color: #fff;
}

.ttlCmnSub {
  font-size: 22px;
  padding: 0.4em 1em;
  border-left: solid 7px #016ab8;
  background: #f7fafc;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .ttlCmnSub {
    font-size: 18px;
  }
}
.ttlCmnSub.--orange {
  border-left: solid 7px #FCA50D;
  background: #fff6e6;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, rgba(1, 106, 184, 0.2)));
  background: linear-gradient(transparent 60%, rgba(1, 106, 184, 0.2) 0%);
}

.cmnTable {
  width: 100%;
}
.cmnTable th,
.cmnTable td {
  padding: 1em;
}
.cmnTable th {
  width: 200px;
  border-bottom: solid 2px #016ab8;
  text-align: left;
  color: #016AB8;
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .cmnTable th {
    font-size: 14px;
  }
}
.cmnTable td {
  border-bottom: solid 2px #b5b5b5;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .cmnTable td {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .cmnTable th,
  .cmnTable td {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .cmnTable th {
    border-bottom: none;
    padding-bottom: 0;
  }
  .cmnTable td {
    padding-top: 0.2em;
    position: relative;
  }
  .cmnTable td::before {
    content: "";
    display: block;
    position: absolute;
    width: 36%;
    height: 2px;
    background-color: #016AB8;
    left: 0;
    bottom: -2px;
  }
}
.cmnTable.--messageTable dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cmnTable.--messageTable dl dt, .cmnTable.--messageTable dl dd {
  font-weight: 600;
  font-size: 16px;
}
.cmnTable.--messageTable dl dt {
  width: 10em;
}
.cmnTable.--messageTable dl dd {
  width: calc(100% - 10em);
}
@media only screen and (max-width: 767px) {
  .cmnTable.--messageTable th {
    border-top: solid 2px #b5b5b5;
    margin-top: 1em;
    position: relative;
  }
  .cmnTable.--messageTable th::before {
    content: "";
    display: block;
    position: absolute;
    width: 36%;
    height: 2px;
    background-color: #016AB8;
    left: 0;
    top: -2px;
  }
}

.boardList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.boardList li span {
  display: inline-block;
}
.boardList li span:first-child {
  width: 10em;
}
.boardList li span:last-child {
  width: calc(100% - 10em);
}

.cmnTable02 {
  width: 100%;
  border: solid 1px #016AB8;
}
.cmnTable02 th,
.cmnTable02 td {
  padding: 0.5em;
  border: solid 1px #016AB8;
  text-align: center;
  line-height: 1.4;
  vertical-align: middle;
}
.cmnTable02 th {
  background-color: #f9f9f9;
  color: #016AB8;
}
.cmnTable02 td {
  background-color: #fff;
}
.cmnTable02.--c5 th {
  width: 20%;
}
.cmnTable02.--c3 th {
  width: 33.3333333333%;
}

.z-1 {
  z-index: 1;
}

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

.none {
  display: none;
}

.rotate {
  position: relative;
}
.rotate .back,
.rotate .front {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.rotate .back {
  position: relative;
}
.rotate .front {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}
.rotate.active {
  opacity: 1;
}
.rotate.active .back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.rotate.active .front {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}

[data-target] {
  padding-top: 100px;
  margin-top: -100px;
}

@media only screen and (max-width: 767px) {
  [data-aos-delay] {
    -webkit-transition-delay: 0 !important;
            transition-delay: 0 !important;
  }
}
/*==================================================
 * ヘッダー
 *================================================*/
#loadingLogo {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: linear-gradient(111deg, #83c5f6 0%, #1969a6 100%);
  z-index: 10000;
  display: none;
}

#loadingLogo.show {
  display: block;
  -webkit-animation: fadein-keyframes 1s ease 2.5s 1 forwards;
          animation: fadein-keyframes 1s ease 2.5s 1 forwards;
}

#loadingLogo .loading-anime-img {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 240px;
  width: 100%;
}

#loadingLogo .loading-anime-line {
  background-color: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 75%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-animation: loading 1.5s ease 0.5s 1 forwards;
          animation: loading 1.5s ease 0.5s 1 forwards;
}

#loadingLogo .loading-anime-line:before {
  content: "";
  width: 15px;
  height: 15px;
  background: #1c9ce3;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 9999px;
}

#loadingLogo .loading-anime-line:after {
  content: "";
  width: 15px;
  height: 15px;
  background: #1c9ce3;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 9999px;
}

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

@keyframes loading {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@-webkit-keyframes fadein-keyframes {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadein-keyframes {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
header {
  position: fixed;
  width: 100%;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 959px) {
  header {
    height: 50px;
    background-color: rgba(255, 255, 255, 0.95);
  }
}

.recruitHeader {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recruitHeader.show {
  -webkit-transform: none;
          transform: none;
}
.recruitHeader.hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.logo {
  width: 140px;
  margin-left: 30px;
}
@media only screen and (max-width: 1099px) {
  .logo {
    width: 120px;
    margin-left: 15px;
  }
}
@media only screen and (max-width: 959px) {
  .logo {
    width: 110px;
    margin-left: 15px;
  }
}

.headerUnit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 959px) {
  .headerUnit {
    height: 100%;
  }
}

.headerMenuUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0;
  margin-left: auto;
}
@media only screen and (max-width: 959px) {
  .headerMenuUl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    width: 300px;
    height: 100vh;
    top: 0;
    right: 0;
    top: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.headerMenuUl li {
  position: relative;
}
.headerMenuUl li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 12px 20px;
}
@media only screen and (max-width: 1199px) {
  .headerMenuUl li a {
    padding: 12px 15px;
  }
}
@media only screen and (max-width: 1099px) {
  .headerMenuUl li a {
    padding: 10px;
  }
}
@media only screen and (max-width: 959px) {
  .headerMenuUl li a {
    padding: 10px 30px;
  }
}
.headerMenuUl li a > * {
  display: block;
  text-align: center;
}
@media only screen and (max-width: 959px) {
  .headerMenuUl li a > * {
    text-align: left;
  }
}
.headerMenuUl li a .en {
  color: #016ab8;
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 1.2px;
}
@media only screen and (max-width: 1099px) {
  .headerMenuUl li a .en {
    font-size: 10px;
  }
}
.headerMenuUl li a .jp {
  color: #101922;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (max-width: 1099px) {
  .headerMenuUl li a .jp {
    font-size: 14px;
  }
}
.headerMenuUl .child {
  position: absolute;
  background-color: #fff;
  width: 200px;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.headerMenuUl .child::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4.5px 7.8px 4.5px;
  border-color: transparent transparent #fff transparent;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-100%);
          transform: translateX(-50%) translateY(-100%);
}
.headerMenuUl .child li a {
  padding: 0.5em 1em;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.headerMenuUl .child li a:hover {
  background-color: #016AB8;
  color: #fff;
  opacity: 1;
}
.headerMenuUl .child li a:hover path {
  fill: #fff;
}
.headerMenuUl .child li + li {
  border-top: solid 1px #d3d3d3;
}
.headerMenuUl > li:hover {
  opacity: 1;
}
.headerMenuUl > li:hover > a {
  background-color: #016AB8;
  opacity: 1;
}
.headerMenuUl > li:hover > a * {
  color: #fff;
}
.headerMenuUl > li:hover > .child {
  opacity: 1;
  pointer-events: all;
}

.headerMenuUl .headerRec {
  position: relative;
  background-color: #fca50d;
  width: 180px;
}
@media only screen and (max-width: 1099px) {
  .headerMenuUl .headerRec {
    width: 150px;
  }
}
@media only screen and (max-width: 959px) {
  .headerMenuUl .headerRec {
    width: 100%;
  }
}
.headerMenuUl .headerRec > * .en,
.headerMenuUl .headerRec > * .jp {
  color: #fff !important;
}
.headerMenuUl .headerRec > a {
  position: relative;
  padding-left: 50px;
}
.headerMenuUl .headerRec > a::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 23px;
  background: url(../img/headerRecruit.svg) no-repeat center/contain;
  left: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.headerMenuUl .headerRec .child {
  left: auto;
  -webkit-transform: none;
          transform: none;
  right: 0;
}

.overRayMenuUl {
  margin-bottom: 30px;
}
.overRayMenuUl > li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2em;
  margin-bottom: 2em;
  padding-left: 3em;
}
.overRayMenuUl > li a span {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.overRayMenuUl > li a span.en {
  font-size: 48px;
  margin-right: 0.5em;
  font-weight: 600;
  line-height: 0.7;
  font-family: "en-bold";
  letter-spacing: 1px;
}
.overRayMenuUl > li a span.jp {
  font-size: 16px;
  font-weight: 500;
}
.overRayMenuUl > li a:hover span {
  color: var(--mainColor);
}
@media only screen and (max-width: 959px) {
  .overRayMenuUl > li {
    padding-bottom: 1em;
    margin-bottom: 1em;
    padding-left: 1em;
  }
  .overRayMenuUl > li:last-of-type {
    padding-bottom: 80px;
  }
  .overRayMenuUl > li a span.en {
    font-size: 19px;
    margin-right: 0.5em;
  }
  .overRayMenuUl > li a span.jp {
    font-size: 12px;
  }
  .overRayMenuUl > li .child {
    margin-top: 0.2em;
    padding-left: 1em;
  }
  .overRayMenuUl > li .child li a {
    padding-right: 1em;
  }
  .overRayMenuUl > li .child li:nth-of-type(2) {
    margin-right: 50%;
  }
  .overRayMenuUl > li .child a {
    color: #fff;
  }
  .overRayMenuUl > li .child a .ic {
    display: none;
  }
}

.overRayBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 100px 50px;
  background-color: rgba(0, 0, 0, 0.7);
}
@media only screen and (max-width: 767px) {
  .overRayBlock {
    padding: 60px 25px;
  }
}

.overRayTextCard {
  width: 100%;
}

.snsIcoUl {
  color: #fff;
}
.snsIcoUl li {
  display: inline-block;
  margin-right: 0.25em;
  margin-left: 0.25em;
}
.snsIcoUl li a {
  display: inline-block;
}
.snsIcoUl li a i {
  font-size: 24px;
  display: inline-block;
}

/*==================================================
 * フッター
 *================================================*/
footer {
  background: url(../img/footerBg.png) no-repeat center/cover;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
footer .contactus {
  font-size: clamp(80px, -99.415px + 23.392vw, 200px);
  color: #fff;
  font-family: "en-bold";
  letter-spacing: 1px;
  opacity: 0.15;
  position: absolute;
  left: 50%;
  top: 30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
}
footer.recPages .recNone,
footer.recPages .footerTopFlex,
footer.recPages .contactus {
  display: none;
}
footer.recPages .footerBottomFlex {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

.footerTopFlex {
  max-width: 920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footerTopFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footerTopFlex .footerForm {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footerForm {
  background-color: #73b320;
  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;
  border-radius: 100px;
  padding: 1em;
  width: 420px;
  color: #fff;
}
.footerForm .txt {
  padding-left: 1em;
  padding-right: 1em;
}
.footerForm:hover {
  color: #fff;
}
.footerForm:hover .txt {
  color: inherit;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerForm {
    width: 360px;
  }
}
@media only screen and (max-width: 767px) {
  .footerForm svg:first-of-type {
    width: 34px;
  }
  .footerForm svg:last-of-type {
    width: 13px;
  }
}

.footerTel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .footerTel {
    margin-top: 30px;
  }
}
.footerTel img {
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .footerTel img {
    width: 60px;
    margin-right: 15px;
  }
}

.footerBottomFlex {
  padding-top: 45px;
  margin-top: 45px;
  border-top: solid 1px #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .footerBottomFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.footerBottomLeft {
  width: 44.2307692308%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .footerBottomLeft {
    width: 80%;
    margin-top: 2em;
  }
}
.footerBottomLeft .logo {
  width: 194px;
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .footerBottomLeft .logo {
    width: 150px;
  }
}

.footerInsta {
  display: inline-block;
}

.footerBottomNavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.footerBottomNavi > * {
  width: 33.3333333333%;
}
@media only screen and (max-width: 767px) {
  .footerBottomNavi > * {
    width: 50%;
  }
}
.footerBottomNavi > ul {
  display: block;
}
.footerBottomNavi > ul > li:not(:first-of-type) {
  margin-top: 2em;
}
@media only screen and (max-width: 767px) {
  .footerBottomNavi > ul > li:not(:first-of-type) {
    margin-top: 1em;
  }
}
.footerBottomNavi .parent {
  font-weight: 700;
}
.footerBottomNavi .child {
  text-indent: 1em;
}
.footerBottomNavi .child a {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .footerBottomNavi {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footerBottomNavi ul:last-of-type:not(.child) {
    margin-top: 1em;
  }
}

.footerInnter {
  background-color: rgba(49, 82, 83, 0.5);
}

.footerContactIcoUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.footerContactIcoUl li {
  margin: 0 10px;
}
@media only screen and (max-width: 767px) {
  .footerContactIcoUl {
    margin-top: 20px;
  }
}

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

.footerInfoUl {
  font-size: 13px;
  margin-bottom: 7%;
}
@media only screen and (max-width: 767px) {
  .footerInfoUl {
    font-size: 12px;
  }
}

.copyright {
  font-size: 12px;
  text-align: center;
  background-color: #101922;
  padding: 0.5em;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .copyright {
    font-size: 10px;
    padding-bottom: 50px;
  }
}

.footerEntry {
  background: url(../img/common_recruit/footerRec.jpg) no-repeat center/cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footerEntry .inner {
  padding-top: 140px;
  padding-bottom: 140px;
  background: url(../img/common_recruit/entry.svg) repeat-y center top/680px auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .footerEntry .inner {
    background-size: 110% auto;
    padding-top: 25%;
    padding-bottom: 30%;
  }
}
.footerEntry .ttl {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}
.footerEntry .subTtl {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.8em;
  padding-right: 0.7em;
  line-height: 1.4;
}
.footerEntry .subTtl::before, .footerEntry .subTtl::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 1em;
  background-color: #fff;
  bottom: 0.4em;
}
.footerEntry .subTtl::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 0;
}
.footerEntry .subTtl::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 0;
}
.footerEntry .ic {
  margin-top: 20px;
  margin-bottom: 20px;
}
.footerEntry .mr svg {
  margin-left: 1em;
}
.footerEntry .logoLink {
  background-color: #fff;
  border-radius: 1000px;
  height: 70px;
  width: 100%;
  padding-left: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.footerEntry .logoLink img {
  width: 190px;
  margin-left: 0;
  max-width: 70%;
}
.footerEntry .logoLink .arw {
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footerEntry .entryPdf {
  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;
  padding: 15px 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.footerEntry .entryPdf .ic {
  margin-right: 20px;
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .footerEntry .entryPdf .ic {
    width: 45px;
    margin-right: 10px;
  }
}
.footerEntry .left,
.footerEntry .right {
  position: absolute;
}
.footerEntry .left img,
.footerEntry .right img {
  position: absolute;
  bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.footerEntry .left {
  left: 0;
  bottom: 0;
  width: 30.3125%;
  max-width: 380px;
}
@media only screen and (max-width: 767px) {
  .footerEntry .left {
    width: 42%;
  }
}
.footerEntry .left .img01 {
  width: 69.587628866%;
  left: 0;
  max-width: 270px;
}
.footerEntry .left .img02 {
  width: 65.206185567%;
  bottom: -20px;
  right: -50px;
  max-width: 253px;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
@media only screen and (max-width: 767px) {
  .footerEntry .left .img02 {
    right: -30px;
  }
}
.footerEntry .right {
  right: 0;
  bottom: 0;
  width: 32.03125%;
  max-width: 410px;
}
@media only screen and (max-width: 767px) {
  .footerEntry .right {
    width: 45%;
  }
}
.footerEntry .right .img01 {
  width: 64.3902439024%;
  left: 0;
  max-width: 264px;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.footerEntry .right .img02 {
  width: 51.2195121951%;
  right: 0;
  max-width: 210px;
}
.footerEntry.hov .left img,
.footerEntry.hov .right img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media only screen and (max-width: 767px) {
  .footerEntry.active .img01,
  .footerEntry.active .img02 {
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
  }
}

.footerEntryFlex {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 959px) {
  .footerEntryFlex {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .footerEntryFlex {
    row-gap: 15px;
  }
}
.footerEntryFlex > * {
  width: calc(33.3333333333% - 26.6666666667px);
  display: block;
  padding: 30px 15px 10px;
  background-color: #73b320;
}
@media only screen and (max-width: 959px) {
  .footerEntryFlex > * {
    width: calc(50% - 13.3333333333px);
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .footerEntryFlex > * {
    width: 100%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 15px;
  }
}
@media only screen and (max-width: 959px) {
  .footerEntryFlex > *.--01 {
    margin-left: 25%;
    margin-right: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .footerEntryFlex > *.--01 {
    margin-left: auto;
    margin-right: auto;
  }
}
.footerEntryFlex > *.--02 {
  background-color: #016AB8;
}

.pagetop {
  right: 30px;
  bottom: -5px;
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  cursor: pointer;
  z-index: 99;
}
.pagetop:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .pagetop {
    width: 110px;
    right: 15px;
  }
}
.pagetop.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*==================================================
 * トップページ
 *================================================*/
.fv {
  position: relative;
  height: 100vh;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}
@media screen and (max-height: 768px) {
  .fv {
    height: 50vw;
  }
}
@media only screen and (max-width: 767px) {
  .fv {
    height: 60vh;
  }
}
@media screen and (max-height: 650px) and (max-width: 767px) {
  .fv {
    height: 100vw;
  }
}
.fv .fvVideo {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.fv video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv .fvTxt {
  position: absolute;
  left: 5%;
  top: 47%;
}
.fv .fvTxt .ttl {
  color: #fff;
  font-size: clamp(40px, 10.097px + 3.899vw, 60px);
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.4;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.fv .fvTxt02 {
  width: 100vw;
  position: absolute;
  top: 56%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  mix-blend-mode: overlay;
}
@media only screen and (max-width: 767px) {
  .fv .fvTxt02 {
    top: 63%;
  }
}
.fv .ttl02 {
  font-size: clamp(100px, -64.464px + 21.442vw, 210px);
  mix-blend-mode: overlay;
  width: 100vw;
  -webkit-animation: flowing 15s linear infinite;
          animation: flowing 15s linear infinite;
  white-space: nowrap;
}
.fv .ttl02 span {
  color: #fff;
  font-family: "en-bold";
  letter-spacing: 1px;
  font-weight: 700;
  mix-blend-mode: overlay;
  text-align: center;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
  line-height: 1;
  font-style: normal;
}

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

@keyframes flowing {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-184%);
            transform: translateX(-184%);
  }
}
.topMessage {
  padding-top: 20%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.topMessage.active {
  opacity: 1;
}
.topMessage::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 80%;
  top: 0;
  left: 0;
  background: url(../img/topMessageBg.png) no-repeat center top/cover;
}
.topMessage::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20%;
  left: 0;
  bottom: 0;
  background-color: #fff;
}

.topCnt {
  max-width: 650px;
  width: 100%;
}
.topCnt.--l {
  max-width: 585px;
}
.topCnt.--l2 {
  max-width: 530px;
}
.topCnt.fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topCnt {
    width: 75% !important;
    margin-left: 5%;
    max-width: 100% !important;
  }
}
@media only screen and (max-width: 767px) {
  .topCnt {
    margin-top: 4%;
    max-width: 100% !important;
  }
}

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

.topMessagePh {
  position: relative;
  z-index: 1;
}

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

.scroll-infinity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 150s infinite linear 0.5s both;
          animation: infinity-scroll-left 150s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 111.1111111111vw;
}
@media only screen and (max-width: 767px) {
  .scroll-infinity__item {
    width: 133.3333333333vw;
  }
}

.scroll-infinity__item > img {
  width: 100%;
}

#topService {
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .topServiceLinks .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.topServiceLinks .flex a {
  background-size: cover;
  background-position: center;
  min-height: 480px;
  width: 33.3333333333%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topServiceLinks .flex a {
    min-height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .topServiceLinks .flex a {
    width: 100%;
    aspect-ratio: 700/494;
    min-height: auto;
  }
}
.topServiceLinks .flex a::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.42;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(12.96%, #016ab8), color-stop(56.48%, rgba(1, 106, 184, 0)));
  background: linear-gradient(0deg, #016ab8 12.96%, rgba(1, 106, 184, 0) 56.48%);
  mix-blend-mode: multiply;
  left: 0;
  top: 0;
}
.topServiceLinks .flex a .en {
  font-family: "en-bold";
  letter-spacing: 1px;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  position: absolute;
  left: 1em;
  top: 1em;
}
@media only screen and (max-width: 767px) {
  .topServiceLinks .flex a .en {
    font-size: 2vw;
  }
}
.topServiceLinks .flex a .ja {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #016ab8), color-stop(91.33%, rgba(1, 106, 184, 0)));
  background: linear-gradient(90deg, #016ab8 50%, rgba(1, 106, 184, 0) 91.33%);
  padding: 0.2em 1em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topServiceLinks .flex a .ja {
    padding: 0.2em 0 0.2em 0.5em;
    font-size: 18px;
  }
}
.topServiceLinks .flex a .txt {
  padding: 0.8em;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  min-height: 5em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topServiceLinks .flex a .txt {
    font-size: 14px;
  }
}
.topServiceLinks .flex a .ic {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  bottom: 15px;
  right: 15px;
  height: 28px;
}
.topServiceLinks .flex a .inner {
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
}
.topServiceLinks .flex a.link1 {
  background-image: url(../img/topService01.jpg);
}
.topServiceLinks .flex a.link2 {
  background-image: url(../img/topService02.jpg);
}
.topServiceLinks .flex a.link3 {
  background-image: url(../img/topService03.jpg);
}

.h-gray {
  position: relative;
}
.h-gray::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: rgba(1, 106, 184, 0.3);
}
.h-gray:hover {
  opacity: 1;
}
.h-gray:hover::after {
  width: 100%;
}

.topProjectListWrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  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;
}

.swiper-button-prev,
.swiper-button-next {
  width: 34px;
  aspect-ratio: 1/1;
  background: url(../img/slideArw.svg) no-repeat center/contain;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}

.swiper-button-next {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.topProjectLeft {
  margin-top: 75px;
}
@media only screen and (max-width: 767px) {
  .topProjectLeft {
    margin-top: 5px;
  }
}
.topProjectLeft .inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.topProjectLeft .swiperBtnWrap {
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.topProjectLeft .swiperBtnWrap .swiper-button-prev,
.topProjectLeft .swiperBtnWrap .swiper-button-next {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  position: relative;
}

.topProjectRight {
  width: 100%;
  overflow: hidden;
}

.topProjectList .topProjectListSlide {
  height: auto;
}
.topProjectList .topProjectListSlide a {
  height: 100%;
}
.topProjectList a {
  background: #f6f6f6;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}
.topProjectList .img {
  overflow: hidden;
  aspect-ratio: 680/370;
}
.topProjectList .img img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topProjectList .text {
  padding: 1em;
}
.topProjectList a:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

#topAbout {
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#topAbout::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 101%;
  background: url(../img/topAbout.png) no-repeat center/cover;
  left: 0;
  top: 0;
}
#topAbout.bg-img-1 {
  background-image: url(../img/topAbout01-bg.jpg);
}
#topAbout.bg-img-2 {
  background-image: url(../img/topAbout02-bg.jpg);
}
#topAbout.bg-img-3 {
  background-image: url(../img/topAbout03-bg.jpg);
}
#topAbout.bg-img-4 {
  background-image: url(../img/topAbout04-bg.jpg);
}

@media only screen and (max-width: 959px) {
  .topAboutFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.topAboutList {
  width: 380px;
  max-width: 100%;
}
@media only screen and (max-width: 959px) {
  .topAboutList {
    margin-left: auto;
    margin-right: auto;
  }
}
.topAboutList * {
  color: #fff;
  font-weight: 700;
}
.topAboutList .num,
.topAboutList .en {
  font-family: "en-bold";
  letter-spacing: 1px;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .topAboutList .num,
  .topAboutList .en {
    font-size: 13px;
  }
}
.topAboutList .num {
  width: 60px;
}
.topAboutList .en {
  letter-spacing: 1px;
}
.topAboutList .ic {
  margin-top: 0.2em;
}
@media only screen and (max-width: 767px) {
  .topAboutList .ic {
    width: 30px;
  }
}
.topAboutList a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .topAboutList a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.topAboutList a .first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.topAboutList li {
  border-bottom: solid 1px #fff;
}

.topAboutImgBox {
  width: 390px;
  max-width: 100%;
  position: relative;
}
@media only screen and (max-width: 959px) {
  .topAboutImgBox {
    aspect-ratio: 388/493;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 767px) {
  .topAboutImgBox {
    max-width: 100%;
  }
}
.topAboutImgBox ul {
  width: 100%;
  position: relative;
}
.topAboutImgBox li {
  opacity: 0;
  aspect-ratio: 388/493;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topAboutImgBox li img {
  border-radius: 8px;
}
.topAboutImgBox li.active {
  opacity: 1;
}

#topRecruit {
  background-color: #fff;
}

.topRecruitBg {
  background: url(../img/topRecruitBg.png) no-repeat center/cover;
}

.topRecruitCnt {
  background: url(../img/topRecruitBg02.jpg) no-repeat center/cover;
  position: relative;
  padding: 10% 15px 5%;
}
.topRecruitCnt .ttl {
  text-align: center;
  font-family: "Circular Std";
  font-size: clamp(70px, -34.659px + 13.645vw, 140px);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 7px;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .topRecruitCnt .ttl {
    width: 300px;
  }
}
.topRecruitCnt .ttl02 {
  font-family: "en-bold";
  letter-spacing: 1px;
  letter-spacing: 2.8px;
  font-weight: 700;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.topRecruitCnt .ttl03 {
  font-family: "en-bold";
  letter-spacing: 1px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.topRecruitCnt .text {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}

.topRecruitFlex {
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media only screen and (max-width: 959px) {
  .topRecruitFlex {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .topRecruitFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.topRecruitFlex a {
  width: calc(33.3333333333% - 40px);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 305/190;
}
@media only screen and (max-width: 959px) {
  .topRecruitFlex a {
    width: calc(33.3333333333% - 13.3333333333px);
  }
}
@media only screen and (max-width: 767px) {
  .topRecruitFlex a {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
.topRecruitFlex a::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../img/ic-topRecruitLink.svg) no-repeat center/contain;
  right: 1em;
  bottom: 1em;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .topRecruitFlex a::before {
    width: 24px;
  }
}
.topRecruitFlex a .linkTtl {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.staffCard {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.staffCard .imgBox {
  aspect-ratio: 360/520;
  position: relative;
}
.staffCard .imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.staffCard .front::before,
.staffCard .back::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/topStaffImg.svg) no-repeat bottom left/50% auto;
  z-index: 1;
}
.staffCard:hover {
  opacity: 1;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}
@media only screen and (max-width: 767px) {
  .staffCard:hover {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}
.staffCard .staffCardFlex {
  row-gap: 0.3em;
  margin-top: 0.4em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.staffCard .join {
  margin-right: 1em;
}

.category-staff {
  background-color: #016AB8;
  color: #fff;
  border-radius: 100px;
  padding: 0.3em 1em;
}

.topStaffSlide .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

#topStaff {
  position: relative;
  z-index: 1;
}
#topStaff .topStaffBg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 400px;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}

.topStaffSlide {
  overflow: hidden;
}

.category-news {
  background-color: #016AB8;
  color: #fff;
  border-radius: 100px;
  padding: 0.2em 1em;
}

#topNews {
  position: relative;
}
#topNews .category-news {
  margin-left: 1em;
}
#topNews .topNewsBg {
  position: absolute;
  width: 400px;
  left: 0;
  bottom: 0;
}

.topNewsFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 95px;
     -moz-column-gap: 95px;
          column-gap: 95px;
}
@media only screen and (max-width: 959px) {
  .topNewsFlex {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .topNewsFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.topNewsFlex > * {
  width: calc(50% - 47.5px);
}
@media only screen and (max-width: 767px) {
  .topNewsFlex > * {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: solid 1px #dfdfdf;
  }
  .topNewsFlex > * .img {
    width: 42.3076923077%;
    margin-right: 3.8461538462%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .topNewsFlex > * .text {
    display: none;
  }
}
.topNewsFlex .img {
  aspect-ratio: 845/570;
  overflow: hidden;
  border-radius: 8px;
}
.topNewsFlex .img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topNewsFlex a:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.topNewsRight a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.topNewsRight a .img {
  width: 42.3076923077%;
  margin-right: 3.8461538462%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 845/570;
}
.topNewsRight a .img img {
  width: 100%;
  height: 100%;
}
.topNewsRight li + li {
  border-top: solid 1px #dfdfdf;
  margin-top: 25px;
  padding-top: 25px;
}
@media only screen and (max-width: 767px) {
  .topNewsRight li + li {
    margin-top: 15px;
    padding-top: 15px;
  }
}

#topInstagram {
  position: relative;
}
#topInstagram .topInstaBg {
  position: absolute;
  width: 400px;
  right: 0;
  bottom: 0;
}

.topInstagramCnt {
  padding: 40px 30px;
  background-color: #f6f6f6;
  position: relative;
  overflow: hidden;
  margin-top: -30px;
}
@media only screen and (max-width: 767px) {
  .topInstagramCnt {
    margin-top: -6%;
    padding: 30px 15px;
  }
}
.topInstagramCnt::before, .topInstagramCnt::after {
  content: "";
  display: block;
  position: absolute;
  width: 26.4423076923%;
  aspect-ratio: 275/380;
}
@media only screen and (max-width: 767px) {
  .topInstagramCnt::before, .topInstagramCnt::after {
    width: 75%;
  }
}
.topInstagramCnt::before {
  left: 0;
  bottom: 0;
  background: url(../img/topInstaBg02.png) no-repeat left bottom/contain;
}
.topInstagramCnt::after {
  right: 0;
  top: 0;
  background: url(../img/topInstaBg01.png) no-repeat right top/contain;
}
.topInstagramCnt .inner {
  max-width: 920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .topInstagramCnt .inner {
    gap: 10px;
  }
}
.topInstagramCnt .inner > * {
  width: calc(20% - 24px);
}
@media only screen and (max-width: 767px) {
  .topInstagramCnt .inner > * {
    width: calc(50% - 5px);
  }
}

/*==================================================
 * 下層ページ
 *================================================*/
.pageFvImg {
  height: 300px;
  position: relative;
  background-size: cover;
  background-position: center;
  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;
}
.pageFvImg::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../img/fvMask.png) no-repeat center/cover;
}

.pageFvTxt {
  position: relative;
  z-index: 1;
  margin-top: 6em;
}
.pageFvTxt * {
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.pageFvTxt .pageFv__en {
  font-size: clamp(16px, 7.029px + 1.17vw, 22px);
  font-family: "en-bold";
  letter-spacing: 1px;
  position: relative;
  padding-left: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pageFvTxt .pageFv__en::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/ic-ttl-white.svg) no-repeat center/contain;
  width: 25px;
  aspect-ratio: 1/1;
  left: 0;
  top: 50%;
  width: 21px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pageFvTxt .pageFv__ttl {
  font-size: clamp(26px, 5.068px + 2.729vw, 40px);
  line-height: 1.1;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
}

.bread {
  padding-top: 1em;
  padding-bottom: 1em;
}

.aboutPageList {
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
}
@media only screen and (max-width: 959px) {
  .aboutPageList {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .aboutPageList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
  }
}
.aboutPageList > * {
  width: calc(33.3333333333% - 46.6666666667px);
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 959px) {
  .aboutPageList > * {
    width: calc(33.3333333333% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .aboutPageList > * {
    width: 100%;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.aboutPageList > * * {
  z-index: 1;
  position: relative;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.aboutPageList > * .en {
  font-size: 14px;
  font-family: "en-bold";
  letter-spacing: 1px;
}

.footerRecruit {
  height: 430px;
  background: url(../img/footerRecBg.jpg) no-repeat center/cover;
  position: relative;
  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;
  overflow: hidden;
  z-index: 1;
}
.footerRecruit .ttl,
.footerRecruit .txt {
  color: #fff;
}
.footerRecruit::before {
  content: "";
  display: block;
  position: absolute;
  width: 680px;
  aspect-ratio: 680/505;
  background: url(../img/footerRecruitTxt.svg) repeat-y center/contain;
  left: 50%;
  top: -5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footerRecruit .inner {
  padding-left: 15px;
  padding-right: 15px;
}
.footerRecruit img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footerRecruit .ttl {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
  margin-top: 20%;
}
@media only screen and (max-width: 767px) {
  .footerRecruit .ttl {
    margin-top: -20%;
  }
}
.footerRecruit .txt {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}
.footerRecruit .left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25.390625%;
  max-width: 325px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .footerRecruit .left {
    width: 33%;
  }
}
.footerRecruit .left img {
  position: absolute;
  bottom: 0;
}
.footerRecruit .left img.img01 {
  width: 84.3076923077%;
  max-width: 274px;
  z-index: 1;
  left: 30%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.footerRecruit .left img.img02 {
  width: 73.8461538462%;
  max-width: 240px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.footerRecruit .right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28.125%;
  max-width: 360px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .footerRecruit .right {
    width: 38.125%;
  }
}
.footerRecruit .right img {
  position: absolute;
  bottom: 0;
}
.footerRecruit .right img.img01 {
  width: 75%;
  max-width: 270px;
  z-index: 1;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.footerRecruit .right img.img02 {
  width: 59.7222222222%;
  max-width: 215px;
  right: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.footerRecruit.hov .img01,
.footerRecruit.hov .img02 {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}
@media only screen and (max-width: 767px) {
  .footerRecruit::before {
    width: 110%;
    height: 100%;
    background-position: center top;
  }
  .footerRecruit:hover .img01,
  .footerRecruit:hover .img02 {
    -webkit-transform: translateY(100%) !important;
            transform: translateY(100%) !important;
  }
  .footerRecruit.active .img01,
  .footerRecruit.active .img02 {
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
  }
}

.floatRec {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 2;
  width: 100px;
  aspect-ratio: 1/1;
  background: url(../img/floatRec.svg) no-repeat center right/contain;
}
@media only screen and (max-width: 767px) {
  .floatRec {
    display: none;
  }
}
.floatRec.scrl {
  aspect-ratio: 38/120;
  width: 38px;
  background-image: url(../img/floatRecScrl.svg);
}

.spFloat {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.spFloatRec {
  height: 45px;
  background-color: #FCA50D;
  width: 50%;
  border-top: solid 2px #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: none;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  .spFloatRec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.spFloatRec img {
  width: 20px;
  margin-right: 10px;
  margin-left: 0;
}
.spFloatRec.--telBox {
  background-color: #016AB8;
}

.nextSlide + * {
  display: none;
}

ul.pdf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
ul.pdf li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #016ab8;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
ul.pdf li + li {
  margin-top: 0.5em;
}
ul.pdf li span {
  padding-left: 1.5em;
}

.floatArea {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
}
.floatArea .img01,
.floatArea .img02,
.floatArea .img03,
.floatArea .img04 {
  position: absolute;
}
.floatArea .img01 {
  right: 0;
  top: 0;
  width: 600px;
  -webkit-transform: translate(30%, -50%);
          transform: translate(30%, -50%);
}
@media only screen and (max-width: 767px) {
  .floatArea .img01 {
    width: 300px;
  }
}
.floatArea .img01 img {
  -webkit-animation: fuwafuwa01 6s infinite ease-in-out;
          animation: fuwafuwa01 6s infinite ease-in-out;
}
.floatArea .img02 {
  left: 0;
  bottom: 0;
  width: 600px;
  -webkit-transform: translate(-50%, 10%);
          transform: translate(-50%, 10%);
}
@media only screen and (max-width: 767px) {
  .floatArea .img02 {
    width: 300px;
  }
}
.floatArea .img02 img {
  -webkit-animation: fuwafuwa01 6s infinite ease-in-out;
          animation: fuwafuwa01 6s infinite ease-in-out;
}
.floatArea .img03 {
  right: 0;
  top: 0;
  width: 600px;
  -webkit-transform: translate(30%, -50%);
          transform: translate(30%, -50%);
}
@media only screen and (max-width: 767px) {
  .floatArea .img03 {
    width: 300px;
  }
}
.floatArea .img03 img {
  -webkit-animation: fuwafuwa01 6s infinite ease-in-out;
          animation: fuwafuwa01 6s infinite ease-in-out;
}
.floatArea .img04 {
  left: 0;
  bottom: 0;
  width: 500px;
  -webkit-transform: translate(0%, 10%);
          transform: translate(0%, 10%);
}
@media only screen and (max-width: 767px) {
  .floatArea .img04 {
    width: 300px;
  }
}
.floatArea .img04 img {
  -webkit-animation: fuwafuwa01 6s infinite ease-in-out;
          animation: fuwafuwa01 6s infinite ease-in-out;
}

@-webkit-keyframes fuwafuwa01 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
}

@keyframes fuwafuwa01 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
}
#messageCeo .ttl {
  font-size: clamp(60px, -89.513px + 19.493vw, 160px);
  color: #016AB8;
  font-family: "en-bold";
  letter-spacing: 1px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
#messageCeo .phWrap {
  margin-top: -5%;
  position: relative;
  z-index: 0;
}
#messageCeo .phWrap .ph {
  width: calc(100% + (100vw - 920px) / 2);
  height: 100%;
  border-radius: 32px 0 0 32px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 959px) {
  #messageCeo .phWrap .ph {
    width: calc(100% + 15px);
  }
}
#messageCeo .phWrap .ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#messageCeo .name img {
  margin-left: 1em;
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  #messageCeo .name img {
    width: 100px;
  }
}

.messageBoardFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .messageBoardFlex {
    gap: 10px;
  }
}

.messageBoardItem {
  width: calc(33.3333333333% - 13.3333333333px);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .messageBoardItem {
    width: 100%;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.messageBoardItem .img {
  max-width: 220px;
  width: 59.4594594595%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1000px;
  overflow: hidden;
}
.messageBoardItem .en {
  margin-bottom: 20px;
}
.messageBoardItem .nameWrap * {
  text-align: center;
  font-weight: 700;
}
.messageBoardItem .back,
.messageBoardItem .front {
  padding: 20px 30px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .messageBoardItem .back,
  .messageBoardItem .front {
    padding: 20px 15px;
  }
}
.messageBoardItem .back {
  background-color: #f6f6f6;
  position: absolute;
}
.messageBoardItem .front {
  background-color: #016ab8;
  position: relative;
}
.messageBoardItem .front .img {
  position: relative;
}
.messageBoardItem .front .img::before {
  content: "";
  display: block;
  position: absolute;
  width: 110%;
  height: 110%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(1, 106, 184, 0.7);
}
.messageBoardItem .front .img .nameWrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
}
.messageBoardItem .front .img .nameWrap * {
  color: #fff;
}
.messageBoardItem .front .en {
  opacity: 0;
}
.messageBoardItem .front .txt {
  color: #fff;
}
.messageBoardItem:nth-of-type(even) .back {
  background-color: #e0eef8;
}

/*==================================================
 * 会社概要
 *================================================*/
.profileGuide ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
  row-gap: 15px;
}
@media only screen and (max-width: 767px) {
  .profileGuide ul {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 10px;
  }
}
.profileGuide ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
}
.profileGuide ul li a .ic {
  margin-left: 1em;
}
@media only screen and (max-width: 767px) {
  .profileGuide ul li a .ic {
    margin-left: 0.5em;
  }
}
.profileGuide.--recruit circle {
  fill: #FCA50D;
}

.ttlCenter .en {
  display: inline-block;
  font-family: "en-bold";
  letter-spacing: 1px;
  background: linear-gradient(87deg, #ed4b3b 9.27%, #fca50d 26.64%, #73b320 55.34%, #016ab8 80.15%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sansyaIcons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 120px;
     -moz-column-gap: 120px;
          column-gap: 120px;
}
@media only screen and (max-width: 767px) {
  .sansyaIcons {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
.sansyaIcons > div {
  position: relative;
  width: calc(33.3333333333% - 80px);
}
@media only screen and (max-width: 767px) {
  .sansyaIcons > div {
    width: calc(33.3333333333% - 33.3333333333px);
  }
}
.sansyaIcons > div .inner {
  background-color: #f6f6f6;
  border-radius: 1000px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.sansyaIcons > div::before {
  content: "";
  display: block;
  position: absolute;
  width: 44px;
  aspect-ratio: 1/1;
  background: url(../img/profile/policy-croll.svg) no-repeat center/contain;
  right: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .sansyaIcons > div::before {
    right: -35px;
    width: 20px;
  }
}
.sansyaIcons > div .img {
  height: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .sansyaIcons > div .img {
    height: 50%;
  }
}
.sansyaIcons > div .img img {
  width: 85px;
}
@media only screen and (max-width: 767px) {
  .sansyaIcons > div .img img {
    max-width: 34%;
  }
}
.sansyaIcons > div .txt {
  height: 40%;
  background-color: #016ab8;
  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;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .sansyaIcons > div .txt {
    height: 50%;
  }
}
.sansyaIcons > div .txt span {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 0.5em;
}
@media only screen and (max-width: 959px) {
  .sansyaIcons > div .txt span {
    font-size: 15px;
    padding-bottom: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .sansyaIcons > div .txt span {
    font-size: 2vw;
    padding-bottom: 1.4em;
  }
}
.sansyaIcons > div:last-of-type::before {
  content: none;
}

@-webkit-keyframes hurueru {
  0% {
    -webkit-transform: translate(0px, 0px) rotateZ(0deg);
            transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    -webkit-transform: translate(2px, 2px) rotateZ(1deg);
            transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    -webkit-transform: translate(0px, 2px) rotateZ(0deg);
            transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    -webkit-transform: translate(2px, 0px) rotateZ(-1deg);
            transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotateZ(0deg);
            transform: translate(0px, 0px) rotateZ(0deg);
  }
}

@keyframes hurueru {
  0% {
    -webkit-transform: translate(0px, 0px) rotateZ(0deg);
            transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    -webkit-transform: translate(2px, 2px) rotateZ(1deg);
            transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    -webkit-transform: translate(0px, 2px) rotateZ(0deg);
            transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    -webkit-transform: translate(2px, 0px) rotateZ(-1deg);
            transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotateZ(0deg);
            transform: translate(0px, 0px) rotateZ(0deg);
  }
}
.valueIcons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .valueIcons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 15px;
    align-items: center;
  }
}
.valueIcons > div {
  width: 270px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  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: 30px;
}
.valueIcons > div:first-of-type {
  background-image: url(../img/profile/value01Bg.svg);
}
.valueIcons > div:last-of-type {
  background-image: url(../img/profile/value02Bg.svg);
}
.valueIcons .cross {
  width: 45px;
  margin-left: 40px;
  margin-right: 40px;
}
@media only screen and (max-width: 959px) {
  .valueIcons .cross {
    width: 20px;
    margin-left: 15px;
    margin-right: 15px;
  }
}

.profileRecUl {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .profileRecUl {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 0;
  }
}
.profileRecUl li {
  width: calc(20% - 24px);
  text-align: center;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../img/profile/recBg.png) no-repeat center/120%;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 959px) {
  .profileRecUl li {
    width: calc(33.3333333333% - 24px);
  }
}
@media only screen and (max-width: 767px) {
  .profileRecUl li {
    width: calc(33.3333333333% - 12px);
  }
}
.profileRecUl li * {
  text-align: center;
}
.profileRecUl li .num {
  background-color: #016AB8;
  color: #fff;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  padding: 0.2em 1em;
  border-radius: 5px;
}
.profileRecUl li.active .ttl {
  color: #fff;
  text-shadow: 1px 2px 1px #000;
}

.profileRecUlCnt {
  background-color: #016AB8;
  border-radius: 8px;
}
.profileRecUlCnt li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: visible;
}
.profileRecUlCnt li::before {
  content: "";
  display: block;
  position: absolute;
  border-bottom: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-style: solid;
  border-top: 16px solid #016AB8;
  top: 0;
  height: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%) scale(1, -1);
          transform: translate(-50%, -100%) scale(1, -1);
  width: 0;
}
.profileRecUlCnt li .inner {
  padding: 2em 15px;
  width: 100%;
  background: url(../img/profile/reculBg.svg) no-repeat center right/auto 100%;
  position: relative;
}
@media only screen and (max-width: 959px) {
  .profileRecUlCnt li .inner {
    background-size: auto 50%;
    background-position: right bottom;
  }
}
.profileRecUlCnt li .inner .mSp {
  display: none;
}
.profileRecUlCnt li .inner .text {
  max-width: 680px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.profileRecUlCnt li .inner .num {
  color: #fff;
  opacity: 0.2;
  font-family: "en-bold";
  letter-spacing: 1px;
  font-size: clamp(100px, -124.269px + 29.24vw, 250px);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
}
.profileRecUlCnt li:first-of-type::before {
  left: 9%;
}
@media only screen and (max-width: 959px) {
  .profileRecUlCnt li:first-of-type::before {
    left: 16%;
  }
}
.profileRecUlCnt li:nth-of-type(2)::before {
  left: 29%;
}
@media only screen and (max-width: 959px) {
  .profileRecUlCnt li:nth-of-type(2)::before {
    left: auto;
  }
}
@media only screen and (max-width: 959px) {
  .profileRecUlCnt li:nth-of-type(3)::before {
    left: 84%;
  }
}
.profileRecUlCnt li:nth-of-type(4)::before {
  left: 71%;
}
@media only screen and (max-width: 959px) {
  .profileRecUlCnt li:nth-of-type(4)::before {
    left: 33%;
  }
}
.profileRecUlCnt li:nth-of-type(5)::before {
  left: 91%;
}
@media only screen and (max-width: 959px) {
  .profileRecUlCnt li:nth-of-type(5)::before {
    left: 67%;
  }
}

#profilePh {
  overflow: hidden;
}
#profilePh .swiper-slide {
  height: 430px;
}
@media only screen and (max-width: 767px) {
  #profilePh .swiper-slide {
    height: 200px;
  }
}
.historyBlock {
  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;
  background: url(../img/profile/historyBg.jpg) no-repeat center/cover;
  padding: 30px 15px;
  height: 290px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .historyBlock {
    height: 220px;
  }
}
.historyBlock::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.breadcrumbs {
  padding-top: 15px;
  padding-bottom: 15px;
}
.breadcrumbs .current-item {
  font-weight: 700;
}
.breadcrumbs > * {
  font-size: 12px;
  position: relative;
  padding-right: 1em;
  margin-right: 1em;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs > * {
    font-size: 12px;
  }
}
.breadcrumbs > *::before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 10px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/bread.png) no-repeat center/contain;
}
.breadcrumbs > *:last-of-type::before {
  content: none;
}

/*==================================================
 * 事業内容
 *================================================*/
.serviceItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media only screen and (max-width: 767px) {
  .serviceItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.serviceItem .txt {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  padding-right: 55px;
}
@media only screen and (max-width: 767px) {
  .serviceItem .txt {
    width: 100%;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}
.serviceItem .ttl {
  position: relative;
  padding-top: 1em;
}
.serviceItem .ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 55px;
  height: 4px;
  background-color: #016AB8;
  left: 0;
  top: 0;
}
.serviceItem .subTtl {
  border-bottom: solid 2px #016AB8;
  padding-bottom: 0.2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.serviceItem .ph {
  margin-left: -120px;
}
@media only screen and (max-width: 1279px) {
  .serviceItem .ph {
    margin-left: auto;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.serviceItem .vertical {
  position: absolute;
  right: 0;
  top: 0;
}
.serviceItem:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .serviceItem:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.serviceItem:nth-child(odd) .txt {
  padding-right: 0;
  padding-left: 55px;
}
@media only screen and (max-width: 767px) {
  .serviceItem:nth-child(odd) .txt {
    padding-left: 40px;
  }
}
.serviceItem:nth-child(odd) .ph {
  margin-left: auto;
  margin-right: -120px;
}
@media only screen and (max-width: 1279px) {
  .serviceItem:nth-child(odd) .ph {
    margin-right: auto;
  }
}
.serviceItem:nth-child(odd) .vertical {
  right: auto;
  left: 0;
}

.serviceFeatureItem {
  position: relative;
}
.serviceFeatureItem::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  background: url(../img/service/featureBg.png) no-repeat center/100% 100%;
}
@media only screen and (max-width: 767px) {
  .serviceFeatureItem::before {
    width: calc(100% + 15px);
    height: calc(100% + 15px);
  }
}
.serviceFeatureItem .ttl {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -55%);
          transform: translate(-50%, -55%);
  line-height: 1;
  z-index: 2;
}
.serviceFeatureItem .inner {
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
  background-color: #f6f6f6;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .serviceFeatureItem .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 15px;
  }
}
.serviceFeatureItem .inner > * {
  width: calc(50% - 22.5px);
}
@media only screen and (max-width: 767px) {
  .serviceFeatureItem .inner > * {
    width: 100%;
  }
}

#serviceProject .swiper-button-next,
#serviceProject .swiper-button-prev {
  position: absolute;
}
#serviceProject .swiper-button-next {
  -webkit-transform: translateX(calc(100% + 30px)) scale(-1, 1);
          transform: translateX(calc(100% + 30px)) scale(-1, 1);
}
#serviceProject .swiper-button-prev {
  -webkit-transform: translateX(calc(-100% - 30px));
          transform: translateX(calc(-100% - 30px));
}

/*==================================================
 * 環境活動
 *================================================*/
.envIntroTxt {
  width: 52%;
}
@media only screen and (max-width: 767px) {
  .envIntroTxt {
    width: 100%;
  }
}

.envIntroPh {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .envIntroPh {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .envIntroFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.envSubTtl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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;
  border-radius: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.3em 1em;
}

.envIntroNaiyo {
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
}
@media only screen and (max-width: 767px) {
  .envIntroNaiyo {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 10px;
  }
}

.envIntroNaiyoItem {
  background-color: #e0eef8;
  padding: 30px 15px;
  width: calc(25% - 21px);
}
@media only screen and (max-width: 767px) {
  .envIntroNaiyoItem {
    width: calc(50% - 5px);
  }
}

.subBox {
  background-color: #f6f6f6;
  padding: 30px 20px;
}

#envEco .serviceItem .ph {
  margin-left: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #envEco .serviceItem .ph {
    margin-left: auto;
    margin-right: auto;
  }
}
#envEco .serviceItem .ph img {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
#envEco .serviceItem .txt {
  padding-right: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cleanFlex {
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media only screen and (max-width: 767px) {
  .cleanFlex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }
}

.cleanItem {
  width: calc(25% - 45px);
}
@media only screen and (max-width: 767px) {
  .cleanItem {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .cleanItem .img {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.kijunBox {
  background: #f7fafc;
  padding: 40px 15px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .kijunBox {
    padding: 35px 15px 30px;
  }
}
.kijunBox .inner {
  max-width: 780px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.kijunBox .checkUl {
  -webkit-column-gap: 0.8em;
     -moz-column-gap: 0.8em;
          column-gap: 0.8em;
  row-gap: 0.4em;
}
.kijunBox .envSubTtl {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.checkUl li {
  position: relative;
  padding-left: 30px;
}
.checkUl li::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/check.svg) no-repeat center/contain;
}
.checkUl.--white li::before {
  background-image: url(../img/check-white.svg);
}

.jissekiBox .envSubTtl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0;
  margin-right: 1em;
}

@media only screen and (max-width: 767px) {
  .jissekiFlex02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.jissekiFlex02 .ph {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .jissekiFlex02 .ph {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
.jissekiFlex02 img {
  -webkit-box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

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

/*==================================================
 * スタッフ紹介
 *================================================*/
.typecheckHeadTtl {
  background: linear-gradient(88deg, #ff412f 0.41%, #fca50d 34.21%, #73b320 66.33%, #016ab8 92.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 20px 30px 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .typecheckHeadTtl {
    padding: 20px 15px 0;
  }
}
.typecheckHeadTtl::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  aspect-ratio: 260/63;
  background: url(../img/staff/typecheckHeadTtlBg.png) no-repeat center top/100% 65%;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.tagsWrap {
  padding: 60px 15px 60px;
  background: #f9f9f9;
  margin-top: -50px;
}
.tagsWrap > .cntM {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
@media only screen and (max-width: 959px) {
  .tagsWrap > .cntM {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.tagsWrap .cntTtl {
  width: 250px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 959px) {
  .tagsWrap .cntTtl {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .tagsWrap .cntTtl {
    margin-bottom: 15px;
  }
}
.tagsWrap.stafftagsWrap {
  padding: 40px 15px;
}

.tagsUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.8em;
     -moz-column-gap: 0.8em;
          column-gap: 0.8em;
  row-gap: 0.6em;
  font-size: 16px;
}
@media only screen and (max-width: 959px) {
  .tagsUl {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .tagsUl {
    font-size: 12px;
  }
}
.tagsUl li {
  display: block;
  cursor: pointer;
}
.tagsUl li > * {
  color: #016AB8;
  border: solid 1px #016AB8;
  border-radius: 100px;
  padding: 0.3em 1.2em;
  background-color: #fff;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tagsUl li > *:hover {
  opacity: 1;
  color: #fff;
  background-color: #016AB8;
}
.tagsUl.staffTags li > * {
  padding: 0.1em 1em;
  font-size: 14px;
}
.tagsUl.staffTags li.active > * {
  color: #fff;
  background-color: #016AB8;
}

.typecheckFlex {
  -webkit-column-gap: 36px;
     -moz-column-gap: 36px;
          column-gap: 36px;
  row-gap: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 959px) {
  .typecheckFlex {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 30px;
  }
}
.typecheckFlex .mix {
  display: none;
}
.typecheckFlex > * {
  width: calc(33.3333333333% - 24px);
}
@media only screen and (max-width: 959px) {
  .typecheckFlex > * {
    width: calc(50% - 13.3333333333px);
  }
}
.typecheckFlex > * .staffCard:hover {
  -webkit-transform: none;
          transform: none;
}

.recruitOtherPagesFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
}
@media only screen and (max-width: 959px) {
  .recruitOtherPagesFlex {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitOtherPagesFlex {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.recruitOtherPagesFlex > a {
  width: calc(25% - 21px);
  background-color: #016AB8;
  color: #fff;
  border-radius: 8px;
  height: 125px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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-top: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 959px) {
  .recruitOtherPagesFlex > a {
    width: calc(25% - 9px);
  }
}
@media only screen and (max-width: 767px) {
  .recruitOtherPagesFlex > a {
    width: calc(50% - 5px);
  }
}
.recruitOtherPagesFlex > a * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recruitOtherPagesFlex > a .ic {
  position: relative;
}
.recruitOtherPagesFlex > a .ic::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  aspect-ratio: 80/48;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-53%, -55%);
          transform: translate(-53%, -55%);
  background: url(../img/common_recruit/ic-recruitOtherPagesLinkHov.svg) no-repeat center/contain;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.recruitOtherPagesFlex > a:hover {
  opacity: 1;
}
@media print, screen and (min-width: 768px) {
  .recruitOtherPagesFlex > a:hover {
    width: 35%;
  }
}
.recruitOtherPagesFlex > a:hover svg circle {
  fill: #6ebefa;
}
.recruitOtherPagesFlex > a:hover svg path {
  fill: #fff;
}
.recruitOtherPagesFlex > a:hover .ic::before {
  width: 80px;
}
.recruitOtherPagesFlex > a .ic {
  margin-top: 8px;
}
.recruitOtherPagesFlex.--02 a {
  background-color: #FCA50D;
}
.recruitOtherPagesFlex.--02 a svg path {
  fill: #FCA50D;
}
.recruitOtherPagesFlex.--02 a:hover svg circle {
  fill: #fff;
}

.clickhere {
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .clickhere img {
    max-width: 120px;
  }
}

/*==================================================
 * インタビュー
 *================================================*/
.intMv,
.intMvInner,
.intMv02 {
  max-width: 100%;
}
@media only screen and (min-width: 1281px) {
  .intMv,
  .intMvInner,
  .intMv02 {
    height: 585px;
  }
}
@media only screen and (max-width: 767px) {
  .intMv,
  .intMvInner,
  .intMv02 {
    height: 400px;
  }
}
.intMv {
  aspect-ratio: 1280/585;
  position: relative;
}

.intTtl {
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 1;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  font-size: clamp(60px, -29.708px + 11.696vw, 120px);
  padding-right: 15px;
}

.intMvInner {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

.intContents {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.intTheme {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 2em;
}
.intTheme::before, .intTheme::after {
  position: absolute;
  display: block;
  color: #016AB8;
  top: 0;
  font-size: clamp(50px, -39.708px + 11.696vw, 110px);
  line-height: 1;
}
.intTheme::before {
  content: "“";
  left: 0;
}
.intTheme::after {
  content: "”";
  right: 0;
}

.intData {
  background: #f9f9f9;
  padding: 0 15px;
}
.intData .inner {
  max-width: 590px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .intData .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.intData .inner > * {
  width: 50%;
  position: relative;
  padding-top: 35px;
  padding-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .intData .inner > * {
    width: 100%;
    padding-top: 20px;
  }
}
.intData .inner .ttl {
  background-color: #016AB8;
  color: #fff;
  font-family: "en-bold";
  letter-spacing: 1px;
  padding: 0.4em 1.5em;
  border-radius: 1000px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.intData .inner .nameWrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intData .nameBox {
  padding-right: 15px;
}
@media only screen and (max-width: 767px) {
  .intData .dataBox {
    padding-bottom: 15px;
  }
}
.intData .dataBox table {
  width: 100%;
}
.intData .dataBox table th,
.intData .dataBox table td {
  text-align: left;
  padding-block: 0.4em;
  vertical-align: middle;
}
.intData .dataBox table th {
  padding-right: 15px;
  width: 120px;
}
.intData .dataBox table td {
  line-height: 1.4;
}
.intData .dataBox table tr + tr {
  border-top: solid 1px #8999a5;
}

.qTtl {
  color: #016AB8;
  font-family: "en-bold";
  letter-spacing: 1px;
  position: relative;
  padding-left: 45px;
}
.qTtl::before {
  content: "";
  display: block;
  position: absolute;
  width: 35px;
  height: 1px;
  background-color: #016AB8;
  left: 0;
  top: 50%;
}

.intPrivateBlock {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  background: #f9f9f9;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .intPrivateBlock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 15px;
  }
}
.intPrivateBlock::before, .intPrivateBlock::after {
  position: absolute;
  display: block;
  color: #016AB8;
  top: 0;
  font-size: clamp(50px, -39.708px + 11.696vw, 110px);
  line-height: 1;
}
.intPrivateBlock::before {
  content: "“";
  left: 0;
}
.intPrivateBlock::after {
  content: "”";
  right: 0;
}
.intPrivateBlock::before, .intPrivateBlock::after {
  line-height: 0.5;
}
.intPrivateBlock::before {
  top: 0;
  bottom: auto;
}
.intPrivateBlock::after {
  top: auto;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.intPrivateBlock .ph {
  width: calc(50% - 30px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .intPrivateBlock .ph {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.intBread {
  padding-top: 6%;
}

/*==================================================
 * 採用情報
 *================================================*/
.btnEntry {
  bottom: 170px;
  position: fixed;
  right: 30px;
  width: 140px;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  .btnEntry {
    right: 5px;
    bottom: 170px;
    width: 80px;
  }
}

.recruitFv {
  aspect-ratio: 1280/900;
  background: url(../img/recruit/topBg.png) no-repeat center top/100% auto;
  position: relative;
}
.recruitFv .cmnBtn,
.recruitFv .recruitFvLogo,
.recruitFv .recruitFvTxt {
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: textBlur 1.7s;
          animation: textBlur 1.7s;
}
.recruitFv .recruitFvLogo {
  width: 15.625%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 20%;
}
.recruitFv .recruitFvTxt {
  width: 56.71875%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 25vw;
  position: fixed;
}
.recruitFv .recruitFvTxt img {
  width: 100%;
}
.recruitFv .cmnBtn {
  left: 50%;
  bottom: 20%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .recruitFv .cmnBtn {
    bottom: 5%;
    width: 250px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitFv {
    aspect-ratio: 1/1;
  }
  .recruitFv .recruitFvLogo {
    top: 30%;
    width: 26%;
  }
  .recruitFv .recruitFvTxt {
    top: 50vw;
    width: 65%;
  }
}
.recruitFv.scrl .recruitFvLogo,
.recruitFv.scrl .cmnBtn {
  opacity: 0;
}

@-webkit-keyframes textBlur {
  0% {
    opacity: 0;
    -webkit-filter: blur(7px);
            filter: blur(7px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes textBlur {
  0% {
    opacity: 0;
    -webkit-filter: blur(7px);
            filter: blur(7px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.recruitFvBottom {
  position: relative;
}
.recruitFvBottom::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, rgba(255, 255, 255, 0)), color-stop(1%, rgba(255, 255, 255, 0.08)), color-stop(6%, rgba(255, 255, 255, 0.5)), color-stop(12%, rgba(255, 255, 255, 0.75)), color-stop(19%, white), to(white));
  -webkit-mask: linear-gradient(transparent, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 1%, rgba(255, 255, 255, 0.5) 6%, rgba(255, 255, 255, 0.75) 12%, white 19%, white 100%);
          mask: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, rgba(255, 255, 255, 0)), color-stop(1%, rgba(255, 255, 255, 0.08)), color-stop(6%, rgba(255, 255, 255, 0.5)), color-stop(12%, rgba(255, 255, 255, 0.75)), color-stop(19%, white), to(white));
          mask: linear-gradient(transparent, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 1%, rgba(255, 255, 255, 0.5) 6%, rgba(255, 255, 255, 0.75) 12%, white 19%, white 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .recruitFvBottom .text {
    font-size: 15px;
  }
}

.fixHeader {
  position: relative;
}
.fixHeader.fixed {
  position: fixed;
  left: 0;
  top: 0;
}

.recruitBg01,
.recruitBg02,
.recruitBg03 {
  position: absolute;
}

.recruitBg01 {
  right: 0;
  top: 0;
  width: 420px;
}
@media only screen and (max-width: 767px) {
  .recruitBg01 {
    width: 40%;
  }
}

.recruitBg02 {
  left: 0;
  bottom: 0;
  width: 300px;
}
@media only screen and (max-width: 767px) {
  .recruitBg02 {
    width: 40%;
  }
}

.recruitBg03 {
  right: 0;
  bottom: 0;
  width: 480px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media only screen and (max-width: 767px) {
  .recruitBg03 {
    width: 40%;
  }
}

#recruitPerson {
  background-color: #f9f9f9;
  position: relative;
}
#recruitPerson::before, #recruitPerson::after {
  content: "";
  display: block;
  position: absolute;
  width: 130px;
  height: 100%;
}
@media only screen and (max-width: 959px) {
  #recruitPerson::before, #recruitPerson::after {
    width: 90px;
  }
}
@media only screen and (max-width: 767px) {
  #recruitPerson::before, #recruitPerson::after {
    width: 45px;
  }
}
#recruitPerson::before {
  left: 0;
  bottom: 0;
  background: url(../img/recruit/personBgLeft.png) no-repeat left bottom/contain;
}
#recruitPerson::after {
  right: 0;
  top: 0;
  background: url(../img/recruit/personBgRight.png) no-repeat right top/contain;
}

.cardWrap .inner {
  max-width: 575px;
  aspect-ratio: 575/590;
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .cardWrap .inner {
    width: 350px;
  }
}
.cardWrap .inner > * {
  position: absolute;
  max-width: 340px;
  width: 100%;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 50%;
  top: 50%;
  pointer-events: none;
}
.cardWrap .inner > *.appear {
  pointer-events: all;
}
.cardWrap .inner > * img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .cardWrap .inner > * {
    max-width: 200px;
  }
}
.cardWrap .inner > *:not(.move):hover img {
  -webkit-transform: translate(0, -10%);
          transform: translate(0, -10%);
}
.cardWrap .inner > *.move {
  top: -600px;
}
.cardWrap .inner > *.card01 {
  -webkit-transform: translate(-50%, -50%) rotate(5deg);
          transform: translate(-50%, -50%) rotate(5deg);
}
.cardWrap .inner > *.card01.appear {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.cardWrap .inner > *.card01.move {
  -webkit-transform: translate(130%, -50%) rotate(-10deg);
          transform: translate(130%, -50%) rotate(-10deg);
}
.cardWrap .inner > *.card01:hover img {
  -webkit-transform: none;
          transform: none;
}
.cardWrap .inner > *.card02 {
  -webkit-transform: translate(-50%, -50%) rotate(-10deg);
          transform: translate(-50%, -50%) rotate(-10deg);
}
.cardWrap .inner > *.card02.appear {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.cardWrap .inner > *.card02.move {
  z-index: 5;
}
.cardWrap .inner > *.card03 {
  -webkit-transform: translate(-50%, -50%) rotate(-15deg);
          transform: translate(-50%, -50%) rotate(-15deg);
}
.cardWrap .inner > *.card03.appear {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.cardWrap .inner > *.card03.move {
  z-index: 4;
}
.cardWrap .inner > *.card04 {
  -webkit-transform: translate(-50%, -50%) rotate(20deg);
          transform: translate(-50%, -50%) rotate(20deg);
}
.cardWrap .inner > *.card04.appear {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.cardWrap .inner > *.card04.move {
  z-index: 3;
}
.cardWrap .inner > *.card05 {
  -webkit-transform: translate(-50%, -50%) rotate(6deg);
          transform: translate(-50%, -50%) rotate(6deg);
}
.cardWrap .inner > *.card05.appear {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.cardWrap .inner > *.card05.move {
  z-index: 2;
}
.cardWrap .inner > *.card06 {
  -webkit-transform: translate(-50%, -50%) rotate(-2deg);
          transform: translate(-50%, -50%) rotate(-2deg);
}
.cardWrap .inner > *.card06.move {
  top: -500px;
  z-index: 1;
}

#recruitSkill .innerBg {
  background: url(../img/recruit/bg.jpg) no-repeat center/100% auto;
}
#recruitSkill .recruitBg01 {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.pointTop {
  aspect-ratio: 1280/560;
}

#recruitPoint .recruitBg02 {
  left: 0;
  top: 0;
  width: 400px;
}
@media only screen and (max-width: 767px) {
  #recruitPoint .recruitBg02 {
    width: 40%;
  }
}

.recPointCard {
  display: block;
}
@media only screen and (max-width: 767px) {
  .recPointCard {
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.recPointCard .back {
  background-color: #ed4b3b;
}
@media only screen and (max-width: 767px) {
  .recPointCard .back .text {
    text-align: center;
  }
}
.recPointCard .front {
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  width: 100%;
}
.recPointCard .front::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.recPointCard .back,
.recPointCard .front {
  padding: 40px 15px;
}
@media only screen and (max-width: 959px) {
  .recPointCard .back,
  .recPointCard .front {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.recPointCard .back::after,
.recPointCard .front::after {
  content: "";
  display: block;
  position: absolute;
  width: 15%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url(../img/recruit/pointBg.png) no-repeat left bottom/contain;
}
.recPointCard .back .inner,
.recPointCard .front .inner {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .recPointCard .back .inner,
  .recPointCard .front .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 1;
  }
}
.recPointCard .back .inner .img,
.recPointCard .front .inner .img {
  width: 45.7142857143%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .recPointCard .back .inner .img,
  .recPointCard .front .inner .img {
    width: 100%;
    max-width: 320px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
.recPointCard .back .inner .text,
.recPointCard .front .inner .text {
  width: 100%;
}
.recPointCard .back .inner .num,
.recPointCard .front .inner .num {
  font-size: clamp(40px, 4.117px + 4.678vw, 64px);
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
}
.recPointCard .back .ic,
.recPointCard .front .ic {
  position: absolute;
  right: 40px;
  bottom: 40px;
  aspect-ratio: 1/1;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 959px) {
  .recPointCard .back .ic,
  .recPointCard .front .ic {
    width: 30px;
    height: 30px;
    right: 20px;
    bottom: 30px;
  }
}
.recPointCard .back .ic svg,
.recPointCard .front .ic svg {
  width: 100%;
  height: 100%;
}
.recPointCard .front .num {
  font-size: clamp(40px, -13.825px + 7.018vw, 76px);
}
.recPointCard.--red .back {
  background-color: #ed4b3b;
}
.recPointCard.--red .front::before {
  background-color: rgba(237, 75, 59, 0.7);
}
.recPointCard.--red .ic svg path {
  fill: #ed4b3b;
}
.recPointCard.--green .back {
  background-color: #73b320;
}
.recPointCard.--green .front::before {
  background-color: rgba(115, 179, 32, 0.7);
}
.recPointCard.--green .ic svg path {
  fill: #73b320;
}
.recPointCard.--blue .back {
  background-color: #016ab8;
}
.recPointCard.--blue .front::before {
  background-color: rgba(1, 106, 184, 0.7);
}
.recPointCard.--blue .ic svg path {
  fill: #016ab8;
}

#recruitInfo {
  background-color: #FCA50D;
  overflow: hidden;
  position: relative;
}
#recruitInfo::before {
  content: "";
  display: block;
  position: absolute;
  width: 280px;
  height: 100%;
  background: url(../img/recruit/infoBg.png) no-repeat right top/auto 100%;
  right: 0;
  top: 0;
}
#recruitInfo .inner {
  padding: 30px;
  max-width: 580px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
#recruitInfo .text .checkUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1.5em;
     -moz-column-gap: 1.5em;
          column-gap: 1.5em;
}
#recruitInfo .img {
  position: absolute;
  width: 600px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-100%);
          transform: translateY(-50%) translateX(-100%);
}

.recruitMovieTxt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recruitMovieTxt ul li {
  font-family: "en-bold";
  letter-spacing: 1px;
  color: #fff2dc;
  font-size: clamp(80px, -39.61px + 15.595vw, 160px);
}

.recruitMovie video {
  max-width: 100%;
}

.recruitMovieTxt {
  position: absolute;
  width: 100vw;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.tourPh img {
  max-width: 480px;
  padding-left: 10px;
  padding-top: 10px;
}
@media only screen and (max-width: 767px) {
  .tourPh img {
    width: 240px;
  }
}

.faqDl dt,
.faqDl dd {
  border-radius: 8px;
  padding: 1em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.faqDl dt::before,
.faqDl dd::before {
  font-family: "en-bold";
  letter-spacing: 1px;
  font-size: 24px;
  line-height: 1;
  margin-top: 0.2em;
  padding-right: 15px;
}
.faqDl dt {
  background-color: #FCA50D;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 1;
  cursor: pointer;
  line-height: 1.5;
}
.faqDl dt::before {
  content: "Q.";
}
.faqDl dt .inner {
  font-size: 18px;
  padding-right: 2em;
  line-height: 1.5;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .faqDl dt .inner {
    font-size: 16px;
  }
}
.faqDl dd {
  background: #ffe8bf;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  margin-top: -8px;
  padding-top: 1.7em;
  display: none;
}
.faqDl dd > div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.faqDl dd > div::before {
  content: "A.";
  color: #FCA50D;
  font-family: "en-bold";
  letter-spacing: 1px;
  font-size: 24px;
  line-height: 1;
  margin-top: 0.2em;
  padding-right: 15px;
}
@media only screen and (max-width: 767px) {
  .faqDl dd {
    font-size: 13px;
  }
}
.faqDl .circle {
  width: 28px;
  aspect-ratio: 1/1;
  background-color: #fff;
  position: absolute;
  right: 15px;
  top: 1em;
  border-radius: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 1em;
}
@media only screen and (max-width: 767px) {
  .faqDl .circle {
    width: 22px;
  }
}
.faqDl .circle::before, .faqDl .circle::after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #FCA50D;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.faqDl .circle::after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
.faqDl dt.open .circle::after {
  opacity: 0;
}

.faqBottom {
  background-color: #f6f6f6;
  border-radius: 8px;
  padding: 30px 15px;
}
.faqBottom .contact {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.faqBottom .telWrap {
  margin: 1em auto;
}
.faqBottom .telWrap > div {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1em;
}
.faqBottom .tel {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-left: 34px;
  margin-right: 1em;
}
.faqBottom .tel::before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../img/recruit/ic-tel.svg) no-repeat center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .faqBottom .tel::before {
    width: 19px;
  }
}

/*==================================================
 * 採用下層
 *================================================*/
.recruitFvCover .pageFv .pageFvImg {
  position: relative;
}
.recruitFvCover .pageFv .pageFvImg::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../img/common_recruit/recruitFvCover.png) no-repeat center/cover;
}

/*==================================================
 * 魅力
 *================================================*/
#attSoil {
  background: url(../img/attractive/soliBg.jpg) no-repeat center/cover;
}
#attSoil .ttl {
  border-radius: 8px;
  background-color: #fff;
  padding: 0.6em 1.2em;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#attSoil .ttl span {
  font-weight: 700;
}
#attSoil .checkUl li::before {
  background-image: url(../img/check--orange.svg);
}

.attSoilFlex {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .attSoilFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 60px;
  }
}
.attSoilFlex > * {
  width: calc(33.3333333333% - 13.3333333333px);
}
@media only screen and (max-width: 767px) {
  .attSoilFlex > * {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

.attSoilCard {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5em;
  padding-top: 4em;
  position: relative;
}
.attSoilCard .cardTtl {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/attractive/circle.svg) no-repeat center/contain;
  width: 126px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 0.3em;
  padding-bottom: 0.7em;
}
@media only screen and (max-width: 767px) {
  .attSoilCard .cardTtl {
    width: 100px;
  }
}
.attSoilCard .cardTtl .num {
  font-family: "en-bold";
  letter-spacing: 1px;
}
.attSoilCard .cardTtl .ja {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .attSoilCard .cardTtl .ja {
    font-size: 22px;
  }
}
.attSoilCard .subTtl {
  border-bottom: dashed 1px #FCA50D;
  padding-bottom: 0.4em;
}
.attSoilCard .checkUl li {
  margin-top: 1em;
}
.attSoilCard .checkUl li::before {
  top: 0.2em;
  -webkit-transform: none;
          transform: none;
}
.attDataFlex {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .attDataFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
  }
}
.attDataFlex > * {
  width: calc(33.3333333333% - 13.3333333333px);
}
@media only screen and (max-width: 767px) {
  .attDataFlex > * {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}

.attDataCard {
  background-color: #ffeac4;
  border-radius: 8px;
  padding: 1em;
}
@media only screen and (max-width: 767px) {
  .attDataCard {
    padding: 1.5em 1em;
  }
}
.attDataCard * {
  text-align: center;
}
.attDataCard .img {
  max-width: 120px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 959px) {
  .attDataCard .img {
    max-width: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .attDataCard .img {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
  }
}
.attDataCard .ttl {
  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;
}
.attDataCard .ttl .circle {
  background-color: #FCA50D;
  width: 38px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  border-radius: 100px;
  margin-right: 0.5em;
}
.attDataCard .ttl span {
  letter-spacing: 0;
}
.attDataCard .numWrapTtl {
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
}
.attDataCard .numWrap {
  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;
}
.attDataCard .numWrap * {
  color: #FCA50D;
  font-weight: 700;
}
.attDataCard .numWrap .num {
  font-size: clamp(40px, -19.805px + 7.797vw, 80px);
  line-height: 1;
  letter-spacing: 0;
}
.attDataCard .numWrap .num.--min {
  font-size: clamp(30px, -7.378px + 4.873vw, 55px);
}
.attDataCard .numWrap .unit {
  font-size: clamp(18px, 3.049px + 1.949vw, 28px);
  line-height: 1;
  margin-bottom: 0.2em;
}
.attDataCard .numWrap > .js-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.attDataCard .jobNum,
.attDataCard .yearNum {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .attDataCard .jobNum,
  .attDataCard .yearNum {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .attDataCard .jobNum,
  .attDataCard .yearNum {
    width: 80%;
  }
}
.attDataCard .jobNum .jobName,
.attDataCard .yearNum .jobName {
  width: 50%;
  text-align: left;
  position: relative;
}
.attDataCard .jobNum .jobName .ja,
.attDataCard .yearNum .jobName .ja {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  white-space: nowrap;
}
.attDataCard .jobNum .numWrap,
.attDataCard .yearNum .numWrap {
  width: 50%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.attDataCard .yearNum {
  width: 90%;
}
@media only screen and (max-width: 767px) {
  .attDataCard .yearNum {
    width: 80%;
  }
}
.attDataCard .yearNum .jobName {
  text-align: right;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .attDataCard .yearNum .jobName {
    width: 60%;
  }
}
.attDataCard--wrap {
  display: grid;
  gap: 20px;
}
.attDataCard .fsM15 {
  font-size: clamp(20px, 2.058px + 2.339vw, 32px);
}

.seniorQFlex {
  gap: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .seniorQFlex {
    gap: 10px;
    row-gap: 20px;
  }
}
.seniorQFlex > * {
  width: calc(25% - 13.5px);
}
@media only screen and (max-width: 767px) {
  .seniorQFlex > * {
    width: calc(50% - 5px);
  }
}

.serniorQ {
  background-color: #FCA50D;
  color: #fff;
  border-radius: 100px;
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.5em;
  padding: 1em 1.5em;
  position: relative;
  font-size: 14px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .serniorQ {
    padding: 0.7em 1em;
  }
}
.serniorQ:hover {
  opacity: 0.7;
}
.serniorQ::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 10px solid #FCA50D;
  border-bottom: 0;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
.serniorQ * {
  font-weight: 700;
}
.serniorQ .txt {
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .serniorQ .ic {
    width: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .serniorQ .ic svg {
    width: 100%;
  }
}
.serniorQ .ic svg path {
  fill: #FCA50D;
}

.attSeniorArwWrap .swiper-button-prev,
.attSeniorArwWrap .swiper-button-next {
  background-image: url(../img/attractive/ic-slideArw.svg);
}
@media only screen and (max-width: 767px) {
  .attSeniorArwWrap .swiper-button-prev {
    left: 0;
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
  }
  .attSeniorArwWrap .swiper-button-next {
    right: 0;
    -webkit-transform: translateX(40%) scale(-1, 1);
            transform: translateX(40%) scale(-1, 1);
  }
}

.attSeniorMain {
  overflow: hidden;
  position: relative;
}

.seniorA {
  padding-top: 40px;
}
.seniorA .inner {
  background-color: #fff6e6;
  border-radius: 8px;
  position: relative;
  padding: 60px 15px 50px;
}
.seniorA .inner::before, .seniorA .inner::after {
  content: "";
  display: block;
  position: absolute;
  width: 22.8260869565%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
.seniorA .inner::before {
  background-image: url(../img/attractive/voice-left.png);
  background-position: left bottom;
  left: 0;
  bottom: 0;
}
.seniorA .inner::after {
  background-image: url(../img/attractive/voice-right.png);
  background-position: right top;
  right: 0;
  top: 0;
}
.seniorA .inner .numTtl {
  background-color: #FCA50D;
  border-radius: 1000px;
  width: 170px;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0.5em 0;
}
@media only screen and (max-width: 767px) {
  .seniorA .inner .numTtl {
    width: 140px;
  }
}
.seniorA .inner .numTtl::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 10px solid #FCA50D;
  border-bottom: 0;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 90%);
          transform: translate(-50%, 90%);
}
.seniorA .inner .numTtl * {
  color: #fff;
}
.seniorA .inner .numTtl .num {
  line-height: 1;
}
.seniorA .attSeniorInt {
  max-width: 740px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.seniorA .attSeniorInt .man {
  width: 115px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .seniorA .attSeniorInt .man {
    width: 70px;
  }
}
.seniorA .attSeniorInt .text {
  padding: 1.5em 2em;
  background-color: #fff;
  border-radius: 3em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .seniorA .attSeniorInt .text {
    padding: 1.2em 1em;
    border-radius: 2em;
    font-size: 13px;
  }
}
.seniorA .attSeniorInt .text span {
  color: #FCA50D;
}
.seniorA .attSeniorInt .text::before {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  aspect-ratio: 1/1;
  background: url(../img/attractive/fukidashi.svg) no-repeat center/contain;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .seniorA .attSeniorInt .text::before {
    width: 18px;
  }
}
.seniorA .attSeniorInt .intRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .seniorA .attSeniorInt .intRow {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.seniorA .attSeniorInt .intRow + .intRow {
  margin-top: 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .seniorA .attSeniorInt .intRow + .intRow {
    margin-top: 20px;
  }
}
.seniorA .attSeniorInt .intRow + .intRow .text::before {
  left: auto;
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.attMovieFlex {
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .attMovieFlex {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 20px;
  }
}
.attMovieFlex video {
  max-width: 100%;
}
.attMovieFlex > div {
  width: calc(25% - 12px);
}
@media only screen and (max-width: 767px) {
  .attMovieFlex > div {
    width: calc(50% - 5px);
  }
}

.toStaffLink {
  display: block;
  background: url(../img/common_recruit/tostaff.jpg) no-repeat center/cover;
  padding: 110px 15px 40px;
}
@media only screen and (max-width: 767px) {
  .toStaffLink {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.toStaffLink::before {
  content: "";
  display: block;
  position: absolute;
  width: 22.5%;
  height: 100%;
  background: url(../img/attractive/voice-left.png) no-repeat left bottom/contain;
  left: 0;
  bottom: 0;
}

/*==================================================
 * 事例紹介
 *================================================*/
.projectUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
@media only screen and (max-width: 767px) {
  .projectUl {
    gap: 8px;
  }
}
.projectUl li a {
  background-color: #fff;
  color: #016AB8;
  padding: 0.2em 1em;
  border: solid 1px #016AB8;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.projectUl li a:hover {
  background-color: #016AB8;
  color: #fff;
  opacity: 1;
}

.category-p {
  background-color: #016AB8;
  color: #fff;
  padding: 0.2em 1em;
  border: solid 1px #016AB8;
  border-radius: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
}

.--projectList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .--projectList {
    gap: 15px;
  }
}
.--projectList > * {
  width: calc(33.3333333333% - 20px);
  border-radius: 8px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .--projectList > * {
    width: calc(50% - 7.5px);
  }
}

.projectInfoFlex {
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
@media only screen and (max-width: 767px) {
  .projectInfoFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.projectInfoFlex > * {
  width: calc(50% - 25px);
}
@media only screen and (max-width: 767px) {
  .projectInfoFlex > * {
    width: 100%;
  }
}

.projectInfo {
  background-color: #f7f7f7;
  border-radius: 8px;
  padding: 1.5em;
}
.projectInfo dt {
  color: #016AB8;
  font-weight: 700;
  margin-bottom: 0.2em;
}
.projectInfo dd {
  letter-spacing: 0.01em;
}
.projectInfo dd + dt {
  margin-top: 1em;
}

.engineerVoice {
  background-color: #f7fafc;
  padding: 2em 3em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .engineerVoice {
    padding: 2em 1em;
  }
}
.engineerVoice .ttl {
  background-color: #016AB8;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 0.3em 1em;
  border-radius: 1000px;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.engineerVoice .ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 10px solid #016AB8;
  border-bottom: 0;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 90%);
          transform: translate(-50%, 90%);
}

.engRow .img {
  width: 85px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  border: solid 2px #016AB8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  margin-right: 30px;
}
@media only screen and (max-width: 767px) {
  .engRow .img {
    width: 60px;
    margin-right: 10px;
  }
}
.engRow + .engRow {
  margin-top: 15px;
  padding-top: 15px;
  border-top: dashed 1px #016AB8;
}

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

@media only screen and (max-width: 767px) {
  .projectListOther .swiper-button-prev {
    left: 0;
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
  .projectListOther .swiper-button-next {
    right: 0;
    -webkit-transform: translateX(25%) scale(-1, 1);
            transform: translateX(25%) scale(-1, 1);
  }
}

.pagination {
  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;
}
.pagination * {
  font-size: 14px;
}
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1em;
  margin-right: 1em;
}
.pagination ul li {
  width: 40px;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 767px) {
  .pagination ul li {
    width: 30px;
  }
}
.pagination ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
@media only screen and (max-width: 767px) {
  .pagination ul li a {
    font-size: 12px;
  }
}
.pagination ul li.current a {
  background-color: #016AB8;
  color: #fff;
}
.pagination .prev,
.pagination .next {
  color: #016AB8;
  position: relative;
}
.pagination .prev::before,
.pagination .next::before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 10px;
  background: url(../img/project/pagination-arw.svg) no-repeat center/contain;
  top: 50%;
}
.pagination .prev {
  padding-left: 20px;
}
.pagination .prev::before {
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pagination .next {
  padding-right: 20px;
}
.pagination .next::before {
  right: 0;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}

.dot span {
  width: 7px;
  height: auto;
  aspect-ratio: 1/1;
  border: solid 1px #fff;
  background-color: transparent;
}
.dot span.swiper-pagination-bullet-active {
  background-color: #fff;
}

/*==================================================
 * 給与・待遇
 *================================================*/
.salaryPrizeFlex {
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 959px) {
  .salaryPrizeFlex {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .salaryPrizeFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.salaryPrizeFlex > * {
  width: calc(33.3333333333% - 46.6666666667px);
}
@media only screen and (max-width: 959px) {
  .salaryPrizeFlex > * {
    width: calc(33.3333333333% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .salaryPrizeFlex > * {
    width: 100%;
    max-width: 260px;
  }
}

@-webkit-keyframes anim-star-fav-rotate {
  from {
    -webkit-transform: rotate(35deg);
            transform: rotate(35deg);
  }
  to {
    -webkit-transform: rotate(395deg);
            transform: rotate(395deg);
  }
}

@keyframes anim-star-fav-rotate {
  from {
    -webkit-transform: rotate(35deg);
            transform: rotate(35deg);
  }
  to {
    -webkit-transform: rotate(395deg);
            transform: rotate(395deg);
  }
}
@-webkit-keyframes anim-star-fav-opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes anim-star-fav-opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.salaryPrizeItem {
  background: url(../img/salary/prizeCircle.svg) no-repeat center/contain;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding-top: 3%;
}
.salaryPrizeItem::before {
  content: "";
  display: block;
  position: absolute;
  width: 33.3333333333%;
  aspect-ratio: 86/94;
  background: url(../img/salary/light.svg) no-repeat center/contain;
  right: 0;
  top: 0;
  -webkit-animation: anim-star-fav-rotate 30s linear infinite, anim-star-fav-opacity 1s linear infinite;
          animation: anim-star-fav-rotate 30s linear infinite, anim-star-fav-opacity 1s linear infinite;
}
.salaryPrizeItem .ic {
  position: absolute;
  left: 50%;
  top: 15%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 959px) {
  .salaryPrizeItem .ic {
    width: 25px;
  }
}
.salaryPrizeItem .text {
  margin-top: 0.5em;
  padding-top: 0.5em;
  border-top: dashed 1px #FCA50D;
  width: 70%;
  font-size: clamp(16px, 7.029px + 1.17vw, 22px);
}
.salaryPrizeItem .ttl01 {
  font-size: clamp(32px, -3.883px + 4.678vw, 56px);
}
.salaryPrizeItem .ttl02,
.salaryPrizeItem .ttl03 {
  margin-left: 0.2em;
}
.salaryPrizeItem .ttl02 {
  font-size: clamp(22px, 7.049px + 1.949vw, 32px);
}
.salaryPrizeItem .ttl03 {
  font-size: clamp(16px, 1.049px + 1.949vw, 26px);
}
.salaryPrizeItem:nth-of-type(2)::before {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.salaryCard {
  background-color: #ffeac4;
  border-radius: 8px;
  padding: 40px 15px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .salaryCard {
    padding: 30px 15px;
  }
}
.salaryCard .inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .salaryCard .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.salaryCard .inner.--l {
  max-width: 820px;
}
.salaryCard .ttl {
  width: 26.6666666667%;
  border-right: dashed 1px #FCA50D;
  padding-right: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .salaryCard .ttl {
    padding-right: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-right: none;
    border-bottom: dashed 1px #FCA50D;
    padding-bottom: 15px;
    margin-bottom: 15px;
    z-index: 2;
    text-align: center;
  }
}
.salaryCard .ic img {
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .salaryCard .ic img {
    width: 80px;
    margin-left: auto;
    margin-right: auto;
  }
}
.salaryCard .numCnt {
  width: 100%;
  padding-left: 10px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .salaryCard .numCnt {
    position: static;
  }
}
.salaryCard .numCnt::before {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 110%;
}
@media only screen and (max-width: 767px) {
  .salaryCard .numCnt::before {
    height: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.salaryCard .numCnt > * {
  position: relative;
  z-index: 1;
}
.salaryCard .numCnt .num01 {
  font-size: clamp(40px, -34.756px + 9.747vw, 90px);
  font-weight: 700;
}
.salaryCard .numCnt .num02 {
  font-size: clamp(34px, -19.825px + 7.018vw, 70px);
  font-weight: 700;
}
.salaryCard .numCnt .unit {
  font-size: clamp(20px, -9.903px + 3.899vw, 40px);
  font-weight: 700;
}
.salaryCard .floatTtl {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0.5em 1em;
  border-radius: 100px;
}
.salaryCard .icUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 0;
}
@media only screen and (max-width: 767px) {
  .salaryCard .icUl {
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
    row-gap: 15px;
  }
}
.salaryCard .icUl > * {
  width: calc(33.3333333333% - 33.3333333333px);
}
@media only screen and (max-width: 767px) {
  .salaryCard .icUl > * {
    width: calc(50% - 7px);
  }
}
.salaryCard .icUl > * img {
  margin-left: 0;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .salaryCard .icUl > * img {
    margin-right: 5px;
    width: 50px;
  }
}
.salaryCard .icUl > * > .flex + p {
  margin-top: 0.2em;
}
.salaryCard.--1 .numCnt::before {
  aspect-ratio: 232/234;
  background-image: url(../img/salary/bgMoney.png);
}
.salaryCard.--2 .numCnt::before {
  aspect-ratio: 280/248;
  background-image: url(../img/salary/bgBonus.png);
}
.salaryCard.--3 .numCnt::before {
  aspect-ratio: 1/1;
  background-image: url(../img/salary/bgAverage.png);
}

.jiki {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media only screen and (max-width: 767px) {
  .jiki {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
.jiki > * {
  font-size: clamp(18px, 9.029px + 1.17vw, 24px);
  font-weight: 700;
  background-color: #FCA50D;
  color: #fff;
  width: 100px;
  aspect-ratio: 1/1;
  border-radius: 1000%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .jiki > * {
    width: 70px;
  }
}
.jiki > *::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../img/salary/ic-plus.svg) no-repeat center/contain;
  right: 0;
  top: 50%;
  -webkit-transform: translate(145%, -50%);
          transform: translate(145%, -50%);
}
@media only screen and (max-width: 767px) {
  .jiki > *::before {
    width: 20px;
    -webkit-transform: translate(130%, -50%);
            transform: translate(130%, -50%);
  }
}
.jiki > *:last-of-type::before {
  content: none;
}

.modelcaseWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .modelcaseWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 35px;
  }
}
.modelcaseWrap > * {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .modelcaseWrap > * {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.modelcaseWrap .fukidashi {
  font-size: 12px;
  background-color: #f9f9f9;
  padding: 2em 1em;
  border-radius: 15px;
  position: relative;
  width: calc(100% - 20px);
}
@media only screen and (max-width: 767px) {
  .modelcaseWrap .fukidashi {
    width: 100%;
    font-size: 14px;
  }
}
.modelcaseWrap .fukidashi::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #f9f9f9 transparent transparent;
  border-width: 0px 30px 25px 0px;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  left: 18%;
}
@media only screen and (max-width: 767px) {
  .modelcaseWrap .fukidashi::before {
    border-width: 0px 20px 10px 0px;
  }
}
.modelcaseWrap .fukidashi ul li {
  padding-left: 1em;
  text-indent: -0.7em;
}
.modelcaseWrap .base {
  background-color: #fca50d;
  padding: 30px 15px 20px;
  margin-top: -15px;
  height: 180px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .modelcaseWrap .base {
    height: auto !important;
    padding: 1.5em 0.5em 1em;
    margin-top: -0.8em;
  }
}
.modelcaseWrap .base .age {
  position: absolute;
  font-size: clamp(13px, 5.524px + 0.975vw, 18px);
  font-weight: 700;
  color: #fca50d;
  top: 0;
  left: 0;
  -webkit-transform: translateY(calc(-100% - 10px));
          transform: translateY(calc(-100% - 10px));
  line-height: 1;
}
.modelcaseWrap .man {
  width: 70px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .modelcaseWrap .man {
    margin-top: 20px;
  }
}
.modelcaseWrap .modelcaseItem {
  width: 100%;
}
.modelcaseWrap .modelcaseItem.--2 .base {
  height: 220px;
  background: #ff8617;
}
.modelcaseWrap .modelcaseItem.--2 .age {
  color: #ff8617;
}
.modelcaseWrap .modelcaseItem.--2 .man {
  width: 85px;
}
.modelcaseWrap .modelcaseItem.--3 .base {
  height: 260px;
  background: #ff6c19;
}
.modelcaseWrap .modelcaseItem.--3 .age {
  color: #ff6c19;
}
.modelcaseWrap .modelcaseItem.--3 .man {
  width: 68px;
}
.modelcaseWrap .modelcaseItem.--4 .base {
  height: 300px;
  background: #ff6252;
}
.modelcaseWrap .modelcaseItem.--4 .age {
  color: #ff6252;
}
.modelcaseWrap .modelcaseItem.--4 .man {
  width: 77px;
}
.modelcaseWrap .modelcaseItem.--5 .base {
  height: 340px;
  background: #ed4b3b;
}
.modelcaseWrap .modelcaseItem.--5 .age {
  color: #ed4b3b;
}
.modelcaseWrap .modelcaseItem.--5 .man {
  width: 66px;
}

.modelcaseBottom {
  background-color: #fff;
  padding: 0.2em 0.5em;
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 95%;
  display: block;
  text-align: center;
  font-size: clamp(13px, 2.534px + 1.365vw, 20px);
}
@media only screen and (max-width: 767px) {
  .modelcaseBottom {
    position: relative;
    -webkit-transform: none;
            transform: none;
    left: auto;
    bottom: auto;
    text-align: left;
    width: 100%;
    background-color: #f7f7f7;
    padding: 0.5em 1em;
    margin-top: -15px;
  }
}

.wenvEduFlex {
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}
@media only screen and (max-width: 767px) {
  .wenvEduFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wenvEduFlex .ph {
  margin-right: -130px;
}
@media only screen and (max-width: 1279px) {
  .wenvEduFlex .ph {
    margin-right: 0;
  }
}

.wenvEduIcFlex {
  gap: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .wenvEduIcFlex {
    gap: 10px;
  }
}
.wenvEduIcFlex > * {
  width: calc(25% - 21px);
  border-radius: 8px;
  background-color: #ffeac4;
  padding: 30px 15px 25px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .wenvEduIcFlex > * {
    width: calc(50% - 5px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 767px) {
  .wenvEduIcFlex > * img {
    width: 100px;
  }
}
.wenvEduIcFlex > *.futan::before {
  content: "";
  display: block;
  position: absolute;
  max-width: 65px;
  width: 27.0833333333%;
  left: 0;
  top: 0;
  aspect-ratio: 65/80;
  background: url(../img/working-environment/ic-futan.svg) no-repeat center/contain;
}

.wenvActTxt {
  position: absolute;
  left: 50%;
  top: 25%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.wenvActTxt p {
  font-size: clamp(200px, 50.487px + 19.493vw, 300px);
  font-family: "en-bold";
  letter-spacing: 1px;
  color: #fff2dc;
  line-height: 1;
}

.activityPh li {
  position: relative;
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .activityPh li {
    width: 50%;
  }
}
.activityPh li img {
  max-width: 100%;
}
.activityPh li .fukidashi {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(0, -20%);
          transform: translate(0, -20%);
}
.activityPh li .fukidashi img {
  padding-left: 0;
  padding-top: 0;
}
.activityPh li .fukidashi.right {
  left: auto;
  right: 0;
  -webkit-transform: translate(20%, -20%);
          transform: translate(20%, -20%);
}
.activityPh li .fukidashi.center {
  left: 0;
  right: 0;
  margin-inline: auto;
}
.activityPh li .fukidashi.--golf {
  width: 42%;
  max-width: 127px;
}
.activityPh li .fukidashi.--hit {
  width: 42.3333333333%;
  max-width: 127px;
}
.activityPh li .fukidashi.--travel {
  width: 35.6666666667%;
  max-width: 107px;
}
.activityPh li .fukidashi.--team {
  width: 41%;
  max-width: 123px;
}
.activityPh .tourPh {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .activityPh .tourPh {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.activityPh .tourPh img {
  padding-left: 24px;
}
@media only screen and (max-width: 767px) {
  .activityPh .tourPh img {
    padding-left: 15px;
  }
}

.otherActivity {
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
.otherActivity .imgs {
  max-width: 100%;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
.otherActivity .imgs img {
  width: calc(50% - 30px);
}
@media only screen and (max-width: 767px) {
  .otherActivity .imgs img {
    margin: 0;
    width: calc(50% - 55px);
  }
}

.actItem {
  width: 350px;
}
.actItem .ttl {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: dashed 1px #FCA50D;
}
.actItem .ttl img {
  margin-left: 0;
  margin-right: 10px;
}

/*==================================================
 * NEWS
 *================================================*/
.sidebarTitle * {
  line-height: 1.4;
}
.sidebarTitle .en {
  font-size: 30px;
}
@media only screen and (max-width: 767px) {
  .sidebarTitle .en {
    font-size: 22px;
  }
}
.sidebarTitle .ja {
  color: #101922;
  margin-left: 1em;
}
@media only screen and (max-width: 767px) {
  .sidebarTitle .ja {
    font-size: 12px;
  }
}

.prevNextWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
}
@media only screen and (max-width: 767px) {
  .prevNextWrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.prevNextWrap .prev,
.prevNextWrap .next {
  position: relative;
}
.prevNextWrap .prev::before,
.prevNextWrap .next::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/slideArw.svg) no-repeat center/contain;
  width: 35px;
  top: 50%;
  aspect-ratio: 1/1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .prevNextWrap .prev::before,
  .prevNextWrap .next::before {
    width: 25px;
  }
}
.prevNextWrap .prev a {
  padding-left: 45px;
}
@media only screen and (max-width: 767px) {
  .prevNextWrap .prev a {
    padding-left: 35px;
  }
}
.prevNextWrap .prev::before {
  left: 0;
}
.prevNextWrap .next a {
  padding-right: 45px;
}
@media only screen and (max-width: 767px) {
  .prevNextWrap .next a {
    padding-right: 35px;
  }
}
.prevNextWrap .next::before {
  right: 0;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}

.relationTtl {
  padding: 0.4em 1em;
  line-height: 1.5;
}

.newsRelation ul li a {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.newsRelation ul li a .img {
  width: 20.5128205128%;
  margin-right: 0;
}

.wp-pagenavi {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
  margin-top: 5%;
}
.wp-pagenavi > * {
  width: 40px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi > * {
    width: 30px;
  }
}
.wp-pagenavi > *.current {
  background-color: #016AB8;
  color: #fff;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  font-size: 14px;
  width: 5em;
  color: #016AB8;
  aspect-ratio: unset;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    font-size: 12px;
  }
}

/* ==========================================================================
    styleの上書き
========================================================================== */
.smallTx {
  font-size: 12px;
}

@media print, screen and (min-width: 768px) {
  .entryAgentBox .logoLink + .logoLink {
    margin-left: 1em;
  }
}

.logoLink {
  background-color: #fff;
  border-radius: 1000px;
  height: 70px;
  width: 100%;
  padding-left: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.logoLink img {
  width: 190px;
  margin-left: 0;
  max-width: 70%;
}
.logoLink .arw {
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.logoLink .ic {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .logoLink {
    height: 60px;
    width: 90%;
  }
}

.engRow .img.noimg {
  border: none;
}

.projectUl li a.active {
  background-color: #016AB8;
  color: #fff;
}
.projectUl li a.active:hover {
  opacity: 0.7;
}

.pointer {
  cursor: pointer;
}

/* ==========================================================================
    custom styles
========================================================================== */
.marginS {
  margin-top: var(--spaceSizeS);
  margin-bottom: var(--spaceSizeS);
}

.profileGuide.--recruitInformation ul {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media only screen and (max-width: 767px) {
  .profileGuide.--recruitInformation dt .inner {
    font-size: 14px;
  }
}

.recruitFlowUlBlock ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recruitFlowUlBlock ul li + li {
  margin-left: 1em;
}
.recruitFlowUlBlock ul li:last-of-type .recruitFlowItem {
  border-color: #FCA50D;
  background-color: rgba(255, 162, 0, 0.14);
  background-image: repeating-linear-gradient(121deg, transparent, transparent 9px, rgba(252, 165, 13, 0.5) 9px, rgba(252, 165, 13, 0.5) 11px);
  padding-top: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 959px) {
  .recruitFlowUlBlock ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .recruitFlowUlBlock ul li {
    position: relative;
  }
}

.recruitFlowItem {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(121deg, transparent, transparent 9px, rgba(255, 216, 147, 0.6) 9px, rgba(255, 216, 147, 0.6) 11px);
  border-radius: 50%;
  border: 5px solid #ffd893;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15%;
  height: 158px;
  width: 158px;
}
@media only screen and (max-width: 767px) {
  .recruitFlowItem {
    height: 110px;
    width: 110px;
  }
}

.recruitFlowList .ic {
  margin-left: 1em;
}
.recruitFlowList .ic svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media only screen and (max-width: 767px) {
  .recruitFlowList .ic {
    margin-left: 0.5em;
  }
}
.recruitFlowList circle {
  fill: #FCA50D;
}
@media only screen and (max-width: 767px) {
  .recruitFlowList .ic {
    position: absolute;
    right: -15px;
    z-index: 2;
  }
}

.recruitScheduleTtl {
  background-color: #fff6e6;
  border-left: 9px solid #FCA50D;
  padding: 0.4em 1em;
}

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

.recruitInfoTable {
  border-collapse: collapse;
  width: 100%;
}
.recruitInfoTable th,
.recruitInfoTable td {
  border: solid 1px #b9b9b9;
  padding: 0.7em 1em;
  font-weight: 500;
}
.recruitInfoTable th {
  font-weight: 700;
  background-color: #f7f7f7;
  text-align: left;
  vertical-align: middle;
  width: 30%;
}
.recruitInfoTable td {
  background-color: #fff;
  width: 70%;
}
.recruitInfoTable td a {
  border-bottom: 2px solid #FCA50D;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.recruitInfoTable.--whiteBg {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .recruitInfoTable th,
  .recruitInfoTable td {
    padding: 0.6em;
  }
}

.faqDl.--recruitInformation dt::before {
  content: none;
}
.faqDl.--recruitInformation dd {
  padding: 2.3em 4em;
}
.faqDl.--recruitInformation dd .inner::before {
  content: none;
}
@media only screen and (max-width: 767px) {
  .faqDl.--recruitInformation dd {
    padding: 2em 0.8em;
  }
}

.recruitCmsTable .wp-block-table {
  width: 100%;
}
.recruitCmsTable table {
  background-color: #fff;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.recruitCmsTable table th,
.recruitCmsTable table td {
  border: solid 1px #b9b9b9;
  padding: 0.7em 1em;
  font-weight: 500;
}
.recruitCmsTable table th {
  font-weight: 700;
  background-color: #f7f7f7;
  text-align: left;
  vertical-align: middle;
  width: 30%;
}
.recruitCmsTable table td {
  width: 70%;
}
.recruitCmsTable table td:first-of-type {
  font-weight: 700;
  background-color: #f7f7f7;
  text-align: left;
  vertical-align: middle;
  width: 30%;
}
.recruitCmsTable table td a {
  border-bottom: 2px solid #FCA50D;
  font-weight: 700;
  letter-spacing: 0.05em;
  word-wrap: break-word;
}
.recruitCmsTable table.--whiteBg {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .recruitCmsTable table th,
  .recruitCmsTable table td {
    padding: 0.6em;
  }
  .recruitCmsTable table td {
    width: calc(100% - 120px);
  }
  .recruitCmsTable table td:first-of-type {
    width: 120px;
  }
}

.eventTagBox {
  margin-left: 2em;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .eventTagBox {
    margin-left: 0;
    font-size: 13px;
  }
}

.eventTag {
  border-radius: 5px;
  background-color: #ed4b3b;
  color: #fff;
  display: inline-block;
  padding: 0.1em 0.5em;
}

.tabArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.tab {
  padding: 0.7em 3em;
  background-color: #FCA50D;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}
.tab.active {
  background-color: #ffe8bf;
  color: #1f1f1f;
}
@media only screen and (max-width: 767px) {
  .tab {
    padding: 0.6em 1.8em;
    font-size: 16px;
  }
}

.panel {
  background-color: #ffe8bf;
  padding: 3em 3.5em;
  display: none;
}
.panel.active {
  display: block;
}
@media only screen and (max-width: 767px) {
  .panel {
    padding: 2.5em 0.6em;
  }
}

.entryBlock {
  margin-top: 5%;
  margin-inline: auto;
  padding: 1em;
  width: 75%;
}
@media only screen and (max-width: 767px) {
  .entryBlock {
    padding: 2em 0.8em;
    width: 90%;
  }
}

.entryBlockTtl span {
  position: relative;
}
.entryBlockTtl span::before, .entryBlockTtl span::after {
  content: "";
  position: absolute;
  background: #fff;
  top: 50%;
  height: 120%;
  width: 2px;
}
.entryBlockTtl span::before {
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  left: -1em;
}
.entryBlockTtl span::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: -1em;
}

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

.modal-video-close-btn {
  cursor: pointer;
}

.contactTelBox > div {
  background-color: #f9f9f9;
  padding: 2% 4%;
}

.privacyBlockBoxInner {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  padding: 5% 7%;
  overflow-y: scroll;
  max-height: 500px;
}
.privacyBlockBoxInner::-webkit-scrollbar {
  background: #e0e0e0;
  width: 3px;
  height: 3px;
}
.privacyBlockBoxInner::-webkit-scrollbar-thumb {
  background-color: #016AB8;
  border-radius: 30px;
}
@media only screen and (max-width: 767px) {
  .privacyBlockBoxInner {
    padding: 7% 4%;
    max-height: 250px;
  }
}

.ulTypeG li {
  margin: 5px 20px 5px 10px;
  list-style-type: none !important;
  text-indent: -2em;
  padding-left: 4em;
}
@media only screen and (max-width: 767px) {
  .ulTypeG li {
    text-indent: -2.7em;
    padding-left: 2em;
  }
}

.olTypeA li {
  margin-bottom: 10px;
}

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