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

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


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

*/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&display=swap");
.mainColor {
  color: #01bcf1;
}

.mainColorSub {
  color: #242628;
}

.bgmainColor {
  color: #f1f3f3;
}

.mainColorDeep {
  color: #004686;
}

.bgMainColorDeep {
  background-color: #004686;
}

.mainColorExDeep {
  color: #f3efef;
}

.mainColorLight {
  color: #aad1c1;
}

.bgMainColorLight {
  background-color: #aad1c1;
}

.mainColorExLight {
  color: #ededed;
}

.bgMainColorExLight {
  background-color: #ededed;
}

.mainColorUlLight {
  color: #f6f7f9;
}

.cautionColor {
  color: #e60110;
}

.bgMainColorUlLight {
  background-color: #f6f7f9;
}

.subColor {
  color: #443b24;
}

.bgSubColor {
  background-color: #004996;
}

.subColorDeep {
  color: #e3e3fb;
}

.bgSubColorDeep {
  background-color: #e3e3fb;
}

.bgSubColorLight {
  background-color: #e3e2e2;
}

.compColor {
  color: #a9a8a9;
}

.bgCompColor {
  background-color: #a9a8a9;
}

.grayColor {
  color: #cccdcd;
}

.bgGrayColor {
  background-color: #cccdcd;
}

.grayColorLight {
  color: #dcdcdc;
}

.bgGrayColorLight {
  background-color: #dcdcdc;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

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

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

.bgBlack {
  background: #000;
}

.bgWhite {
  background: #fff;
}

.bgGrad {
  background: #1a4179;
  background: linear-gradient(to right, #1a4179 0%, #3061f5 100%);
}

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

.grayLight {
  color: #9a9a9a;
}

.white {
  color: #fff;
}

/*フォント系*/
.fontEn {
  font-family: "Jost", sans-serif;
}

.fontNum {
  font-family: "Inter", sans-serif;
}

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

.serif {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #242628;
}

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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

li {
  list-style-type: none;
}

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

html {
  font-size: 10px;
}

html,
body {
  font-feature-settings: "palt";
}

body {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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;
}
.lh_xl * {
  line-height: 2;
}

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

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

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

.lh_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: 700 !important;
}

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

.thin {
  font-weight: 100;
}

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.gray {
  color: #9b9b9b;
}

.red {
  color: #ff4501 !important;
}

.red2 {
  color: #b50d23 !important;
}

.blue {
  color: #333d80;
}

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

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

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

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

.fsL45 {
  font-size: 45px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL45 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL45 {
    font-size: 27px;
  }
}

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

.fsML {
  font-size: 32px;
}
@media only screen and (max-width: 767px) {
  .fsML {
    font-size: 20px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fsS1 {
  font-size: 14px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS1 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS1 {
    font-size: 13px;
    line-height: 1.7;
  }
}

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

.h000 {
  font-size: 100px;
}

.h00 {
  font-size: 64px;
}

.h0 {
  font-size: 42px;
}

.h1 {
  font-size: 32px;
}

.h2 {
  font-size: 28px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 16px;
}

.text_m {
  font-size: 14px;
}

.text_sm {
  font-size: 13px;
}

.text_s {
  font-size: 12px;
}

.text_ss {
  font-size: 10px;
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body.single-interview {
  overflow-x: unset;
}
@media only screen and (max-width: 767px) {
  body.single-interview {
    overflow-x: hidden;
  }
}

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

/*
a:hover{
    opacity: 0.8;
    transition:0.3s;
}
*/
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0;
  font-weight: 100;
}

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

hr {
  margin: 10px auto;
}

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

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

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

.inlineBlockUl li {
  display: inline-block;
}

.disNone {
  display: none !important;
}

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

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

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

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

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

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

.box-center {
  margin-inline: auto;
}

@media only screen and (max-width: 767px) {
  .box-center_sp {
    margin-inline: auto;
  }
}

@media only screen and (max-width: 959px) {
  .box-center_spTab {
    margin-inline: auto;
  }
}

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

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

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .text-left-tabNote {
    text-align: left;
  }
}

.writting-rl {
  writing-mode: vertical-rl;
  font-feature-settings: normal;
}

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

@media screen and (min-width: 959px) {
  .spTab {
    display: none !important;
  }
}
@media screen and (min-width: 1130px) {
  .brakePoint {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 1885px) {
  .pc2 {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.pc3 {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .pc3 {
    display: block;
  }
}
@media screen and (max-width: 767px), screen and (min-width: 1280px) {
  .pcSp {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .Menu_p {
    display: none !important;
  }
}
@media screen and (min-width: 960px) {
  .Menu_s {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .notTab {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .notNote {
    display: none !important;
  }
  .note {
    display: block !important;
  }
}
/*余白*/
.m0 {
  margin: 0;
}

.p0 {
  padding: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.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: 959px) {
  .mb100 {
    margin-bottom: 50px;
  }
}

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

.ml0 {
  margin-left: 0;
}

.mbL {
  margin-bottom: 30%;
}

.mbL2 {
  margin-bottom: 25%;
}

.mbL3 {
  margin-bottom: 20%;
}

.mbL4 {
  margin-bottom: 15%;
}

.mbL5 {
  margin-bottom: 12%;
}

.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%;
  }
}
/*flex・グリッド系*/
.flex {
  display: flex;
}

.justCenter {
  justify-content: center;
}

.justEnd {
  justify-content: flex-end;
}

.justBetween {
  justify-content: space-between;
}

.alignCenter {
  align-items: center;
}

.alignStart {
  align-items: flex-start;
}

.alignEnd {
  align-items: flex-end;
}

.flexReverse {
  flex-flow: row-reverse;
}

.flexWrap {
  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%;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .col5 {
    width: 30%;
  }
}

.col-5 {
  width: 80%;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .col-5 {
    width: 70%;
  }
}

.col6 {
  width: 16.666%;
}

.col-6 {
  width: 83.333%;
}

.col3-2 {
  width: 60%;
}

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

@media screen and (max-width: 767px) {
  .flexSplit {
    width: 100%;
  }
  .flexPc {
    display: block;
  }
  .flexWrapSp {
    flex-wrap: wrap;
  }
  .bgFixed {
    background-attachment: unset;
  }
  .flexReverse {
    flex-flow: row;
  }
  .flexSp {
    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) {
  .flexTab {
    display: block;
  }
  .colMd1 {
    width: 100%;
  }
  .colMd2 {
    width: 50%;
  }
  .colMd3 {
    width: 33.3333%;
  }
  .colMd-3 {
    width: 66.6666%;
  }
  .colMd4 {
    width: 25%;
  }
  .colMd-4 {
    width: 75%;
  }
  .colMd5 {
    width: 20%;
  }
  .colMd-5 {
    width: 80%;
  }
  .colMd6 {
    width: 16.666%;
  }
  .colMd-6 {
    width: 83.333%;
  }
  .colMd3-2 {
    width: 60%;
  }
  .colMd-3-2 {
    width: 40%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .flexNote {
    display: block;
  }
}
/*横幅*/
.cnt {
  width: 90%;
  max-width: 1920px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1920px) {
  .cnt {
    width: 100%;
  }
}
@media only screen and (max-width: 959px) {
  .cnt {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cnt {
    max-width: 1200px;
  }
  .cnt.cntMS {
    width: 95%;
  }
}

.cntInnerWide {
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (min-width: 1201px) {
  .cntInnerWide {
    margin-left: calc((100vw - 1200px) / -2 - 15px);
    width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
}

.w100 {
  width: 100%;
}

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

.cntXSM {
  max-width: 1260px;
  margin-right: auto;
  margin-left: auto;
}

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

.cntSS {
  max-width: 1360px;
  margin-right: auto;
  margin-left: auto;
}

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

.cntMS {
  max-width: 1660px;
  margin-right: auto;
  margin-left: auto;
}

.cntMM {
  max-width: 1718px;
  margin-right: auto;
  margin-left: auto;
}

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

.cntXL {
  max-width: 1764px;
  margin-right: auto;
  margin-left: auto;
}

.cntWide {
  max-width: 1920px;
  width: 100% !important;
}

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

:root {
  --spaceSize: clamp(50px, 3.5vw, 63px);
  --spaceSizeMiddle: clamp(50px, 7.3vw, 120px);
  --spaceSizeSMiddle: clamp(65px, 4.5vw, 90px);
  --spaceSizeWide: clamp(135px, 14vw, 270px);
}

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

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

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

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

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

.margin-top {
  margin-top: var(--spaceSizeMiddle);
}

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

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

.bgImgHeight {
  padding-bottom: 67%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 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;
  filter: blur(3px);
  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 {
  width: 100%;
  transition: all 0.5s ease-out;
  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 {
  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: 5px;
}

.radiusM {
  border-radius: 10px;
}

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

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

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

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

.shadowLL {
  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秒で×枚数*/
  animation: anime 18s 0s infinite;
}

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

.mainImg:nth-of-type(3) {
  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;
}
*/
@keyframes anime {
  0% {
    opacity: 0;
  }
  /*3秒：フェードイン.3/alls*/
  16% {
    opacity: 1;
  }
  /*6秒：次のスライド再生.6/alls*/
  33% {
    opacity: 1;
  }
  /*9秒：フェードアウト&次のスライドフェードイン*/
  50% {
    opacity: 0;
    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: #a9a8a9;
  position: absolute;
  bottom: 0;
  left: -2.5%;
  width: 105%;
  height: 0.3em;
  z-index: 0;
}
.titleLine.sub {
  background: linear-gradient(transparent 70%, #443b24 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: #01bcf1;
  border-radius: 50px;
}
.titleBd.compColor:before {
  background-color: #a9a8a9;
}
.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%;
  transform: translateX(-50%);
  background-color: #01bcf1;
  border-radius: 2px;
}
.titleBdCenter.mini:after {
  bottom: -15px;
  width: 40px;
  height: 1.5px;
  border-radius: 0px;
}

.titleBdLeft {
  display: flex;
  align-items: center;
}
.titleBdLeft:before {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #01bcf1;
  display: block;
  margin-right: 1.5rem;
  max-width: 3rem;
}
.titleBdLeft.white:before {
  background: #fff;
}

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

.bdBox {
  border: 2px solid #01bcf1;
}

/*ボタン*/
/* ボタンだけに指定する場合は以下 */
.button {
  display: inline-block;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  border: 1px solid #333;
  padding: 0.5em 1em;
  letter-spacing: 0.1em;
  line-height: 1.4;
  box-shadow: 4px 4px 0px 0 #004686;
  font-size: 21px;
  background-color: #fff;
}
.button:hover {
  color: #004686;
  background-color: #fff;
}
.button.small {
  font-size: 16px;
}
.button.insta {
  box-shadow: 4px 4px 0px 0 #e264af;
}
.button.line {
  box-shadow: 4px 4px 0px 0 #4caa4d;
}
.button.mono {
  box-shadow: 4px 4px 0px 0 #c4c4c4;
}
/*==================================================
 * header
 *================================================*/
/*------------モーダルウィンドウ------------*/
/*オーバーレイメニュー*/
.overRayBox {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 997;
}
.overRayBox > ul {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.change-color .overRayBox {
  top: 48px;
}
.open .overRayBox {
  cursor: url(../images/cross.avif), auto;
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .overRayBox {
    top: 59px;
  }
  .change-color .overRayBox {
    top: 60px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .overRayBox {
    top: 83px;
  }
  .change-color .overRayBox {
    top: 82px;
  }
}

.all_fixed_nav_bg {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8888;
  pointer-events: none;
  opacity: 0;
}
.open .all_fixed_nav_bg {
  width: calc(100% - 469px);
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8888;
  pointer-events: none;
  opacity: 0;
}
.overlay.on {
  opacity: 1;
}

html.open {
  overflow-y: hidden;
}

/*ハンバーガーメニュー*/
.menu-btn {
  position: fixed;
  cursor: pointer;
  z-index: 998;
  right: 0;
  top: 0;
  height: 70px;
  width: 70px;
  background-color: transparent;
  border: none;
}
.menu-btn span:after {
  content: attr(data-txt-menu);
}
.open .menu-btn span:after {
  content: attr(data-txt-close);
}
@media only screen and (max-width: 767px) {
  .menu-btn {
    height: 62px;
    width: 70px;
    right: 0;
    top: 0;
  }
  .change-color .menu-btn {
    height: 64px;
    width: 70px;
    right: 0;
    top: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menu-btn {
    height: 79px;
    width: 70px;
  }
  .change-color .menu-btn {
    height: 79px;
    width: 70px;
    right: 0;
    top: 0;
  }
}

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

.menu-trigger {
  position: relative;
  width: 30px;
  height: 24px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #242628;
  border-radius: 2px;
}
.menu-trigger span:nth-of-type(1) {
  top: 5px;
}
.menu-trigger span:nth-of-type(2) {
  top: 15px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: -3px;
}
.menu-trigger.active span {
  background-color: #242628;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 0.8s forwards;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}
.menu-trigger.active span:nth-of-type(4) {
  background: none !important;
}
@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: #01bcf1;
}
.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 #01bcf1;
}

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

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

.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: flex;
}
.pageAboutCompanyUl li {
  padding: 0.5em 0;
}
@media only screen and (max-width: 767px) {
  .pageAboutCompanyUl li {
    padding: 0.8em 0;
    font-size: 13px;
  }
}
.pageAboutCompanyUl li:nth-child(1) {
  width: 30%;
  text-align: left;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .pageAboutCompanyUl li:nth-child(1) {
    font-size: 15px;
  }
}
.pageAboutCompanyUl li:nth-child(2) {
  width: 70%;
}
.fa-map-marker {
  color: #d9534f;
  font-size: 20px;
  margin-left: 1%;
}

/*残す--ここまで*/
/*お問い合わせページ------------------------------------*/
.cform {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.cform tr {
  margin-bottom: 1em;
  display: block;
}
.cform tr th,
.cform tr td {
  letter-spacing: 0.01em;
  text-align: left;
}
.cform tr th {
  vertical-align: middle;
  width: 225px;
  margin-bottom: 0.5em;
}
.cform tr td {
  width: 755px;
}
.cform label {
  margin-right: 1.5em;
}
.cform label span {
  line-height: 1;
  display: inline-block;
}
.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=tel],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 1em;
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 1.4;
  background-color: #f6f6f6;
}
.cform option::-moz-placeholder,
.cform textarea::-moz-placeholder,
.cform input[type=text]::-moz-placeholder,
.cform input[type=tel]::-moz-placeholder,
.cform input[type=email]::-moz-placeholder,
.cform input[type=search]::-moz-placeholder,
.cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option::-moz-placeholder, .cform textarea::-moz-placeholder, .cform input[type=text]::-moz-placeholder, .cform input[type=tel]::-moz-placeholder, .cform input[type=email]::-moz-placeholder, .cform input[type=search]::-moz-placeholder, .cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option::placeholder,
.cform textarea::placeholder,
.cform input[type=text]::placeholder,
.cform input[type=tel]::placeholder,
.cform input[type=email]::placeholder,
.cform input[type=search]::placeholder,
.cform input[type=url]::placeholder {
  color: #c1c1c1;
}
.cform select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #f6f6f6 !important;
  border: unset !important;
  border-radius: 2px !important;
  padding: 1.4em 0.5em !important;
  width: 49% !important;
}
.cform input[type=checkbox] + span:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  font-weight: 400;
  margin-top: -4px;
}
.cform select#select-title {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 1em;
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 1.4;
  background-color: #f6f6f6;
}
.cform .title {
  font-weight: 500;
}
.cform .smallText {
  font-size: clamp(1.2rem, 1.1757281553rem + 0.0647249191vw, 1.3rem);
}
@media only screen and (max-width: 767px) {
  .cform tr {
    margin-bottom: 2em;
  }
  .cform tr,
  .cform th,
  .cform td {
    display: block;
    width: 100% !important;
  }
  .cform select {
    width: 100% !important;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cform th {
    width: 260px !important;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cform th {
    width: 230px !important;
  }
}

.wpcf7-list-item input {
  margin-top: -3px;
}

.thcomment {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.2;
}

.contactBlock {
  border: solid 1px #dcdcdc;
  border-radius: 15px;
  padding: 2.5em 1.5em;
}
@media only screen and (max-width: 767px) {
  .contactBlock {
    border-radius: 10px;
    padding: 2em 1.5em 2em 1.5em;
  }
}

.openBtn2 {
  cursor: pointer;
  position: relative;
  transition: 0.3s ease-in-out;
  position: relative;
}
.openBtn2::before {
  opacity: 0;
}
.openBtn2::after, .openBtn2::before {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  color: #242628;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.openBtn2::after {
  content: "\f13a";
}
.openBtn2::before {
  content: "\f139";
}
.openBtn2.on::before {
  opacity: 1;
}
.openBtn2.on::after {
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .openBtn2::after, .openBtn2::before {
    font-size: 20px;
    right: 13px;
    top: 59%;
  }
}

.contactTitle {
  font-size: clamp(18px, 1.6vw, 25px);
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 600;
}
.contactTitle.__small {
  padding: 0;
}

.contactList {
  display: none;
  margin-top: 40px;
  padding-bottom: 1.5em;
}
.contactList > li {
  position: relative;
}
.contactList > li::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
  top: 10px;
  left: 0;
}
.contactList > li span {
  display: inline-block;
  font-size: clamp(15px, 1vw, 16px);
  padding-left: 1.2em;
  font-weight: 500;
}
.contactList > li span.__nopadding {
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .contactList {
    margin-top: 22px;
  }
  .contactList > li span {
    padding-left: 0.9em;
  }
  .contactList > li::after {
    width: 7px;
    height: 7px;
    top: 12px;
  }
}

.contactText {
  font-size: 16px;
  font-weight: 500;
}
.contactText.__small {
  font-size: 13px;
}

.required-srt {
  color: #fff;
  font-size: 13px;
  padding: 0.1em 0.5em;
  background-color: #b50d23;
  border-radius: 5px;
  margin: auto 0.7em;
}

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

#grad_year,
#grad_month,
#day_year,
#day_month {
  width: 10% !important;
}
#grad_year #grad_year,
#grad_month #grad_year,
#day_year #grad_year,
#day_month #grad_year {
  margin-right: 20px !important;
}
@media only screen and (max-width: 767px) {
  #grad_year,
  #grad_month,
  #day_year,
  #day_month {
    width: 30% !important;
  }
}

#birthday {
  width: 25% !important;
}
@media only screen and (max-width: 767px) {
  #birthday {
    width: 48% !important;
  }
}

#zip {
  width: 15% !important;
}
@media only screen and (max-width: 767px) {
  #zip {
    width: 40% !important;
  }
}

#pref {
  margin-right: 2.5%;
}
@media only screen and (max-width: 767px) {
  #pref {
    margin-right: 0;
  }
}

#city {
  margin-left: 2.5%;
}
@media only screen and (max-width: 767px) {
  #city {
    margin-left: 0;
  }
}

#pref,
#city {
  width: 98% !important;
}
@media only screen and (max-width: 767px) {
  #pref,
  #city {
    width: 100% !important;
    margin-bottom: 10px;
  }
}

