@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: #17377c;
  --mainColorLight: #0958cb;
  --subColor: #ea5514;
}

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

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

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

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

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

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

.mainColorExLight {
  color: #f2f2f2;
}

.bgMainColorExLight {
  background-color: #f2f2f2;
}

.mainColorUlLight {
  color: #f6f7f9;
}

.bgMainColorUlLight {
  background-color: #f6f7f9;
}

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

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

.subColorDeep {
  color: #e3e3fb;
}

.bgSubColorDeep {
  background-color: #e3e3fb;
}

.bgSubColorLight {
  background-color: #ff6f00;
}

.compColor {
  color: #ecfe02;
}

.bgCompColor {
  background-color: #ecfe02;
}

.grayColor {
  color: #dedede;
}

.bgGrayColor {
  background-color: #dedede;
}

.grayColorLight {
  color: #dcdcdc;
}

.bgGrayColorLight {
  background-color: #dcdcdc;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

.blueColor {
  color: #1c7aca;
}

.bgBlueColor {
  background-color: #1c7aca;
}

.yeColor {
  color: #f39004;
}

.bgYeColor {
  background-color: #f39004;
}

.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(rgb(255, 178, 90)), to(rgb(255, 143, 90)));
  background: -webkit-linear-gradient(left, rgb(255, 178, 90) 0%, rgb(255, 143, 90) 100%);
  background: linear-gradient(90deg, rgb(255, 178, 90) 0%, rgb(255, 143, 90) 100%);
}

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

.grayLight {
  color: #9a9a9a;
}

.greenColor {
  color: #358f5f;
}

/*フォント系*/
: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;
}

.f-black {
  font-weight: 900;
}

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

.f-bold-all {
  font-weight: 600;
}
.f-bold-all * {
  font-weight: 600;
}

.f-medium {
  font-weight: 500 !important;
}
.f-medium-imp {
  font-weight: 500 !important;
}

.f-medium-all {
  font-weight: 500 !important;
}
.f-medium-all * {
  font-weight: 500 !important;
}

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

/*==================================================
 * リセット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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}
a.notOp:hover {
  opacity: 1;
}

/* 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: 400;
  line-height: 1.8;
}

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

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

.lh_xl {
  line-height: 2.2;
}
.lh_xl * {
  line-height: 2.2;
}

.lh_xl2 {
  line-height: 2;
}
.lh_xl2 * {
  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_m2 {
  line-height: 1.7;
}
.lh_m2 * {
  line-height: 1.7;
}

.lh_m3 {
  line-height: 1.3;
}
.lh_m3 * {
  line-height: 1.3;
}

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

.lh_s2 {
  line-height: 1;
}
.lh_s2 * {
  line-height: 1;
}

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

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

.fsL15 {
  font-size: 80px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL15 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL15 {
    font-size: 48px;
  }
}

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

.fsL35 {
  font-size: 48px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL35 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL35 {
    font-size: 28px;
  }
}

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

.fsL5 {
  font-size: 40px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL5 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL5 {
    font-size: 22px;
  }
}

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

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

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

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

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

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

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

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

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

.h000 {
  font-size: 100px;
}

.h00 {
  font-size: 64px;
}

.h0 {
  font-size: 42px;
}

.h1 {
  font-size: 32px;
}

.h2 {
  font-size: 28px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 16px;
}

.text_m {
  font-size: 14px;
}

.text_sm {
  font-size: 13px;
}

.text_s {
  font-size: 12px;
}

.text_ss {
  font-size: 10px;
}

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

/*==================================================
 * 独自クラス（どのサイトでも）
 *================================================*/
.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-center-all * {
  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;
  }
}

/*
p {
    margin-bottom: 10px;
}
*/
.linkA {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--mainColor);
}
.linkA:hover {
  color: var(--mainColor);
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@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;
}

.mr0 {
  margin-right: 0 !important;
}

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

.mbS4 {
  margin-bottom: 0.5%;
}

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

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

.cg1em {
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
}

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

.w100 {
  width: 100%;
}

.cntMin {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.cntXS {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.cntXS2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

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

.cntM {
  max-width: 1060px;
  margin-right: auto;
  margin-left: auto;
}

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

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

.cntXl {
  max-width: 1740px;
  margin-right: 2%;
  margin-left: 2%;
}
@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: clamp(35px, 10vw, 80px);
  padding-bottom: clamp(35px, 10vw, 80px);
}

.padding {
  padding-top: clamp(50px, 10vw, 120px);
  padding-bottom: clamp(50px, 10vw, 120px);
}

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

.pb0 {
  padding-bottom: 0;
}

.pt0 {
  padding-top: 0 !important;
}

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

@media only screen and (max-width: 767px) {
  .pbSp0 {
    padding-bottom: 0;
  }
  .ptSp0 {
    padding-top: 0;
  }
  .prSp0 {
    padding-right: 0;
  }
}
.margin {
  margin-top: var(--spaceSize);
  margin-bottom: var(--spaceSize);
}

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

.ml0 {
  margin-left: 0;
}

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

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

.none {
  display: none;
}

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

.bgImgHeight {
  padding-bottom: 67%;
}

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

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

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

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

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

.bgWhite {
  background-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*角丸*/
/*角丸*/
.radiusS {
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .radiusS {
    border-radius: 6px;
  }
}

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

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

.radiusMax {
  border-radius: 1000px;
}

.ofH {
  overflow: hidden;
}

/*影*/
.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)ここまで*/
/*==================================================
 * 独自クラス（このサイトだけ）
 *================================================*/
/*線系*/
.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%, var(--subColor)));
  background: -webkit-linear-gradient(transparent 70%, var(--subColor) 0%);
  background: linear-gradient(transparent 70%, var(--subColor) 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: var(--mainColor);
  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: var(--mainColor);
  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: var(--mainColor);
  display: block;
  margin-right: 1.5rem;
  max-width: 3rem;
}
.titleBdLeft.white:before {
  background: #fff;
}

.titleBdLight {
  border-bottom: 1px solid var(--mainColor);
  display: inline-block;
}

.bdBox {
  border: 2px solid var(--mainColor);
}

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

html.open {
  overflow: hidden;
}

/*ハンバーガーメニュー*/
.menu-btn {
  cursor: pointer;
  position: relative;
  z-index: 1000;
  background: transparent;
  border: none;
}

.btnTxt {
  font-size: 10px;
  margin-top: 0.25em;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  letter-spacing: 0.06em;
}

.menu-trigger {
  display: none;
}
@media only screen and (max-width: 767px) {
  .menu-trigger {
    display: block;
  }
}

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

:root {
  --menuTrigeHeight: 18px;
}

.menu-trigger {
  position: relative;
  width: 30px;
  height: var(--menuTrigeHeight);
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  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);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span {
  background-color: var(--mainColor);
}
.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) {
  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);
  bottom: -5px;
}
.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: var(--mainColor);
}
.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 var(--mainColor);
}

.fixBarA {
  margin-right: 10px;
}
.fixBarA:hover {
  background-color: #fff;
  color: var(--mainColor);
}

.fixBarTop {
  height: 44px;
  width: 44px;
  cursor: pointer;
  border: 1px solid var(--mainColor);
  border-radius: 50px;
}
.fixBarTop:hover {
  background-color: #fff;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
}

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

/*残す--ここまで*/
/*お問い合わせページ------------------------------------*/
.contactForm {
  width: 100%;
  margin: 0 auto;
}

.contactForm textarea {
  width: 100%;
  min-height: 14rem !important;
}

.contactForm input[type=checkbox] {
  width: auto;
}

.contactTelIcon {
  margin-right: 0.4em;
}

.mw_wp_form button {
  max-width: 100%;
  width: 300px;
  height: 68px;
  font-weight: 600;
  background-color: var(--mainColor);
  color: #fff;
  border: none;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .mw_wp_form button {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .mw_wp_form button {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .mw_wp_form button {
    height: 60px;
  }
}
.mw_wp_form button.cmnbtn::before {
  background-image: url(../img/ic_arrow-right-blue.svg);
}
.mw_wp_form button:hover {
  opacity: 0.7;
}

.cform {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.cform * {
  font-family: "Noto Sans JP", sans-serif;
}
.cform tr {
  border-bottom: solid 1px #bad1ff;
}
.cform th {
  font-size: 17px;
  font-family: bold;
  width: 30%; /*変なところで改行される場合はここの数字を変更します。*/
  padding: 10px 0;
  font-weight: normal;
  vertical-align: middle;
  text-align: left;
  position: relative;
  color: var(--mainColor);
}
.cform th .title {
  width: 72%;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .cform th .title {
    vertical-align: bottom;
    width: auto;
    margin-right: 5%;
  }
}
.cform th .required-srt {
  font-size: 12px;
  padding: 0.2em 0.4em;
  background: transparent;
  color: #ff521c;
  border: solid 1px #ff521c;
  border-radius: 3px;
  margin-right: 10px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  font-weight: 600;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .cform th .required-srt {
    border-radius: 6px;
  }
}
tr:last-child .cform th .required-srt {
  top: 41%;
}
@media only screen and (max-width: 767px) {
  .cform th .required-srt {
    top: auto;
    bottom: 10%;
    font-size: 10px;
  }
}
.cform td {
  font-size: 15px;
  line-height: 150%;
  padding: 3% 0;
  font-weight: 600;
}
.cform td .error {
  font-size: 14px;
}
.cform td input,
.cform td textarea {
  border: solid 1px #ccc;
}
.cform td input::-webkit-input-placeholder, .cform td textarea::-webkit-input-placeholder {
  color: #a0a09e;
}
.cform td input::-moz-placeholder, .cform td textarea::-moz-placeholder {
  color: #a0a09e;
}
.cform td input:-ms-input-placeholder, .cform td textarea:-ms-input-placeholder {
  color: #a0a09e;
}
.cform td input::-ms-input-placeholder, .cform td textarea::-ms-input-placeholder {
  color: #a0a09e;
}
.cform td input::placeholder,
.cform td textarea::placeholder {
  color: #a0a09e;
}
.cform td span label span {
  font-size: 15px;
}
.cform .mwform-radio-field-text {
  color: #1d62ea;
}
@media only screen and (max-width: 767px) {
  .cform td,
  .cform th {
    padding-bottom: 0;
    padding-top: 15px;
    font-size: 15px;
  }
  .cform td {
    padding: 5px 0 15px;
  }
  .cform th {
    padding-bottom: 10px;
  }
  .cform th .required-srt {
    padding: 0.1em 0.4em;
  }
}

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

.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url],
.cform input[type=tel] {
  width: 100%;
  height: 4rem;
  font-size: 14px;
  padding: 3rem 2.5rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .cform option,
  .cform textarea,
  .cform input[type=text],
  .cform input[type=email],
  .cform input[type=search],
  .cform input[type=url],
  .cform input[type=tel] {
    border-radius: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .cform option,
  .cform textarea,
  .cform input[type=text],
  .cform input[type=email],
  .cform input[type=search],
  .cform input[type=url],
  .cform input[type=tel] {
    padding: 2rem;
  }
}

.cform textarea {
  height: unset;
}

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

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

@media only screen and (max-width: 767px) {
  .cform th,
  .cform td {
    width: 100%;
    display: block;
    border-top: none;
    padding-left: 0;
  }
}
.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;
}

.button,
.submit-btn input,
.submit-btn a {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  color: #fff;
  padding: 0.7em 4em 0.7em 2em;
  letter-spacing: 0.03em;
  line-height: 1.7;
  font-size: 20px;
  border: 1px solid var(--mainColor);
}
.button:before, .button:after,
.submit-btn input:before,
.submit-btn input:after,
.submit-btn a:before,
.submit-btn a:after {
  width: calc(100% - 20px);
  height: 0;
  display: block;
  position: absolute;
  left: 0;
  content: "";
}
.button:before,
.submit-btn input:before,
.submit-btn a:before {
  border-bottom: solid 20px var(--mainColor);
  border-right: solid 20px transparent;
  bottom: 100%;
}
.button:after,
.submit-btn input:after,
.submit-btn a:after {
  border-top: solid 20px var(--mainColor);
  border-left: solid 20px transparent;
  top: 100%;
}
.button:hover,
.submit-btn input:hover,
.submit-btn a:hover {
  background-color: #fff;
  color: var(--mainColor);
}

.sendBtnWrap {
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
}

.mw_wp_form button.sendBtn {
  font-size: 16px !important;
  height: 100%;
  padding: 1.5rem 10rem;
  width: auto;
  border-radius: 10px;
}

.submit-btn {
  text-align: center;
  margin-top: 5%;
}
.submit-btn input,
.submit-btn a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.07em;
  padding: 1.5rem 10rem;
  cursor: pointer;
  background-color: var(--mainColor);
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .submit-btn input,
  .submit-btn a {
    border-radius: 6px;
  }
}

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

/*下層ページ共通------------------------------------*/
/*投稿詳細ページ------------------------------------*/
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;
}

.editor {
  line-height: 1.8;
  float: none;
  margin-left: auto;
  margin-right: auto;
}
.editor figcaption {
  font-size: 13px;
  color: gray;
}
.editor a {
  display: inline;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
  color: #33bad4;
}
.editor 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;
}
.editor blockquote p {
  font-size: 14px;
}
.editor strong {
  font-style: normal;
  font-weight: bold;
}
.editor 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) {
  .editor p {
    font-size: 14px;
    line-height: 1.9;
  }
}
.editor h2 span,
.editor h3 span,
.editor h4 span,
.editor h5 span {
  font-weight: bold;
}
.editor h2 {
  font-size: 32px;
  margin: 3% auto;
  padding-left: 0.5em;
  font-weight: 600;
  border-left: solid 5px var(--mainColor);
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .editor h2 {
    font-size: 20px;
    margin: 6% auto;
  }
}
.editor h3 {
  position: relative;
  font-size: 24px;
  margin: 4% auto 3%;
  padding-left: 1.2em;
}
@media only screen and (max-width: 767px) {
  .editor h3 {
    font-size: 16px;
    padding-bottom: 0.5em;
    margin: 6% auto 6%;
  }
}
.editor h3::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.8em;
  height: 3px;
  background-color: var(--mainColor);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.editor h4 {
  margin: 3% auto 3%;
  border-bottom: 1px solid var(--mainColor);
  padding-bottom: 0.4em;
  color: var(--mainColor);
  font-weight: bold;
  font-size: 18px;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .editor h4 {
    margin: 15% auto 8%;
  }
}
.editor table td:nth-child(1) {
  background-color: #f7f6f9;
  font-weight: bold;
  color: #515151;
}
.editor table th,
.editor table td {
  padding: 2rem 3rem;
}
@media only screen and (max-width: 767px) {
  .editor table th,
  .editor table td {
    padding: 1rem 2rem;
    width: 100%;
    display: block;
    border-bottom: 1px solid #dad8de;
  }
}
.editor table tr {
  border-bottom: 1px solid #dad8de;
}
@media only screen and (max-width: 767px) {
  .editor table tr {
    border-bottom: none;
  }
}
.editor table tr:first-child {
  border-top: 1px solid #dad8de;
}
.editor ul {
  margin-bottom: 2%;
}
.editor ul li {
  list-style-type: disc;
}
.editor ol li {
  list-style-type: decimal;
}
.editor li {
  line-height: 1.7;
  font-weight: normal;
  margin-bottom: 0.3em;
  position: relative;
  font-weight: bold;
}

.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: var(--mainColor);
}

.toc_list li:before {
  display: none;
}

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

.toc_toggle {
  font-size: 14px;
}

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

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

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