.contactAlertBox {
  border: 1px solid #dcdcdc;
  border-radius: 15px;
  padding: 8% 5%;
  margin: 3% 0;
}
@media only screen and (max-width: 767px) {
  .contactAlertBox {
    padding: 8% 5%;
    margin: 10px 0;
  }
}

.contactAlertTitle {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
}

.wpcf7-spinner {
  display: none !important;
}

.submit-btn {
  text-align: center;
}
.submit-btn input {
  transition: 0.3s;
  font-size: 16px;
  letter-spacing: 0.07em;
  padding: 1.25em 2em;
  background-color: #2c2c2c;
  color: #fff;
  cursor: pointer;
  border: 1px solid transparent;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .submit-btn input {
    font-size: 14px;
  }
}

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

.wpcf7-response-output {
  border: none !important;
  line-height: 1.6;
  color: #dc3232 !important;
  text-align: center !important;
}

.wpcf7-response-output::before {
  content: "※";
}

/*下層ページ共通------------------------------------*/
.entry {
  margin-top: 7%;
  line-height: 1.8;
  letter-spacing: 0.15em;
  float: none;
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
}
.entry figcaption {
  font-size: 13px;
  color: gray;
}
.entry a {
  display: inline;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
  color: #33bad4;
}
.entry blockquote {
  padding: 2em 4em;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  color: #7b7b7b;
  background-color: #f6f7f9;
  font-style: italic;
  margin-bottom: 1.5em;
}
.entry blockquote p {
  font-size: 14px;
}
.entry strong {
  font-style: normal;
  font-weight: bold;
  background: linear-gradient(transparent 40%, #fff7c0 40%);
}
.entry p {
  margin: 0.5em 0 1.3em 0;
  line-height: 2.2;
  letter-spacing: 0.1em;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .entry p {
    font-size: 14px;
  }
}
.entry h2,
.entry h3,
.entry h4,
.entry h5 {
  font-weight: bold;
}
.entry h2 {
  font-size: 20px;
  margin: 8% auto 3%;
  background-color: #edeeef;
  padding: 0.5em 1em;
  border-radius: 3px;
  font-weight: bold;
  border-left: 4px solid #01bcf1;
  padding-left: 0.7em;
}
@media only screen and (max-width: 767px) {
  .entry h2 {
    font-size: 18px;
    margin: 12% auto 6%;
  }
}
.entry h3 {
  margin: 3% auto 3%;
  border-bottom: 1px solid #01bcf1;
  padding-bottom: 0.4em;
  font-weight: bold;
  font-size: 18px;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    margin: 6% auto 3%;
    font-size: 16px;
  }
}
.entry h4 {
  margin: 3% auto 3%;
  padding: 1em;
  font-weight: bold;
  font-size: 17px;
  background-color: #f4f4f4;
  padding-left: 2.6em;
  font-weight: 600;
  position: relative;
}
.entry h4::after {
  position: absolute;
  content: "";
  display: block;
  border-left: 12px solid #01bcf1;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 25px;
  left: 22px;
}
@media only screen and (max-width: 767px) {
  .entry h4 {
    margin: 6% auto 3%;
    font-size: 16px;
    padding-left: 2.3em;
  }
  .entry h4::after {
    border-left: 12px solid #01bcf1;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    top: 23px;
    left: 17px;
  }
}
.entry h5 {
  margin: 3% 0;
  color: #01bcf1;
  padding: 0.5em 2em;
  padding-left: 0;
  font-size: 16px;
  line-height: 1.4;
  display: inline-block;
  font-weight: 700;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .entry h5 {
    font-size: 15px;
  }
}
.entry table {
  width: 100%;
}
.entry table td {
  border-right: 1px solid #01bcf1;
  border-bottom: 1px solid #01bcf1;
}
.entry table td:first-child {
  width: 30%;
  background-color: #eef6fa;
  border-left: 1px solid #01bcf1;
}
.entry table td:last-child {
  width: auto;
}
.entry table th,
.entry table td {
  padding: 1.5rem 2rem;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .entry table th,
  .entry table td {
    padding: 1rem 1.5rem;
    font-size: 14px;
  }
}
.entry ul {
  margin-bottom: 2%;
}
.entry li {
  list-style-type: none;
  line-height: 1.7;
  font-weight: normal;
  margin-bottom: 0.3em;
  position: relative;
  padding-left: 1.5em;
  font-weight: bold;
}
.entry li:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f14a";
  color: #01bcf1;
  position: absolute;
  left: 0;
  font-weight: 400;
}
.entry figure {
  width: min(100%, 1366px);
  margin-right: auto;
  margin-left: auto;
}

/*目次*/
.toc_number {
  font-family: "Inter", sans-serif;
  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: #01bcf1;
}

.toc_list li:before {
  display: none;
}

.toc_title {
  border-bottom: 1px solid #01bcf1;
  font-size: 21px;
  font-weight: bold;
  padding-bottom: 0.3em;
}

.toc_toggle {
  font-size: 14px;
}

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

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

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

@media screen and (max-width: 767px) {
  .wp-caption-text {
    background: hsla(330, 50%, 60%, 0.48);
    width: 100%;
    text-align: left;
    padding: 1% 3%;
    word-wrap: break-word;
    font-size: 10px;
    color: white !important;
    position: relative !important;
    z-index: 1;
    top: -50px;
    display: block;
    left: 5%;
  }
}
/*リンクカードプラグイン*/
.lkc-title-text {
  font-weight: normal;
  letter-spacing: 0.15em;
  transition: 0.3s;
}
a:hover .lkc-title-text {
  color: #01bcf1;
  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 {
  box-shadow: none;
  border: 2px solid #01bcf1;
  border-radius: 10px;
  background-color: #aad1c1;
}

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

.lkc-thumbnail-img {
  border: none;
  box-shadow: none;
  border-radius: 10px;
  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: #01bcf1;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  display: none !important;
}

.lkc-info {
  background-color: #01bcf1;
  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;
  transition: 0.3s;
}

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

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

.singleColumnArticleContent {
  margin: auto;
}

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

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

.singleColumnInfoUl .date {
  margin-right: 1em;
}
.singleColumnInfoUl .cate {
  transition: 0.3s;
  display: inline-block;
  font-size: 13px;
  background-color: #fff;
  color: #fff;
  background-color: #01bcf1;
  border-radius: 5px;
  padding: 0.5em 1em;
  text-align: center;
  line-height: 1;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}
.singleColumnInfoUl .cate:hover {
  opacity: 0.7;
}
.singleColumnInfoUl .cateUl {
  display: inline-block;
  transition: 0.3s;
}
.singleColumnInfoUl .cateUl li {
  display: inline-block;
  font-size: 16px;
  line-height: 0.7;
  background-color: #01bcf1;
  color: #fff;
  border-radius: 5px;
  padding: 1em;
  text-align: center;
}
.singleColumnInfoUl .typeUl {
  display: inline-block;
  transition: 0.3s;
}
.singleColumnInfoUl .typeUl li {
  display: inline-block;
  font-size: 16px;
  line-height: 0.7;
  background-color: #7c0710;
  color: #fff;
  border-radius: 5px;
  padding: 1em;
  text-align: center;
}
.singleColumnInfoUl .typeUl.__cate li {
  background-color: #01bcf1;
}
.singleColumnInfoUl .typeUl.__cate:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 12px;
  }
  .singleColumnInfoUl .type 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;
  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 #01bcf1;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    padding: 8%;
    margin: 12% 0 6% 0;
  }
}

.singleColumnWriterTitle {
  border-bottom: 1px solid #01bcf1;
}

.singleColumnWriterButton {
  background: #fff;
  border: 1px solid #01bcf1;
  border-radius: 25px;
  padding: 0.25em;
  max-width: 280px;
  display: block;
  transition: 0.3s;
  color: #01bcf1;
}
.singleColumnWriterButton:hover {
  background: #01bcf1;
  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;
}

/*次のページを見る*/
.singleColumnPreNext {
  width: 57%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .singleColumnPreNext {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .singleColumnPreNext {
    width: 61%;
  }
}

.singleColumnPreNextBox {
  display: block;
  margin-inline: auto;
  width: 200px;
  padding: 1.2em;
  position: relative;
  transition: 0.3s;
  background-color: #e9eef0;
  border-radius: 10px;
}
.singleColumnPreNextBox.list {
  width: 110px;
}
.singleColumnPreNextBox.pre {
  margin-right: 1.5%;
}
.singleColumnPreNextBox.next {
  margin-left: 1.5%;
}
.singleColumnPreNextBox:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .singleColumnPreNextBox {
    width: 100px;
    padding: 0.6em 1em;
    border-radius: 7px;
  }
}

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

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