@media screen and (max-width: 767px) {
  .wp-caption-text {
    background: hsla(330deg, 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: var(--mainColor);
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .lkc-title-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

.lkc-excerpt {
  display: none;
}

.lkc-url {
  display: none;
}

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

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

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

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

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

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

.lkc-domain {
  color: #fff;
}

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

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

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

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

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

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

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

.singleColumnArticleContent {
  margin-top: 5%;
}

.singleColumnTitle {
  border-bottom: 1px solid #eee;
  font-weight: 600;
  padding-bottom: 0.4em;
  margin-bottom: 0.8em;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .singleColumnTitle {
    font-size: 18px;
  }
}

.singleColumnInfoUl .date {
  margin-right: 1em;
  font-family: var(--fontNum);
  font-size: 12px;
}
.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 var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    padding: 8%;
    margin: 12% 0 6% 0;
  }
}

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

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

.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;
}
@media only screen and (max-width: 767px) {
  .singleColumnPrevNextArrow {
    width: 25px;
  }
}
.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;
  -webkit-column-gap: 4%;
  -moz-column-gap: 4%;
  column-gap: 4%;
}
.cmNewsListUl > li {
  width: 48%;
  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;
}
a:hover .cmNewsListCard {
  opacity: 0.7;
}

.cmNewsTitle {
  font-size: 16px;
  line-height: 1.4;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .cmNewsTitle {
    font-size: 16px;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
  }
}

.cmNewsDescri {
  font-size: 13px;
  margin-bottom: 3%;
  color: #fff;
}
@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%;
  background-size: cover;
  background-position: center;
}
a:hover .cmNewsListImg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.cmNewsListImgWrap {
  overflow: hidden;
  margin-bottom: 6%;
  position: relative;
}

.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;
  background-color: #fff;
  color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .cmNewsListInfoUl li {
    font-size: 11px;
  }
}

/*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: var(--mainColor);
}
.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: var(--mainColorLight);
}
@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: var(--mainColor);
  font-weight: bold;
}

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

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

.sidebarBox {
  margin-bottom: 22%;
  margin-left: 5%;
}
.sidebarBox *:not(select, option) {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .sidebarBox {
    margin-left: 0;
    margin-bottom: 8%;
  }
}

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

.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;
  background-color: #fff;
  color: var(--mainColor);
}
@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: #fff;
  border-bottom: 1px solid;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  line-height: 1;
  font-family: "Syncopate", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .sidebarTitle {
    padding-bottom: 0.25em;
    margin-bottom: 1em;
  }
}

.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: var(--mainColor);
  right: 10px;
  top: 10px;
  position: absolute;
  font-size: 14px;
}

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

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

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*==================================================
 * 全サイト共通
 *================================================*/
/*共通部分*/
[data-fade] {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
[data-fade].run {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

body {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  color: #414141;
}

body {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.075em;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}

.maru {
  font-family: "Zen Maru Gothic", system-ui;
  font-style: normal;
}

.en {
  font-family: "Teko", sans-serif;
}

.underline {
  text-decoration: underline;
}

.linkTarget {
  margin-top: -50px;
  padding-top: 50px;
}

.widthFit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.mlrA {
  margin-left: auto;
  margin-right: auto;
}

.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: var(--mainColor);
  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;
}

/*==================================================
 * 当サイト共通
 *================================================*/
main {
  overflow: hidden;
  padding-right: 85px;
}
@media only screen and (max-width: 767px) {
  main {
    padding-right: 0;
  }
}

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

.jost {
  font-family: "Jost", sans-serif;
}

/*==================================================
 * ヘッダー
 *================================================*/
header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
  right: 0;
  top: 0;
  width: 85px;
  background-color: #f1f5f6;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  header {
    width: 100%;
    height: unset;
  }
}