.cmNewsTitle {
  font-size: 17px;
  line-height: 1.5;
  padding-bottom: 0.75em;
  margin-bottom: 0.75em;
  font-weight: 600;
  border-bottom: 1px solid #004686;
}
@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: #9d9d9d;
}
@media only screen and (max-width: 767px) {
  .cmNewsDescri {
    font-size: 13px;
    line-height: 1.5;
  }
}

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

.cmNewsListImgWrap {
  overflow: hidden;
  margin-bottom: 6%;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .cmNewsListImgWrap {
    border-radius: 5px;
  }
}

.cmNewsListInfoUl li {
  display: inline-block;
  font-size: 12px;
  background: #01bcf1;
  display: inline-block;
  color: #fff;
  border-radius: 7px;
  padding: 0.4em 0.8em;
  text-align: center;
  line-height: 0.7;
  transition: 0.3s;
}
.cmNewsListInfoUl li:not(:last-child) {
  margin-right: 5px;
}
.cmNewsListInfoUl li:hover {
  opacity: 0.7;
}
.cmNewsListInfoUl.nofover {
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .cmNewsListInfoUl li {
    font-size: 12px;
  }
}

/*Pagenation*/
.pagenation {
  margin: 1em 0;
}
.pagenation ul {
  display: flex;
  justify-content: center;
}
.pagenation li {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  margin: 0 0.5%;
  border-radius: 50px;
  border: solid 1px #01bcf1;
  color: #707070;
  text-align: center;
  width: 43px;
  height: 55px;
  border-radius: 5px;
  position: relative;
}
.pagenation li a {
  width: 43px;
  height: 55px;
  display: block;
}
.pagenation li.active {
  cursor: not-allowed;
  display: inline-block;
  line-height: 0.7;
  color: #fff;
  background: #b9bec3;
  border: solid 1px #b9bec3;
}
.pagenation li.active span {
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pagenation li.prev {
  display: none;
}
.pagenation li.next {
  display: none;
}
.pagenation li.activeno {
  background: #01bcf1;
  border: solid 1px bold;
  transition: 0.3s;
  color: #fff;
}
.pagenation li.activeno span {
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pagenation li.activeno:hover {
  opacity: 0.7;
  border-radius: 5px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .pagenation li {
    font-size: 1.5rem;
    width: 30px;
    height: 40px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pagenation li {
    width: 40px;
    height: 50px;
  }
}

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

span.page-numbers {
  color: #01bcf1;
  font-weight: bold;
}

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

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

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

.sidebarNewsUl .cat-item {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.sidebarNewsUl .cat-item .date {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.sidebarNewsUl .cat-item .title {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .sidebarNewsUl .cat-item {
    padding-bottom: 0.25em;
    margin-bottom: 0.25em;
  }
  .sidebarNewsUl .cat-item .date {
    font-size: 13px;
  }
  .sidebarNewsUl .cat-item .title {
    font-size: 14px;
  }
}

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

.sidebarTitle {
  font-size: 27px;
  line-height: 1;
  font-family: "Jost", sans-serif;
  color: #01bcf1;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 1px solid;
  padding-bottom: 0.25em;
  margin-bottom: 0.75em;
}
@media only screen and (max-width: 767px) {
  .sidebarTitle {
    padding-bottom: 0.25em;
    margin-bottom: 1em;
    font-size: 26px;
  }
}

.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: #01bcf1;
  right: 10px;
  top: 10px;
  position: absolute;
  font-size: 14px;
}

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

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

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*==================================================
 * 全サイト共通
 *================================================*/
/*共通部分*/
:root {
  --header: 100px;
  scroll-padding: var(--header);
}

/*パンくず*/
/*パンくず終わり*/
.vertical {
  writing-mode: vertical-rl;
  font-feature-settings: normal;
  white-space: nowrap;
}

.verticalReverse {
  writing-mode: vertical-lr;
}

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

.grecaptcha-badge {
  visibility: hidden;
}

.new_entry .grecaptcha-badge,
.old_entry .grecaptcha-badge {
  visibility: visible;
}

.target {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

.target:nth-child(1) {
  animation-delay: 0s;
}

.target:nth-child(2) {
  animation-delay: 0.2s;
}

.target:nth-child(3) {
  animation-delay: 0.4s;
}

.target:nth-child(4) {
  animation-delay: 0.6s;
}

.target:nth-child(5) {
  animation-delay: 0.8s;
}

.target:nth-child(6) {
  animation-delay: 1s;
}

@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
/*==================================================
 * 当サイトのみ共通
 *================================================*/
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loadingInner {
  width: 850px;
  margin-inline: auto;
}
.loadingInner .loadImg {
  width: 900px;
}
@media only screen and (max-width: 767px) {
  .loadingInner .loadImg {
    width: 300px;
  }
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

address {
  font-style: normal;
}

main {
  margin-top: 120px;
}
.home main {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  main {
    margin-top: 61px;
  }
  .home main {
    margin-top: 61px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  main {
    margin-top: 96px;
  }
  .home main {
    margin-top: 84px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  main {
    margin-top: 82px;
  }
  .home main {
    margin-top: 82px;
  }
}

.submit-btn input,
.submit-btn button {
  margin-top: 4%;
  width: 300px;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: 0.3s;
  background-color: #01bcf1;
  color: #fff;
  padding: 1em 4em;
  border-radius: 50px;
  font-size: 16px;
  display: inline-block;
  transition: 0.3s;
  letter-spacing: 0.2em;
  font-weight: 700;
  cursor: pointer;
  width: auto;
}
.submit-btn input:hover,
.submit-btn button:hover {
  color: #fff;
  background-color: #242628;
}
@media only screen and (max-width: 767px) {
  .submit-btn input,
  .submit-btn button {
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 0 4em;
    height: 38px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .submit-btn input,
  .submit-btn button {
    font-size: 13px;
    line-height: 2;
    padding: 0 4em;
    height: 42px;
  }
}

.submit-back {
  margin-right: 7px;
}

.submit-next {
  margin-left: 7px;
}
.submit-next input,
.submit-next button {
  color: #fff;
  background: #242628;
  border: solid 1px #242628;
}
.submit-next input:hover,
.submit-next button:hover {
  background: #01bcf1;
  border: solid 1px #01bcf1;
}

.boxSadow {
  box-shadow: 9px 13px 6px 0px rgba(0, 0, 0, 0.1);
}

.textSadow2 {
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}

.textSadow {
  text-shadow: 8px 8px 8px #fff, -8px -8px 8px #fff, -8px 8px 8px #fff, 8px -8px 8px #fff, 8px 0px 8px #fff, -8px 0px 8px #fff, 0px 8px 8px #fff, 0px -8px 8px #fff;
}
@media only screen and (max-width: 767px) {
  .textSadow {
    text-shadow: 5px 5px 5px #fff, -5px -5px 5px #fff, -5px 5px 5px #fff, 5px -5px 5px #fff, 5px 0px 5px #fff, -5px 0px 5px #fff, 0px 5px 5px #fff, 0px -5px 5px #fff;
  }
}

.arrow_next {
  position: relative;
}
.arrow_next::after {
  transition: 0.3s;
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  font-size: 12px;
  color: #fff;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.arrow_next:hover::after {
  color: #fff;
  right: 8px;
}

.arrow_maru {
  position: relative;
}
.arrow_maru::after {
  transition: 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background-image: url(.././img/arrow_w.avif);
  background-repeat: no-repeat;
  background-size: 30px;
}
a:hover .arrow_maru::after {
  right: 8px;
}
.arrow_maru:hover::after {
  right: 8px;
}
@media only screen and (max-width: 767px) {
  .arrow_maru.__sp::after {
    right: 0;
  }
  .arrow_maru::after {
    right: 11px;
    width: 30px;
    height: 30px;
    background-size: 30px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .arrow_maru::after {
    right: 9px;
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
}

.commonTitleJp {
  font-size: clamp(2.4rem, 1.8174757282rem + 1.5533980583vw, 4.8rem);
  line-height: 1.2;
  font-weight: 600;
}

.commonTitleEn {
  font-size: clamp(1.5rem, 1.2815533981rem + 0.5825242718vw, 2.4rem);
  line-height: 1;
  font-family: "Jost", sans-serif;
  font-weight: 400;
}

.titleBox {
  margin-bottom: 13px;
}
.titleBox span {
  display: inline; /* block ではなく inline 系にする */
  font-size: clamp(1.8rem, 1.654368932rem + 0.3883495146vw, 2.4rem);
  font-weight: 500;
  line-height: 1.4;
  padding: 0.3em 0.5em;
  color: #fff;
  background-color: #01bcf1;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media only screen and (max-width: 767px) {
  .titleBox span {
    line-height: 2.3;
  }
}

.midashiUnit.__mega span {
  font-size: clamp(1rem, 0.6359223301rem + 0.9708737864vw, 2.5rem);
  color: #eaeaea;
}
.midashiUnit span {
  font-size: clamp(4rem, 3.5145631068rem + 1.2944983819vw, 6rem);
  line-height: 1;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 400;
}

.commonMidashi_1 {
  font-size: clamp(2rem, 1.5145631068rem + 1.2944983819vw, 4rem);
  letter-spacing: 0.1em;
  margin-bottom: 2%;
  line-height: 1.6;
  font-weight: 600;
  padding: 0.7em 1em 0.7em 1.2em;
  background-color: #d9f5fd;
  position: relative;
}
.commonMidashi_1.__small {
  font-size: clamp(1.8rem, 1.6058252427rem + 0.5177993528vw, 2.6rem);
}
.commonMidashi_1::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 100%;
  background-color: #01bcf1;
  top: 0;
  left: 0;
}

.commonMidashi_2 {
  font-size: clamp(1.8rem, 1.5087378641rem + 0.7766990291vw, 3rem);
  line-height: 1.4;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.8em;
}
.commonMidashi_2::after {
  content: "";
  display: block;
  position: absolute;
  width: 120px;
  height: 3px;
  background-color: #01bcf1;
  left: 0;
  bottom: 0;
}
.commonMidashi_2::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #cdcecf;
  left: 0;
  bottom: 0;
}

.aboutWrap .commonMidashi_3 span {
  padding-left: 2em;
  position: relative;
  line-height: 2.3;
}
.aboutWrap .commonMidashi_3 span::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f058";
  color: #fff;
  font-size: clamp(1.5rem, 1.3058252427rem + 0.5177993528vw, 2.3rem);
  font-weight: 900;
  left: 11px;
  top: -1px;
}
.commonMidashi_3 span {
  display: inline; /* block ではなく inline 系にする */
  font-size: clamp(1.8rem, 1.654368932rem + 0.3883495146vw, 2.4rem);
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 2.2;
  padding: 0.3em;
  color: #fff;
  background-color: #01bcf1;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media only screen and (max-width: 767px) {
  .aboutWrap .commonMidashi_3 span {
    font-size: 17px;
    padding-left: 1.3em;
  }
  .aboutWrap .commonMidashi_3 span::after {
    left: 4px;
    top: 2px;
  }
}

.commonMidashi_8 {
  font-size: clamp(1.8rem, 1.654368932rem + 0.3883495146vw, 2.4rem);
  line-height: 1.4;
  color: #fff;
  background-color: #01bcf1;
  border-radius: 10px;
  padding: 1em;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .commonMidashi_8 {
    padding: 0.6em 0.8em;
    border-radius: 7px;
  }
}

.commonMidashi_9 {
  font-size: clamp(2.2rem, 2.0058252427rem + 0.5177993528vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

.commonMidashi_10 {
  font-size: clamp(1.8rem, 1.727184466rem + 0.1941747573vw, 2.1rem);
  line-height: 1.4;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  color: #01bcf1;
  font-weight: 600;
}
.commonMidashi_10.__small {
  font-size: clamp(1.6rem, 1.5757281553rem + 0.0647249191vw, 1.7rem);
  color: #000;
}

.commonFvText {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 2;
}

.commonText {
  font-size: clamp(1.4rem, 1.3514563107rem + 0.1294498382vw, 1.6rem);
  font-weight: 500;
  line-height: 2;
}
.commonText.__large {
  font-size: clamp(1.4rem, 1.254368932rem + 0.3883495146vw, 2rem);
}
.commonText.__mid {
  font-size: clamp(1.4rem, 1.3029126214rem + 0.2588996764vw, 1.8rem);
}
.commonText.__lh {
  line-height: 2.4;
}
@media only screen and (max-width: 767px) {
  .commonText {
    line-height: 1.8;
    letter-spacing: 0.08em;
  }
}

.commonSubBtnTitle {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  font-weight: 600;
  font-family: "Jost", sans-serif;
  color: #fff;
  transition: 0.3s;
}
a:hover .commonSubBtnTitle {
  color: #000;
}

.commonSubBtn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #01bcf1;
  margin-inline: auto;
  position: relative;
  transition: 0.3s;
}
.commonSubBtn.__small_blue {
  width: 40px;
  height: 40px;
  background-color: #01bcf1;
}
.commonSubBtn.__small {
  width: 40px;
  height: 40px;
  background-color: #fff;
}
.commonSubBtn.__small::after {
  color: #01bcf1;
}
.commonSubBtn.__large {
  width: 120px;
  height: 120px;
  border: solid 2px #fff;
  background-color: transparent;
}
.commonSubBtn.__large::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  font-size: 20px;
  font-weight: 900;
}
a:hover .commonSubBtn.__large {
  border: solid 2px transparent;
}
.commonSubBtn.__right {
  margin-right: 0;
}
.commonSubBtn::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f061";
  color: #fff;
  font-size: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
a:hover .commonSubBtn {
  background-color: #000;
  transform: translateX(10px);
}
@media only screen and (max-width: 767px) {
  .commonSubBtn {
    width: 40px;
    height: 40px;
  }
  .commonSubBtn::after {
    font-size: 11px;
    top: 53%;
  }
  .commonSubBtn.__large {
    width: 60px;
    height: 60px;
    border: solid 1px #fff;
  }
  .commonSubBtn.__large::after {
    font-size: 10px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .commonSubBtn {
    width: 40px;
    height: 40px;
  }
  .commonSubBtn.__large {
    width: 65px;
    height: 65px;
    border: solid 1px #fff;
  }
  .commonSubBtn.__large::after {
    font-size: 10px;
  }
}

.commonBtn {
  font-size: clamp(1.4rem, 1.3029126214rem + 0.2588996764vw, 1.8rem);
  font-weight: 600;
  display: inline-block;
  line-height: 1;
  background-color: #242628;
  color: #01bcf1;
  padding: 1.5em 0.5em;
  border-radius: 7px;
  transition: 0.3s;
  width: 360px;
  position: relative;
}
.commonBtn::after {
  transition: 0.3s;
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f061";
  font-size: clamp(1.3rem, 1.2514563107rem + 0.1294498382vw, 1.5rem);
  color: #fff;
  right: 33px;
  top: 50%;
  transform: translateY(-50%);
}
.commonBtn:hover {
  background-color: #01bcf1;
  color: #fff;
}
.commonBtn:hover::after {
  right: 20px;
}
@media only screen and (max-width: 767px) {
  .commonBtn {
    width: 240px;
  }
}

.bg_color {
  padding: 2em 0 1em;
  position: relative;
}
.bg_color::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 103px;
  left: 0;
  z-index: -1;
  background-color: #e9eeef;
}

.textComent {
  text-indent: 1em;
  margin-left: 1em;
  font-size: clamp(1.3rem, 1.2757281553rem + 0.0647249191vw, 1.4rem);
  line-height: 1.4;
}

.commonComent {
  line-height: 1.3;
  letter-spacing: 0.07em;
  font-size: clamp(1.2rem, 1.1757281553rem + 0.0647249191vw, 1.3rem);
}
.commonComent.__top {
  margin-top: 5px;
}

.textLink {
  transition: 0.3s;
}
.textLink:hover {
  opacity: 0.7;
}
a:hover .textLink {
  opacity: 0.7;
}

.alink {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #01bcf1;
  text-decoration-color: #01bcf1;
  transition: 0.3s;
  position: relative;
}
footer .alink::after, .contactText .alink::after {
  display: none;
}
.alink.footerLink {
  color: #abadc6;
  text-decoration-color: #abadc6;
}
.alink:hover {
  color: #cccdcd;
  text-decoration-color: unset;
}

ul {
  list-style-type: disc !important;
}

.comment {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.6;
  text-indent: -1.2em;
  padding-left: 1.4em;
}
.comment.__large {
  font-size: clamp(1.5rem, 1.4514563107rem + 0.1294498382vw, 1.7rem);
  line-height: 1.6;
  text-indent: -0.7em;
  padding-left: 0.9em;
}
.comment.__small {
  font-size: clamp(1.3rem, 1.2757281553rem + 0.0647249191vw, 1.4rem);
  line-height: 1.2;
  text-indent: -0.7em;
  padding-left: 0.9em;
}

.text_Indent {
  text-indent: -1.5em;
  padding-left: 3.5em;
}

.text_link {
  text-decoration: underline;
  color: #01bcf1;
  transition: 0.3s;
}
.text_link:hover {
  color: #242628;
}

.commonList.__lh > li:not(:last-child) {
  margin-bottom: 5px;
}
.commonList.__grid2 {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 5px;
}
.commonList > li span {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.4;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding-left: 1.1em;
}
.commonList > li span::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #01bcf1;
  top: 7px;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .commonList.__grid2 {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 5px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonList.__grid2 {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.subList {
  margin: 8px 0;
}
.subList > li {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.6;
}

.commontitle_line span {
  background: linear-gradient(transparent 0%, #01bcf1);
}

.commonTable {
  width: 100%;
  background-color: #fff;
  table-layout: fixed; /* 横幅を固定レイアウトにする */
  -webkit-text-size-adjust: 100%; /* iPhone Safari の自動拡大を抑止 */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}
.commonTable th,
.commonTable td {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.8;
  font-weight: 500;
  padding: 0.6em 0.5em;
  border: solid 1px #dcdcdc;
  white-space: normal; /* テキストが長い場合に折り返す */
  word-break: break-word; /* 長い単語も折り返す */
}
.commonTable td .tableTextWrap dt {
  width: 10%;
}
.commonTable td .tableTextWrap dd {
  width: 90%;
}
.commonTable td .tableTextWrap2 dt {
  width: 28%;
}
.commonTable td .tableTextWrap2 dd {
  width: 72%;
}
.commonTable td img {
  width: 30px;
  margin: 0;
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
}
.commonTable th {
  background-color: #01bcf1;
  color: #fff;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .commonTable th,
  .commonTable td {
    display: block;
    width: 100%;
    padding: 0.5em 1em;
    border: unset;
  }
}

.Table_scroll {
  overflow-y: unset !important;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .Table_scroll {
    margin-bottom: 5%;
  }
}

/*==================================================
 * swiper slider
 *================================================*/
/* zoomup========================================*/
@keyframes zoomUp {
  /* 1.15倍させる指定 */
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.topFvWrap .swiper-slide {
  overflow: hidden;
  backface-visibility: hidden;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  /* 12秒かけて拡大させる */
  animation: zoomUp 12s linear 0s;
  animation-fill-mode: both;
}

.swiper-container {
  position: relative;
  z-index: -1;
}

.swiper-pagination-bullets {
  position: static;
  margin-top: 16px;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 0 0 10px !important;
  background: #333 !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #01bcf1 !important;
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.swiperImg {
  padding: 4em 0;
}
@media only screen and (max-width: 767px) {
  .swiperImg {
    padding: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .swiperImg {
    padding: 1.5em 0;
  }
}

.swiperInter,
.swiperImg {
  overflow: hidden;
  position: relative;
}

.swiperWorksWrap,
.swiperInterWrap,
.swiperImgWrap {
  position: relative;
}
.swiperWorksWrap .swiper-button-prev,
.swiperInterWrap .swiper-button-prev,
.swiperImgWrap .swiper-button-prev {
  display: block;
  width: 72px;
  height: 72px;
  background: #242628;
  border-radius: 50%;
}
.swiperWorksWrap .swiper-button-prev:after,
.swiperInterWrap .swiper-button-prev:after,
.swiperImgWrap .swiper-button-prev:after {
  content: "\f060";
  font-size: clamp(1.2rem, 1.1757281553rem + 0.0647249191vw, 1.3rem);
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiperWorksWrap .swiper-button-next,
.swiperInterWrap .swiper-button-next,
.swiperImgWrap .swiper-button-next {
  display: block;
  width: 72px;
  height: 72px;
  background: #242628;
  border-radius: 50%;
  right: 0;
}
.swiperWorksWrap .swiper-button-next:after,
.swiperInterWrap .swiper-button-next:after,
.swiperImgWrap .swiper-button-next:after {
  content: "\f061";
  font-size: clamp(1.2rem, 1.1757281553rem + 0.0647249191vw, 1.3rem);
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .swiperWorksWrap .swiper-button-prev,
  .swiperWorksWrap .swiper-button-next,
  .swiperInterWrap .swiper-button-prev,
  .swiperInterWrap .swiper-button-next,
  .swiperImgWrap .swiper-button-prev,
  .swiperImgWrap .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .swiperWorksWrap .swiper-button-prev,
  .swiperWorksWrap .swiper-button-next,
  .swiperInterWrap .swiper-button-prev,
  .swiperInterWrap .swiper-button-next,
  .swiperImgWrap .swiper-button-prev,
  .swiperImgWrap .swiper-button-next {
    width: 50px;
    height: 50px;
  }
}

.swiperWorksWrap .swiper-button-prev {
  top: 42%;
  left: 38px;
}
.swiperInterWrap .swiper-button-prev {
  top: 42%;
  left: -30px;
}
.swiperImgWrap .swiper-button-prev {
  top: 42%;
  left: -30px;
}
@media only screen and (max-width: 767px) {
  .swiperWorksWrap .swiper-button-prev {
    top: 50%;
    left: 2%;
  }
  .swiperInterWrap .swiper-button-prev {
    top: 42%;
    left: -11px;
  }
  .swiperImgWrap .swiper-button-prev {
    left: -1px;
    top: 51%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .swiperWorksWrap .swiper-button-prev {
    top: 41%;
    left: 2%;
  }
  .swiperInterWrap .swiper-button-prev {
    top: 42%;
    left: -11px;
  }
  .swiperImgWrap .swiper-button-prev {
    left: -1px;
    top: 47%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiperWorksWrap .swiper-button-prev {
    top: 36%;
    left: 2%;
  }
}

.swiperWorksWrap .swiper-button-next {
  right: 38px;
  top: 42%;
}
.swiperInterWrap .swiper-button-next {
  right: -30px;
  top: 42%;
}
.swiperImgWrap .swiper-button-next {
  right: -30px;
  top: 42%;
}
@media only screen and (max-width: 767px) {
  .swiperWorksWrap .swiper-button-next {
    right: 2%;
    top: 50%;
  }
  .swiperInterWrap .swiper-button-next {
    right: -11px;
    top: 42%;
  }
  .swiperImgWrap .swiper-button-next {
    right: -1px;
    top: 51%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .swiperWorksWrap .swiper-button-next {
    right: 1.5%;
    top: 41%;
  }
  .swiperInterWrap .swiper-button-next {
    right: -11px;
    top: 42%;
  }
  .swiperImgWrap .swiper-button-next {
    right: -1px;
    top: 47%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiperWorksWrap .swiper-button-next {
    top: 36%;
    right: 2%;
  }
}

.slideNone .swiper-button-next,
.slideNone .swiper-button-prev {
  display: none;
}

.topFvWrap {
  position: relative;
  width: 75%;
  margin-left: auto;
  padding-bottom: 5%;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .topFvWrap {
    width: 80%;
    padding-bottom: 17%;
  }
}

.topImg30thWrap {
  position: absolute;
  max-width: 338px;
  top: 64px;
  left: -206px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .topImg30thWrap {
    top: 25px;
    left: -56px;
    width: 44%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topImg30thWrap {
    top: 24px;
    left: -83px;
    width: 23%;
  }
}

.topFvTextWrap {
  position: absolute;
  top: 367px;
  left: 115px;
  max-width: 1280px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .topFvTextWrap {
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    width: 80%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFvTextWrap {
    top: 160px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topFvTextWrap {
    top: 193px;
  }
}

.since1995Wrap {
  position: absolute;
  bottom: 89px;
  right: 0;
  max-width: 1229px;
  mix-blend-mode: multiply;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .since1995Wrap {
    width: 85%;
    bottom: 62px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .since1995Wrap {
    width: 74%;
    bottom: 35px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .since1995Wrap {
    width: 74%;
    bottom: 45px;
  }
}

.topImgBackWrap {
  position: absolute;
  max-width: 1643px;
  bottom: 0;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .topImgBackWrap {
    width: 80%;
  }
}

/*==================================================
 * ヘッダー
 *================================================*/
.cf7msm-ro {
  text-transform: none !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .change-color header {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media only screen and (max-width: 767px) {
  .open header {
    background-color: #fff;
  }
  .change-color header {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .open header {
    width: 465px;
    left: auto;
    right: 0;
  }
  .change-color header {
    background-color: rgba(255, 255, 255, 0.8);
  }
}

.ahover {
  transition: 0.3s;
}
a:hover .ahover {
  opacity: 0.7;
}

.headerlogoBlock {
  position: absolute;
  top: 0;
  width: 346px;
  left: 0;
  transition: 0.3s;
}
.change-color .headerlogoBlock {
  top: 0;
  width: 243px;
}
@media only screen and (max-width: 767px) {
  .headerlogoBlock {
    top: 0;
    width: 175px;
    left: 0;
  }
  .change-color .headerlogoBlock {
    width: 175px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .headerlogoBlock {
    top: 0;
    width: 238px;
  }
  .open .headerlogoBlock {
    width: 200px;
    left: -4px;
  }
}

.sankaku {
  background-color: #01bcf1;
  width: 50px;
  height: 50px;
  margin: 0 2em;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media only screen and (max-width: 767px) {
  .sankaku {
    margin: 0.9em 0;
    width: 25px;
    height: 20px;
    margin-inline: auto;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}

.businessList {
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.__comp .businessList > li {
  width: calc((100% - 15px) / 2);
}
.businessList > li {
  width: calc((100% - 30px) / 3);
}

.busMenuImgWrap {
  border-radius: 10px;
}

.busMenuImg {
  padding-bottom: 50%;
}

.menuBtn {
  all: unset;
  font: inherit;
  cursor: pointer;
  display: block;
  width: 100%;
}

.megaMenu {
  position: absolute;
  top: 70px; /* ヘッダーの高さなどに合わせて調整 */
  left: 50%;
  transform: translateX(-50%);
  padding: 1em 1.3em;
  width: 220px;
  background-color: #fff;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.5s;
}
.megaMenu.__env {
  width: 112px;
}
.megaMenu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
.change-color .megaMenu {
  top: 60px; /* ヘッダーの高さなどに合わせて調整 */
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .megaMenu {
    top: 64px; /* ヘッダーの高さなどに合わせて調整 */
  }
}

.megaMenuList > li:not(:last-child) {
  margin-bottom: 5px;
}
.megaMenuList > li > a {
  display: block;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  font-weight: 600;
  transition: 0.3s;
}
.megaMenuList > li > a:hover {
  color: #01bcf1;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .megaMenuList > li:not(:last-child) {
    margin-bottom: 2px;
  }
  .megaMenuList > li > a {
    font-size: 14px;
  }
}

.megaMenuListCard > li {
  padding-left: 1em;
  position: relative;
}
.megaMenuListCard > li > a {
  display: block;
  position: relative;
  padding-left: 1em;
  line-height: 1.8;
}
.megaMenuListCard > li > a span {
  font-size: clamp(1.2rem, 1.1514563107rem + 0.1294498382vw, 1.4rem);
  line-height: 1;
  letter-spacing: 0.2em;
}
.megaMenuListCard > li > a::after {
  transition: 0.3s;
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  left: 0;
  top: 54%;
  transform: translateY(-50%);
  content: "\f054";
  font-weight: 900;
  font-size: 10px;
  color: #01bcf1;
}
.megaMenuListCard > li > a:hover {
  opacity: 0.7;
}
.megaMenuListCard > li > a:hover::after {
  left: 3px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .megaMenuListCard > li {
    padding-left: 0.3em;
  }
}

.headerTopMenuBlock {
  margin-top: 8px;
  margin-right: 22px;
}
.change-color .headerTopMenuBlock {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .headerTopMenuBlock {
    margin-top: 3px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerTopMenuBlock {
    margin-top: 0;
    margin-right: 18px;
  }
}

.headerMenuCard {
  margin-right: 20px;
}
.headerMenuCard > li {
  transition: 0.3s;
}
.headerMenuCard > li.current > a {
  color: #01bcf1;
}
.headerMenuCard > li > a {
  letter-spacing: 0.15em;
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  text-align: center;
  display: block;
  color: #242628;
  font-weight: 600;
  line-height: 2;
  padding: 0.9em 0.8em 2.3em;
  transition: 0.3s;
}
.headerMenuCard > li > a:hover {
  color: #01bcf1;
}
.headerMenuCard > li.hasMegaMenuLi {
  position: relative;
}
.headerMenuCard > li.hasMegaMenuLi::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f078";
  left: 50%;
  transform: translateX(-50%);
  color: #242628;
  z-index: -1;
  bottom: 5px;
  font-size: 15px;
  transition: 0.3s;
}
.headerMenuCard > li.hasMegaMenuLi:hover::after {
  bottom: 0;
}
.change-color .headerMenuCard {
  margin-top: 15px;
}
.change-color .headerMenuCard > li.hasMegaMenuLi::after {
  bottom: 7px;
}
.change-color .headerMenuCard > li.hasMegaMenuLi:hover::after {
  bottom: 4px;
}
.change-color .headerMenuCard > li > a {
  font-size: clamp(1.4rem, 1.3514563107rem + 0.1294498382vw, 1.6rem);
  padding: 0 1em 1.7em;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerMenuCard > li > a {
    font-size: 15px;
    padding: 0.7em 0.4em 2em;
  }
  .headerMenuCard > li.hasMegaMenuLi::after {
    bottom: 2px;
  }
  .headerMenuCard > li.hasMegaMenuLi:hover::after {
    bottom: 0px;
  }
  .change-color .headerMenuCard {
    margin-top: 0;
  }
  .change-color .headerMenuCard > li > a {
    font-size: 14px;
    padding: 0.7em 0.4em 2em;
  }
}

.headerBtnWrap {
  margin-top: 3px;
}
.change-color .headerBtnWrap {
  margin-top: 0;
  padding: 0.3em 0;
}
@media only screen and (max-width: 767px) {
  .headerBtnWrap {
    margin-top: 0;
    margin-right: 12%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerBtnWrap {
    margin-right: 8%;
    margin-top: 0;
  }
  .open .headerBtnWrap {
    margin-top: -2px;
    margin-right: 13%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerBtnWrap {
    margin-top: 4px;
  }
}

.headerMenuList {
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.headerMenuList > li:nth-child(2) > a {
  background-color: #004686;
}
.change-color .headerMenuList > li > a {
  width: 75px;
  height: 75px;
}
.change-color .headerMenuList > li > a > dl > dt {
  font-size: clamp(1.2rem, 1.127184466rem + 0.1941747573vw, 1.5rem);
}
.change-color .headerMenuList > li > a > dl > dd {
  font-size: clamp(1.2rem, 1.127184466rem + 0.1941747573vw, 1.5rem);
}
.headerMenuList > li > a {
  display: block;
  width: 96px;
  height: 96px;
  background-color: #01bcf1;
  border-radius: 50%;
  position: relative;
  transition: 0.3s;
}
.headerMenuList > li > a > dl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.headerMenuList > li > a > dl > dt {
  font-size: clamp(1.2rem, 1.054368932rem + 0.3883495146vw, 1.8rem);
  font-weight: 500;
  line-height: 1.4;
}
.headerMenuList > li > a > dl > dd {
  font-size: clamp(1.2rem, 1.054368932rem + 0.3883495146vw, 1.8rem);
  font-family: "Jost", sans-serif;
  font-weight: 500;
  line-height: 1;
}
.headerMenuList > li:hover > a {
  background-color: #242628;
}
@media only screen and (max-width: 767px) {
  .headerMenuList {
    -moz-column-gap: 7px;
         column-gap: 7px;
  }
  .headerMenuList > li > a {
    width: 54px;
    height: 54px;
  }
  .change-color .headerMenuList {
    -moz-column-gap: 7px;
         column-gap: 7px;
  }
  .change-color .headerMenuList > li > a {
    width: 54px;
    height: 54px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerMenuList {
    -moz-column-gap: 7px;
         column-gap: 7px;
  }
  .headerMenuList > li > a {
    width: 67px;
    height: 67px;
  }
  .change-color .headerMenuList {
    -moz-column-gap: 7px;
         column-gap: 7px;
  }
  .change-color .headerMenuList > li > a {
    width: 67px;
    height: 67px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerMenuList > li > a {
    width: 75px;
    height: 75px;
  }
  .headerMenuList > li > a > dl > dt {
    font-size: 14px;
  }
  .headerMenuList > li > a > dl > dd {
    font-size: 14px;
  }
  .change-color .headerMenuList > li > a {
    width: 75px;
    height: 75px;
  }
}

.overRayMenuUl {
  margin-bottom: 10%;
}
.overRayMenuUl > li {
  position: relative;
  font-size: 16px;
  padding: 1.7rem 0.8rem;
  font-weight: 500;
}
.overRayMenuUl > li:nth-child(6) > a span {
  position: relative;
}
.overRayMenuUl > li:nth-child(6) > a span::after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  right: -21px;
  width: 14px;
  height: 12px;
  background-image: url(.././img/link.svg);
  background-repeat: no-repeat;
  background-size: 14px;
}
.overRayMenuUl > li > a {
  display: block;
}
.overRayMenuUl > li:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #cdcecf;
}
.overRayMenuUl > li .menuBtn {
  display: block;
  transition: 0.3s;
  position: relative;
  font-weight: 500;
}
.overRayMenuUl > li .menuBtn::before, .overRayMenuUl > li .menuBtn::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  font-size: 20px;
  line-height: 1;
  width: 25px;
  height: 25px;
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
  font-weight: 100;
  z-index: 1;
  transition: 0.3s;
  opacity: 1;
}
.overRayMenuUl > li .menuBtn::before {
  content: "\f105";
  right: -7px;
}
.overRayMenuUl > li .menuBtn.hasMegaMenuA::before {
  content: "\f107";
  right: -5px;
}
.overRayMenuUl > li .menuBtn.hasMegaMenuA.on {
  padding-bottom: 5%;
}
.overRayMenuUl > li .menuBtn.hasMegaMenuA.on::after {
  content: "\f077";
  right: -5px;
}
.overRayMenuUl > li .menuBtn.hasMegaMenuA.on::before {
  opacity: 0;
}
.overRayMenuUl > li .menuBtn:hover {
  opacity: 0.5;
}
.overRayMenuUl > li .menuBtn > ul:not(:last-child) > li {
  padding: 30em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .overRayMenuUl > li {
    padding: 1.6rem 1rem;
  }
}

.megaMenue > li {
  font-size: 16px;
}

.splist {
  display: none;
  background-color: #01bcf1;
  width: 105%;
  margin-left: -2.5%;
}
.splist > li {
  font-size: 15px;
  padding: 0.5em;
}
.splist > li:not(:last-child) {
  border-bottom: solid 1px #fff;
}
.splist > li > a {
  color: #fff;
}
.splist > li > a::before {
  right: -9px !important;
}
.splist > li > a:hover::before {
  right: -15px !important;
}
.splist > li > a.__none::before {
  display: none;
}

.splistList {
  margin-top: 7px;
}
.splistList > li {
  margin-bottom: 8px;
}
.splistList > li > a {
  font-size: 15px;
  padding-left: 1em;
  font-weight: 300;
  color: #01bcf1;
  transition: 0.3s;
  position: relative;
}
.splistList > li > a::after {
  right: 0 !important;
}
.splistList > li > a:hover {
  opacity: 0.7;
}

.splistText {
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.hasMegaMenuLiList {
  display: none;
}
.hasMegaMenuLiList.hasMegaMenuBack {
  position: relative;
}
.hasMegaMenuLiList.hasMegaMenuBack::after {
  position: absolute;
  content: "";
  display: block;
  width: 110%;
  height: 102.3%;
  top: 0;
  left: -5%;
  padding: 0 5%;
  background: rgba(0, 0, 0, 0.08);
  z-index: -1;
}
.hasMegaMenuLiList > li {
  padding: 0.6em 0;
  position: relative;
}
.hasMegaMenuLiList > li:last-child {
  padding: 0.6em 0 0;
}
.hasMegaMenuLiList > li::after {
  position: absolute;
  content: "";
  display: block;
  width: 105%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  left: -0.5em;
  top: 0;
}

.overRayBlock {
  display: flex;
  width: 469px;
  margin-left: auto;
  overflow-y: scroll;
  position: relative;
  z-index: 9999;
}
@media only screen and (max-width: 767px) {
  .overRayBlock {
    width: 100%;
  }
}

.overRayImgCard {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .overRayImgCard {
    width: 30%;
  }
}

.overRayTextCard {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 100vh;
  overflow-y: scroll;
  padding: 0 15px 70px;
  background-color: #fff;
}
@media only screen and (max-width: 1366px) {
  .overRayTextCard {
    padding-top: 33px;
  }
}
@media only screen and (max-width: 767px) {
  .overRayTextCard {
    width: 100%;
    padding: 36px 22px 0;
    padding-bottom: 30%;
  }
}

.scroll_downBox {
  position: absolute;
  left: 54px;
  bottom: 112px;
  width: 15px;
  z-index: 2;
  padding: 0 0 9.5em 0;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.scroll_downBox::after, .scroll_downBox::before {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
}
.scroll_downBox::before {
  width: 1px;
  height: 140px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.scroll_downBox::after {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  animation: circlemove 1.8s ease-in-out infinite, cirlemovehide 1.8s ease-out infinite;
}
@media only screen and (max-width: 959px) {
  .scroll_downBox {
    display: none;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .scroll_downBox {
    display: none;
  }
}

@keyframes circlemove {
  0% {
    bottom: 130px;
  }
  100% {
    bottom: 10px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  @keyframes circlemove {
    0% {
      bottom: 140px;
    }
    100% {
      bottom: 70px;
    }
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  @keyframes circlemove {
    0% {
      bottom: 170px;
    }
    100% {
      bottom: 80px;
    }
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.bg-wrap {
  position: relative;
  display: inline-block;
}

.bg.is-animated .bg-wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #01bcf1 0%, #3b79cc 70%, #02387e 100%);
  transform-origin: left center;
  z-index: 2;
  animation: bg 2.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bg-wrap img {
  display: block;
  position: relative;
  z-index: 1;
}

/* アニメーション */
@keyframes bg {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  70% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0; /* ← 最後に透明にして画像だけ残す */
  }
}
/*==================================================
 * header
 *================================================*/
@media only screen and (max-width: 767px) {
  .commonFvImg {
    background-image: url(.././img/commonFv_sp.webp) !important;
  }
}

.commonFvTextWrap {
  padding: 9% 0;
}
@media only screen and (max-width: 767px) {
  .commonFvTextWrap {
    padding: 14% 0;
  }
}

.commonFvTitle {
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.1);
  display: inline-block;
  font-size: clamp(2rem, 1.0291262136rem + 2.5889967638vw, 6rem);
  letter-spacing: 0.01em;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  padding: 0.4em 1em;
  background-color: #01bcf1;
}

/*==================================================
 * pagenation*/
:root {
  --swiper-theme-color: #fff;
}

/*==================================================
 * フッター
 *================================================*/
footer {
  padding: 5em 0 0;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 2.3em 0 0;
  }
}

.footerlogoImg {
  width: 346px;
}
@media only screen and (max-width: 767px) {
  .footerlogoImg {
    width: 210px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .footerlogoImg {
    width: 257px;
  }
}

.footerBtn {
  cursor: pointer;
  position: fixed;
  right: 0;
  bottom: 10%;
  width: 72px;
  height: 72px;
  background-color: #01bcf1;
  transition: 0.3s;
  z-index: 9999;
  display: none;
}
.footerBtn.visible {
  display: block;
}
.footerBtn::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f077";
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1366px) {
  .footerBtn {
    display: none !important;
  }
}

.topCntBlock {
  margin-top: -62px;
  background-color: #242628;
  border-radius: 10px;
}
.topCntBlock > a {
  display: block;
  padding: 5em 7.5em 5em 6em;
  transition: 0.3s;
}
.topCntBlock > a:hover {
  background-color: #01bcf1;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .topCntBlock {
    margin-top: -10px;
  }
  .topCntBlock > a {
    padding: 2em 4.6em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topCntBlock {
    margin-top: -22px;
  }
  .topCntBlock > a {
    padding: 3em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topCntBlock {
    margin-top: -28px;
  }
  .topCntBlock > a {
    padding: 3em;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .footerWrap {
    display: block;
  }
}

.footerMenuBlock {
  width: 60%;
}
@media only screen and (max-width: 959px) {
  .footerMenuBlock {
    width: 100%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .footerMenuBlock {
    width: 100%;
  }
}

.footerInfoText {
  font-size: clamp(1.4rem, 1.3029126214rem + 0.2588996764vw, 1.8rem);
  font-weight: 500;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .footerInfoText {
    line-height: 1.6;
  }
}

.footerTitle {
  color: #01bcf1;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1;
}

.footerMenueList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 37px;
       column-gap: 37px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .footerMenueList {
    -moz-column-gap: 15px;
         column-gap: 15px;
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .footerMenueList {
    -moz-column-gap: 30px;
         column-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
}

.footerMenueTitle {
  font-size: clamp(1.6rem, 1.4058252427rem + 0.5177993528vw, 2.4rem);
  line-height: 1;
  font-weight: 600;
}

.footer_groupList > li {
  border-top: solid 2px #cdcecf;
  padding: 1.5em 1.1em;
}
@media only screen and (max-width: 767px) {
  .footer_groupList > li {
    padding: 1.5em 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footer_groupList > li {
    padding: 1.5em 0.5em;
  }
}

.footerMenueSubList > li:not(:last-child) {
  margin-bottom: 13px;
}
.footerMenueSubList > li > a {
  display: block;
  transition: 0.3s;
}
.footerMenueSubList > li > a span {
  display: block;
  position: relative;
  font-size: clamp(1.4rem, 1.3029126214rem + 0.2588996764vw, 1.8rem);
  line-height: 1.3;
  font-weight: 500;
  padding-left: 0.9em;
}
.footerMenueSubList > li > a span::after {
  content: "";
  display: block;
  position: absolute;
  width: 9px;
  height: 2px;
  background-color: #01bcf1;
  left: 0;
  top: 13px;
}
.footerMenueSubList > li > a:hover {
  color: #01bcf1;
}
@media only screen and (max-width: 767px) {
  .footerMenueSubList > li:not(:last-child) {
    margin-bottom: 6px;
  }
  .footerMenueSubList > li > a span {
    padding-left: 0.7em;
  }
  .footerMenueSubList > li > a span::after {
    width: 5px;
    height: 2px;
    top: 10px;
  }
}

.menueSubList > li:not(:last-child) {
  margin-bottom: 7px;
}
.menueSubList > li:nth-child(2) > a span {
  position: relative;
}
.menueSubList > li:nth-child(2) > a span::after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  right: -13px;
  width: 14px;
  height: 12px;
  background-image: url(.././img/link.svg);
  background-repeat: no-repeat;
  background-size: 14px;
}
.menueSubList > li > a {
  display: block;
  transition: 0.3s;
}
.menueSubList > li > a span {
  font-size: clamp(1.4rem, 1.3514563107rem + 0.1294498382vw, 1.6rem);
  line-height: 1.3;
  font-weight: 500;
}
.menueSubList > li > a:hover {
  color: #01bcf1;
}
@media only screen and (max-width: 767px) {
  .menueSubList.__last {
    width: 98%;
    margin-inline: auto;
    -moz-column-gap: 53px;
         column-gap: 53px;
    display: flex;
    justify-content: center;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .menueSubList.__last {
    position: absolute;
    bottom: 12%;
    right: 43px;
  }
}

@media only screen and (max-width: 767px) {
  .footerCopy {
    margin-top: 0;
    padding: 10px 0 5px;
  }
}

.copylightText {
  padding: 8em 0 2em;
  font-size: clamp(1.2rem, 1.1029126214rem + 0.2588996764vw, 1.6rem);
  font-weight: 400;
  color: #969799;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .copylightText {
    padding: 0.9em 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .copylightText {
    padding: 1.2em 0;
  }
}

/*==================================================
 * 下層section
 *================================================*/
/*トップページ
*================================================*/
.breadBrock {
  padding: 1em 0 2em;
}
@media only screen and (max-width: 767px) {
  .breadBrock {
    padding: 1em 0;
  }
}

.breadcrumbsWrap {
  margin-bottom: 22px;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .breadcrumbsWrap {
    margin-bottom: 10px;
  }
}

.breadcrumbs {
  font-size: 12px;
  font-weight: 600;
}
.breadcrumbs .current-item {
  color: #01bcf1;
}
.breadcrumbs a {
  transition: 0.3s;
}
.breadcrumbs a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs {
    font-size: 10px;
  }
}

.topAboutImgBlock {
  width: 43%;
  margin-right: 7%;
}
@media only screen and (max-width: 767px) {
  .topAboutImgBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topAboutImgBlock {
    margin-right: 5%;
  }
}

.topAboutTextBlock {
  width: 35%;
  margin-right: 15%;
}
@media only screen and (max-width: 767px) {
  .topAboutTextBlock {
    width: 100%;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topAboutTextBlock {
    width: 55%;
    margin-right: 2%;
  }
}

.topCeoImg {
  padding-bottom: 67%;
}

.topComImgWrap {
  position: absolute;
  right: 60px;
  top: -132px;
  max-width: 480px;
  z-index: 9;
}
@media only screen and (max-width: 1742px) {
  .topComImgWrap {
    top: -63px;
    width: 24%;
  }
}
@media only screen and (max-width: 767px) {
  .topComImgWrap {
    top: -44px;
    right: 33px;
    width: 40%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topComImgWrap {
    width: 35%;
    right: 20px;
    top: -47px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topComImgWrap {
    width: 28%;
    right: 46px;
    top: -37px;
  }
}

@media only screen and (max-width: 767px) {
  .topComBackImg {
    background-image: url("../img/topComBack_sp.webp") !important;
    position: relative;
  }
  .topComBackImg::after, .topComBackImg::before {
    content: "";
    display: block;
    position: absolute;
    width: 375px;
    height: 20px;
    background-image: url("../img/topComBack_sp_line.webp");
    background-repeat: no-repeat;
    background-size: 375px;
  }
  .topComBackImg::before {
    top: 0;
    left: 0;
  }
  .topComBackImg::after {
    bottom: 0;
    left: 0;
  }
}

.topComInner {
  padding: 8em 0 13.6em;
}
@media only screen and (max-width: 959px) {
  .topComInner {
    padding: 6.5em 0 5em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topComInner {
    padding: 6em 0;
  }
}

.topComList {
  -moz-column-gap: 120px;
       column-gap: 120px;
}
.topComList > li {
  width: calc((100% - 120px) / 2);
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1400px) {
  .topComList {
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
  .topComList > li {
    width: calc((100% - 80px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  .topComList {
    row-gap: 50px;
  }
  .topComList > li {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topComList {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .topComList > li {
    width: calc((100% - 30px) / 2);
  }
}

.topComImg {
  position: relative;
  padding-bottom: 96%;
}
.topComImg::after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.topComImg::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 5px solid transparent;
  -o-border-image: linear-gradient(-135deg, #e5ce75, #f5eea0, #b9893d) 1;
     border-image: linear-gradient(-135deg, #e5ce75, #f5eea0, #b9893d) 1;
  z-index: -1;
  background: transparent;
  box-sizing: border-box;
  transition: 0.3s;
}
a:hover .topComImg::after {
  opacity: 0.5;
}
a:hover .topComImg::before {
  top: 0;
  left: 0;
}
@media only screen and (max-width: 959px) {
  .topComImg {
    width: 95%;
    padding-bottom: 73%;
  }
  .topComImg::before {
    top: 15px;
    left: 15px;
    border: 3px solid transparent;
    -o-border-image: linear-gradient(-135deg, #e5ce75, #f5eea0, #b9893d) 1;
       border-image: linear-gradient(-135deg, #e5ce75, #f5eea0, #b9893d) 1;
  }
}

.topComSubInner {
  position: absolute;
  width: 100%;
  bottom: 39px;
  left: 0;
  z-index: 2;
}

.topComText span {
  display: inline; /* block ではなく inline 系にする */
  font-size: clamp(1.4rem, 1.3029126214rem + 0.2588996764vw, 1.8rem);
  font-weight: 500;
  line-height: 2.2;
  padding: 0.3em 0.8em;
  background-color: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topComText {
    width: 311px;
  }
}

.topComTitle {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(2.2rem, 1.7631067961rem + 1.1650485437vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #01bcf1;
  padding: 0.4em 0.5em 0.5em;
  background-color: #242628;
}
.topComTitle.__small {
  width: 400px;
}
@media only screen and (max-width: 767px) {
  .topComTitle.__small {
    width: 179px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topComTitle {
    font-size: 20px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topComTitle {
    font-size: 25px;
  }
}

.topComTitleBlock {
  width: 80%;
}

.topComBtnBlock {
  width: 25%;
}

.topWorksBox {
  width: 340px;
  padding: 0.6em 0 0.6em 0.5em;
  background-color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 767px) {
  .topWorksBox {
    width: 275px;
    padding: 0.8em 0 0.8em 0.5em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topWorksBox {
    width: 234px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topWorksBox {
    width: 250px;
  }
}

.topWorksCate {
  font-size: clamp(1.4rem, 1.3514563107rem + 0.1294498382vw, 1.6rem);
  font-weight: 500;
  line-height: 1.4;
  transition: 0.3s;
}
a:hover .worksTitleBox .topWorksCate {
  color: #000;
}

.worksTitleBox {
  padding-bottom: 3em;
  position: relative;
}
.worksTitleBox::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: 1.5em;
  left: 0;
  transition: 0.3s;
}
a:hover .worksTitleBox::after {
  background-color: #000;
}
@media only screen and (max-width: 767px) {
  .worksTitleBox {
    padding-bottom: 2.5em;
  }
  .worksTitleBox::after {
    bottom: 1.2em;
  }
}

.topWorksTitle {
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  transition: 0.3s;
}
a:hover .worksTitleBox .topWorksTitle {
  color: #000;
}

.topWorksTitleWrap {
  position: absolute;
  top: 77%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
  transform: translateZ(0);
  will-change: transform;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topWorksTitleWrap {
    top: 72%;
  }
}

.slideWorksImg {
  position: relative;
  padding-bottom: 84%;
  z-index: 0;
}

.slideInterImg {
  position: relative;
  padding-bottom: 129%;
}

.topInterTextWrap {
  position: relative;
  width: 80%;
  margin-top: -61px;
  z-index: 2;
  transform: translateZ(0);
  will-change: transform;
}

.topInterBox {
  padding: 1.7em 1.8em;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .topInterBox {
    padding: 1em 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topInterBox {
    padding: 1em 1em;
  }
}

.topInterCareer {
  font-size: clamp(1.4rem, 1.3029126214rem + 0.2588996764vw, 1.8rem);
  line-height: 1;
  font-weight: 500;
}

.topInterName {
  font-size: clamp(2rem, 1.7087378641rem + 0.7766990291vw, 3.2rem);
  line-height: 1;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  color: #01bcf1;
}

.topInterCate {
  display: inline-block;
  font-size: clamp(1rem, 0.854368932rem + 0.3883495146vw, 1.6rem);
  font-weight: 600;
  border-radius: 30px;
  line-height: 1;
  color: #fff;
  padding: 0.6em 1em;
  background-color: #80a3c5;
  border: solid 1px #80a3c5;
  transition: 0.3s;
}
.topInterCate.__new {
  background-color: #01bcf1;
  border: solid 1px #01bcf1;
}
.sing-interviewCard .topInterCate {
  background-color: unset;
  border: solid 1px #fff;
}
.topInterCate:hover {
  background-color: #242628;
  border: solid 1px #242628;
}
a:hover .topInterCate {
  background-color: #242628;
  border: solid 1px #242628;
}

/*==================================================
 * 採用メニュー
 *================================================*/
@media only screen and (max-width: 767px) {
  .interBackImg {
    background-position: center bottom;
  }
}

.topConInner {
  padding: 9em 0 2em;
}
@media only screen and (max-width: 767px) {
  .topConInner {
    padding: 4em 0 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topConInner {
    padding: 4em 0 1em;
  }
}

.topConWrap {
  position: absolute;
  top: 31%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 43%;
}
@media only screen and (max-width: 767px) {
  .topConWrap {
    top: 12%;
    left: 124px;
    width: 68%;
    transform: rotate(-10deg);
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topConWrap {
    top: 23%;
    left: 59%;
    width: 67%;
  }
}

.topConList > li {
  width: 50%;
}
.topConList > li:nth-child(1) > a {
  background-color: #01bcf1;
}
.topConList > li:nth-child(2) > a {
  background-color: #004686;
}
.topConList > li > a {
  display: block;
  padding: 9em 4em 9em 15em;
}
.topConList > li > a:hover {
  background-color: #242628;
}
@media only screen and (max-width: 767px) {
  .topConList > li {
    width: 100%;
  }
  .topConList > li > a {
    padding: 2.5em 0.5em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topConList > li > a {
    padding: 4em 0.5em;
  }
}

.topConTitleJp {
  font-size: clamp(2rem, 1.5145631068rem + 1.2944983819vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.topConTitleEn {
  font-size: clamp(4rem, 3.0291262136rem + 2.5889967638vw, 8rem);
  font-weight: 500;
  font-family: "Jost", sans-serif;
  line-height: 1;
}

.topConBtnTextBlock {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .topConBtnTextBlock {
    width: 60%;
    margin-left: 20%;
  }
}

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

/*==================================================
 * 職種アーカイブ
 *================================================*/
.worksList {
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 50px;
}
.worksList > li {
  width: calc((100% - 80px) / 3);
  background-color: #01bcf1;
}
@media only screen and (max-width: 767px) {
  .worksList {
    row-gap: 20px;
  }
  .worksList > li {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .worksList {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 30px;
  }
  .worksList > li {
    width: calc((100% - 40px) / 3);
  }
}

.worksInner {
  background-color: #01bcf1;
  padding: 1em;
}

@media only screen and (max-width: 767px) {
  .interBackImg {
    background-image: url(.././img/interBack_sp.webp) !important;
    background-position: center bottom;
  }
}

.topInterInner {
  padding: 7.3em 0 6em;
}
@media only screen and (max-width: 959px) {
  .topInterInner {
    padding: 3 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topInterInner {
    padding: 3 0;
  }
}

/*==================================================
 * 職種シングル
 *================================================*/
.singWorksImgBlock {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .singWorksImgBlock {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .singWorksImgBlock {
    background-color: #01bcf1;
    width: 100%;
  }
}

.singWorksInfoBlock {
  width: 60%;
  background-color: #01bcf1;
  padding: 5em;
}
@media only screen and (max-width: 767px) {
  .singWorksInfoBlock {
    width: 100%;
    padding: 2em 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .singWorksInfoBlock {
    width: 100%;
    padding: 3em 4em;
  }
}

.singWorksImg {
  padding-bottom: 84%;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .singWorksImg {
    width: 70%;
    padding-bottom: 59%;
  }
}

.singWorksTitle {
  font-size: clamp(2.2rem, 1.7145631068rem + 1.2944983819vw, 4.2rem);
  line-height: 1.4;
  font-weight: 600;
  padding-left: 0.8em;
  position: relative;
}
.singWorksTitle::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 100%;
  background-color: #fff;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .singWorksTitle::after {
    width: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .works_flowWrap {
    margin-left: 26px;
  }
}

.works_flowList {
  width: 100%;
}
.works_flowList > li {
  position: relative;
}
.works_flowList > li:not(:last-child) {
  padding-bottom: 50px;
}
.works_flowList > li:last-child::before {
  display: none;
}
.works_flowList > li::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #01bcf1;
  top: 0;
  left: 232px;
}
.works_flowList > li::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #000;
  top: 10px;
  left: 241px;
}
@media only screen and (max-width: 767px) {
  .works_flowList > li:not(:last-child) {
    padding-bottom: 25px;
  }
  .works_flowList > li::after {
    width: 13px;
    height: 13px;
    top: 2px;
    left: 0;
  }
  .works_flowList > li::before {
    width: 1px;
    top: 11px;
    left: 6px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .works_flowList > li::after {
    top: 0;
    left: 145px;
  }
  .works_flowList > li::before {
    width: 1px;
    left: 154px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .works_flowList > li::after {
    top: 0;
    left: 156px;
  }
  .works_flowList > li::before {
    width: 1px;
    left: 164px;
  }
}

.works_flowYearBlock {
  width: 24%;
}
@media only screen and (max-width: 767px) {
  .works_flowYearBlock {
    margin-bottom: 5%;
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .works_flowYearBlock {
    width: 26%;
  }
}

.works_flowInfoBlock {
  width: 74%;
}
@media only screen and (max-width: 767px) {
  .works_flowInfoBlock {
    margin-top: -2%;
    width: 100%;
  }
}

.works_flowYear {
  font-size: clamp(1.8rem, 1.7029126214rem + 0.2588996764vw, 2.2rem);
  color: #01bcf1;
  line-height: 1;
  font-weight: 700;
}

.works_flowTitle {
  font-size: clamp(1.5rem, 1.3786407767rem + 0.3236245955vw, 2rem);
  line-height: 1;
  font-weight: 700;
}

.worksSingImg {
  padding-bottom: 84%;
}

.swiperImgWrap .swiper-container4 {
  width: 100%;
  margin: 40px 0;
  padding: 45px 0;
}
.swiperImgWrap .swiper-slide {
  transition: 0.7s;
  padding: 0 1em;
}
.swiperImgWrap .swiper-slide img {
  width: 100%;
}
.swiperImgWrap .swiper-slide-next {
  opacity: 1;
  z-index: 1;
  margin-right: 5%;
  transform: scale(1.2);
}

/*==================================================
 * 採用アーカイブ
 *================================================*/
.recruitList {
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 50px;
}
.recruitList > li {
  width: calc((100% - 80px) / 3);
}
@media only screen and (max-width: 767px) {
  .recruitList {
    row-gap: 20px;
  }
  .recruitList > li {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .recruitList {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .recruitList > li {
    width: calc((100% - 40px) / 3);
  }
}

.recruitImg {
  padding-bottom: 84%;
}

.archive_btnList > li {
  margin: 3px 5px;
}
.archive_btnList > li > a {
  display: block;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  font-weight: 500;
  line-height: 1;
  background-color: #6b6a6a;
  border-radius: 50px;
  color: #fff;
  width: 140px;
  text-align: center;
  padding: 0.8em 0.5em;
  transition: 0.3s;
}
.archive_btnList > li > a:hover {
  opacity: 0.7;
}
.archive_btnList > li > a.active {
  background-color: #01bcf1;
}
@media only screen and (max-width: 767px) {
  .archive_btnList > li {
    width: 100%;
  }
  .archive_btnList > li > a {
    padding: 0.5em 0.3em;
    margin-inline: auto;
  }
}

/*==================================================
 * インタビューアーカイブ
 *================================================*/
.interviewList {
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 50px;
}
.interviewList > li {
  width: calc((100% - 80px) / 3);
}
@media only screen and (max-width: 767px) {
  .interviewList {
    row-gap: 30px;
  }
  .interviewList > li {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .interviewList {
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 40px;
  }
  .interviewList > li {
    width: calc((100% - 30px) / 2);
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .interviewList {
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 50px;
  }
  .interviewList > li {
    width: calc((100% - 30px) / 2);
  }
}

.InterBtnWrap {
  margin-top: -53px;
  margin-right: 13px;
}

/*==================================================
 * インタビューシングル
 *================================================*/
/*コンテンツのブロック*/
.contents {
  width: 60vw;
}
@media only screen and (max-width: 767px) {
  .contents {
    width: 100%;
  }
}

.scroll-box01 {
  background-color: #01bcf1;
  padding: 2.5em 0 2.5em;
  margin-bottom: 4%;
}
@media only screen and (max-width: 767px) {
  .scroll-box01 {
    padding: 0 0 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .scroll-box01 {
    padding: 1em 0 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .scroll-box01 {
    padding: 1.5em 0;
  }
}

.scrollInner {
  padding: 3em 12em 3em 11em;
}
@media screen and (max-width: 1700px) {
  .scrollInner {
    padding: 3em 4em 3em 4em;
  }
}
@media only screen and (max-width: 767px) {
  .scrollInner {
    padding: 2.2em 1em 3em;
  }
  .scrollInner:last-of-type {
    padding-bottom: 2em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .scrollInner {
    padding: 1em 1em 1em 2em;
  }
}

.interviewImg {
  width: 100%;
  padding-bottom: 116%;
}

.sing_interview_subText {
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .sing_interview_subText {
    margin-bottom: 7%;
  }
}

@media only screen and (max-width: 767px) {
  .intervewList > li:not(:last-child) {
    margin-bottom: 5%;
  }
}

/*画像のブロック*/
.images {
  width: 40vw;
  height: 100vh;
  display: flex;
  align-items: center;
  position: sticky;
  position: -webkit-sticky;
  top: 84px;
  margin-bottom: 8em;
}
@media only screen and (max-width: 767px) {
  .images {
    width: 100vw;
    height: auto;
    display: block;
    position: static;
    top: 0;
    margin-bottom: 0;
  }
}

.images p {
  margin: auto;
  display: block;
  visibility: hidden;
  /* 画像が透過pngの時は背景色が必要です */
  position: absolute;
  top: 0;
  bottom: 0;
  /* フェード速度 */
  transition: 0.8s;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .images p {
    opacity: 1;
    width: 100% !important;
    position: static;
  }
}

.images p:first-child,
.images p.active {
  visibility: visible;
  opacity: 1;
}

.sing_interview_name {
  font-size: clamp(3rem, 1.786407767rem + 3.2362459547vw, 8rem);
  font-family: "Jost", sans-serif;
  line-height: 1;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .sing_interview_name {
    margin-bottom: 3%;
  }
}

.sing_interview_career {
  font-size: clamp(2rem, 1.854368932rem + 0.3883495146vw, 2.6rem);
  line-height: 1;
  font-weight: 600;
}

.sing_interview_title {
  font-size: clamp(1.8rem, 1.5572815534rem + 0.6472491909vw, 2.8rem);
  line-height: 1.6;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .sing_interview_title {
    margin-bottom: 3%;
  }
}

.sing_interview_info {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  line-height: 1.8;
}

.sing_interview_qa_Subtitle {
  font-size: clamp(1.8rem, 1.7514563107rem + 0.1294498382vw, 2rem);
  line-height: 1.6;
  font-weight: 600;
  display: block;
  padding: 1em;
  color: #fff;
  background-color: #01bcf1;
}

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

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

.single_bottom_nav_prev.no-link a {
  color: #cac8c8;
  pointer-events: none;
}
.single_bottom_nav_prev.no-link a::before {
  background-color: #cac8c8;
}
.single_bottom_nav_prev > a {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  position: relative;
  padding-right: 3em;
  transition: 0.3s;
}
.single_bottom_nav_prev > a::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #01bcf1;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: 0.3s;
}
.single_bottom_nav_prev > a::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  top: 52%;
  transform: translateY(-50%);
  right: 8px;
  content: "\f061";
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  transition: 0.3s;
}
.single_bottom_nav_prev > a:hover::before {
  background-color: #242628;
}

.single_bottom_nav_next.no-link a {
  color: #cac8c8;
  pointer-events: none;
}
.single_bottom_nav_next.no-link a::before {
  background-color: #cac8c8;
}
.single_bottom_nav_next a {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  position: relative;
  padding-left: 2.7em;
  transition: 0.3s;
}
.single_bottom_nav_next a::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #01bcf1;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
  transition: 0.3s;
}
.single_bottom_nav_next a::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  top: 52%;
  transform: translateY(-50%);
  right: 58px;
  content: "\f060";
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  transition: 0.3s;
}
.single_bottom_nav_next a:hover::before {
  background-color: #242628;
}

.single_bottom_nav_back {
  margin-inline: 16px;
}
.single_bottom_nav_back a {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1;
  color: #fff;
  background-color: #01bcf1;
  padding: 0.8em 8em;
  border-radius: 50px;
  transition: 0.3s;
}
.single_bottom_nav_back a:hover {
  background-color: #242628;
}
@media only screen and (max-width: 767px) {
  .single_bottom_nav_back > a {
    padding: 0.3em 2em;
  }
}

.interview_flowList {
  width: 100%;
}
.interview_flowList > li {
  position: relative;
}
.interview_flowList > li:not(:last-child) {
  padding-bottom: 50px;
}
.interview_flowList > li:last-child::before {
  display: none;
}
.interview_flowList > li::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #01bcf1;
  top: 5px;
  left: 287px;
}
.interview_flowList > li::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #000;
  top: 20px;
  left: 295px;
}
@media only screen and (max-width: 767px) {
  .interview_flowList > li:not(:last-child) {
    padding-bottom: 25px;
  }
  .interview_flowList > li::after {
    width: 13px;
    height: 13px;
    top: 2px;
    left: 0;
  }
  .interview_flowList > li::before {
    width: 1px;
    top: 11px;
    left: 5px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .interview_flowList > li::after {
    top: 0;
    left: 147px;
  }
  .interview_flowList > li::before {
    width: 1px;
    top: 10px;
    left: 155px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .interview_flowList > li::after {
    top: 0;
    left: 166px;
  }
  .interview_flowList > li::before {
    width: 1px;
    top: 10px;
    left: 174px;
  }
}

@media only screen and (max-width: 767px) {
  .inter_flowWrap {
    margin-left: 26px;
  }
}

.inter_flowTimeBlock {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .inter_flowTimeBlock {
    width: 100%;
    margin-bottom: 7px;
  }
}

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

.inter_flowTime {
  font-size: clamp(1.8rem, 1.4601941748rem + 0.9061488673vw, 3.2rem);
  line-height: 1;
  font-weight: 600;
  color: #01bcf1;
  font-family: "Jost", sans-serif;
}

.inter_flowInfo {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  line-height: 1.6;
  font-weight: 500;
}

.pagenationBlock {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .pagenationBlock {
    margin-bottom: 3em;
  }
}

/*==================================================
 * 3分でわかるユーポス
 *================================================*/
.aboutImgBlock {
  width: 48%;
}
.industCard02 .aboutImgBlock img {
  width: 65%;
}
@media only screen and (max-width: 767px) {
  .aboutImgBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5%;
  }
}

.aboutInfoBlock {
  width: 47%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .aboutInfoBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .aboutInfoBlock {
    width: 62%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .aboutInfoBlock {
    width: 52%;
  }
}

.aboutImg {
  padding-bottom: 75%;
}

.countList {
  -moz-column-gap: 68px;
       column-gap: 68px;
  row-gap: 68px;
}
.countList > li {
  width: calc((100% - 176px) / 3);
  background-color: #f5f6f7;
  border: dashed 2px #01bcf1;
  padding: 2em 1em;
}
.countList > li:nth-child(3) {
  padding: 2em 4em;
}
@media only screen and (max-width: 767px) {
  .countList {
    row-gap: 12px;
  }
  .countList > li {
    width: 100%;
    padding: 1.5em 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .countList {
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 20px;
  }
  .countList > li {
    width: calc((100% - 15px) / 2);
  }
  .countList > li:nth-child(3) {
    padding: 2em 4em;
  }
}

.countImgBlock {
  width: 60%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .countImgBlock {
    width: 50%;
    margin-bottom: 3%;
  }
}

.countTitle {
  font-size: clamp(2.2rem, 2.054368932rem + 0.3883495146vw, 2.8rem);
  line-height: 1.6;
  font-weight: 500;
}

.countTextEn {
  font-size: clamp(6rem, 4.786407767rem + 3.2362459547vw, 11rem);
  line-height: 1;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  letter-spacing: -0.02em;
  color: #01bcf1;
}
.countTextEn.__small {
  font-size: clamp(5rem, 4.5145631068rem + 1.2944983819vw, 7rem);
}

.countTextJp {
  font-size: clamp(1.8rem, 1.4601941748rem + 0.9061488673vw, 3.2rem);
  line-height: 1;
  font-weight: 600;
  color: #01bcf1;
}
.countTextJp.__top {
  margin-top: 12%;
  margin-left: 4px;
}

.countSubTitle {
  font-size: clamp(1.8rem, 1.5572815534rem + 0.6472491909vw, 2.8rem);
  line-height: 1;
  margin-top: 19px;
  font-weight: 600;
  color: #004686;
  margin-right: 10px;
}
.countSubTitle.__left {
  margin-right: 0;
  margin-left: 10px;
}
.countSubTitle.__center {
  margin-right: 10px;
  margin-left: 10px;
  margin-top: -20px;
  font-size: clamp(5rem, 4.5145631068rem + 1.2944983819vw, 7rem);
}
.countSubTitle.__top {
  margin-top: -20px;
}
.countSubTitle span {
  font-size: clamp(1.6rem, 1.4058252427rem + 0.5177993528vw, 2.4rem);
  font-weight: 600;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .countSubTitle {
    margin-top: 0;
  }
}

.pepoleList {
  -moz-column-gap: 85px;
       column-gap: 85px;
  row-gap: 1px;
}
.pepoleList > li {
  width: calc((100% - 170px) / 3);
  background-color: #fff0cc;
  padding: 2em;
  border-radius: 100px;
  width: 400px;
  position: relative;
  box-shadow: rgba(156, 156, 156, 0.2) 0px 18px 50px -20px;
}
.pepoleList > li:nth-child(1), .pepoleList > li:nth-child(3), .pepoleList > li:nth-child(4), .pepoleList > li:nth-child(6) {
  margin-top: 1.5%;
}
.pepoleList > li:nth-child(4) {
  margin-left: 14%;
}
.pepoleList > li dt {
  width: 23%;
  margin-right: 3%;
}
.pepoleList > li dd {
  font-size: clamp(1.8rem, 1.7514563107rem + 0.1294498382vw, 2rem);
  line-height: 1.4;
  font-weight: 600;
  width: 74%;
}
@media only screen and (max-width: 1800px) {
  .pepoleList > li:nth-child(2), .pepoleList > li:nth-child(5) {
    margin-top: 0;
  }
  .pepoleList > li:nth-child(4) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .pepoleList {
    row-gap: 15px;
  }
  .pepoleList > li {
    width: 350px;
    padding: 1em 0.5em 1em 1em;
  }
  .pepoleList > li:nth-child(2), .pepoleList > li:nth-child(5) {
    margin-top: 0;
  }
  .pepoleList > li:nth-child(4) {
    margin-left: 0;
  }
  .pepoleList > li dt {
    width: 23%;
    margin-right: 3%;
  }
  .pepoleList > li dd {
    width: 74%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pepoleList {
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 20px;
  }
  .pepoleList > li {
    width: calc((100% - 15px) / 2);
    padding: 1em 0.5em 1em 1em;
  }
  .pepoleList > li dt {
    width: 25%;
    margin-right: 5%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .pepoleList {
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 20px;
  }
  .pepoleList > li {
    width: calc((100% - 15px) / 2);
  }
  .pepoleList > li:nth-child(2), .pepoleList > li:nth-child(5) {
    margin-top: 0;
  }
  .pepoleList > li:nth-child(4) {
    margin-left: 0;
  }
}

.pageBtnList {
  -moz-column-gap: 84px;
       column-gap: 84px;
}
.pageBtnList > li {
  width: calc((100% - 84px) / 2);
}
.pageBtnList > li > a {
  display: block;
  background-color: #f5f6f7;
  padding: 5.5em 1em 5.5em 3em;
  border-radius: 30px;
  transition: 0.3s;
}
.pageBtnList > li > a dt {
  width: 70%;
  margin-right: 3%;
  font-size: clamp(1.6rem, 1.0174757282rem + 1.5533980583vw, 4rem);
  color: #01bcf1;
  font-weight: 600;
}
.pageBtnList > li > a dd {
  width: 25%;
}
.pageBtnList > li:hover > a {
  background-color: #242628;
}
@media only screen and (max-width: 767px) {
  .pageBtnList {
    row-gap: 10px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .pageBtnList > li {
    width: 100%;
  }
  .pageBtnList > li > a {
    padding: 1.5em 0 1.5em 2em;
    border-radius: 7px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .pageBtnList {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .pageBtnList > li {
    width: calc((100% - 15px) / 2);
  }
  .pageBtnList > li > a {
    padding: 1.5em 1.5em;
    border-radius: 7px;
  }
}

/*==================================================
 * 自動車買取業界を知る
 *================================================*/
.modelList {
  -moz-column-gap: 47px;
       column-gap: 47px;
}
.modelList > li {
  width: calc((100% - 141px) / 4);
  position: relative;
  background-color: #f5f6f7;
  padding: 4em 0.5em 2em;
}
.modelList > li::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 5px);
  height: calc(100% + 6px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px dashed transparent;
  background: linear-gradient(-135deg, #e5ce75, #f5eea0, #b9893d) border-box;
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 7px, transparent 7px 12px), repeating-linear-gradient(0deg, #000 0 7px, transparent 7px 12px);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}
.modelList > li::before {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f054";
  font-size: 40px;
  font-weight: 900;
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
}
.modelList > li:nth-child(4)::before {
  display: none;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .modelList > li::before {
    font-size: 29px;
    right: -25px;
  }
  .modelList > li:nth-child(3)::before, .modelList > li:nth-child(4)::before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .modelList {
    row-gap: 62px;
  }
  .modelList > li {
    width: 100%;
    padding: 1.5em 1em 1em;
  }
  .modelList > li::before {
    content: "\f078";
    right: unset;
    top: unset;
    font-size: 20px;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .modelList {
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 60px;
  }
  .modelList > li {
    width: calc((100% - 60px) / 3);
  }
}

@media only screen and (max-width: 767px) {
  .modelInfoBlock {
    width: 71%;
  }
}

.modelTitle {
  font-size: clamp(1.8rem, 1.7029126214rem + 0.2588996764vw, 2.2rem);
  line-height: 1.4;
  font-weight: 600;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .modelTitle {
    font-size: 17px;
  }
}

.modelText {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  line-height: 1.4;
  font-weight: 500;
}

.modelImgBlock {
  margin-inline: auto;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .modelImgBlock {
    width: 27%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .modelImgBlock {
    width: 33%;
  }
}

@media only screen and (max-width: 767px) {
  .modelWrap {
    display: flex;
    align-items: center;
  }
}

.nbBox {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
}
.nbBox span {
  font-size: 40px;
  font-family: "Jost", sans-serif;
  color: #01bcf1;
  font-weight: 600;
}

/*==================================================
 * 人材育成
 *================================================*/
.pageMenuList {
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.welfCard .pageMenuList {
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.welfCard .pageMenuList > li {
  width: calc((100% - 60px) / 5);
}
.welfCard .pageMenuList > li > a {
  padding: 1.2em 1em 1.2em 0.7em;
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
}
.welfCard .pageMenuList > li > a::after {
  right: 8px;
}
@media only screen and (max-width: 1450px) {
  .welfCard .pageMenuList {
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 7px;
  }
  .welfCard .pageMenuList > li {
    width: calc((100% - 24px) / 3);
  }
  .welfCard .pageMenuList > li > a {
    padding: 1.2em 1em 1.2em 1em;
  }
}
.pageMenuList > li {
  width: calc((100% - 120px) / 4);
  background-color: #f5f6f7;
  border-radius: 10px;
  transition: 0.3s;
}
.pageMenuList > li > a {
  display: block;
  color: #01bcf1;
  padding: 1.2em 1em 1.2em 3em;
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}
.pageMenuList > li > a::after {
  content: "";
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  transition: 0.3s;
  transform: translateY(-50%);
  background-color: #01bcf1;
  width: 14px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.pageMenuList > li:hover {
  background-color: #242628;
}
.pageMenuList > li:hover > a::after {
  top: 56%;
}
@media only screen and (max-width: 767px) {
  .pageMenuList {
    row-gap: 7px;
  }
  .welfCard .pageMenuList > li {
    width: 100%;
  }
  .welfCard .pageMenuList > li > a {
    padding: 1.2em 1em 1.2em 2em;
  }
  .welfCard .pageMenuList > li > a::after {
    right: 24px;
  }
  .pageMenuList > li {
    width: 100%;
  }
  .pageMenuList > li > a {
    padding: 1.2em 1em 1.2em 2em;
  }
  .pageMenuList > li > a::after {
    right: 6px;
    width: 10px;
    height: 5px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .pageMenuList {
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 7px;
  }
  .welfCard .pageMenuList {
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 7px;
  }
  .welfCard .pageMenuList > li {
    width: calc((100% - 24px) / 3);
  }
  .welfCard .pageMenuList > li > a {
    padding: 1.2em 1em 1.2em 1em;
  }
  .pageMenuList > li {
    width: calc((100% - 24px) / 3);
  }
  .pageMenuList > li > a {
    padding: 1.2em 1em 1.2em 1em;
  }
}

.stepList {
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.stepList > li {
  width: calc((100% - 80px) / 3);
}
@media only screen and (max-width: 767px) {
  .stepList {
    row-gap: 30px;
  }
  .stepList > li {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .stepList {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .stepList > li {
    width: calc((100% - 10px) / 3);
  }
}

.stepTitle {
  font-size: clamp(1.6rem, 1.4058252427rem + 0.5177993528vw, 2.4rem);
  font-weight: 500;
  line-height: 1.3;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .stepTitle {
    font-size: 16px;
    margin-bottom: 7%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .stepTitle {
    margin-bottom: 7%;
  }
}

.stepImgBlock {
  width: 40%;
  margin-inline: auto;
}

.supportList {
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.supportList > li {
  width: calc((100% - 48px) / 3);
  background-color: #f5f6f7;
  border: dashed 2px #01bcf1;
  padding: 2em 0.5em;
}
@media only screen and (max-width: 767px) {
  .supportList {
    row-gap: 10px;
  }
  .supportList > li {
    width: 100%;
    padding: 1em 0.5em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .supportList {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
  }
  .supportList > li {
    width: calc((100% - 20px) / 2);
    padding: 1em 0.5em;
  }
}

.supportTitle span {
  display: block;
  font-size: clamp(1.8rem, 1.654368932rem + 0.3883495146vw, 2.4rem);
  font-weight: 500;
  position: relative;
  padding-left: 2.2em;
}
.supportTitle span::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f058";
  color: #01bcf1;
  font-size: clamp(2rem, 1.7572815534rem + 0.6472491909vw, 3rem);
  line-height: 1;
  font-weight: 900;
  left: 11px;
  top: 8px;
}
@media only screen and (max-width: 767px) {
  .supportTitle span {
    padding-left: 2.2em;
  }
}

.supportTextInner {
  padding: 0 1em 0 3.6em;
}
@media only screen and (max-width: 767px) {
  .supportTextInner {
    padding: 0 1em 0 3em;
  }
}

.careerTitle {
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  line-height: 1;
  font-weight: 600;
}

.careerList > li {
  position: relative;
}
.careerList > li:not(:last-child) {
  padding-bottom: 50px;
}
.careerList > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 264px;
  width: 2px;
  height: 100%;
  background-color: #cdcecf;
}
.careerList > li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 257px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #01bcf1;
}
@media only screen and (max-width: 767px) {
  .careerList > li:not(:last-child) {
    padding-bottom: 20px;
  }
  .careerList > li::before {
    left: 6px;
    width: 2px;
  }
  .careerList > li::after {
    left: 0;
    width: 14px;
    height: 14px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .careerList > li::before {
    left: 160px;
  }
  .careerList > li::after {
    left: 153px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .careerList > li::before {
    left: 183px;
  }
  .careerList > li::after {
    left: 176px;
  }
}

@media only screen and (max-width: 767px) {
  .careerWrap {
    margin-left: 2em;
  }
}

.careerTitleBlock {
  width: 15%;
  margin-right: 10%;
}
@media only screen and (max-width: 767px) {
  .careerTitleBlock {
    width: 100%;
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .careerTitleBlock {
    width: 18%;
  }
}

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

.careerBox {
  background-color: #f5f6f7;
  padding: 1.8em;
}

/*==================================================
 * 福利厚生
 *================================================*/
.welfTitle {
  font-size: clamp(1.8rem, 1.2660194175rem + 1.4239482201vw, 4rem);
  line-height: 1.2;
  font-weight: 600;
}

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

.welfInfoBlock {
  width: 48%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .welfInfoBlock {
    width: 100%;
  }
}

.welfImg {
  padding-bottom: 75%;
}

.wlfInfoList > li {
  background-color: #f5f6f7;
  padding: 2em 1.5em;
}
.wlfInfoList > li:not(:last-child) {
  margin-bottom: 4%;
}

.wlfInfoList2 {
  -moz-column-gap: 84px;
       column-gap: 84px;
}
.wlfInfoList2 > li {
  width: calc((100% - 84px) / 2);
  background-color: #f5f6f7;
  padding: 2em 1.5em;
}
@media only screen and (max-width: 767px) {
  .wlfInfoList2 {
    row-gap: 15px;
  }
  .wlfInfoList2 > li {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .wlfInfoList2 {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .wlfInfoList2 > li {
    width: calc((100% - 20px) / 2);
  }
}

.wlfInfoTitle span {
  display: block;
  font-size: clamp(1.8rem, 1.654368932rem + 0.3883495146vw, 2.4rem);
  line-height: 1.2;
  font-weight: 600;
  position: relative;
  padding-left: 1.8em;
}
.wlfInfoTitle span::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f058";
  color: #01bcf1;
  font-size: clamp(2rem, 1.7087378641rem + 0.7766990291vw, 3.2rem);
  line-height: 1;
  font-weight: 900;
  left: 0;
  top: 0;
}/*# sourceMappingURL=import.css.map */