@media only screen and (max-width: 767px) {
  .menu-trigger {
    position: fixed;
    right: 1em;
    top: 1em;
  }
}
.headerLogo {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  background-color: #fff;
  padding: 0.3em 0.8em;
  line-height: 1.2;
  color: var(--mainColor);
  font-size: 34px;
  font-weight: 600;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerLogo {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .headerLogo {
    font-size: 21px;
  }
}

.headerContact {
  background-color: var(--subColor);
  color-scheme: #fff;
  text-align: center;
  width: 165px;
  margin-left: auto;
  margin-right: 0;
  position: absolute;
  right: 0;
  top: 0;
  height: 100px;
  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;
}
@media only screen and (max-width: 767px) {
  .headerContact {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    top: unset;
    height: 60px;
  }
}
.headerContact * {
  color: #fff;
  line-height: 1;
}
.headerContact .en {
  line-height: 1;
  font-size: 42px;
  font-family: "Teko", sans-serif;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerContact .en {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .headerContact .en {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .topHeaderNav {
    display: none;
  }
}

.topHeaderNavList {
  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;
  row-gap: 2em;
  margin-top: 140px;
}

.topHeaderNavItem {
  width: 100%;
  text-align: 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;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  font-size: 18px;
  font-weight: 600;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topHeaderNavItem {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .topHeaderNavItem {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .topHeaderNavItem {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
}

.overRayMenuUl {
  margin-bottom: 30px;
}
.overRayMenuUl > li {
  position: relative;
  border-bottom: solid 1px var(--mainColor);
  padding-bottom: 2em;
  margin-bottom: 2em;
}
.overRayMenuUl > li a {
  color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .overRayMenuUl > li a {
    font-size: 16px;
    font-weight: 600;
  }
}
.overRayMenuUl > li a div {
  color: var(--mainColor);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.overRayMenuUl > li a div.ja {
  font-size: 15px;
  font-weight: 500;
}
.overRayMenuUl > li a:hover span {
  color: var(--mainColor);
}
@media only screen and (max-width: 959px) {
  .overRayMenuUl > li {
    padding-bottom: 0.9em;
    margin-bottom: 0.9em;
  }
  .overRayMenuUl > li a span.eng {
    font-size: 21px;
    margin-right: 0.5em;
  }
  .overRayMenuUl > li a span.jp {
    font-size: 12px;
  }
  .overRayMenuUl > li .childWrap {
    padding-left: 1em;
  }
  .overRayMenuUl > li .childWrap a {
    font-size: 14px;
    font-weight: 500;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    display: block;
  }
}

.spNav {
  display: none;
}
@media only screen and (max-width: 767px) {
  .spNav {
    z-index: 999;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    pointer-events: none;
    top: 0;
    width: 100vw;
    height: 100vh;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 8em;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .spNav a {
    color: var(--mainColor);
    font-weight: 600;
    font-size: 16px;
    display: block;
    text-align: center;
    padding: 0.5em;
  }
}

@media only screen and (max-width: 767px) {
  html.open .spNav {
    opacity: 1;
    pointer-events: all;
  }
}
.spmenuBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  min-height: 100dvh;
  overflow-y: scroll;
  padding: 100px 50px;
  background-color: rgba(255, 255, 255, 0.95);
}
@media only screen and (max-width: 767px) {
  .spmenuBlock {
    padding: 0;
  }
}
.spmenuBlock .rightBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 0.5em;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
}

.spmenuBoxInner {
  width: 100%;
  padding: 60px 15px 0;
}

.snsIcoUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
}
.snsIcoUl li a {
  display: inline-block;
}
.snsIcoUl li a img {
  height: 29px;
}

.copy {
  font-size: 9px;
  text-align: center;
  padding: 1.5em 1em;
  border-top: solid 1px var(--mainColor);
  width: 100%;
  margin-top: 2em;
}

.spFloat {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: none;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  .spFloat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pcFloat {
  position: fixed;
  right: 0;
  top: 30%;
  display: block;
  width: 97px;
  aspect-ratio: 97/350;
  z-index: 999;
}
.pcFloat img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 959px) {
  .pcFloat {
    width: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pcFloat {
    display: none;
  }
}

/*==================================================
 * フッター
 *================================================*/
footer {
  background-color: var(--mainColor);
  padding: 60px 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  footer {
    padding-bottom: 90px;
  }
}

.footerInner {
  max-width: 1155px;
  padding-inline: 15px;
  width: 100%;
  margin-inline: auto;
}
.footerInner * {
  color: #fff;
}

.footerLogo a:not(.footerTelNum) {
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-bottom: 0.6em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerLogo a:not(.footerTelNum) {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .footerLogo a:not(.footerTelNum) {
    font-size: 21px;
  }
}

.footerHead {
  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) {
  .footerHead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 2em;
  }
}

.footerNavList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .footerNavList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footerNavList a {
  padding-inline: 0.5em;
  font-weight: 600;
}

.commonTtlEn {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  font-family: "Teko", sans-serif;
  position: relative;
  line-height: 1;
  font-weight: 600;
}
.commonTtlEn::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 5em;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, calc(100% + 1em));
  transform: translate(-50%, calc(100% + 1em));
  background-color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .commonTtlEn::before {
    height: 2em;
  }
}
.commonTtlEn.white::before {
  background-color: #fff;
}

.cmnbtn {
  background-color: var(--mainColorLight);
  border-radius: 0.4em;
  color: #fff;
  padding: 0.6em 1.5em;
  font-size: 20px;
  font-weight: 600;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 240px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cmnbtn {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .cmnbtn {
    font-size: 16px;
  }
}
.cmnbtn .ic {
  width: 1.2em;
  display: block;
}
.cmnbtn .ic img {
  width: 100%;
}

/*==================================================
 * トップページ
 *================================================*/
.topFv {
  background: url(../img/top/mv.jpg) no-repeat center/cover;
  height: 770px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0.5em;
  font-size: 80px;
  color: #fff;
  position: relative;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFv {
    font-size: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .topFv {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .topFv {
    height: 50vh;
    padding: 0.25em;
  }
}

.topFvBg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.topFvBg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.topFvTitle {
  line-height: 1.4;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}
.topFvTitle * {
  line-height: 1.4;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .topFvTitle {
    font-size: 38px;
  }
}

.topAbout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .topAbout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 3em;
  }
}

.topAboutTextWrap {
  width: 100%;
  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;
}

.topAboutInner {
  padding: 15px;
  max-width: 600px;
}

.topAboutHead {
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.topAboutHead .commonTtlEn {
  margin-top: 1em;
}

.topAboutImg {
  width: 37.5%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .topAboutImg {
    width: 80%;
    margin: 1em auto 0;
  }
}

.topReasonHeadWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .topReasonHeadWrap {
    margin-top: 3em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.topReasonImg {
  width: 100%;
}

.topReasonHead {
  width: 37.5%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: var(--mainColorLight);
  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: 0.5em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .topReasonHead {
    padding: 2em 0.5em;
    width: 100%;
  }
}
.topReasonHead * {
  color: #fff;
}

.topReasonTitle {
  border-bottom: solid 2px #fff;
}

.topReasonItem {
  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) {
  .topReasonItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.topReasonItemImage {
  width: 27.4038461538%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .topReasonItemImage {
    width: 100%;
  }
}

.topReasonItemTtlWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.5em;
  -moz-column-gap: 1.5em;
  column-gap: 1.5em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .topReasonItemTtlWrap {
    -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;
    margin-top: 1.5em;
    margin-bottom: 0.2em;
  }
}

.topReasonItemNum {
  color: var(--subColor);
  border-bottom: solid 2px var(--subColor);
  font-family: "Teko", sans-serif;
  font-size: 24px;
  line-height: 1.2;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topReasonItemNum {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .topReasonItemNum {
    font-size: 17px;
  }
}

.topReasonItemTitle {
  font-size: 34px;
  font-weight: 600;
  color: var(--mainColor);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topReasonItemTitle {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .topReasonItemTitle {
    font-size: 21px;
  }
}

.topContactInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.5em;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .topContactInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.topContactItem {
  padding: 2em 0.5em;
}

.topContactMainLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 0.4em;
  -moz-column-gap: 0.4em;
  column-gap: 0.4em;
}
.topContactMainLink .ic {
  width: 1.2em;
}

.topContactItemPrimary {
  background-color: var(--mainColorLight);
  width: 410px;
  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;
}
@media only screen and (max-width: 767px) {
  .topContactItemPrimary {
    width: 100%;
  }
}

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

.topContactItemSecondary {
  background-color: var(--mainColor);
  width: calc(100% - 410px);
  padding-inline: 2em;
}
@media only screen and (max-width: 767px) {
  .topContactItemSecondary {
    width: 100%;
  }
}

.topContactInner {
  width: 100%;
}
.topContactInner * {
  text-align: center;
}

.topContactSubLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  row-gap: 0.5em;
}
@media only screen and (max-width: 767px) {
  .topContactSubLinks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.topContactSubLinks a {
  background-color: #fff;
  border-radius: 0.3em;
  padding: 0.6em 1em;
  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;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .topContactSubLinks a {
    width: 100%;
  }
}
.topContactSubLinks a .ic {
  width: 1em;
}

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

.topTechnologyImages {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.topTechnologySwiper {
  width: 100%;
  height: 100%;
}

.topTechnologySlide {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .topTechnologySlide {
    height: 300px;
  }
}
.topTechnologySlide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.topTechnologySlide .name {
  position: absolute;
  right: 1em;
  bottom: 1em;
  color: #fff;
}

.topTechnologyPagination {
  bottom: 10px !important;
  left: 1em !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.topTechnologyPagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}
.topTechnologyPagination .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

.topTechnologyContent {
  background: url(../img/top/technology.jpg) no-repeat center/cover;
  width: 64.84375%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .topTechnologyContent {
    width: 100%;
    padding-block: 3em;
  }
}
.topTechnologyContent .in {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.topTechnologyContent .in * {
  color: #fff;
}

.subBorder {
  border: solid 1px #fff;
  border-radius: 100vw;
  padding: 0.2em 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.topRecruitInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .topRecruitInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

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

.topRecruitImages {
  position: relative;
  width: 53.3653846154%;
  padding-bottom: 5em;
}
@media only screen and (max-width: 767px) {
  .topRecruitImages {
    width: 95%;
    margin-inline: auto;
    margin-bottom: 2em;
  }
}
.topRecruitImages > * {
  width: 54.0540540541%;
}
.topRecruitImages > *:last-of-type {
  position: absolute;
  right: 0;
  bottom: 0;
}

@-webkit-keyframes fvCharFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fvCharFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.topFvTitle .fv-char {
  display: inline-block;
  opacity: 0;
}
.topFvTitle.is-loaded .fv-char {
  -webkit-animation: fvCharFadeIn 0.6s ease forwards;
  animation: fvCharFadeIn 0.6s ease forwards;
}

.page-fv {
  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;
  background-color: #f7f7f7;
  padding: 10% 0;
  font-weight: 600;
  font-size: 2em;
  color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .page-fv {
    padding-block: 20%;
  }
}

.formBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2em;
}
.formBtns > * {
  border: unset;
}

.wpcf7-spinner {
  display: none;
}

.comingSoon {
  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;
  min-height: 80vh;
  background-color: #eee9e2;
  padding: 5%;
}

.comingSoonText {
  text-align: center;
  font-size: 1.1em;
  line-height: 2;
  color: #6b6459;
  margin-bottom: 2em;
}
@media only screen and (max-width: 767px) {
  .comingSoonText {
    font-size: 0.95em;
  }
}

.comingSoonIcon {
  width: 120px;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .comingSoonIcon {
    width: 80px;
  }
}

.cntHasTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.pageHeader {
  padding: 15px;
  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;
  height: 420px;
}
@media only screen and (max-width: 767px) {
  .pageHeader {
    height: 220px;
  }
}

.pageHeaderContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1.5em;
  -moz-column-gap: 1.5em;
  column-gap: 1.5em;
  padding-top: 15%;
}
.pageHeaderContent .en {
  color: var(--subColor);
  font-size: 40px;
  border-bottom: solid 2px var(--subColor);
  line-height: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageHeaderContent .en {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .pageHeaderContent .en {
    font-size: 22px;
  }
}
.pageHeaderContent .ja {
  color: #fff;
  font-size: 64px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageHeaderContent .ja {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .pageHeaderContent .ja {
    font-size: 36px;
  }
}

/*==================================================
 * パンくずリスト
 *================================================*/
.breadcrumb {
  padding-block: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.8em;
}
.breadcrumb ol {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  font-size: 18px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .breadcrumb ol {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb ol {
    font-size: 16px;
  }
}
.breadcrumb li {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  line-height: 1.4;
  font-weight: 600;
}
.breadcrumb li:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #555;
  border-right: 2px solid #555;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-inline: 0.75em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.breadcrumb li a {
  color: var(--mainColor);
  text-decoration: none;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.breadcrumb li span[property=name] {
  display: inline;
}

/*==================================================
 * 事業内容ページ
 *================================================*/
.pageHeader.serviceHeader {
  background: url(../img/service/fv.jpg) no-repeat center/cover;
}

.serviceMessageInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .serviceMessageInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.serviceMessageContent {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}
.serviceMessageContent .commonTtlEn {
  margin-bottom: 2em;
}

.serviceMessageSign {
  padding-top: 1em;
  text-align: right;
  color: var(--mainColor);
}

.serviceMessageImage {
  width: 32.6923076923%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.serviceMessageImage img {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 767px) {
  .serviceMessageImage {
    width: 100%;
    margin: 0 auto;
  }
}

.serviceContentHeadWrap {
  background: url(../img/service/serviceBg.jpg) no-repeat center/cover;
  font-size: 180px;
  color: #fff;
  padding-block: 12%;
}
@media only screen and (max-width: 767px) {
  .serviceContentHeadWrap {
    font-size: 80px;
  }
}
.serviceContentHeadWrap .en {
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  line-height: 0.7;
}

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

.serviceItemNum {
  font-family: "Teko", sans-serif;
  color: var(--subColor);
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceItemNum {
    font-size: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceItemNum {
    font-size: 48px;
  }
}

.serviceItemTitle {
  line-height: 1;
}

.serviceItemInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.serviceItemInner .commonTtlEn {
  margin-right: 1em;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateX(calc(-100% - 1em));
  transform: translateX(calc(-100% - 1em));
}

.serviceItemContentWrap {
  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) {
  .serviceItemContentWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.serviceItemImage {
  width: 33.0769230769%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .serviceItemImage {
    width: 80%;
    margin-inline: auto;
    margin-bottom: 2em;
  }
}

.serviceItemSpec {
  border-top: solid 1px var(--mainColor);
  padding-top: 5%;
}

.serviceItemSpec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em;
}

.serviceItemSpecTitle {
  border: solid 1px var(--mainColor);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1em;
  border-radius: 100vw;
}

.serviceItemSpecList li {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}
.serviceItemSpecList li::before {
  content: "●";
}

.serviceOtherFv {
  background-color: var(--mainColorLight);
  position: relative;
}
.serviceOtherFv .commonTtlEn {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateX(calc(-100% - 1.5em));
  transform: translateX(calc(-100% - 1.5em));
}
.serviceOtherFv > * {
  position: relative;
  height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 2em;
}
@media only screen and (max-width: 767px) {
  .serviceOtherFv > * {
    height: 140px;
  }
}
.serviceOtherFv > *::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.serviceRecordHeadWrap .serviceRecordHead::before {
  background: url(../img/service/jisseki.jpg) no-repeat center/cover;
}

.servicePolicyHeadWrap .servicePolicyHead::before {
  background: url(../img/service/hinshitsu.jpg) no-repeat center/cover;
}

.serviceCompanyHeadWrap .serviceCompanyHead::before {
  background: url(../img/service/company.jpg) no-repeat center/cover;
}

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

.serviceRecordLabel {
  border: solid 1px var(--mainColor);
  padding: 0 1em;
  border-radius: 100vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.serviceRecordMain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em;
  row-gap: 1em;
}

.serviceCompanyWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  width: 100%;
  gap: 2em;
}
@media only screen and (max-width: 767px) {
  .serviceCompanyWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  .servicePolicyList li {
    line-height: 1.4;
  }
}

.serviceCompanyImage {
  width: 46.2264150943%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .serviceCompanyImage {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 0.5em;
    -moz-column-gap: 0.5em;
    column-gap: 0.5em;
    margin-inline: auto;
  }
  .serviceCompanyImage > * {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: calc(50% - 0.25em);
    aspect-ratio: 1/1;
  }
}

.serviceComapnyText {
  width: 100%;
}

.serviceCompanyRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.serviceAccessRoute li {
  line-height: 1.8;
}

/*==================================================
 * 技術紹介ページ
 *================================================*/
.pageHeader.engineeringHeader {
  background: url(../img/engineering/fv.jpg) no-repeat center/cover;
}

.engTag {
  display: inline-block;
  background-color: var(--subColor);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 0.25em 1em;
  border-radius: 0.3em;
  margin-bottom: 1em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .engTag {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .engTag {
    font-size: 14px;
  }
}

.engWeldingHead {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.engMainImage {
  width: 100%;
  margin-block: 5%;
}
.engMainImage img {
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media only screen and (max-width: 767px) {
  .engMainImage img {
    height: 220px;
  }
}

.engTechWrap {
  padding-top: 5%;
}

.engTechItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 10%;
}
.engTechItem:last-child {
  margin-bottom: 0;
}

.engTechItemImage {
  width: 100%;
  margin-bottom: 3.5em;
}
@media only screen and (max-width: 767px) {
  .engTechItemImage {
    margin-bottom: 1em;
  }
}
.engTechItemImage img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

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

.engTechLabel {
  width: 30.2884615385%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: var(--mainColorLight);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2em 1.5em;
  aspect-ratio: 1/0.5;
}
.engTechLabel p {
  color: #fff;
  font-weight: 600;
  font-size: 34px;
  text-align: center;
  line-height: 1.5;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .engTechLabel p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .engTechLabel p {
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .engTechLabel {
    width: 100%;
    padding: 0.8em 1.5em;
    aspect-ratio: unset;
  }
}

.engTechContent {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  padding: 0 0 0 2.5em;
  border-left: none;
}
@media only screen and (max-width: 767px) {
  .engTechContent {
    padding: 1.5em 0;
    border: none;
    border-top: solid 1px var(--mainColor);
  }
}

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

.engTechSpecDl {
  margin: 0;
}

.engTechSpecRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.engTechSpecRow dt {
  margin-right: 1em;
}
.engTechSpecRow dd {
  margin: 0;
}

.engCertHeadWrap .engCertHead::before {
  background: url(../img/engineering/cert.jpg) no-repeat center/cover;
}

.engCertTable {
  border-top: solid 1px #d1d1d1;
}

.engCertRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-bottom: solid 1px #d1d1d1;
}
.engCertRow:last-of-type {
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  .engCertRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.engCertTh {
  width: 200px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .engCertTh {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .engCertTh {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .engCertTh {
    width: 100%;
    border-right: none;
    padding-bottom: 0;
  }
}

.engCertTd {
  padding: 1.5em 2em;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .engCertTd {
    padding-inline: 0;
    padding-top: 0.5em;
  }
}

.engTechP {
  margin-bottom: 2.5em;
  padding-bottom: 2.5em;
  border-bottom: solid 1px var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .engTechP {
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
  }
}

.engCertSpecList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  text-indent: 0;
}
.engCertSpecList li::before {
  display: none;
}
.engCertSpecList .certName {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5em;
}
.engCertSpecList .certDots {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-bottom: 1.5px dotted #999;
}
.engCertSpecList .certCount {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-left: 0.5em;
}

@media only screen and (max-width: 767px) {
  .engCert .engTechContent {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    border-top: none;
  }
}

/*==================================================
 * 採用情報ページ (page-recruit.php)
 *================================================*/
/* ---------- ページヘッダー ---------- */
.pageHeader.recruitHeader {
  background: url(../img/recruit/fv.jpg) no-repeat center/cover;
  background-color: #333;
}

/* ---------- 採用ページ専用ラッパー ---------- */
.recruitPage .primarySub {
  display: none;
}
.recruitPage .bgMainColor {
  background-color: #0958cb !important;
}
.recruitPage .cntHasTitle {
  -webkit-column-gap: 1.5em;
  -moz-column-gap: 1.5em;
  column-gap: 1.5em;
}

/* ---------- セクション共通 ---------- */
.recruitSectionBody {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.borderBottom {
  border-bottom: 2px solid var(--mainColor);
  padding-bottom: 0.3em;
  margin-bottom: 0.6em;
}

/* ---------- 採用ページヒーローバナー (信頼は報酬に変わる) ---------- */
.recruitHero {
  position: relative;
  background-color: #051737;
  background-image: url(../img/recruit/intro.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5em 2em;
  overflow: hidden;
  margin-bottom: 3em;
}
.recruitHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(11, 26, 66, 0.6)), color-stop(60%, rgba(11, 26, 66, 0.3)), to(rgba(11, 26, 66, 0)));
  background: -webkit-linear-gradient(left, rgba(11, 26, 66, 0.6) 0%, rgba(11, 26, 66, 0.3) 60%, rgba(11, 26, 66, 0) 100%);
  background: linear-gradient(90deg, rgba(11, 26, 66, 0.6) 0%, rgba(11, 26, 66, 0.3) 60%, rgba(11, 26, 66, 0) 100%);
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .recruitHero {
    min-height: 320px;
    padding: 3em 0;
    margin-bottom: 2em;
  }
}

.recruitHeroInner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}
@media only screen and (max-width: 767px) {
  .recruitHeroInner {
    padding: 0 1.2em;
  }
}

.recruitHeroContent {
  max-width: 720px;
}

.recruitHeroTitle {
  font-size: 64px;
  line-height: 1.15;
  margin: 0 0 0.4em;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .recruitHeroTitle {
    font-size: 40px;
  }
}

.recruitHeroText {
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .recruitHeroText {
    font-size: 15px;
  }
}

/* ---------- 代表メッセージ ---------- */
/* ---------- 画像ギャラリー (部門紹介前) ---------- */
.recruitGalleryList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.5em 1fr 0.5em 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5em;
}
@media only screen and (max-width: 767px) {
  .recruitGalleryList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-columns: none;
    grid-template-columns: none;
    gap: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-animation: recruitGalleryFlow 24s linear infinite;
    animation: recruitGalleryFlow 24s linear infinite;
  }
}
@media only screen and (max-width: 767px) {
  .recruitGalleryList li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 80vw;
    max-width: 400px;
    margin-right: 16px;
  }
}
.recruitGalleryList img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  background: #ccc;
}

/* ---------- 共通: 青い丸ラベル ---------- */
.recruitReasonLabel,
.recruitDeptLabel {
  display: inline-block;
  margin-bottom: 0.8em;
}
.recruitReasonLabel span,
.recruitDeptLabel span {
  display: inline-block;
  padding: 0.35em 1.4em;
  border: 1px solid var(--mainColor);
  border-radius: 999px;
  font-size: 18px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitReasonLabel span,
  .recruitDeptLabel span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitReasonLabel span,
  .recruitDeptLabel span {
    font-size: 16px;
  }
}

/* ---------- なぜ高還元? ---------- */
.recruitReasonTitle {
  margin-bottom: 1em;
}

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

.recruitReasonItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
  padding: 1.2em 1em;
  background: transparent;
  border-radius: 0;
}
@media only screen and (max-width: 767px) {
  .recruitReasonItem {
    -ms-grid-columns: 60px 1em 1fr;
    grid-template-columns: 60px 1fr;
    gap: 1em;
    padding: 1em 0;
  }
}

.recruitReasonNum {
  width: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0.5em;
  font-size: 28px;
  border-radius: 2px;
  line-height: 1;
  font-family: "Teko", sans-serif;
}
@media only screen and (max-width: 767px) {
  .recruitReasonNum {
    font-size: 18px;
    padding: 0.5em 0.25em;
  }
}

/* ---------- 部門紹介 ---------- */
.recruitDeptChart {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.recruitDeptChart img {
  width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .recruitDeptChart img {
    width: auto;
    max-width: none;
    min-width: 650px;
  }
}

.recruitDeptList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.recruitDeptRow {
  padding: 1.2em 0;
  border-bottom: 1px solid #ddd;
}
.recruitDeptRow dt {
  margin: 0 0 0.4em;
}
.recruitDeptRow dd {
  margin: 0;
}

/* ---------- ワークスペース ---------- */
.recruitWorkspaceHead {
  padding: 1em 1.5em;
  margin-bottom: 1.5em;
}
.recruitWorkspaceHead h2 {
  margin: 0;
}
.recruitWorkspaceHead h2 .en {
  margin-left: 1em;
  font-size: 0.6em;
  letter-spacing: 0.06em;
  opacity: 0.95;
}

.recruitWorkspaceGroupTitle {
  display: inline-block;
  padding: 0.35em 1.4em;
  border: 1px solid var(--mainColor);
  border-radius: 999px;
  font-size: 18px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitWorkspaceGroupTitle {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitWorkspaceGroupTitle {
    font-size: 16px;
  }
}

.recruitWorkspaceList {
  list-style: none;
  margin: 0.8em 0 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.8em 1fr 0.8em 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8em;
}
@media only screen and (max-width: 767px) {
  .recruitWorkspaceList {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.recruitWorkspaceList a {
  display: block;
  overflow: hidden;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.recruitWorkspaceList a img {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.3s ease;
  transition: transform 0.4s ease, opacity 0.3s ease, -webkit-transform 0.4s ease;
}
.recruitWorkspaceList a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 0.9;
}
.recruitWorkspaceList img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  background: #ccc;
}

/* ---------- メンバー紹介 ---------- */
.recruitMemberTitleWrap {
  position: relative;
}

.recruitMember {
  background: #fff;
}

.recruitMemberHead {
  background-color: #17377c !important;
  padding: 2.2em 0 2em;
  position: relative;
  overflow: hidden;
}

.recruitMemberTitleEn {
  color: #0958cb;
  font-size: 140px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: "Teko", sans-serif;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .recruitMemberTitleEn {
    font-size: 72px;
  }
}

.recruitMemberTitleJa {
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.04em;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .recruitMemberTitleJa {
    font-size: 18px;
  }
}

.recruitMember > .cnt.padding {
  background: #fff;
  padding-top: 4em;
}

.recruitMemberList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3em 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 4em 3em;
}
@media only screen and (max-width: 767px) {
  .recruitMemberList {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 3em 1em;
  }
}

.recruitMemberCard {
  position: relative;
}

.recruitMemberCardBtn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  position: relative;
}
.recruitMemberCardBtn:hover .recruitMemberPhoto img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.recruitMemberCardBtn:hover .recruitMemberMore {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.recruitMemberPhoto {
  position: relative;
  aspect-ratio: 495/330.85;
  overflow: visible;
  background: #f1f5f6;
}
.recruitMemberPhoto img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.recruitMemberMore {
  position: absolute;
  right: 1.2em;
  bottom: -35px;
  width: 70px;
  height: 70px;
  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: #ea5514;
  color: #fff;
  border-radius: 50%;
  font-family: "Teko", sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  z-index: 2;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.recruitMemberInfo {
  padding: 1.6em 0.2em 0;
}

.recruitMemberName {
  color: #17377c;
  font-size: 22px;
  margin: 0;
}
.recruitMemberName .recruitMemberNameSuffix {
  font-size: 0.7em;
  margin-left: 0.2em;
  font-weight: 500;
}

.recruitMemberRole {
  color: #17377c;
  font-size: 14px;
  opacity: 0.85;
  margin: 0.3em 0 0;
}

/* ---------- メンバー紹介モーダル (Fancybox inline) ---------- */
.fancybox-is-open .fancybox-bg {
  background-color: rgba(23, 55, 124, 0.8);
}

.fancybox-content {
  padding-top: 3em !important;
}

.fancybox-close-small {
  -webkit-transform: 0;
  transform: 0;
}
.fancybox-close-small path {
  fill: #fff !important;
}

.fancybox-content.recruitMemberModal {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: auto !important;
  display: inline-block !important;
  width: 92%;
  max-width: 920px;
  padding: 0 !important;
  background-color: transparent;
  padding-top: 3em !important;
}
.fancybox-content.recruitMemberModal .recruitMemberModalInner {
  position: static !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: none !important;
  max-height: none !important;
  overflow: visible !important;
  background: transparent;
  background-color: #fff;
}
.fancybox-content.recruitMemberModal .recruitMemberModalBody {
  display: block !important;
  -ms-grid-columns: none !important;
  grid-template-columns: none !important;
  gap: 0 !important;
}
.fancybox-content.recruitMemberModal .recruitMemberModalQA {
  padding: 2.5em 1.5em 2em !important;
}
.fancybox-content.recruitMemberModal .recruitMemberModalPhoto {
  position: relative;
  margin: 0 0 1.5em;
  max-width: none;
}
.fancybox-content.recruitMemberModal .recruitMemberModalPhoto img {
  width: 101%;
  max-width: unset;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
  background: #ccc;
  margin-left: -1%;
}
.fancybox-content.recruitMemberModal .recruitMemberModalProfile {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.5em 3em;
  max-width: 60%;
  line-height: 1.4;
  margin-bottom: -3em;
}
@media only screen and (max-width: 767px) {
  .fancybox-content.recruitMemberModal .recruitMemberModalProfile {
    padding: 1em;
    max-width: 90%;
  }
}
.fancybox-content.recruitMemberModal .recruitMemberModalProfile p {
  margin: 0 0 0.3em;
}
.fancybox-content.recruitMemberModal .recruitMemberModalProfile p:last-child {
  margin-bottom: 0;
}
.fancybox-content.recruitMemberModal .recruitMemberModalQA {
  margin: 0;
}
.fancybox-content.recruitMemberModal .recruitMemberModalQARow {
  padding: 1em 0;
  border-bottom: 1px solid #eee;
}
.fancybox-content.recruitMemberModal .recruitMemberModalQARow:last-child {
  border-bottom: none;
}
.fancybox-content.recruitMemberModal .recruitMemberModalClose {
  text-align: center;
  padding: 0 1.5em 2.5em;
}
@media only screen and (max-width: 767px) {
  .fancybox-content.recruitMemberModal .recruitMemberModalClose {
    padding: 0 1em 2em;
  }
}
.fancybox-content.recruitMemberModal .recruitMemberModalCloseBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.9em 2.4em;
  background: #17377c;
  color: #fff;
  border: 2px solid #17377c;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: background 0.25s ease, color 0.25s ease, -webkit-transform 0.2s ease;
  transition: background 0.25s ease, color 0.25s ease, -webkit-transform 0.2s ease;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.fancybox-content.recruitMemberModal .recruitMemberModalCloseBtn:hover {
  background: #fff;
  color: #17377c;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.fancybox-content.recruitMemberModal .recruitMemberModalCloseBtn:focus {
  outline: 2px solid #0958cb;
  outline-offset: 2px;
}

.recruitMemberModalHead {
  position: relative;
  padding: 1.5em 2em 2em;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .recruitMemberModalHead {
    padding: 1em 1em 1.5em;
  }
}

.recruitMemberModalTitleEn {
  color: rgba(255, 255, 255, 0.15);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .recruitMemberModalTitleEn {
    font-size: 48px;
  }
}

.recruitMemberModalTitleJa {
  font-size: 20px;
  margin-top: -0.4em;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .recruitMemberModalTitleJa {
    font-size: 16px;
  }
}

.recruitMemberModalQARow dt {
  margin: 0 0 1em;
  position: relative;
  padding-left: 2.5em;
}
.recruitMemberModalQARow dt .recruitMemberQAIcon {
  position: absolute;
  left: 0;
  top: 0;
}
.recruitMemberModalQARow dd {
  margin: 0;
  position: relative;
  padding-left: 2.5em;
}
.recruitMemberModalQARow dd .recruitMemberQAIcon {
  position: absolute;
  left: 0;
  top: 0.3em;
}

.recruitMemberQAIcon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 14px;
}

/* ---------- 新人育成プラン (step.svgで1枚表示) ---------- */
.recruitCareer {
  position: relative;
}

.recruitCareerLabel {
  display: inline-block;
  padding: 0.35em 1.4em;
  border: 1px solid var(--mainColor);
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 0.8em;
}

.recruitCareerTitle {
  margin-bottom: 0.6em;
}
.recruitCareerTitle span {
  font-weight: 500;
  margin-left: 0.5em;
  opacity: 0.85;
}

.recruitReasonItemTitle {
  line-height: 1.5;
}

.recruitCareerNote {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recruitCareerNote li {
  padding-left: 1em;
  line-height: 1.5;
  position: relative;
}
.recruitCareerNote li::before {
  content: "●";
  color: var(--mainColor);
  position: absolute;
  left: 0;
}

.recruitCareerStepsImage {
  margin-top: 1em;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.recruitCareerStepsImage img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (max-width: 767px) {
  .recruitCareerStepsImage img {
    width: auto;
    max-width: none;
    min-width: 700px;
  }
}

/* ---------- データで見るオリエント ---------- */
.recruitDataHead {
  padding: 1em 1.5em;
  margin-bottom: 0;
}
.recruitDataHead h2 .en {
  margin-left: 1em;
  font-size: 0.6em;
  letter-spacing: 0.06em;
  opacity: 0.95;
}

.recruitDataList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.5em 1fr 0.5em 1fr 0.5em 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5em;
  margin-top: 0.5em;
}
@media only screen and (max-width: 959px) {
  .recruitDataList {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.recruitDataItem {
  padding: 2em 1em;
  text-align: center;
  background: #f1f5f6;
  border-right: 1px solid #fff;
  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;
}
.recruitDataItem:last-child {
  border-right: none;
}
@media only screen and (max-width: 959px) {
  .recruitDataItem {
    border-bottom: 1px solid #fff;
  }
  .recruitDataItem:nth-child(2n) {
    border-right: none;
  }
}

.recruitDataLabel {
  color: #222839;
  font-size: 22px;
  margin: 0 0 0.8em;
}
@media only screen and (max-width: 767px) {
  .recruitDataLabel {
    font-size: 16px;
  }
}

.recruitDataValue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.1em;
  margin: 0 0 0.3em;
}
.recruitDataValue .num {
  font-size: 140px;
  line-height: 0.8;
  font-family: "Teko", "Roboto", sans-serif;
  letter-spacing: -0.04em;
  color: #0958cb;
  font-weight: 500;
}
@media only screen and (max-width: 959px) {
  .recruitDataValue .num {
    font-size: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitDataValue .num {
    font-size: 72px;
  }
}
.recruitDataValue .unit {
  font-size: 30px;
  font-weight: 500;
  font-family: "Teko", "Roboto", sans-serif;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-bottom: 0.3em;
}
@media only screen and (max-width: 767px) {
  .recruitDataValue .unit {
    font-size: 20px;
  }
}
.recruitDataValue .unit-prefix {
  font-size: 16px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin: 0.4em 0.1em 0 0;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  color: #222839;
}

.recruitDataNote {
  font-size: 16px;
  color: #222839;
  margin: 0.3em 0 0;
}
@media only screen and (max-width: 767px) {
  .recruitDataNote {
    font-size: 13px;
  }
}

/* ---------- 待遇・福利厚生 ---------- */
.recruitBenefitsHead {
  padding: 1em 1.5em;
  margin-bottom: 1.5em;
}
.recruitBenefitsHead h2 {
  margin: 0;
}
.recruitBenefitsHead h2 .en {
  margin-left: 1em;
  font-size: 0.6em;
  letter-spacing: 0.06em;
  opacity: 0.95;
}

.recruitBenefitsGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3em 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em 3em;
}
@media only screen and (max-width: 767px) {
  .recruitBenefitsGrid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
}
.recruitBenefitsGrid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recruitBenefitsGrid ul li {
  padding-left: 1em;
  position: relative;
  margin-bottom: 0.3em;
}
.recruitBenefitsGrid ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--mainColor);
  font-size: 0.8em;
  top: 0.4em;
}

.recruitBenefitsItem h3 {
  padding-bottom: 0.2em;
}

/* ---------- 募集職種・要項 ---------- */
.recruitJobsHead {
  padding: 1em 1.5em;
  margin-bottom: 1.5em;
}
.recruitJobsHead h2 .en {
  margin-left: 1em;
  font-size: 0.6em;
  letter-spacing: 0.06em;
  opacity: 0.95;
}

.recruitJobsList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1em;
}

.recruitJob {
  background: #f1f5f6;
  overflow: hidden;
  border: none;
}
.recruitJob.is-open .recruitJobHeadIcon::before {
  content: "−";
}

.recruitJobHead {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  padding: 1.2em 1.5em;
  background: transparent;
  border: none;
  border-left: 4px solid var(--mainColor);
  cursor: pointer;
  text-align: left;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .recruitJobHead {
    font-size: 15px;
    padding: 1em;
  }
}

.recruitJobHeadIcon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mainColor);
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 700;
}
.recruitJobHeadIcon::before {
  content: "+";
  font-size: 18px;
  line-height: 1;
}

.recruitJobBody {
  display: none;
  padding: 1.5em 2em 2em;
  background: #fff;
  border-top: 1px solid #e5e7ec;
}
@media only screen and (max-width: 767px) {
  .recruitJobBody {
    padding: 1em;
  }
}

.recruitJobLabel {
  display: inline-block;
  padding: 0.35em 1.4em;
  border: 1px solid var(--mainColor);
  border-radius: 999px;
  font-size: 18px;
  margin-top: 1em;
  margin-bottom: 0.8em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitJobLabel {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitJobLabel {
    font-size: 16px;
  }
}

.recruitJobStep {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0.6em;
  color: var(--mainColor);
  font-size: 18px;
  margin: 1.2em 0 0.6em;
}
.recruitJobStep .num {
  color: var(--subColor);
  font-family: "Teko", "Roboto", sans-serif;
  font-size: 42px;
  line-height: 1;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin: 0;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitJobStep .num {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitJobStep .num {
    font-size: 24px;
  }
}

.recruitJobUl {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
}
.recruitJobUl li {
  padding-left: 1em;
  position: relative;
  margin-bottom: 0.3em;
}
.recruitJobUl li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #222839;
  font-size: 0.7em;
  top: 0.4em;
}

.recruitJobSchedule {
  margin: 0 0 1em;
  padding: 0;
}
.recruitJobSchedule > div {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 1em 1fr;
  grid-template-columns: 80px 1fr;
  gap: 1em;
}
.recruitJobSchedule > div dt,
.recruitJobSchedule > div dd {
  margin: 0;
  padding: 10px 0;
}
.recruitJobSchedule > div dt {
  font-family: "Teko", "Roboto", sans-serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  border-right: solid 1px var(--mainColor);
  color: var(--mainColor);
}

/* 応募するボタン (ジョブ末尾) */
.recruitJobApply {
  margin-top: 2em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
}

.recruitJobApplyBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 280px;
  padding: 0.9em 2em;
  background: var(--subColor);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 18px;
  letter-spacing: 0.04em;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.recruitJobApplyBtn:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .recruitJobApplyBtn {
    min-width: 0;
    width: 100%;
    font-size: 16px;
  }
}

/* 募集職種アコーディオン下部の閉じるボタン */
.recruitJobCloseBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.7em 2em;
  background: #fff;
  color: #17377c;
  border: 1.5px solid #17377c;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.recruitJobCloseBtn::before {
  content: "×";
  margin-right: 0.5em;
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1;
}
.recruitJobCloseBtn:hover {
  background: #17377c;
  color: #fff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
@media only screen and (max-width: 767px) {
  .recruitJobCloseBtn {
    min-width: 0;
    width: 100%;
  }
}

/* ---------- Q&A ---------- */
.recruitQAHead {
  padding: 1em 1.5em;
  margin-bottom: 1.5em;
}
.recruitQAHead h2 .en {
  margin-left: 1em;
  font-size: 0.6em;
  letter-spacing: 0.06em;
  opacity: 0.95;
}

.recruitQAGroup {
  margin-bottom: 3em;
}
.recruitQAGroup:first-of-type {
  margin-top: 2em;
}
.recruitQAGroup > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.recruitQAGroupTitle {
  display: block;
  padding: 0.2em 0 0.2em 0.7em;
  border-left: 4px solid var(--mainColor);
  border-radius: 0;
  color: var(--mainColor);
  line-height: 1.3;
  margin: 0 0 0.5em;
  font-size: 24px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitQAGroupTitle {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitQAGroupTitle {
    font-size: 17px;
  }
}

.recruitQAItem {
  border-bottom: 1px solid #ddd;
}
.recruitQAItem.is-open .recruitQAToggleIcon::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 6px;
}

.recruitQAQuestion {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8em;
  padding: 1em 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
}

.recruitQAIconQ,
.recruitQAIconA {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: "Teko", sans-serif;
  font-size: 18px;
  line-height: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitQAIconQ,
  .recruitQAIconA {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .recruitQAIconQ,
  .recruitQAIconA {
    font-size: 16px;
  }
}

.recruitQAIconA {
  margin-top: 0.2em;
}

.recruitQAQuestionText {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.recruitQAToggleIcon {
  width: 18px;
  height: 18px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.recruitQAToggleIcon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-top: 2px solid var(--mainColor);
  border-right: 2px solid var(--mainColor);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  width: 10px;
  height: 10px;
  top: 2px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.recruitQAAnswer {
  display: none;
  padding: 0 0 1em 2.5em;
  position: relative;
}
.recruitQAAnswer .recruitQAIconA {
  position: absolute;
  left: 0;
  top: 0;
}
.recruitQAAnswer p {
  margin: 0;
}

/* ---------- CTA (採用ページ専用) ---------- */
.recruitCta {
  background: #f1f5f6;
  padding: 3em 0;
}
@media only screen and (max-width: 767px) {
  .recruitCta {
    padding: 2em 0;
  }
}

.recruitCtaInner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.4fr;
  grid-template-columns: 1fr 1.4fr;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 767px) {
  .recruitCtaInner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.recruitCtaLeft {
  background: #e85e1c;
  padding: 2em;
  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;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .recruitCtaLeft {
    padding: 1.5em 1em;
  }
}

.recruitCtaLeftLabel {
  font-size: 14px;
  margin: 0 0 0.6em;
}

.recruitCtaLeftBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6em;
  font-size: 28px;
  text-decoration: none;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .recruitCtaLeftBtn {
    font-size: 22px;
  }
}

.recruitCtaLeftIcon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #e85e1c;
  border-radius: 50%;
  -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) {
  .recruitCtaLeftIcon {
    width: 32px;
    height: 32px;
  }
  .recruitCtaLeftIcon svg {
    width: 18px;
    height: 18px;
  }
}

.recruitCtaRight {
  background: #0958cb;
  padding: 2em;
  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;
  text-align: center;
  gap: 1em;
}
@media only screen and (max-width: 767px) {
  .recruitCtaRight {
    padding: 1.5em 1em;
  }
}

.recruitCtaRightLabel {
  font-size: 16px;
  margin: 0;
}

.recruitCtaRightBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.recruitCtaRightBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.8em;
  min-width: 200px;
  padding: 0.8em 1.2em;
  background: #fff;
  color: #0958cb;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  font-size: 15px;
}
.recruitCtaRightBtn:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
@media only screen and (max-width: 767px) {
  .recruitCtaRightBtn {
    min-width: 150px;
    padding: 0.7em 1em;
    font-size: 14px;
  }
}

.recruitCtaRightArrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: #0958cb;
  color: #fff;
  border-radius: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.recruitCtaRightArrow svg {
  width: 12px;
  height: 12px;
}

/* ---------- 既存ギャラリー(.recruitGallery): PCは元のまま、SPだけマーキーをクリップ ---------- */
@media only screen and (max-width: 767px) {
  .recruitGallery {
    overflow: hidden;
  }
}

/* ---------- フッター手前ギャラリー ---------- */
.recruitGalleryFooter {
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  .recruitGalleryFooter {
    padding: 40px 0;
  }
}

.recruitGalleryViewport {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .recruitGalleryViewport {
    overflow: hidden;
  }
}

.recruitGalleryRail {
  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) {
  .recruitGalleryRail {
    gap: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-animation: recruitGalleryFlow 24s linear infinite;
    animation: recruitGalleryFlow 24s linear infinite;
  }
}

.recruitGalleryItem {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 33.3333333333%;
}
.recruitGalleryItem img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (max-width: 767px) {
  .recruitGalleryItem {
    width: 80vw;
    max-width: 400px;
  }
}

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

@keyframes recruitGalleryFlow {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
/* ==========================================================================
   印刷用
   ========================================================================== */
/* -------------------------------------------------------------- 
 
 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;
  }
}