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

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


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

*/
@import url("https://fonts.googleapis.com/css2?family=SUSE+Mono:ital,wght@0,100..800;1,100..800&display=swap");
@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=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&display=swap");
.mainColor {
  color: #31adad;
}

.mainColorSub {
  color: #c7dddd;
}

.mainColorSub2 {
  color: #3f3d56;
}

.bgmainColor {
  color: #f1f3f3;
}

.mainColorDeep {
  color: #363636;
}

.bgMainColorDeep {
  background-color: #363636;
}

.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: "SUSE Mono", sans-serif;
}

.fontNum {
  font-family: "Jost", 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: #363636;
  font-weight: 600;
}

p,
a,
li,
div {
  font-weight: 600;
}

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

.white_b {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .white_b {
    color: #363636;
  }
}

.black {
  color: #000;
}

.gray {
  color: #9b9b9b;
}

.red {
  color: #ff4501 !important;
}

.red2 {
  color: #b50d23 !important;
}

.red3 {
  color: #f32a38 !important;
}

.blue {
  color: #036ea9;
}

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

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: 1025px) and (max-width: 1150px) {
  .text-left-pc3 {
    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: #31adad;
}
.linkA:hover {
  color: #31adad;
  text-decoration: underline;
}

.spTab {
  display: none !important;
}

@media screen and (max-width: 959px) {
  .spTab {
    display: block !important;
  }
}
@media screen and (min-width: 1130px) {
  .brakePoint {
    display: none !important;
  }
}
@media screen and (min-width: 400px) {
  .spSSS {
    display: none !important;
  }
}
@media screen and (min-width: 521px) {
  .spSS {
    display: none !important;
  }
}
@media screen and (max-width: 520px) {
  .pcSS {
    display: none !important;
  }
}
.sp6 {
  display: none !important;
}

@media only screen and (min-width: 768px) and (max-width: 809px) {
  .sp6 {
    display: block !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1280px) {
  .sp2 {
    display: none !important;
  }
}
@media screen and (min-width: 1640px) {
  .sp3 {
    display: none !important;
  }
}
.sp4 {
  display: none !important;
}

@media screen and (min-width: 1280px) and (max-width: 1364px) {
  .sp4 {
    display: block !important;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1440px) {
  .sp5 {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 1279px) {
  .pc2 {
    display: none !important;
  }
}
@media screen and (max-width: 1750px) {
  .pcw {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .pcNote {
    display: none !important;
  }
}
.pc3 {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1580px) {
  .pc3 {
    display: block;
  }
}
@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;
}

.mb08 {
  margin-bottom: 8px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb23 {
  margin-bottom: 23px;
}

.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: 520px) {
  .flexReverseSS {
    flex-flow: row-reverse;
  }
}

@media only screen and (max-width: 767px) {
  .mbSpL {
    margin-bottom: 30%;
  }
  .mbSpL2 {
    margin-bottom: 25%;
  }
  .mbSpL3 {
    margin-bottom: 20%;
  }
  .mbSpL35 {
    margin-bottom: 18%;
  }
  .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: 520px) {
  .flexSpSS {
    display: block;
  }
}

@media screen and (max-width: 520px) {
  .flexReverseSS {
    flex-flow: row;
  }
}

@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_w {
  width: 90%;
  max-width: 1920px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1920px) {
  .cnt_w {
    width: 100%;
  }
}
@media only screen and (max-width: 959px) {
  .cnt_w {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .topFvImgCard .cnt_w {
    padding-right: 22px;
    padding-left: 22px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cnt_w {
    max-width: 1200px;
  }
  .topFvImgCard .cnt_w {
    padding-right: 22px;
    padding-left: 22px;
  }
  .cnt_w.cntMS, .cnt_w.cntSS {
    width: 95%;
  }
}

.cnt {
  width: 90%;
  max-width: 1920px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.topFvImgCard .cnt {
  padding-right: 40px;
  padding-left: 40px;
}
@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;
  }
  .topFvImgCard .cnt {
    padding-right: 22px;
    padding-left: 22px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cnt {
    max-width: 1200px;
  }
  .topFvImgCard .cnt {
    padding-right: 22px;
    padding-left: 22px;
  }
  .cnt.cntMS, .cnt.cntSS {
    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: 1360px;
  margin-right: auto;
  margin-left: auto;
}

.cntSw {
  max-width: 1360px;
  padding: 0 12.7em;
  margin-right: auto;
  margin-left: 0;
}
.cntSw.__zero {
  padding: 0;
}
@media only screen and (min-width: 1025px) and (max-width: 1730px) {
  .cntSw {
    padding: 0 2em;
  }
}
@media only screen and (max-width: 1024px) {
  .cntSw {
    padding: 0;
    margin-left: 0;
  }
}

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

.cntSSS {
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
}

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

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

@media only screen and (max-width: 1024px) {
  .cntw {
    width: 90%;
    max-width: 1920px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media only screen and (max-width: 959px) {
  .cntw {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cntw {
    max-width: 1200px;
  }
}

.cntMMM {
  max-width: 1920px;
}
@media only screen and (max-width: 1024px) {
  .cntMMM {
    max-width: 1360px;
    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 {
  --spaceSizeSmall: clamp(25px, 1.2vw, 25px);
  --spaceSize: clamp(50px, 3.8vw, 127px);
  --spaceSizeMiddle: clamp(50px, 5.2vw, 100px);
  --spaceSizeLiddle: clamp(50px, 7vw, 140px);
  --spaceSizeWide: clamp(135px, 14vw, 270px);
}

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

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

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

.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(--spaceSize);
}

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

.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: #31adad;
  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: #31adad;
  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: #31adad;
  display: block;
  margin-right: 1.5rem;
  max-width: 3rem;
}
.titleBdLeft.white:before {
  background: #fff;
}

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

.bdBox {
  border: 2px solid #31adad;
}

/*ボタン*/
/* ボタンだけに指定する場合は以下 */
.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 #363636;
  font-size: 21px;
  background-color: #fff;
}
.button:hover {
  color: #363636;
  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
 *================================================*/
/*------------モーダルウィンドウ------------*/
.overSideBox {
  position: fixed;
  right: 5px;
  bottom: 40px;
  overflow-y: scroll;
  transition: all 0.5s;
  z-index: 997;
}
.open .overSideBox {
  visibility: visible;
  opacity: 1;
}

/*オーバーレイメニュー*/
.overRayBox {
  position: fixed;
  top: 66px;
  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: 959px) {
  .change-color .overRayBox {
    top: 63px;
  }
}

.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% - 442px);
  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: 996;
  pointer-events: none;
  opacity: 0;
}
.overlay.on {
  opacity: 1;
}

html.open {
  overflow-y: hidden;
}

@media only screen and (max-width: 767px) {
  .sideMenue {
    position: fixed;
    cursor: pointer;
    z-index: 998;
    right: 10px;
    bottom: 10px;
    height: 75px;
    width: 75px;
    background-color: red;
    border-radius: 50%;
    border: none;
  }
  .sideMenue span:after {
    content: attr(data-txt-menu);
  }
  .open .sideMenue span:after {
    content: attr(data-txt-close);
  }
}

.menu-btn {
  position: fixed;
  cursor: pointer;
  z-index: 998;
  right: 0;
  top: 0;
  height: 70px;
  width: 70px;
  background-color: transparent;
  border: none;
}
.hide .menu-btn {
  transform: translateY(-200%);
  transition: transform 0.3s ease;
}
.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: 959px) {
  .menu-btn {
    height: 67px;
    width: 67px;
    right: 5px;
    top: 0;
  }
  .change-color .menu-btn {
    height: 67px;
    width: 67px;
    right: 5px;
    top: 0;
  }
}

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

.menu-trigger {
  position: relative;
  width: 36px;
  height: 24px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #31adad;
  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: #31adad;
}
.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: #31adad;
}
.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 #31adad;
}

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

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

.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;
  font-weight: 500;
}
.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: 16px;
  font-weight: 500;
  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 {
  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: 500;
  margin-top: -4px;
}
.cform select#select-title {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 1em;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.4;
  background-color: #f6f6f6;
}
.cform .title {
  font-weight: 500;
}
@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;
}
.wpcf7-list-item span {
  font-weight: 500;
}

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

.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: #31adad;
  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: 22px;
    right: -2px;
  }
}

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

.contactList {
  display: none;
  margin-top: 10px;
  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: 0;
  }
  .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;
}

#zip {
  width: 15% !important;
}
@media only screen and (max-width: 767px) {
  #zip {
    width: 40% !important;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  #zip {
    width: 17% !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: 12% 5%;
    margin: 0 0 13px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .contactAlertBox {
    margin: 1% 0;
  }
}

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

.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;
  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;
  font-weight: 500;
}
.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;
  font-weight: 500;
}
@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: clamp(2rem, 1.9029126214rem + 0.2588996764vw, 2.4rem);
  font-weight: bold;
  padding-bottom: 1em;
  position: relative;
}
.entry h2::before, .entry h2::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
}
.entry h2::before {
  width: 100%;
  height: 1px;
  background-color: #acacac;
}
.entry h2::after {
  width: 40%;
  height: 1px;
  background-color: #31adad;
}
@media only screen and (max-width: 767px) {
  .entry h2 {
    font-size: 18px;
    margin: 12% auto 6%;
  }
}
.entry h3 {
  font-size: clamp(1.8rem, 1.7514563107rem + 0.1294498382vw, 2rem);
  margin: 3% auto 3%;
  font-weight: bold;
  padding-left: 1.2em;
  position: relative;
}
.entry h3::after {
  position: absolute;
  display: block;
  content: "";
  width: 5px;
  height: 42px;
  border-radius: 10px;
  background-color: #31adad;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    margin: 6% auto 3%;
  }
}
.entry h4 {
  margin: 3% auto 3%;
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  font-weight: bold;
}
.entry table {
  width: 100%;
}
.entry table td {
  border-right: 1px solid #31adad;
  border-bottom: 1px solid #31adad;
}
.entry table td:first-child {
  width: 30%;
  background-color: #eef6fa;
  border-left: 1px solid #31adad;
}
.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: #31adad;
  position: absolute;
  left: 0;
  font-weight: 400;
}
.entry figure {
  width: min(100%, 1366px);
  margin-right: auto;
  margin-left: auto;
}

/*目次*/
.toc_number {
  font-family: "Jost", 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: #31adad;
}

.toc_list li:before {
  display: none;
}

.toc_title {
  border-bottom: 1px solid #31adad;
  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: #31adad;
  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 #31adad;
  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: #31adad;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  display: none !important;
}

.lkc-info {
  background-color: #31adad;
  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 {
  font-size: clamp(2rem, 1.9029126214rem + 0.2588996764vw, 2.4rem);
  font-weight: bold;
  margin-bottom: 4%;
}

.singleColumnInfoUl {
  row-gap: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.singleColumnInfoUl.inlineBlockUl {
  margin-left: 2%;
}
.singleColumnInfoUl > li {
  transition: 0.3s;
  display: inline-block;
  width: 124px;
  font-size: 14px;
  font-weight: 600;
  background-color: #c7dddd;
  border-radius: 50px;
  padding: 0.7em 1.3em;
  text-align: center;
  line-height: 1;
}
.singleColumnInfoUl > li:hover {
  opacity: 0.7;
}

/*この記事をシェアするボタン*/
.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 #31adad;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    padding: 8%;
    margin: 12% 0 6% 0;
  }
}

.singleColumnWriterTitle {
  border-bottom: 1px solid #31adad;
}

.singleColumnWriterButton {
  background: #fff;
  border: 1px solid #31adad;
  border-radius: 25px;
  padding: 0.25em;
  max-width: 280px;
  display: block;
  transition: 0.3s;
  color: #31adad;
}
.singleColumnWriterButton:hover {
  background: #31adad;
  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;
}
.singleColumnPreNext p {
  font-weight: 500;
}
@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 #363636;
}
@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: #31adad;
  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: "SUSE Mono", sans-serif;
  font-size: 20px;
  margin: 0 0.5%;
  border-radius: 50px;
  border: solid 1px #31adad;
  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: #31adad;
  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: 40px;
    height: 40px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pagenation li {
    width: 50px;
    height: 50px;
  }
}

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

span.page-numbers {
  color: #31adad;
  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: "SUSE Mono", 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: #31adad;
  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: "SUSE Mono", sans-serif;
  color: #31adad;
  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: #31adad;
  right: 10px;
  top: 10px;
  position: absolute;
  font-size: 14px;
}

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

.sidebarTagWrap a {
  font-size: 14px !important;
  color: #31adad;
}
.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;
  }
}

.footerMenuTitle {
  font-size: 18px;
  padding: 1.2em;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 600;
}

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

/*パンくず*/
/*パンくず終わり*/
.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;
  }
}

/* reCAPTCHAバッジを非表示にする */
body .grecaptcha-badge {
  visibility: hidden !important;
}

.reCAPTCHA-txt p {
  text-align: center;
  font-size: 0.8em;
  margin-top: 20px;
}

.reCAPTCHA-txt a {
  text-decoration: underline;
}

/*==================================================
 * 当サイトのみ共通
 *================================================*/
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #c7dddd;
  opacity: 1;
  visibility: visible;
  background-image: url(.././img/allback.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loadingInner img {
  width: 350px;
}
@media only screen and (max-width: 767px) {
  .loadingInner img {
    width: 200px;
  }
}

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

.loadTitleJp {
  font-size: clamp(1.6rem, 1.1388349515rem + 1.2297734628vw, 3.5rem);
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1.4;
}
.loadTitleJp span {
  font-size: clamp(1.6rem, 1.1388349515rem + 1.2297734628vw, 3.5rem);
  line-height: 3;
  font-weight: bold;
  position: relative;
}
.loadTitleJp span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 7px;
  border-radius: 50px;
  border: solid 1px #31adad;
}
@media only screen and (max-width: 767px) {
  .loadTitleJp {
    letter-spacing: 0.08em;
  }
  .loadTitleJp span {
    font-size: clamp(1.6rem, 1.1388349515rem + 1.2297734628vw, 3.5rem);
    letter-spacing: 0.08em;
    line-height: 2;
    font-weight: bold;
    position: relative;
  }
  .loadTitleJp span::after {
    height: 5px;
    bottom: -8px;
  }
}

address {
  font-style: normal;
}

main {
  margin-top: 170px;
}
.home main {
  margin-top: 0;
}
.company main {
  margin-top: 215px;
}
@media only screen and (max-width: 767px) {
  main {
    margin-top: 89px;
  }
  .company main, .recruitment main, .support-foreigners main, .cleaning main, .eldercare-taxi main, .rehabilitation main, .homevisit-nursing main, .nursing-home main {
    margin-top: 146px;
  }
  .home main {
    margin-top: 67px;
  }
}
@media only screen and (max-width: 1024px) {
  .company main, .recruitment main, .support-foreigners main, .cleaning main, .eldercare-taxi main, .rehabilitation main, .homevisit-nursing main, .nursing-home main {
    margin-top: 174px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  main {
    margin-top: 100px;
  }
  .home main {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  main {
    margin-top: 120px;
  }
  .home main {
    margin-top: 100px;
  }
}

.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: #31adad;
  color: #fff;
  padding: 1em 4em;
  border-radius: 50px;
  font-size: 16px;
  display: inline-block;
  transition: 0.3s;
  letter-spacing: 0.2em;
  font-weight: 500;
  cursor: pointer;
  width: auto;
}
.submit-btn input:hover,
.submit-btn button:hover {
  color: #fff;
  background-color: #363636;
}
@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 input,
.submit-back button {
  margin-right: 7px;
  background: #363636;
  border: solid 1px #363636;
  transition: 0.3s;
}
.submit-back input:hover,
.submit-back button:hover {
  background: #31adad;
  border: solid 1px #31adad;
}

.submit-next {
  margin-left: 7px;
}
.submit-next input,
.submit-next button {
  color: #fff;
  background: #31adad;
  border: solid 1px #31adad;
}
.submit-next input:hover,
.submit-next button:hover {
  background: #363636;
  border: solid 1px #363636;
}

.boxSadow {
  box-shadow: 0 4px 15px 0 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;
  }
}

.commonTitleWrap.jp_Title dd {
  margin-top: 10px;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(2.4rem, 2.1572815534rem + 0.6472491909vw, 3.4rem);
  line-height: 1.4;
  font-weight: bold;
}
.commonTitleWrap dt {
  margin-right: 10px;
}
.commonTitleWrap dt img {
  width: 20px;
  margin: 0;
}
.commonTitleWrap dd {
  font-size: clamp(4.2rem, 3.9572815534rem + 0.6472491909vw, 5.2rem);
  line-height: 1.4;
  font-family: "SUSE Mono", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .commonTitleWrap.jp_Title {
    display: block;
  }
  .commonTitleWrap.jp_Title dt {
    display: block;
  }
  .noWrap .commonTitleWrap {
    margin-left: 1em;
  }
  .commonTitleWrap dd {
    line-height: 1;
    margin-top: 7px;
  }
}

.commonTitleEn {
  padding-top: 10px;
  margin-left: 0.7em;
  font-size: clamp(4.2rem, 3.9572815534rem + 0.6472491909vw, 5.2rem);
  line-height: 1.4;
  font-family: "SUSE Mono", sans-serif;
  font-weight: 500;
  position: relative;
}
.commonTitleEn::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: -19px;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background-image: url(.././img/title.svg);
  background-repeat: no-repeat;
  background-size: 20px;
}
@media only screen and (max-width: 767px) {
  .noWrap .commonTitleEn {
    padding-left: 0.3em;
  }
  .noWrap .commonTitleEn::after {
    left: -5px;
  }
  .commonTitleEn::after {
    left: -15px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .noWrap .commonTitleEn {
    padding-left: 0;
  }
  .noWrap .commonTitleEn::after {
    left: -16px;
  }
  .commonTitleEn::after {
    left: -16px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .commonTitleEn {
    padding-left: 0;
  }
  .noWrap .commonTitleEn {
    padding-left: 0.6em;
  }
  .noWrap .commonTitleEn::after {
    left: 8px;
  }
  .commonTitleEn::after {
    left: -14px;
  }
}

.commonTitleJp {
  padding-left: 0;
  font-size: clamp(1.8rem, 1.8rem + 0vw, 1.8rem);
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1;
}
.noWrap .commonTitleJp {
  padding-left: 1.8em;
}
@media only screen and (max-width: 767px) {
  .commonTitleJp {
    padding-left: 0.9em;
  }
  .noWrap .commonTitleJp {
    padding-left: 2.5em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonTitleJp {
    padding-left: 0;
  }
  .noWrap .commonTitleJp {
    padding-left: 2.2em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .commonTitleJp {
    padding-left: 0;
  }
  .noWrap .commonTitleJp {
    padding-left: 3.2em;
  }
}

.commonmidashi1_Jp {
  font-size: clamp(2.8rem, 2.4116504854rem + 1.0355987055vw, 4.4rem);
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1;
}

.commonmidashi1_En {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  letter-spacing: -0.01em;
  font-family: "SUSE Mono", sans-serif;
  font-weight: 500;
  line-height: 0.6;
}

.commonMidashi_2 {
  padding-top: 10px;
  padding-left: 1em;
  font-size: clamp(2.1rem, 1.7844660194rem + 0.8414239482vw, 3.4rem);
  line-height: 1.4;
  font-weight: bold;
  position: relative;
}
.commonMidashi_2::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 10px;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background-image: url(.././img/title.svg);
  background-repeat: no-repeat;
  background-size: 20px;
}
@media only screen and (max-width: 959px) {
  .commonMidashi_2 {
    padding-left: 1.2em;
  }
  .commonMidashi_2::after {
    left: 11px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .commonMidashi_2 {
    padding-left: 1.2em;
  }
  .commonMidashi_2::after {
    left: 11px;
  }
}

.midashiBox {
  padding-bottom: 8.5em;
  margin-bottom: 3em;
}

.midashiWrap {
  padding-left: 2em;
  padding-block: 2em;
  position: relative;
}
.midashiWrap::after, .midashiWrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 30%;
  height: 2px;
}
.midashiWrap::before {
  left: 0;
  top: 0;
  background-color: #31adad;
}
.midashiWrap::after {
  left: 30%;
  width: 70%;
  top: 0;
  background-color: #c7dddd;
}
@media only screen and (max-width: 767px) {
  .midashiWrap {
    padding-left: 0;
  }
}

.commonMidashi_3En {
  padding-right: 0.8em;
  font-family: "SUSE Mono", sans-serif;
  letter-spacing: 0.01em;
  font-size: clamp(2.4rem, 1.6718446602rem + 1.9417475728vw, 5.4rem);
  font-weight: 500;
  color: #31adad;
  line-height: 1;
}

.commonMidashi_3Jp {
  margin-top: 10px;
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  font-weight: 500;
  color: #31adad;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .commonMidashi_3Jp {
    margin-top: 0;
  }
}

.commonMidashi_4 {
  font-size: clamp(1.8rem, 1.5572815534rem + 0.6472491909vw, 2.8rem);
  line-height: 1.4;
  font-weight: bold;
}
.commonMidashi_4.__small {
  font-size: clamp(1.8rem, 1.6058252427rem + 0.5177993528vw, 2.6rem);
}

.commonMidashi_5 span {
  display: inline;
  font-size: clamp(2rem, 1.854368932rem + 0.3883495146vw, 2.6rem);
  font-weight: bold;
  line-height: 2.5;
  padding: 0.4em 0.8em;
  color: #fff;
  background-color: #31adad;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media only screen and (max-width: 767px) {
  .commonMidashi_5 span {
    padding: 0.4em 0.5em;
  }
}

.commonMidashi_6 {
  font-size: clamp(1.8rem, 1.7514563107rem + 0.1294498382vw, 2rem);
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1.2;
}

.commonMidashi_7 {
  padding-top: 10px;
  margin-left: 1.3em;
  letter-spacing: 0.1em;
  font-size: clamp(2.4rem, 2.1572815534rem + 0.6472491909vw, 3.4rem);
  line-height: 1.4;
  font-weight: bold;
  position: relative;
}
.commonMidashi_7::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: -19px;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background-image: url(.././img/title.svg);
  background-repeat: no-repeat;
  background-size: 20px;
}
@media only screen and (min-width: 1025px) and (max-width: 1560px) {
  .recruitment .commonMidashi_7, .support-foreigners .commonMidashi_7, .cleaning .commonMidashi_7, .eldercare-taxi .commonMidashi_7, .rehabilitation .commonMidashi_7, .homevisit-nursing .commonMidashi_7, .nursing-home .commonMidashi_7,
  .commonMidashi_7 .company {
    padding-top: 1.2em;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .recruitment .commonMidashi_7::after, .support-foreigners .commonMidashi_7::after, .cleaning .commonMidashi_7::after, .eldercare-taxi .commonMidashi_7::after, .rehabilitation .commonMidashi_7::after, .homevisit-nursing .commonMidashi_7::after, .nursing-home .commonMidashi_7::after,
  .commonMidashi_7 .company::after {
    top: 10px;
    left: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .commonMidashi_7 {
    padding-top: 1.2em;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .commonMidashi_7::after {
    top: 10px;
    left: 10px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .commonMidashi_7 {
    margin-left: 0.1em;
  }
}

.commonMidashi_8 {
  font-size: clamp(1.8rem, 1.6058252427rem + 0.5177993528vw, 2.6rem);
  letter-spacing: 0.1em;
  padding-left: 1em;
  line-height: 1.4;
  font-weight: bold;
  position: relative;
  padding-bottom: 1.3em;
}
.commonMidashi_8::after, .commonMidashi_8::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.commonMidashi_8::before {
  width: 100%;
  height: 2px;
  background-color: #c7dddd;
}
.commonMidashi_8::after {
  width: 30%;
  height: 3px;
  background-color: #31adad;
}
@media only screen and (max-width: 767px) {
  .commonMidashi_8 {
    padding-left: 0.5em;
    padding-bottom: 1em;
    margin-bottom: 5%;
  }
}

.commonMidashi_9 {
  background-color: #31adad;
  border-radius: 10px;
  padding: 1em 1.5em;
}
.commonMidashi_9.__small {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
}
.commonMidashi_9 span {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  font-size: clamp(1.8rem, 1.654368932rem + 0.3883495146vw, 2.4rem);
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .commonMidashi_9 {
    border-radius: 5px;
    padding: 1em 0.7em;
  }
  .commonMidashi_9.__small {
    padding: 1em 0.7em;
  }
}

.commonMidashi_10 {
  font-size: clamp(2rem, 1.854368932rem + 0.3883495146vw, 2.6rem);
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.commonMidashi_10.__small {
  font-size: clamp(1.8rem, 1.7514563107rem + 0.1294498382vw, 2rem);
}

.commonMidashi_11 {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  line-height: 1.3;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.commonSubText {
  font-size: clamp(1.5rem, 1.3786407767rem + 0.3236245955vw, 2rem);
  line-height: 1.6;
  font-weight: 400;
}

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

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

.__letterS {
  letter-spacing: 0.14em !important;
}

@media only screen and (min-width: 1280px) and (max-width: 1280px) {
  .__letterXS {
    letter-spacing: 0.13em !important;
  }
}

.__letterSS {
  letter-spacing: 0.08em !important;
}

@media only screen and (max-width: 767px) {
  .__letterSSSp {
    letter-spacing: 0.12em !important;
  }
}

.commonTextInner {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  letter-spacing: 0.09em;
  font-weight: 400;
  line-height: 2.4;
}
.commonTextInner.__ssh {
  line-height: 1.8;
}
.commonTextInner.__sh {
  line-height: 2.3;
}
.commonTextInner span {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  color: #31adad;
  font-weight: bold;
  line-height: 2.4;
}
@media only screen and (max-width: 767px) {
  .commonTextInner {
    line-height: 2;
  }
  .commonTextInner.__sh {
    line-height: 2;
  }
  .commonTextInner.__smh {
    line-height: 1.8;
  }
  .commonTextInner span {
    line-height: 2;
  }
}

.commonText {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  letter-spacing: 0.15em;
  font-weight: 400;
  line-height: 1.8;
}
.commonText span.big {
  font-size: clamp(1.6rem, 1.454368932rem + 0.3883495146vw, 2.2rem);
  font-weight: bold;
}
.commonText.__wh {
  letter-spacing: 0.15em;
}
.commonText.__large {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
}
.commonText.__lh {
  line-height: 2.5;
}
.commonText.__2lh {
  line-height: 2.6;
}
.commonText.__mh {
  line-height: 2;
}
.commonText.__sh {
  line-height: 1.8;
  font-weight: 500;
}
.commonText.__spSmall {
  line-height: 1.4;
}
@media only screen and (max-width: 1440px) {
  .commonText.__wh {
    letter-spacing: 0.13em;
  }
}
@media only screen and (max-width: 767px) {
  .commonText {
    line-height: 1.8;
    letter-spacing: 0.15em;
  }
  .commonText.__lh {
    line-height: 2;
  }
  .commonText.__spSmall {
    font-size: 14px;
  }
  .commonText.__sh {
    line-height: 1.6;
  }
  .commonText.__2lh {
    line-height: 2;
  }
  .commonText.__mh {
    line-height: 1.8;
  }
  .commonText span {
    font-size: 16px;
    font-weight: 400;
  }
  .commonText span.big {
    font-weight: 400;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonText.__wh {
    letter-spacing: 0.12em;
  }
}

.commonText2 {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1.4;
}

.innerText {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 2;
  font-weight: 400;
}
@media only screen and (max-width: 959px) {
  .innerText {
    line-height: 1.6;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .innerText {
    line-height: 1.6;
  }
}

.subBtnWrap_news {
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 520px) {
  .subBtnWrap_news {
    position: static;
    text-align: center;
  }
}

.subBtnWrap {
  padding-left: 8.2em;
  bottom: 114px;
  position: absolute;
}
@media only screen and (max-width: 1700px) {
  .subBtnWrap {
    padding-left: 67px;
  }
}
@media only screen and (max-width: 1600px) {
  .subBtnWrap {
    right: 15px;
    bottom: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .subBtnWrap {
    position: static;
    text-align: center;
    margin-top: 0;
    bottom: 0;
    padding-left: 0;
  }
}

.commonSubBtn {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: block;
  position: relative;
  z-index: 9;
}
.commonSubBtn.__left {
  margin-inline: unset;
}

.circle_btn {
  border-radius: 100vh;
  margin-right: 1.8em;
  width: 57px;
  height: 57px;
  text-align: center;
  background-color: #31adad;
  transition: 0.3s;
  position: relative;
}
.circle_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 13px;
  background-image: url(.././img/arrow_w.svg);
  background-repeat: no-repeat;
  background-size: 8px;
}
a:hover .circle_btn {
  transform: scale(1.15);
  background-color: #363636;
}

.btn_txt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}

.subBtn span {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1;
  font-weight: 500;
  margin-right: 1em;
  position: relative;
  padding-right: 2em;
}
.subBtn span::after {
  transition: 0.3s;
  content: "";
  display: block;
  position: absolute;
  content: "＞";
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
a:hover .subBtn span {
  color: #31adad;
}
a:hover .subBtn span::after {
  top: 50%;
  right: -10px;
}

.commonBtn {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  font-weight: bold;
  display: inline-block;
  text-align: left;
  line-height: 1;
  padding: 2.7em 3em 2.7em 2.5em;
  border: solid 1px #c7dddd;
  border-radius: 7px;
  transition: 0.3s;
  position: relative;
  width: 382px;
}
.commonBtn::after {
  width: 28px;
  height: 28px;
  right: 21px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(.././img/arrow_circle.svg);
  background-repeat: no-repeat;
  background-size: 28px;
  transition: 0.3s;
  content: "";
  display: block;
  position: absolute;
}
.commonBtn:hover {
  background-color: #363636;
  border: solid 1px #363636;
  color: #fff;
}
.commonBtn:hover::after {
  right: 15px;
  background-image: url(.././img/arrow_circle_blue.svg) !important;
}
a:hover .commonBtn {
  background-color: #363636;
  border: solid 1px #363636;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .commonBtn {
    padding: 1.8em 3em 1.8em 1.3em;
    width: 300px;
  }
  .commonBtn::after {
    right: 13px;
  }
}

.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;
}
a:hover .textLink {
  color: #31adad;
}

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

.alink {
  color: #31adad;
  word-break: break-all;
  transition: 0.3s;
}
.alink.__blue {
  color: #036ea9;
}
.alink:hover {
  color: #cccdcd;
}
@media only screen and (max-width: 767px) {
  .alink {
    font-size: 14px !important;
  }
  .conMailBlock .alink {
    font-size: 18px !important;
  }
}

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

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

.text_link {
  text-decoration: underline;
  color: #31adad;
  transition: 0.3s;
}
.text_link:hover {
  color: #c7dddd;
}

.commontitle_line span {
  background: linear-gradient(transparent 65%, rgb(255, 241, 0) 0%);
}

.commonNbList {
  padding-left: 1.5em;
}
.commonNbList > li {
  list-style: decimal;
  line-height: 1.4;
}
.commonNbList > li:not(:last-child) {
  margin-bottom: 8px;
}
.commonNbList > li span {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  font-weight: 500;
  line-height: 1.8;
}

.withS {
  width: 73%;
  margin-inline: auto;
}
@media only screen and (max-width: 959px) {
  .withS {
    width: 100%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .withS {
    width: 90%;
  }
}

.commonNbList2 > li:not(:last-child) {
  margin-bottom: 7px;
}
.commonNbList2 > li span {
  padding-left: 0.6em;
  display: block;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}
.commonNbList2 > li span::after {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #363636;
  border-radius: 50%;
  left: 0;
  top: 9px;
}
@media only screen and (min-width: 1025px) and (max-width: 1160px) {
  .commonNbList2 > li span {
    font-size: 14px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonNbList2 > li span {
    letter-spacing: 0.05em;
  }
}

.commonNbList3 {
  position: relative;
}
.commonNbList3 > li {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.25em;
  font-weight: 500;
}
.commonNbList3 > li:not(:last-child) {
  margin-bottom: 2%;
}
.commonNbList3 > li span {
  position: absolute;
  font-weight: 500;
  left: 0;
  margin: 0;
}

.commonNbList4 {
  padding: 2.5em 4em;
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 9px;
}
.commonNbList4 > li span {
  padding-left: 2.3em;
  display: block;
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  white-space: nowrap;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}
.commonNbList4 > li span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -2px;
  width: 28px;
  height: 28px;
  background-image: url(.././img/check.svg);
  background-repeat: no-repeat;
  background-size: 28px;
}
@media only screen and (max-width: 767px) {
  .commonNbList4 {
    justify-content: flex-start;
    -moz-column-gap: 13px;
         column-gap: 13px;
    padding: 1.5em 1.2em;
  }
  .commonNbList4 > li span {
    padding-left: 1.2em;
  }
  .commonNbList4 > li span::after {
    top: 3px;
    width: 15px;
    height: 15px;
    background-size: 15px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .commonNbList4 {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .commonNbList4 > li span {
    padding-left: 1.8em;
  }
  .commonNbList4 > li span::after {
    top: 1px;
    width: 22px;
    height: 22px;
    background-size: 22px;
  }
}

.commonNbList5 > li {
  font-weight: 400;
}
.commonNbList5 > li span {
  font-weight: 400;
}

.commonList > li {
  background-color: #f9f9f9;
  border-radius: 5px;
}
.commonList > li:not(:last-child) {
  margin-bottom: 17px;
}
.commonList > li > dl {
  padding: 1.8em 2em;
}
.commonList > li > dl.__lh dt {
  line-height: 1.8;
}
.commonList > li > dl.__lh dt::after {
  height: 65px;
}
.commonList > li > dl.__lh dd {
  line-height: 1.8;
}
.commonList > li dt {
  width: 24%;
  margin-right: 3%;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.6;
  font-weight: 400;
  position: relative;
}
.commonList > li dt::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 40px;
  background-color: #31adad;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.commonList > li dd {
  width: 71%;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.6;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .commonList > li dl {
    padding: 1.8em 1em;
  }
  .commonList > li dt {
    width: 24%;
    margin-right: 3%;
  }
  .commonList > li dd {
    width: 75%;
  }
}
@media only screen and (max-width: 520px) {
  .commonList > li {
    border-radius: 3px;
  }
  .commonList > li:not(:last-child) {
    margin-bottom: 10px;
  }
  .commonList > li > dl {
    padding: 1em;
  }
  .commonList > li > dl.__lh {
    padding: 1em;
  }
  .commonList > li > dl.__lh dt {
    line-height: 1.8;
  }
  .commonList > li > dl.__lh dt::after {
    height: 1px;
  }
  .commonList > li dt {
    width: 100%;
    padding-bottom: 1em;
    color: #31adad;
  }
  .commonList > li dt::after {
    width: 100%;
    height: 1px;
    background-color: #31adad;
    left: 0;
    top: unset;
    bottom: 0;
    transform: unset;
  }
  .commonList > li dd {
    width: 100%;
    padding-top: 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonList > li dt {
    width: 22%;
    margin-right: 3%;
  }
  .commonList > li dd {
    width: 75%;
  }
}

.commonSubList > li {
  line-height: 1;
}
.commonSubList > li:not(:last-child) {
  margin-bottom: 7px;
}
.commonSubList > li span {
  transition: 0.3s;
  display: inline-block;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.4;
  font-weight: 400;
  padding-left: 0.9em;
  position: relative;
}
.commonSubList > li span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #31adad;
}

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

.contact-group .topMenuList > li:nth-child(1) > a, .confirm-group .topMenuList > li:nth-child(1) > a, .thanks-group .topMenuList > li:nth-child(1) > a {
  background-color: #31adad;
  color: #fff;
}
.contact-group .topMenuList > li:nth-child(1) > a:hover, .confirm-group .topMenuList > li:nth-child(1) > a:hover, .thanks-group .topMenuList > li:nth-child(1) > a:hover {
  background-color: #363636;
  border: solid 1px #363636;
}
.contact-group .topMenuList > li:nth-child(2) > a, .confirm-group .topMenuList > li:nth-child(2) > a, .thanks-group .topMenuList > li:nth-child(2) > a {
  background-color: #fff;
  color: #31adad;
}
.contact-group .topMenuList > li:nth-child(2) > a:hover, .confirm-group .topMenuList > li:nth-child(2) > a:hover, .thanks-group .topMenuList > li:nth-child(2) > a:hover {
  background-color: #363636;
  border: solid 1px #363636;
  color: #fff;
}
.contact-person .topMenuList > li:nth-child(1) > a, .confirm-person .topMenuList > li:nth-child(1) > a, .thanks-person .topMenuList > li:nth-child(1) > a {
  background-color: #fff;
  color: #31adad;
}
.contact-person .topMenuList > li:nth-child(1) > a:hover, .confirm-person .topMenuList > li:nth-child(1) > a:hover, .thanks-person .topMenuList > li:nth-child(1) > a:hover {
  background-color: #363636;
  border: solid 1px #363636;
  color: #fff;
}
.contact-person .topMenuList > li:nth-child(2) > a, .confirm-person .topMenuList > li:nth-child(2) > a, .thanks-person .topMenuList > li:nth-child(2) > a {
  background-color: #31adad;
  color: #fff;
}
.contact-person .topMenuList > li:nth-child(2) > a:hover, .confirm-person .topMenuList > li:nth-child(2) > a:hover, .thanks-person .topMenuList > li:nth-child(2) > a:hover {
  background-color: #363636;
  border: solid 1px #363636;
}
.topMenuList > li:first-child > a {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.topMenuList > li:last-child > a {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
.topMenuList > li > a {
  width: 170px;
  text-align: center;
  display: block;
  font-size: clamp(1.4rem, 1.3514563107rem + 0.1294498382vw, 1.6rem);
  line-height: 1;
  font-weight: 500;
  border: solid 1px #31adad;
  padding: 1.8em 0.5em;
  background-color: #31adad;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .topMenuList > li > a {
    width: 110px;
    padding: 1.3em 0.5em;
  }
}

#sideMenu {
  display: block;
  position: fixed;
  top: 93px;
  width: 100%;
  z-index: 666;
  display: none;
}
@media only screen and (max-width: 1024px) {
  #sideMenu {
    display: block;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #sideMenu {
    top: 99px;
  }
}

@media only screen and (max-width: 1024px) {
  .contentWrap {
    display: block;
  }
}

.content_left {
  width: 230px;
}
@media only screen and (max-width: 1670px) {
  .content_left {
    width: 175px;
  }
}
@media only screen and (max-width: 1024px) {
  .content_left {
    width: 0;
  }
}

.content_right {
  margin-left: 3%;
  width: 72%;
  margin-right: 3%;
}
@media only screen and (max-width: 1670px) {
  .content_right {
    width: 81%;
  }
}
@media only screen and (max-width: 1400px) {
  .content_right {
    margin-left: 5%;
  }
}
@media only screen and (max-width: 1024px) {
  .content_right {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

/*==================================================
 * 　animation
 *================================================*/
.topFvImgCard {
  width: 100%;
  height: 93vh;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .topFvImgCard {
    height: 70vh;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFvImgCard {
    height: 46vh;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topFvImgCard .cnt {
    padding: 0 !important;
  }
}

article {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--i);
}

.service-info {
  position: absolute;
  width: 100%;
  top: 49%;
  transform: translateY(-50%);
  z-index: 8;
}
@media only screen and (max-width: 767px) {
  .service-info {
    top: 25%;
    padding-left: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .service-info {
    top: 37%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .service-info {
    top: 26%;
  }
}

.service-info h2 {
  font-size: clamp(2rem, 1.4660194175rem + 1.4239482201vw, 4.2rem);
  font-family: "SUSE Mono", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #31adad;
  text-transform: uppercase;
}
.service-info h2 span {
  font-size: clamp(2rem, 1.4660194175rem + 1.4239482201vw, 4.2rem);
  font-family: "SUSE Mono", sans-serif;
  color: #3f3d56;
  font-weight: 500;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hi-1 {
  background-image: url(.././img/topFv01.webp);
}
@media only screen and (max-width: 767px) {
  .hi-1 {
    background-image: url(.././img/topFv01_sp.webp);
  }
}

.hi-2 {
  background-image: url(.././img/topFv02.webp);
}
@media only screen and (max-width: 767px) {
  .hi-2 {
    background-image: url(.././img/topFv02_sp.webp);
  }
}

.hi-3 {
  background-image: url(.././img/topFv03.webp);
}
@media only screen and (max-width: 767px) {
  .hi-3 {
    background-image: url(.././img/topFv03_sp.webp);
  }
}

/*コンテナ要素のスタイル*/
.swiper-container.slider {
  width: 85%;
  margin-inline: auto;
  border-radius: 16px; /* 全体を角丸に */
  overflow: hidden; /* 内側で隠すように変更 */
}
@media only screen and (max-width: 767px) {
  .swiper-container.slider {
    width: 90%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .swiper-container.slider {
    width: 95%;
  }
}

/*各スライドの背景色の設定*/
/*サムネイルのスタイル*/
.swiper-thumbnail {
  max-width: 512px;
  margin-inline: auto;
  margin-top: 14px;
}
.swiper-thumbnail .swiper-wrapper > li {
  cursor: pointer;
  padding: 1.6em 0.5em;
  background-color: #fff;
}
.swiper-thumbnail .swiper-wrapper > li.swiper-slide-thumb-active {
  background-color: #31adad;
}
.swiper-thumbnail .swiper-wrapper > li:nth-child(1) {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.swiper-thumbnail .swiper-wrapper > li:nth-child(3) {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
@media only screen and (max-width: 767px) {
  .swiper-thumbnail {
    width: 100%;
  }
}

.seviceTitle {
  font-size: clamp(1.4rem, 1.2786407767rem + 0.3236245955vw, 1.9rem);
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .seviceTitle {
    letter-spacing: 0.01em;
  }
}

.serviceTitleWrap {
  position: absolute;
  width: 100%;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.__mid .serviceTitleWrap {
  top: 48%;
}

.serviceBtnTitle {
  font-size: clamp(1.2rem, 1.1029126214rem + 0.2588996764vw, 1.6rem);
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  color: #31adad;
}
.swiper-slide-thumb-active .serviceBtnTitle {
  color: #fff;
}

.swiperService .swiper-button-prev {
  top: 48%;
  left: 0;
  display: block;
  width: 85px;
  height: 85px;
  background: #fff;
  border-radius: 50%;
  border: solid 1px #31adad;
}
.swiperService .swiper-button-prev:after {
  content: "\f104";
  font-size: clamp(1.4rem, 1.0116504854rem + 1.0355987055vw, 3rem);
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 400;
  color: #31adad;
}
@media only screen and (max-width: 767px) {
  .swiperService .swiper-button-prev {
    top: 17%;
    width: 35px;
    height: 35px;
  }
}
@media only screen and (min-width: 1250px) and (max-width: 1560px) {
  .swiperService .swiper-button-prev {
    top: 42%;
    width: 60px;
    height: 60px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .swiperService .swiper-button-prev {
    top: 45%;
    width: 50px;
    height: 50px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiperService .swiper-button-prev {
    top: 42%;
    width: 60px;
    height: 60px;
  }
}

.swiperService .swiper-button-next {
  right: 0;
  top: 48%;
  display: block;
  width: 85px;
  height: 85px;
  background: #fff;
  border-radius: 50%;
  border: solid 1px #31adad;
}
.swiperService .swiper-button-next:after {
  content: "\f105";
  font-size: clamp(1.4rem, 1.0116504854rem + 1.0355987055vw, 3rem);
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 400;
  color: #31adad;
}
@media only screen and (min-width: 1250px) and (max-width: 1560px) {
  .swiperService .swiper-button-next {
    top: 42%;
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .swiperService .swiper-button-next {
    top: 17%;
    width: 35px;
    height: 35px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .swiperService .swiper-button-next {
    top: 45%;
    width: 50px;
    height: 50px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiperService .swiper-button-next {
    top: 42%;
    width: 60px;
    height: 60px;
  }
}

.swiperNurse .swiper-button-prev {
  top: 45%;
  left: 26.5%;
  display: block;
  width: 51px;
  height: 51px;
  background: #31adad;
  border-radius: 50%;
}
.swiperNurse .swiper-button-prev:after {
  content: "\f104";
  font-size: clamp(2rem, 1.8786407767rem + 0.3236245955vw, 2.5rem);
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 400;
  color: #fff;
}
@media only screen and (min-width: 1250px) and (max-width: 1560px) {
  .swiperService .swiper-button-prev {
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .swiperNurse .swiper-button-prev {
    top: 49%;
    width: 35px;
    height: 35px;
    left: 26%;
  }
}
@media only screen and (max-width: 520px) {
  .swiperNurse .swiper-button-prev {
    top: 49%;
    width: 40px;
    height: 40px;
    left: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .swiperNurse .swiper-button-prev {
    top: 50%;
    width: 45px;
    height: 45px;
    left: 26%;
  }
}

.swiperNurse .swiper-button-next {
  right: 26.5%;
  top: 45%;
  display: block;
  width: 51px;
  height: 51px;
  background: #31adad;
  border-radius: 50%;
}
.swiperNurse .swiper-button-next:after {
  content: "\f105";
  font-size: clamp(2rem, 1.8786407767rem + 0.3236245955vw, 2.5rem);
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 400;
  color: #fff;
}
@media only screen and (min-width: 1250px) and (max-width: 1560px) {
  .swiperService .swiper-button-next {
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .swiperNurse .swiper-button-next {
    top: 49%;
    width: 35px;
    height: 35px;
    right: 26%;
  }
}
@media only screen and (max-width: 520px) {
  .swiperNurse .swiper-button-next {
    top: 49%;
    width: 40px;
    height: 40px;
    right: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .swiperNurse .swiper-button-next {
    top: 50%;
    width: 45px;
    height: 45px;
    right: 26%;
  }
}

/*********************** 線のanimation ***************************/
.lineWrap {
  position: absolute;
  width: 100%;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.__second .lineWrap {
  top: 73%;
}
.__third .lineWrap {
  top: 62%;
}
@media only screen and (max-width: 767px) {
  .lineWrap {
    top: 47%;
  }
  .__second .lineWrap {
    top: 37%;
  }
}

.reveal-vert {
  width: 100%;
  margin-inline: auto;
}

.reveal-vert img {
  display: block;
  width: 100%;
  clip-path: inset(0 0 100% 0); /* 下から非表示 */
  transition: clip-path 4s cubic-bezier(0.2, 0.8, 0.2, 1); /* ← ここを変更 */
  will-change: clip-path;
}

.reveal-vert.is-inview img {
  clip-path: inset(0 0 0 0);
}

/*********************** 文字のanimation ***************************/
.catch-about__mask {
  overflow: hidden;
}

.catch-about__line {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.catch-about__line.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/*********************** サイドメニューanimation ***************************/
/* サイドメニューリンク */
.all_sub_side_nav {
  width: var(--nav-w);
  height: 100%;
  position: fixed;
  left: 0;
  top: 400px;
  z-index: 666;
  transition: opacity 0.4s ease, top 0.4s ease;
}
.all_sub_side_nav.display_no {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .all_sub_side_nav {
    display: none;
  }
}

.all_sub_side_nav ._list_wrap {
  width: 100%;
  height: 100%;
}

.all_sub_side_nav ._list {
  background: #fff;
  max-height: 85vh;
  overflow-y: auto;
  top: 12vh;
  pointer-events: auto;
  border-radius: 0 30px 30px 0;
  padding: 2.8em 2.6em 2.8em 2.5em;
  border: 1px solid #c7dddd;
}
@media only screen and (max-width: 1670px) {
  .all_sub_side_nav ._list {
    padding: 1.5em 1em 1.5em 1em;
    border-radius: 0 30px 30px 0;
  }
}

.all_sub_side_nav ._list li + li {
  margin-top: 24px;
}

.all_sub_side_nav ._list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  text-decoration: none;
}

.all_sub_side_nav ._list li a ._text {
  max-width: 180px;
  font-size: 16px;
  font-weight: bold;
  color: #363636;
  transition: 0.25s ease;
}
@media only screen and (max-width: 1670px) {
  .all_sub_side_nav ._list li a ._text {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}

.all_sub_side_nav ._list li a.current ._text {
  color: #31adad;
}

.all_sub_side_nav ._list li a ._circle_sec {
  width: var(--ring-size);
  height: var(--ring-size);
  position: relative;
  flex: 0 0 var(--ring-size);
}

.all_sub_side_nav ._list li a ._circle_sec svg {
  position: absolute;
  top: -14px;
  right: -9px;
}
@media only screen and (max-width: 1670px) {
  .all_sub_side_nav ._list li a ._circle_sec svg {
    right: -6px;
  }
}

._circle {
  stroke-width: var(--ring-stroke);
  border-radius: 50%; /* 丸く */
}

._circle_orange {
  stroke-width: var(--ring-stroke);
  transform: rotate(-90deg);
  stroke-linecap: butt; /* ← round を butt に変更 */
  transition: stroke-dasharray 0.35s ease;
}

._arrow {
  stroke-width: var(--ring-stroke);
  stroke: #f1eeeb;
  transition: 0.25s ease;
}

.all_sub_side_nav ._list li a.current ._circle_sec ._arrow {
  stroke: #31adad;
  transform: rotate(-90deg);
}

.sliderEnTitle {
  display: inline-block;
}
.sliderEnTitle span {
  font-size: clamp(2.5rem, 1.1650485437rem + 3.5598705502vw, 8rem);
  white-space: nowrap;
  font-family: "SUSE Mono", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-weight: 500;
  display: inline-block;
}

.mojiSliderCard {
  margin-top: 13em;
}
@media only screen and (max-width: 959px) {
  .mojiSliderCard {
    margin-top: 10em;
  }
}

.wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.text-container {
  display: flex;
  position: relative;
  z-index: 1;
}

.loop,
.loop2 {
  display: inline-block;
  white-space: nowrap;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.js_hide {
  display: none !important;
}

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

header {
  transition: top 0.3s ease;
  position: fixed;
  top: 25px;
  width: 100%;
  max-width: 1366px; /* お好みで上限を設定 */
  border-radius: 7px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 996;
  background-color: rgba(255, 255, 255, 0.8);
}
.hide header {
  transform: translateY(-110px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  background-color: unset;
}
@media print, screen and (min-width: 768px) {
  .change-color header {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1400px) {
  header {
    width: 98%;
  }
}
@media only screen and (max-width: 767px) {
  header {
    width: 100%;
  }
  .hide header {
    transform: translateY(-110px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    background-color: unset;
  }
  .open header {
    width: 100%;
    left: auto;
  }
}
@media only screen and (max-width: 520px) {
  header {
    width: 100%;
  }
  .hide header {
    transform: translateY(-110px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    background-color: unset;
  }
  .open header {
    width: 100%;
    left: auto;
  }
}
@media only screen and (max-width: 959px) {
  header {
    border-radius: unset;
    top: 0;
  }
  .hide header {
    transform: translateY(-110px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    background-color: unset;
  }
  .change-color header {
    padding: 2.3em 0;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .hide header {
    transform: translateY(-110px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    background-color: unset;
  }
  .open header {
    width: 442px;
    left: auto;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  header {
    top: 15px;
    width: 97%;
  }
}

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

.headerlogoBlock {
  position: absolute;
  top: 18px;
  width: 344px;
  left: 27px;
  transition: 0.3s;
}
.change-color .headerlogoBlock {
  top: 15px;
  width: 293px;
}
@media only screen and (max-width: 767px) {
  .headerlogoBlock {
    top: 16px;
    width: 244px;
    left: 23px;
  }
  .hide .headerlogoBlock {
    transform: translateY(-200%);
    transition: transform 0.3s ease;
  }
  .change-color .headerlogoBlock {
    width: 244px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerlogoBlock {
    top: 16px;
    width: 244px;
    left: 23px;
  }
  .hide .headerlogoBlock {
    transform: translateY(-200%);
    transition: transform 0.3s ease;
  }
  .change-color .headerlogoBlock {
    width: 244px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerlogoBlock {
    top: 16px;
    width: 224px;
    left: 14px;
  }
  .change-color .headerlogoBlock {
    width: 224px;
  }
}

.sankaku {
  background-color: #31adad;
  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: 20px;
       column-gap: 20px;
}
.businessList.__grid3 {
  width: 88%;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-inline: auto;
}
.businessList.__grid3 > li {
  width: calc((100% - 30px) / 3);
}
.businessList > li {
  width: calc((100% - 20px) / 2);
}
.businessList > li > a {
  display: block;
}

.megaMenuSubTitle dt {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  line-height: 0.6;
  font-family: "SUSE Mono", sans-serif;
  font-weight: 500;
  color: #31adad;
}
.megaMenuSubTitle dd {
  font-size: clamp(1.4rem, 1.3757281553rem + 0.0647249191vw, 1.5rem);
  line-height: 1;
  font-weight: 500;
}

.busMenuImgWrap {
  border-radius: 15px;
}

.busMenuImg {
  padding-bottom: 70%;
}

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

.megaList {
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding-bottom: 2em;
  border-bottom: solid 1px #a6a6a7;
}
.megaList > li {
  width: calc((100% - 40px) / 2);
}
.megaList > li:nth-child(1) {
  position: relative;
}
.megaList > li:nth-child(1)::after {
  content: "";
  display: block;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 1px;
  background-color: #a6a6a7;
}

.megaList2 > li:not(:last-child) {
  margin-right: 2.5em;
}
.megaList2 > li > a {
  display: block;
}
.megaList2 > li > a span {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1;
  font-weight: 500;
  position: relative;
  padding-right: 2em;
}
.megaList2 > li > a span::before {
  transition: 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  background-color: #31adad;
  border-radius: 50px;
  transform: translateY(-50%);
}
.megaList2 > li > a span::after {
  transition: 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 55%;
  right: 9px;
  width: 5px;
  height: 10px;
  transform: translateY(-50%);
  background-image: url(.././img/arrow_w.svg);
  background-repeat: no-repeat;
  background-size: 5px;
}
.megaList2 > li > a:hover span::before {
  background-color: #363636;
  right: -5px;
}
.megaList2 > li > a:hover span::after {
  right: 4px;
}

.megaMenu {
  position: fixed;
  top: 105px; /* ヘッダーの高さなどに合わせて調整 */
  left: 50%;
  transform: translateX(-50%);
  padding: 4em 2.5em 2em;
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 8px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.5s;
}
.megaMenu.__comp {
  max-width: 800px;
  padding: 3em 1em 1em;
}
.megaMenu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
.change-color .megaMenu {
  top: 95px; /* ヘッダーの高さなどに合わせて調整 */
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .megaMenu {
    top: 80px; /* ヘッダーの高さなどに合わせて調整 */
    width: 95vw;
  }
}

.megaMenuTitle dt {
  font-size: clamp(1.8rem, 1.7514563107rem + 0.1294498382vw, 2rem);
  line-height: 0.6;
  font-family: "SUSE Mono", sans-serif;
  font-weight: 500;
  padding-left: 0.5em;
  padding-right: 1em;
  position: relative;
}
.megaMenuTitle dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  background-image: url(.././img/title.svg);
  background-repeat: no-repeat;
  background-size: 10px;
}
.megaMenuTitle dd {
  font-size: clamp(1.4rem, 1.3757281553rem + 0.0647249191vw, 1.5rem);
  line-height: 1;
  font-weight: 500;
  padding-left: 0.8em;
}

.busMenuTitle {
  font-size: clamp(1.3rem, 1.2514563107rem + 0.1294498382vw, 1.5rem);
  white-space: nowrap;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.busMenuTitle::before {
  transition: 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: -40px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-color: #31adad;
  border-radius: 50px;
}
.busMenuTitle::after {
  transition: 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: -32px;
  right: 19px;
  width: 5px;
  height: 10px;
  background-image: url(.././img/arrow_w.svg);
  background-repeat: no-repeat;
  background-size: 5px;
}
a:hover .busMenuTitle::before {
  right: 7px;
  background-color: #363636;
}
a:hover .busMenuTitle::after {
  right: 16px;
}

.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: #31adad;
}
.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 {
  padding: 0em 0;
  margin-right: 204px;
}
.change-color .headerTopMenuBlock {
  margin-top: 0;
  margin-right: 180px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerTopMenuBlock {
    margin-top: -11px;
    margin-right: 18px;
  }
  .change-color .headerTopMenuBlock {
    margin-top: -11px;
    margin-right: 18px;
  }
}

.headerMenuCard {
  margin-right: 28px;
}
.headerMenuCard > li {
  transition: 0.3s;
}
.headerMenuCard > li.current > a {
  color: #31adad;
}
.headerMenuCard > li > a {
  font-size: clamp(1.4rem, 1.3514563107rem + 0.1294498382vw, 1.6rem);
  text-align: center;
  display: block;
  font-weight: 500;
  line-height: 2;
  padding: 1.8em 0.9em 1.8em;
  position: relative;
}
.headerMenuCard > li > a::before {
  transition: 0.3s;
  content: "";
  display: block;
  position: absolute;
  content: "［";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  opacity: 0;
}
.headerMenuCard > li > a::after {
  transition: 0.3s;
  content: "";
  display: block;
  position: absolute;
  content: "］";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  opacity: 0;
}
.headerMenuCard > li > a:hover {
  color: #31adad;
}
.headerMenuCard > li > a:hover::before {
  opacity: 1;
  left: -2px;
}
.headerMenuCard > li > a:hover::after {
  opacity: 1;
  right: -2px;
}
.change-color .headerMenuCard > li.hasMegaMenuLi::after {
  bottom: 7px;
}
.change-color .headerMenuCard > li.hasMegaMenuLi:hover::after {
  bottom: 4px;
}
.change-color .headerMenuCard > li > a {
  padding: 1.8em 0.8em 1.8em;
  font-size: clamp(1.3rem, 1.2514563107rem + 0.1294498382vw, 1.5rem);
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerMenuCard {
    margin-right: 13px;
  }
  .headerMenuCard > li > a {
    font-size: 15px;
    padding: 1.8em 0.5em 1.8em;
  }
  .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: 15px;
    padding: 1.8em 0.5em 1.8em;
  }
}

.headerInfoBlock {
  width: 24%;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerInfoBlock {
    width: 39%;
  }
  .change-color .headerInfoBlock {
    width: 39%;
  }
}

.faxImgBlock {
  width: 45px;
  margin-right: 3px;
}
.overRayBlock .faxImgBlock {
  width: 56px;
}
.change-color .footerTelInfoWrap .faxImgBlock {
  width: 64px;
}
.change-color .footerTelInfoBlock .faxImgBlock {
  width: 64px;
}
.change-color .faxImgBlock {
  width: 39px;
}
@media only screen and (max-width: 767px) {
  .change-color .footerTelInfoWrap .faxImgBlock {
    width: 56px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .faxImgBlock {
    width: 39px;
  }
  .change-color .faxImgBlock {
    width: 39px;
  }
}

.telLink {
  font-size: clamp(1.6rem, 1.3572815534rem + 0.6472491909vw, 2.6rem);
  letter-spacing: 0.01em;
  font-weight: bold;
  line-height: 1;
}
.overRayBlock .telLink {
  font-size: 32px;
}
.change-color .footerTelInfoWrap .telLink {
  font-size: clamp(3.2rem, 3.1029126214rem + 0.2588996764vw, 3.6rem);
}
@media print, screen and (min-width: 768px) {
  .telLink {
    pointer-events: none;
  }
}
.change-color .telLink {
  font-size: clamp(1.6rem, 1.4058252427rem + 0.5177993528vw, 2.4rem);
}
@media only screen and (max-width: 767px) {
  .overRayBlock .telLink {
    font-size: 32px;
  }
  .change-color .overRayBlock .telLink {
    font-size: 32px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .telLink {
    font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  }
  .change-color .telLink {
    font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  }
  .change-color .footerTelInfoWrap .telLink {
    font-size: 25px;
  }
}

.headertelText {
  font-size: clamp(1.3rem, 1.2757281553rem + 0.0647249191vw, 1.4rem);
  font-weight: 500;
  line-height: 1;
}
.headertelText.__footer {
  font-size: clamp(1.6rem, 1.527184466rem + 0.1941747573vw, 1.9rem);
  padding-left: 0.6em;
}
.change-color .headertelText.__footer {
  font-size: clamp(1.6rem, 1.527184466rem + 0.1941747573vw, 1.9rem);
  padding-left: 0.6em;
}
.overRayBlock .headertelText {
  font-size: 16px;
}
.change-color .headertelText {
  font-size: 13px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headertelText {
    font-size: 10px;
  }
  .change-color .headertelText {
    font-size: 10px;
  }
  .change-color .headertelText.__footer {
    font-size: 15px;
  }
}

.headerBtnWrap {
  margin-top: 20px;
}
.change-color .headerBtnWrap {
  margin-top: 10px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerBtnWrap {
    margin-top: 11px;
  }
}

.headerBtnList {
  position: absolute;
  right: 31px;
  top: 30px;
  -moz-column-gap: 7px;
       column-gap: 7px;
}
.change-color .headerBtnList {
  top: 21px;
}
@media only screen and (max-width: 1280px) {
  .headerBtnList {
    right: 8px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerBtnList {
    right: 3px;
    top: 18px;
  }
  .headerBtnList > li:nth-child(2) {
    display: none;
  }
  .change-color .headerBtnList {
    right: 3px;
    top: 18px;
  }
}

.headerBtn {
  padding: 0.85em 1.4em 1em;
  background-color: #31adad;
  font-size: clamp(1.5rem, 1.5rem + 0vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 0.6;
  color: #fff;
  border-radius: 100px;
  transition: 0.3s;
}
.headerBtn:hover {
  color: #fff;
  background-color: #363636;
}
.change-color .headerBtn {
  padding: 0.7em 1em;
  font-size: clamp(1.5rem, 1.5rem + 0vw, 1.5rem);
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerBtn {
    padding: 0.6em 1em;
  }
  .change-color .headerBtn {
    padding: 0.6em 1em;
    font-size: clamp(1.5rem, 1.5rem + 0vw, 1.5rem);
  }
}

.overRayMenuUl {
  margin-bottom: 12%;
}
.overRayMenuUl > li {
  position: relative;
  font-size: 18px;
  padding: 2rem 0.8rem;
  font-weight: 500;
}
.overRayMenuUl > li:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #babbbc;
}
.overRayMenuUl > li > a {
  display: block;
  transition: 0.3s;
  position: relative;
  font-weight: 500;
}
.overRayMenuUl > li > a::before {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  font-size: 20px;
  line-height: 1;
  width: 25px;
  height: 25px;
  content: "\f105";
  top: 15px;
  right: -7px;
  transform: translateY(-50%);
  font-weight: 500;
  z-index: 1;
  transition: 0.3s;
  opacity: 1;
}
.overRayMenuUl > li > a:hover {
  opacity: 0.5;
}
.overRayMenuUl > li > a > ul:not(:last-child) > li {
  padding: 30em;
}
.overRayMenuUl > li .hasMegaMenuA {
  position: relative;
}
.overRayMenuUl > li .hasMegaMenuA::after, .overRayMenuUl > li .hasMegaMenuA::before {
  position: absolute;
  content: "";
  display: block;
  background-color: #31adad;
  border-radius: 10px;
  transition: 0.3s;
  z-index: 8;
}
.overRayMenuUl > li .hasMegaMenuA::before {
  width: 18px;
  height: 3px;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
}
.overRayMenuUl > li .hasMegaMenuA::after {
  width: 3px;
  height: 18px;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
}
.overRayMenuUl > li .hasMegaMenuA.on::before {
  opacity: 0;
}
.overRayMenuUl > li .hasMegaMenuA.on::after {
  width: 3px;
  right: 10px;
  top: 17%;
  transform: rotate(-90deg);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .overRayMenuUl > li {
    padding: 1.6rem 1rem;
  }
}

.mailImgBlock {
  width: 36px;
  margin-inline: auto;
}

.overRayText {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
}
.overRayText.__small {
  font-size: 15px;
  font-weight: 500;
}
.overRayText.__large {
  font-size: 21px;
}

.spConList {
  row-gap: 10px;
}
.spConList > li {
  padding: 1.5em 1em;
  border-radius: 10px;
}
.spConList > li:nth-child(1) {
  background-color: #fff;
  margin-bottom: 7%;
}
.spConList > li:nth-child(2) {
  background-color: #31adad;
}

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

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

.splistTitle {
  font-size: 15px;
  margin-bottom: 2%;
  font-weight: bold;
  color: #31adad;
}

.splistList > li:not(:last-child) {
  margin-bottom: 10px;
}
.splistList > li > a {
  display: block;
  font-size: 15px;
  line-height: 1;
  padding-left: 1em;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}
.splistList > li > a::before {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  line-height: 1;
  content: "\f105";
  top: 12px;
  right: 7px;
  font-size: 20px;
  transform: translateY(-50%);
  font-weight: 500;
  z-index: 1;
  transition: 0.3s;
  opacity: 1;
}
.splistList > li > a:hover {
  opacity: 0.7;
}

.splistText {
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.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: 442px;
  margin-left: auto;
  position: relative;
  z-index: 9999;
}
@media only screen and (max-width: 767px) {
  .overRayBlock {
    width: 442px;
  }
}
@media only screen and (max-width: 520px) {
  .overRayBlock {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .overRayBlock {
    width: 442px;
  }
}

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

.overRayTextCard {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow-y: clip;
  padding: 0 15px 70px;
  position: relative;
}
.overRayTextCard::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(.././img/back_sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .overRayTextCard {
    width: 100%;
    padding: 0 15px 70px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .overRayTextCard {
    padding: 0 15px 70px;
  }
}

.circleBlock {
  position: absolute;
  padding: 35px 50px;
  z-index: 9;
  right: 0;
  bottom: 0;
}
.circleBlock .block {
  width: 142px;
  height: 142px;
  margin: auto;
}
@media screen and (max-width: 1366px) {
  .circleBlock {
    display: none;
  }
}

.circleWrap {
  position: relative;
  width: 140px; /* SVGサイズに合わせる */
  height: 140px;
}
@media screen and (max-width: 1366px) {
  .circleWrap {
    display: none;
  }
}

.centerContent {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 中央寄せ */
  text-align: center;
}

.centerContent img {
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
a:hover .centerContent img {
  opacity: 0.7;
}

.centerContent p {
  font-size: 16px;
  letter-spacing: 0.01em;
  font-weight: bold;
  color: #363636;
  transition: 0.3s;
}
a:hover .centerContent p {
  opacity: 0.7;
}

.circleText {
  overflow: visible;
}

.circleText__circle {
  fill: none;
}

.circleText__text {
  fill: #363636;
  font-size: 14px;
  font-family: "SUSE Mono", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* 外周のテキストだけ回転させる */
.circleText__rotate {
  animation: rotation 18s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
  100% {
    transform: rotate(360deg);
    transform-origin: 50% 50%;
  }
}
/* slide */
.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 40px auto 0;
  list-style: none;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 60px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #5da6a9;
}

/* 各ドット */
.slick-dots li {
  flex: 1;
}

/* ボタンの基本スタイル */
.slick-dots li button {
  all: unset;
  display: block;
  width: 160px;
  padding: 14px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #5da6a9;
  cursor: pointer;
  background-color: #fff;
  transition: 0.3s;
}

/* アクティブ状態 */
.slick-dots li.slick-active button {
  background-color: #5da6a9;
  color: #fff;
}

/* 左右の角丸 */
.slick-dots li:first-child button {
  border-radius: 60px 0 0 60px;
}

.slick-dots li:last-child button {
  border-radius: 0 60px 60px 0;
}

/* ホバー時 */
.slick-dots li button:hover {
  background-color: rgba(93, 166, 169, 0.1);
}

/*==================================================
 * header
 *================================================*/
.topFvImg {
  position: relative;
}
.topFvImg::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.topFvTextWrap2 {
  position: absolute;
  width: 100%;
  top: 46%;
  left: 25px;
  transform: translateY(-50%);
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  .topFvTextWrap2 {
    left: 8px;
    top: 15%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFvTextWrap2 {
    left: 8px;
    top: 103px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topFvTextWrap2 {
    left: -20px;
    top: 33%;
  }
}

.topFvTextWrap {
  position: absolute;
  width: 100%;
  top: 63%;
  left: 25px;
  z-index: 9;
}

.topFvTextJp {
  font-size: clamp(2.7rem, 1.8504854369rem + 2.2653721683vw, 6.2rem);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  line-height: 2;
  font-weight: bold;
}
.topFvTextJp span {
  font-size: clamp(2.7rem, 1.8504854369rem + 2.2653721683vw, 6.2rem);
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: bold;
  position: relative;
}
.topFvTextJp span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 8px;
  border-radius: 50px;
  border: solid 1px #31adad;
}
@media only screen and (max-width: 959px) {
  .topFvTextJp {
    line-height: 2;
  }
  .topFvTextJp span {
    line-height: 2.3;
  }
  .topFvTextJp span::after {
    bottom: -8px;
    height: 6px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFvTextJp {
    font-size: 27px;
  }
  .topFvTextJp span {
    font-size: 27px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topFvTextJp {
    font-size: 29px;
  }
  .topFvTextJp span {
    font-size: 29px;
  }
  .topFvTextJp span::after {
    bottom: -8px;
    height: 7px;
  }
}

.topFvTextEn {
  font-size: clamp(2rem, 1.4660194175rem + 1.4239482201vw, 4.2rem);
  font-family: "SUSE Mono", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.topFvTextEn span {
  font-size: clamp(2rem, 1.4660194175rem + 1.4239482201vw, 4.2rem);
  font-family: "SUSE Mono", sans-serif;
  font-weight: 500;
}

.allInnerBlock {
  position: sticky;
  top: 0;
}

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

/*==================================================
 * フッター
 *================================================*/
footer {
  padding: 6.8em 0 0;
  position: relative;
}
footer::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(.././img/footer_back.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 3em 0 0;
  }
  footer::after {
    background-image: url(.././img/footer_back_sp.webp);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  footer {
    padding-inline: 6em;
    padding-top: 4.8em;
  }
}

.footerBlock {
  padding: 0 38px;
}

.footerlogoImg {
  width: 350px;
}
@media only screen and (max-width: 767px) {
  .footerlogoImg {
    width: 268px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .footerlogoImg {
    padding: 0 0;
    width: 293px;
    margin-bottom: 7%;
  }
}

.footerBtn {
  cursor: pointer;
  position: fixed;
  right: 0.6%;
  bottom: 6%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  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: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .footerBtn {
    bottom: 10%;
    width: 30px;
    height: 30px;
    right: 2.6%;
  }
  .footerBtn::after {
    font-size: 13px;
  }
}

.topCntBlock {
  margin-top: -62px;
  background-color: #c7dddd;
  border-radius: 10px;
}
.topCntBlock > a {
  display: block;
  padding: 5em 7.5em 5em 6em;
  transition: 0.3s;
}
.topCntBlock > a:hover {
  background-color: #31adad;
  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;
  }
}

.footerInfoBlock {
  width: 38%;
  margin-right: 178px;
}
@media only screen and (max-width: 1600px) {
  .footerInfoBlock {
    margin-right: 100px;
  }
}
@media only screen and (max-width: 959px) {
  .footerInfoBlock {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .footerInfoBlock {
    width: 60%;
    margin-right: 5%;
  }
}

.footerMenuBlock {
  width: calc(100% - (38% + 178px));
}
@media only screen and (max-width: 1600px) {
  .footerMenuBlock {
    width: calc(100% - (38% + 100px));
  }
}
@media only screen and (max-width: 959px) {
  .footerMenuBlock {
    width: 100%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .footerMenuBlock {
    width: 66%;
  }
}

.footerInfoList > li {
  border-bottom: solid 1px #a6a6a7;
}
.footerInfoList > li:not(:last-child) {
  margin-bottom: 24px;
}
.footerInfoList > li:last-child {
  padding-bottom: 5px;
}

.siteBtn {
  display: inline-block;
  font-size: clamp(1.6rem, 1.6rem + 0vw, 1.6rem);
  line-height: 1;
  padding: 0.7em 4em 0.7em 1.5em;
  border-radius: 50px;
  background-color: #fff;
  position: relative;
  transition: 0.3s;
}
.siteBtn::after {
  transition: 0.3s;
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f08e";
  font-size: 16px;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
}
.siteBtn:hover {
  background-color: #363636;
  color: #fff;
}
.siteBtn:hover::after {
  color: #fff;
}

.recruitBtn {
  display: inline-block;
  font-size: clamp(1.6rem, 1.6rem + 0vw, 1.6rem);
  font-weight: 500;
  line-height: 1.6;
  transition: 0.3s;
  padding: 0.9em 3em;
  border-radius: 50px;
  background-color: #31adad;
}
.recruitBtn span {
  font-size: clamp(1.8rem, 1.8rem + 0vw, 1.8rem);
  font-weight: 500;
  transition: 0.3s;
  line-height: 1;
}
.recruitBtn:hover {
  color: #fff;
  background-color: #363636;
}
@media only screen and (max-width: 959px) {
  .recruitBtn {
    display: block;
    margin-inline: auto;
    width: 285px;
  }
}

.footerTelTextBlock {
  width: 35%;
}
@media only screen and (max-width: 767px) {
  .footerTelTextBlock {
    width: 100%;
    text-align: center;
    margin-bottom: 5%;
  }
}

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

.footerConList > li:nth-child(1) {
  background-color: #fff;
  margin-bottom: 36px;
  padding: 3em 4em;
  border-radius: 15px;
}
.footerConList > li:nth-child(2) > a {
  padding: 3em 4em;
  display: block;
  transition: 0.3s;
  border-radius: 15px;
  background-color: #31adad;
}
.footerConList > li:nth-child(2) > a:hover {
  background-color: #363636;
}
@media only screen and (max-width: 767px) {
  .footerConList > li:nth-child(1) {
    margin-bottom: 18px;
    padding: 1.5em;
    border-radius: 8px;
  }
  .footerConList > li:nth-child(2) > a {
    padding: 1.5em;
    display: block;
    transition: 0.3s;
    border-radius: 8px;
    background-color: #31adad;
  }
  .footerConList > li:nth-child(2) > a:hover {
    background-color: #363636;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .footerConList > li:nth-child(1) {
    margin-bottom: 18px;
    padding: 1.5em;
    border-radius: 15px;
  }
  .footerConList > li:nth-child(2) > a {
    padding: 1.5em;
    display: block;
    transition: 0.3s;
    border-radius: 15px;
    background-color: #31adad;
  }
  .footerConList > li:nth-child(2) > a:hover {
    background-color: #363636;
  }
}

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

.footerMailBlock {
  width: 36px;
  margin-inline: auto;
}

.footerCntTextBlock {
  position: relative;
}
.footerCntTextBlock::after {
  content: "";
  display: block;
  position: absolute;
  transition: 0.3s;
  top: 50%;
  right: -19px;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  background-image: url(.././img/arrow_circle_w.svg);
  background-repeat: no-repeat;
  background-size: 40px;
}
a:hover .footerCntTextBlock::after {
  right: -25px;
  background-image: url(.././img/arrow_circle_blue.svg);
}
@media only screen and (max-width: 767px) {
  .footerCntTextBlock::after {
    display: none;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .footerCntTextBlock::after {
    right: -2px;
  }
  a:hover .footerCntTextBlock::after {
    right: -18px;
    background-image: url(.././img/arrow_circle_b2.svg);
  }
}

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

.footeMainList > li:not(:last-child) {
  margin-bottom: 7%;
}
.footeMainList > li > a {
  display: block;
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  color: #31adad;
  transition: 0.3s;
}
.footeMainList > li > a:hover {
  color: #363636;
}
@media only screen and (max-width: 767px) {
  .footeMainList > li:not(:last-child) {
    margin-bottom: 11.5%;
  }
}

.footerserviceList > li:not(:last-child) {
  margin-bottom: 2.8em;
}
@media only screen and (max-width: 767px) {
  .footerserviceList > li:not(:last-child) {
    margin-bottom: 2.1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerserviceList {
    margin-bottom: 5%;
  }
}

.footeInnerList {
  position: relative;
  z-index: 9;
  -moz-column-gap: 28px;
       column-gap: 28px;
  width: object-fit;
}
.footeInnerList.__grid5 > li {
  width: calc((100% - 112px) / 5);
}
.footeInnerList > li > a {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  transition: 0.3s;
}
.footeInnerList > li > a:hover {
  color: #31adad;
}
@media only screen and (max-width: 767px) {
  .footeInnerList {
    row-gap: 12px;
    -moz-column-gap: 25px;
         column-gap: 25px;
  }
}

.footerSubTitle {
  font-size: 16px;
  margin-bottom: 17px;
  line-height: 1;
  font-weight: bold;
}

.footerCntTitle {
  font-size: clamp(2.1rem, 1.9786407767rem + 0.3236245955vw, 2.6rem);
  line-height: 1;
  font-weight: bold;
  padding-left: 2.8em;
  position: relative;
}
.footerCntTitle::after {
  content: "";
  display: block;
  position: absolute;
  top: 55%;
  left: 0;
  width: 40px;
  height: 26px;
  transform: translateY(-50%);
  background-image: url(.././img/mail.svg);
  background-repeat: no-repeat;
  background-size: 40px;
}
@media only screen and (max-width: 767px) {
  .footerCntTitle {
    padding-left: 0;
    text-align: center;
  }
  .footerCntTitle::after {
    display: none;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .footerCntTitle {
    font-size: 21px;
  }
}

.footerTelText {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .footerTelText {
    font-size: 18px;
  }
}

.footerSubMenuList > li:not(:last-child) {
  margin-bottom: 7px;
}
.footerSubMenuList > li > a {
  display: block;
  transition: 0.3s;
}
.footerSubMenuList > li > a span {
  transition: 0.3s;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-left: 0.9em;
  position: relative;
}
.footerSubMenuList > li > a span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #31adad;
}
.footerSubMenuList > li:hover > a {
  color: #31adad;
}

.footerInfoText {
  font-size: 16px;
  letter-spacing: 0.09em;
  line-height: 1.6;
  font-weight: 500;
}
.footerInfoText span {
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .footerInfoText {
    letter-spacing: 0.05em;
  }
}

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

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

.copylightText {
  padding: 4.8em 0.5em 4em 42em;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  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: 6.8em 0.5em;
  }
}

/*==================================================
 * 下層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 {
  line-height: 1.2;
  color: #31adad;
}
.breadcrumbs span {
  font-size: clamp(1.6rem, 1.6rem + 0vw, 1.6rem);
  line-height: 1.2;
  font-weight: 500;
}
.breadcrumbs .current-item {
  color: #363636;
}
.breadcrumbs a {
  transition: 0.3s;
}
.breadcrumbs a:hover {
  opacity: 0.7;
}

/*==================================================
/*下層共通
*================================================*/
.commonFvTitleSubJp {
  font-size: clamp(1.4rem, 1.254368932rem + 0.3883495146vw, 2rem);
  line-height: 1;
  font-weight: 500;
}

.commonFvTitleJp {
  font-size: clamp(3.8rem, 3.2660194175rem + 1.4239482201vw, 6rem);
  line-height: 1.2;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .commonFvTitleJp {
    line-height: 1.2;
    letter-spacing: 0.06em;
  }
  .rehabilitation .commonFvTitleJp {
    font-size: 32px;
  }
}

.commonFvTitleEn {
  font-size: clamp(1.6rem, 1.4058252427rem + 0.5177993528vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 500;
  font-family: "SUSE Mono", sans-serif;
  color: #31adad;
}
@media only screen and (max-width: 767px) {
  .rehabilitation .commonFvTitleEn {
    font-size: 14px;
  }
}

.cnt_FvImg {
  max-width: 1920px;
  width: 76%;
  margin-left: auto;
  margin-right: 0;
}
@media only screen and (min-width: 1025px) and (max-width: 1300px) {
  .company .cnt_FvImg, .recruitment .cnt_FvImg, .support-foreigners .cnt_FvImg, .cleaning .cnt_FvImg, .eldercare-taxi .cnt_FvImg, .rehabilitation .cnt_FvImg, .homevisit-nursing .cnt_FvImg, .nursing-home .cnt_FvImg {
    width: calc(100% - 240px) !important;
  }
}
@media only screen and (max-width: 959px) {
  .cnt_FvImg {
    width: 94%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cnt_FvImg {
    width: 94%;
  }
}

.commonFvImg {
  padding-bottom: 33%;
  border-top-left-radius: 120px;
}
@media only screen and (max-width: 767px) {
  .commonFvImg {
    padding-bottom: 34%;
    border-top-left-radius: 30px;
  }
  .commonFvImg.commFv01 {
    background-image: url(.././img/commonFv01_sp.webp) !important;
  }
  .commonFvImg.commFv02 {
    background-image: url(.././img/commonFv02_sp.webp) !important;
  }
  .commonFvImg.commFv03 {
    background-image: url(.././img/commonFv03_sp.webp) !important;
  }
  .commonFvImg.commFv04 {
    background-image: url(.././img/commonFv04_sp.webp) !important;
  }
  .commonFvImg.serviceFv .commonFvImg {
    background-image: url(.././img/topFvService_sp.webp) !important;
  }
  .commonFvImg.serviceFv01 .commonFvImg {
    background-image: url(.././img/topFvService01_sp.webp) !important;
  }
  .commonFvImg.serviceFv02 .commonFvImg {
    background-image: url(.././img/topFvService02_sp.webp) !important;
  }
  .commonFvImg.serviceFv03 .commonFvImg {
    background-image: url(.././img/topFvService03_sp.webp) !important;
  }
  .commonFvImg.serviceFv04 .commonFvImg {
    background-image: url(.././img/topFvService04_sp.webp) !important;
  }
  .commonFvImg.serviceFv05 .commonFvImg {
    background-image: url(.././img/topFvService05_sp.webp) !important;
  }
  .commonFvImg.serviceFv06 .commonFvImg {
    background-image: url(.././img/topFvService06_sp.webp) !important;
  }
  .commonFvImg.serviceFv07 .commonFvImg {
    background-image: url(.././img/topFvService07_sp.webp) !important;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .commonFvImg {
    border-top-left-radius: 70px;
  }
}

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

.commonInfoBlock {
  width: 40%;
  margin-right: 3%;
}
.__reverse .commonInfoBlock {
  margin-left: 0;
  margin-right: 5%;
}
@media only screen and (max-width: 959px) {
  .commonInfoBlock {
    width: 100%;
    margin-bottom: 5%;
    margin-right: 0;
  }
  .__reverse .commonInfoBlock {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .commonInfoBlock {
    width: 100%;
    margin-bottom: 2%;
    margin-right: 0;
  }
}

.commonImgBlock {
  width: 57%;
}
@media only screen and (max-width: 959px) {
  .commonImgBlock {
    width: 100%;
    margin-bottom: 3%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .commonImgBlock {
    width: 100%;
  }
}

.commonImg {
  padding-bottom: 29%;
  border-radius: 10px;
}
.commonImg.__img02 {
  padding-bottom: 62%;
}

/*pallax用
*================*/
.card-01__content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.topRecruitImgBlock .card-01__content {
  top: 50%;
  padding: 0 5em;
}
.cmpanyPhCard .card-01__content {
  top: 43%;
}
@media only screen and (max-width: 1600px) {
  .topRecruitImgBlock .card-01__content {
    top: 70%;
    padding: 0 8em;
  }
}
@media only screen and (max-width: 767px) {
  .topRecruitImgBlock .card-01__content {
    color: #363636;
    top: 50%;
    padding: 0 15px;
    position: static;
    transform: unset;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topRecruitImgBlock .card-01__content {
    top: 70%;
  }
}

/*==================================================
/*topページ
*================================================*/
.cnt_vision {
  max-width: 1920px;
  width: calc(100% - 273px);
  margin-left: auto;
  margin-right: 0;
  padding: 2em 0 14.3em;
}
@media only screen and (max-width: 1800px) {
  .cnt_vision {
    width: 95%;
  }
}
@media only screen and (max-width: 959px) {
  .cnt_vision {
    width: 100%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cnt_vision {
    width: 100%;
  }
}

.cnt_recruit {
  max-width: 1920px;
  width: calc(100% - 273px);
  margin-left: auto;
  margin-right: 0;
  padding: 2em 15px 0;
}
@media only screen and (max-width: 1800px) {
  .cnt_recruit {
    width: 87%;
    margin-inline: auto;
  }
}
@media only screen and (max-width: 959px) {
  .cnt_recruit {
    width: 100%;
    padding-inline: 15px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cnt_recruit {
    width: 100%;
    padding-inline: 69px;
  }
}

.topVisionInnerBox {
  padding-left: 272px;
}

.innerBox {
  padding-left: 34px;
}
@media only screen and (max-width: 767px) {
  .innerBox {
    padding-left: 15px;
    padding-right: 15px;
  }
  .visionInnerWrap .innerBox {
    padding-right: 0;
  }
}

.innerBox2 {
  padding-left: 16px;
}
@media only screen and (max-width: 767px) {
  .innerBox2 {
    padding-left: 0;
  }
}

.innerBox3 {
  padding: 0 37px;
}
@media only screen and (min-width: 1025px) and (max-width: 1700px) {
  .innerBox3 {
    padding: 0;
  }
}
@media only screen and (max-width: 959px) {
  .innerBox3 {
    padding: 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .innerBox3 {
    padding: 0;
  }
}

.topVisionInfoBlock {
  width: 57%;
  margin-right: 12%;
}
@media only screen and (max-width: 1770px) {
  .topVisionInfoBlock {
    width: 60%;
    margin-right: 7%;
  }
}
@media only screen and (max-width: 767px) {
  .topVisionInfoBlock {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topVisionInfoBlock {
    width: 60%;
    margin-right: 5%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topVisionInfoBlock {
    width: 61%;
    margin-right: 5%;
  }
}

.topVisionImgBlock {
  width: 39%;
}
@media only screen and (max-width: 1770px) {
  .topVisionImgBlock {
    width: 33%;
  }
}
@media only screen and (max-width: 767px) {
  .topVisionImgBlock {
    width: 76%;
    margin-left: auto;
    margin-right: -15px;
    margin-top: 10%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topVisionImgBlock {
    width: 35%;
  }
}

.visonImg {
  padding-bottom: 122%;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
@media only screen and (max-width: 767px) {
  .visonImg {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

.topVisionTitle {
  font-size: clamp(2.4rem, 2.0116504854rem + 1.0355987055vw, 4rem);
  line-height: 1.8;
  letter-spacing: 0.15em;
  font-weight: bold;
}

.topVisionCard {
  padding: 3em 0 15em 18em;
  position: relative;
}
.topVisionCard::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(.././img/vision_Back.webp);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media only screen and (max-width: 1876px) {
  .topVisionCard {
    padding: 3em 0 4.3em 10em;
  }
}
@media only screen and (max-width: 767px) {
  .topVisionCard {
    padding: 0;
  }
  .topVisionCard::after {
    top: 50%;
    height: 47%;
    background-image: url(.././img/vision_Back_sp.webp);
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topVisionCard {
    padding: 3em 0 4.3em 2em;
  }
}

.topVisionWrap {
  padding-left: 26px;
}
@media only screen and (max-width: 767px) {
  .topVisionWrap {
    padding: 0 15px;
  }
}

.topLogoWrap {
  opacity: 0.9;
  position: absolute;
  bottom: -100px;
  left: 101px;
  width: 536px;
  z-index: 2;
}
.topLogoWrap.__footer {
  bottom: 37px;
  right: 37px;
  left: auto;
  width: 595px;
  opacity: 0.9;
}
@media only screen and (max-width: 1440px) {
  .topLogoWrap {
    bottom: -107px;
    width: 298px;
  }
}
@media only screen and (max-width: 767px) {
  .topLogoWrap {
    bottom: -84px;
    width: 227px;
    left: 14px;
  }
  .topLogoWrap.__footer {
    width: 218px;
    bottom: 16px;
    right: 17px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topLogoWrap {
    bottom: -90px;
    width: 244px;
    left: 14px;
  }
  .topLogoWrap.__footer {
    width: 400px;
    bottom: 16px;
    right: 17px;
  }
}

.topServiceCard {
  margin-top: 12em;
}

.topServiceSubTitle {
  font-size: clamp(1.8rem, 1.7514563107rem + 0.1294498382vw, 2rem);
  letter-spacing: 0.15em;
  line-height: 2.2;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .topServiceSubTitle {
    letter-spacing: 0.08em;
  }
}

.topServiceTitleBlock {
  width: 42%;
}
@media only screen and (max-width: 1440px) {
  .topServiceTitleBlock {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .topServiceTitleBlock {
    width: 100%;
    margin-bottom: 7%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) and (max-width: 1440px) {
  .topServiceTitleBlock {
    width: 49%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) and (max-width: 1440px) {
  .topServiceTitleBlock {
    width: 42%;
  }
}

.topServiceInfoBlock {
  width: 58%;
}
@media only screen and (max-width: 1440px) {
  .topServiceInfoBlock {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .topServiceInfoBlock {
    width: 100%;
  }
}

.titleBox {
  background-color: #fff;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  padding: 3.8em 0;
}
@media only screen and (max-width: 767px) {
  .titleBox {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 3em 0 2em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .titleBox {
    padding: 3em 0 2em;
  }
}

.topServiceList > li {
  background-color: #c7dddd;
  border: solid 1px #3f3d56;
  border-bottom: unset;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  position: relative;
}
.topServiceList > li:not(:last-child) {
  margin-bottom: -50px;
}
@media only screen and (max-width: 767px) {
  .topServiceList > li {
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  .topServiceList > li:not(:last-child) {
    margin-bottom: -78px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topServiceList > li:not(:last-child) {
    margin-bottom: -81px;
  }
}

.topServiceBox {
  position: relative;
  padding: 4em 6em 9em;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .topServiceBox {
    padding: 3em 2em 9em;
  }
  .__third .topServiceBox {
    padding: 3em 2em 3em;
  }
}
@media only screen and (max-width: 520px) {
  .topServiceBox {
    padding: 3em 1.3em 9em;
  }
  .__third .topServiceBox {
    padding: 3em 1.3em 3em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topServiceBox {
    padding: 4em 1.5em 9em;
  }
  .__third .topServiceBox {
    padding: 4em 1.5em 3em;
  }
}

.__first .supportList, .__third .supportList {
  -moz-column-gap: 90px;
       column-gap: 90px;
  justify-content: center;
}
.__first .supportList > li, .__third .supportList > li {
  width: calc((100% - 64px) / 3);
}
.__second .supportList {
  -moz-column-gap: 32px;
       column-gap: 32px;
  justify-content: center;
}
.__second .supportList > li {
  width: calc((100% - 64px) / 3);
}
@media only screen and (max-width: 1600px) {
  .__first .supportList, .__third .supportList {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .__first .supportList, .__second .supportList, .__third .supportList {
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 50px;
  }
  .__first .supportList > li, .__second .supportList > li, .__third .supportList > li {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .__first .supportList, .__second .supportList, .__third .supportList {
    justify-content: flex-start;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 50px;
  }
  .__first .supportList > li, .__second .supportList > li, .__third .supportList > li {
    width: calc((100% - 20px) / 2);
  }
}

.supportNbText {
  font-size: clamp(1.4rem, 1.3029126214rem + 0.2588996764vw, 1.8rem);
  letter-spacing: -0.01em;
  font-family: "SUSE Mono", sans-serif;
  font-weight: 500;
  line-height: 0.6;
}
.supportNbText span {
  font-size: clamp(1.8rem, 1.654368932rem + 0.3883495146vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
}

.topServiceImgWrap {
  border-radius: 50px;
}
@media only screen and (max-width: 767px) {
  .topServiceImgWrap {
    border-radius: 30px;
  }
}

.topServiceImg {
  padding-bottom: 70%;
}

.supportTitle {
  position: relative;
  z-index: 1;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2em 2.5em;
  background-color: #fff;
  border-top-right-radius: 40px;
  margin-top: -72px;
  border-bottom: solid 2px #3f3d56;
}
.titleWrap .supportTitle {
  position: relative;
  width: 83%;
  padding: 3.3em 9em;
}
.titleWrap .supportTitle span {
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%);
}
.supportTitle span {
  width: 100%;
  font-size: clamp(2.1rem, 1.8330097087rem + 0.71197411vw, 3.2rem);
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-weight: bold;
}
@media only screen and (max-width: 1795px) {
  .supportTitle {
    padding: 2em 1em;
  }
  .supportTitle span {
    font-size: clamp(1.8rem, 1.5815533981rem + 0.5825242718vw, 2.7rem);
  }
}
@media only screen and (max-width: 1352px) {
  .supportTitle span {
    font-size: 22px;
    letter-spacing: 0.04em;
  }
}
@media only screen and (max-width: 1366px) {
  .titleWrap .supportTitle {
    width: 86%;
  }
  .titleWrap .supportTitle span {
    left: 58%;
  }
}
@media only screen and (max-width: 959px) {
  .supportTitle {
    margin-top: -53px;
    border-top-right-radius: 30px;
    padding: 1.3em 1.5em;
  }
  .titleWrap .supportTitle {
    width: 78%;
    padding: 2.4em 0;
  }
  .titleWrap .supportTitle span {
    left: 56%;
  }
  .supportTitle span {
    font-size: 21px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .titleWrap .supportTitle {
    width: 69%;
  }
  .titleWrap .supportTitle span {
    left: 58%;
  }
  .supportTitle span {
    font-size: 20px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .titleWrap .supportTitle {
    width: 86%;
  }
}

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

.back_color {
  position: relative;
  padding: 3em 0 6em;
}
@media print, screen and (min-width: 1281px) and (max-width: 1366px) {
  .back_color.topNewsCard {
    padding: 10em 0 6em;
  }
}
.back_color::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(.././img/back.webp);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .back_color {
    padding: 3em 0 4em;
  }
}

.topNewsTitleBlock {
  width: 34%;
}
@media only screen and (max-width: 767px) {
  .topNewsTitleBlock {
    width: 54%;
  }
}
@media only screen and (max-width: 520px) {
  .topNewsTitleBlock {
    width: 100%;
    margin-bottom: 8%;
  }
}

.topNewsInfoBlock {
  width: 66%;
}
@media only screen and (max-width: 520px) {
  .topNewsInfoBlock {
    width: 100%;
  }
}

.topNewsWrap {
  margin-right: 1.5em;
}
@media only screen and (max-width: 767px) {
  .topNewsWrap {
    margin-right: 0;
  }
}

.topNewsDay {
  display: inline-block;
  margin-right: 1em;
  vertical-align: middle;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-family: "SUSE Mono", sans-serif;
  color: #31adad;
}
@media only screen and (max-width: 767px) {
  .topNewsDay {
    margin-bottom: 2%;
  }
}

.topNewsCate {
  display: inline-block;
  vertical-align: middle;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #c7dddd;
  padding: 0.7em 2em 0.65em;
  border-radius: 50px;
}
.topNewsCate span {
  display: block;
  font-size: clamp(1.3rem, 1.2757281553rem + 0.0647249191vw, 1.4rem);
  line-height: 1;
}

.topNewsTitle {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  line-height: 1.4;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.topNewsText {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  line-height: 1.4;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.topNewsList.__list > li:not(:last-child) {
  margin-bottom: 1.5em;
}
.topNewsList > li {
  padding-bottom: 1.5em;
  border-bottom: solid 1px #a6a6a7;
}
.topNewsList > li:not(:last-child) {
  margin-bottom: 3.5em;
}
@media only screen and (max-width: 767px) {
  .topNewsList {
    margin-bottom: 8%;
  }
  .topNewsList > li {
    padding-bottom: 2em;
  }
  .topNewsList > li:not(:last-child) {
    margin-bottom: 1.5em;
  }
}

@media only screen and (max-width: 1600px) {
  .topRecruitBlock {
    display: block;
  }
}

.topRecruitTitleBlock {
  width: 23%;
}
@media only screen and (max-width: 1600px) {
  .topRecruitTitleBlock {
    width: 100%;
    margin-bottom: 3%;
  }
}
@media only screen and (max-width: 767px) {
  .topRecruitTitleBlock {
    margin-bottom: 9%;
  }
}

.topRecruitImgBlock {
  width: 77%;
  margin-top: 72px;
}
@media only screen and (max-width: 1600px) {
  .topRecruitImgBlock {
    width: 100%;
    margin-top: 0;
  }
}
@media only screen and (max-width: 959px) {
  .topRecruitImgBlock {
    margin-left: 15px;
  }
}

.topRecruitWrap {
  position: absolute;
  top: 118px;
  left: -269px;
  z-index: 9;
}
@media only screen and (max-width: 1600px) {
  .topRecruitWrap {
    top: 250px;
    left: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .topRecruitWrap {
    position: static;
    text-align: center;
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topRecruitWrap {
    top: 240px;
    left: 68px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topRecruitWrap {
    top: 300px;
    left: 68px;
  }
}

.topRecruitTitle {
  margin-left: -40%;
  width: 51%;
  text-align: center;
  letter-spacing: 0.04em;
  display: block;
  font-size: clamp(2.4rem, 2.1572815534rem + 0.6472491909vw, 3.4rem);
  line-height: 1;
  font-weight: bold;
  color: #fff;
  padding: 0.9em 0.5em;
  border-radius: 7px;
  background-color: #31adad;
}
@media only screen and (max-width: 1690px) {
  .topRecruitTitle {
    width: 46%;
    margin-left: 0;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .topRecruitTitle {
    width: 95%;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topRecruitTitle {
    width: 46%;
    padding: 0.6em 0.5em;
    margin-left: 0;
    margin-bottom: 15px;
  }
}

.recruitText {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  letter-spacing: 0.16em;
  font-weight: 400;
  line-height: 1.9;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .recruitText {
    color: unset;
  }
}

.recruitImg {
  border-top-left-radius: 130px;
  padding-bottom: 39%;
}
@media only screen and (max-width: 767px) {
  .recruitImg {
    border-top-left-radius: 33px;
    width: 100%;
    margin-left: auto;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .recruitImg {
    width: 95%;
    margin-left: auto;
    padding-bottom: 53%;
  }
}

.recruitTextWrap {
  position: absolute;
  padding: 0 2em 12.5em 5em;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 1690px) {
  .recruitTextWrap {
    padding: 0 2em 6em 6em;
  }
}
@media only screen and (max-width: 767px) {
  .recruitTextWrap {
    position: static;
    padding: 0 15px;
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitTextWrap {
    padding: 0 1.5em 3.5em 5em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .recruitTextWrap {
    padding: 0 2em 6em 6em;
  }
}

.topRecruitTitleEn {
  position: relative;
  font-size: clamp(1.9rem, 0.6621359223rem + 3.3009708738vw, 7rem);
  white-space: nowrap;
  text-align: right;
  line-height: 1.1;
  letter-spacing: -0.001em;
  font-weight: 500;
  color: #c7dddd;
  font-family: "SUSE Mono", sans-serif;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .topRecruitTitleEn {
    margin-top: -32px;
    text-align: left;
    padding-left: 0.3em;
  }
}

.topRecruitCard {
  margin-bottom: 7em;
}

/*==================================================
/*company
*================================================*/
.visionTextWrap2 {
  padding: 0 0 12em;
}
@media only screen and (max-width: 767px) {
  .visionTextWrap2 {
    padding: 0 0 8em;
  }
}

.visionList > li {
  background-color: #fff;
  border-radius: 13px;
  padding: 2em 3em 3.4em;
}
.visionList > li:not(:last-child) {
  margin-bottom: 4%;
}
@media only screen and (max-width: 767px) {
  .visionList {
    width: 100%;
  }
  .visionList > li {
    border-radius: 7px;
    padding: 1.5em 1.2em;
  }
}

.visionNb {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  font-weight: 500;
  color: #31adad;
  line-height: 1;
  letter-spacing: 0.01em;
  font-family: "SUSE Mono", sans-serif;
}

.visionTitle {
  font-size: clamp(1.8rem, 1.7029126214rem + 0.2588996764vw, 2.2rem);
  line-height: 1;
  margin-bottom: 0.7em;
  font-weight: bold;
}

.vision_peopleWrap {
  max-width: 723px;
  margin-inline: auto;
  margin-top: -97px;
}
@media only screen and (max-width: 767px) {
  .vision_peopleWrap {
    margin-top: -86px;
    width: 88%;
    bottom: -190px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .vision_peopleWrap {
    width: 80%;
    bottom: -264px;
  }
}

.mesTextBlock {
  width: 54%;
  margin-right: 8%;
}
@media only screen and (max-width: 767px) {
  .mesTextBlock {
    width: 57%;
    margin-right: 5%;
  }
}
@media only screen and (max-width: 520px) {
  .mesTextBlock {
    width: 100%;
    margin-right: 0;
  }
}

.mesImgBlock {
  width: 41%;
  margin-right: 4%;
}
@media only screen and (max-width: 767px) {
  .mesImgBlock {
    width: 38%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 520px) {
  .mesImgBlock {
    width: 80%;
    margin-right: 0;
    margin-inline: auto;
    margin-bottom: 5%;
  }
}

.mesImgWrap {
  flex-direction: row-reverse;
}

.ceoImg {
  padding-bottom: 125%;
  border-radius: 15px;
}

.ceoBox {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .ceoBox {
    margin-left: 0;
  }
}

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

.ceoName {
  font-size: clamp(1.8rem, 1.6058252427rem + 0.5177993528vw, 2.6rem);
  font-weight: bold;
  line-height: 1;
}

.mapBlock {
  width: 100%;
}
.mapBlock iframe {
  width: 100%;
  height: 400px;
}
@media only screen and (max-width: 767px) {
  .mapBlock iframe {
    height: 300px;
  }
}

.officeTitle {
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  display: block;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.18em;
}
.officeTitle i {
  color: #036ea9;
}
.officeTitle.__line {
  padding-bottom: 1.2em;
  position: relative;
}
.officeTitle.__line dt {
  letter-spacing: 0.18em;
}
.officeTitle.__line::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 2px;
  background-color: #31adad;
}
.officeTitle dt {
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  display: block;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.18em;
}
.officeTitle dt span {
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  line-height: 1.4;
  font-weight: 500;
}
.officeTitle dd {
  color: #036ea9;
  font-size: 16px;
  font-weight: 500;
  line-height: 0.6;
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .officeTitle dt {
    font-size: 15px;
    letter-spacing: 0.1em;
  }
  .officeTitle dd {
    margin-left: 14px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .officeTitle dt {
    letter-spacing: 0.1em;
  }
}

.officeList {
  -moz-column-gap: 37px;
       column-gap: 37px;
  row-gap: 48px;
}
.officeList > li {
  padding: 2em 1.8em 3em;
  width: calc((100% - 37px) / 2);
  background-color: #f9f9f9;
  border-radius: 7px;
}
@media only screen and (max-width: 767px) {
  .officeList {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .officeList > li {
    padding: 2em 1.2em 3em;
    width: calc((100% - 10px) / 2);
  }
}
@media only screen and (max-width: 520px) {
  .officeList {
    row-gap: 20px;
  }
  .officeList > li {
    padding: 1.3em;
    width: 100%;
    border-radius: 3px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .officeList {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .officeList > li {
    padding: 2em 1.2em 3em;
    width: calc((100% - 15px) / 2);
  }
}

.officeInfo {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.7;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .officeInfo {
    font-size: 14px;
  }
}

.groupList {
  padding: 3.5em 0.8em 4.5em 5.2em;
  background-color: #f9f9f9;
  border-radius: 7px;
}
.groupList > li:not(:last-child) {
  margin-bottom: 23px;
}
@media only screen and (max-width: 767px) {
  .groupList {
    padding: 1.5em 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .groupList {
    padding: 2em 0.8em 2em 2em;
  }
  .groupList > li:not(:last-child) {
    margin-bottom: 13px;
  }
}

.noticeList {
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.noticeList > li {
  width: calc((100% - 30px) / 2);
}
.noticeList > li > a {
  font-size: clamp(1.8rem, 1.7029126214rem + 0.2588996764vw, 2.2rem);
  line-height: 1;
  font-weight: bold;
  display: block;
  padding: 1.8em 0.5em 1.8em 2em;
  border: solid 1px #a6a6a7;
  border-radius: 12px;
  position: relative;
  transition: 0.3s;
}
.noticeList > li > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 54px;
  width: 32px;
  height: 37px;
  transform: translateY(-50%);
  background-image: url(.././img/pdf.svg);
  background-repeat: no-repeat;
  background-size: 32px;
}
.noticeList > li > a:hover {
  color: #fff;
  background-color: #31adad;
  border: solid 1px #31adad;
}
@media only screen and (max-width: 767px) {
  .noticeList {
    row-gap: 15px;
  }
  .noticeList > li {
    width: 100%;
  }
  .noticeList > li > a {
    padding: 1em 0.5em 1em 2em;
    border-radius: 7px;
  }
  .noticeList > li > a::after {
    right: 27px;
    width: 25px;
    height: 29px;
    background-size: 25px;
  }
}

@media only screen and (max-width: 1024px) {
  .navBlock {
    top: 0;
    width: 100%;
    margin-inline: auto;
    background-color: #fff;
    border: solid 1px #31adad;
    padding: 0 0.5em;
    border-radius: 5px;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.8s ease, opacity 0.8s ease;
  }
  .open .navBlock {
    display: none;
  }
  .hide .navBlock {
    transform: translateY(-275%);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
  }
}

.naviTitle {
  font-size: 16px;
  padding: 1.2em 0.5em 1.2em 0.5em;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 500;
}
.naviTitle.__small {
  padding: 0;
}

.naviList {
  display: none;
  padding-bottom: 1.5em;
}
.naviList > li {
  padding-top: 1.1em;
  border-top: solid 1px #31adad;
  position: relative;
}
.naviList > li:not(:first-child) {
  margin-top: 1.1em;
}
.naviList > li > a {
  display: block;
  position: relative;
}
.naviList > li > a span {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  opacity: 0.7;
}
.naviList > li > a::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f13a";
  font-weight: 900;
  top: 13px;
  font-size: 20px;
  color: #31adad;
  right: 0;
  transform: translateY(-50%);
  opacity: 0.7;
}
.naviList > li > a.active span {
  opacity: 1;
}
.naviList > li > a.active::after {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .naviList {
    padding-bottom: 1em;
  }
}

.open .openBtn3 {
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .openBtn3 {
    cursor: pointer;
    position: relative;
    transition: 0.3s ease-in-out;
    position: relative;
  }
  .openBtn3::after, .openBtn3::before {
    position: absolute;
    content: "";
    display: block;
    background-color: #31adad;
    border-radius: 10px;
    transition: 0.3s;
    z-index: 8;
  }
  .openBtn3::before {
    width: 18px;
    height: 3px;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
  }
  .openBtn3::after {
    width: 3px;
    height: 18px;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
  }
  .openBtn3.on::before {
    opacity: 0;
  }
  .openBtn3.on::after {
    width: 3px;
    right: 10px;
    top: 34%;
    transform: rotate(-90deg);
  }
}

header.on .openBtn3 {
  pointer-events: none;
}

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

/*==================================================
/*人材サービス事業
*================================================*/
.outlineInfoBlock {
  width: 56%;
  margin-right: 6%;
}
@media only screen and (max-width: 767px) {
  .outlineInfoBlock {
    width: 100%;
    margin-right: 0;
  }
}

.outlineImgBkock {
  width: 38%;
}
@media only screen and (max-width: 767px) {
  .outlineImgBkock {
    width: 100%;
    margin-bottom: 5%;
  }
}

.serviceImg {
  padding-bottom: 71%;
  border-radius: 50px;
}
@media only screen and (max-width: 767px) {
  .serviceImg {
    border-radius: 20px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .serviceImg {
    border-radius: 30px;
  }
}

.provideBlock {
  background-color: #c7dddd;
  padding: 4.5em 0 4em;
}
@media only screen and (max-width: 767px) {
  .provideBlock {
    padding: 2em 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .provideBlock {
    padding: 3.5em 0;
  }
}

.swiperService .swiper-slide {
  margin-inline: auto;
  padding: 5em 3.3em;
  background-color: #fff;
  border-radius: 25px;
}
@media only screen and (max-width: 1470px) {
  .swiperService .swiper-slide {
    padding: 5em 1.5em;
  }
}
@media only screen and (max-width: 959px) {
  .swiperService .swiper-slide {
    padding: 3em 1em 1em;
    border-radius: 15px;
  }
}

.sliderNbWrap {
  position: absolute;
  width: 109px;
  top: -1px;
  left: -1px;
}
@media only screen and (max-width: 767px) {
  .sliderNbWrap {
    width: 64px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sliderNbWrap {
    width: 14%;
  }
}

.swiperTitle {
  font-size: clamp(3.5rem, 3.3300970874rem + 0.4530744337vw, 4.2rem);
  line-height: 1;
  font-weight: bold;
  padding-bottom: 1em;
  position: relative;
  text-align: center;
  width: 100%;
}
.swiperTitle::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c7dddd;
}
.swiperTitle::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 35%;
  height: 3px;
  transform: translateX(-50%);
  background-color: #31adad;
}
@media only screen and (max-width: 767px) {
  .swiperTitle {
    font-size: 24px;
  }
}

.provideBlockBackWrap {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 1827px;
}

.swiperWrap {
  padding: 0 0 0 0.8em;
}
.slide3 .swiperWrap {
  padding: 0 0.5em;
}
@media only screen and (min-width: 1025px) and (max-width: 1160px) {
  .swiperWrap {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .swiperWrap {
    padding: 0;
  }
  .slide3 .swiperWrap {
    padding: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .swiperWrap {
    padding: 0 1em;
  }
  .slide3 .swiperWrap {
    padding: 0 0.5em;
  }
}

.serviceInfoBlock {
  width: 46%;
  margin-right: 4%;
}
.slide2 .serviceInfoBlock {
  width: 42%;
  margin-right: 2%;
}
@media only screen and (min-width: 1025px) and (max-width: 1160px) {
  .serviceInfoBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5%;
  }
  .slide2 .serviceInfoBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .serviceInfoBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5%;
  }
  .slide2 .serviceInfoBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1024px) {
  .slide2 .serviceInfoBlock {
    width: 43%;
  }
}

.serviceImgBlock {
  width: 50%;
}
.slide2 .serviceImgBlock {
  width: 56%;
}
@media only screen and (min-width: 1025px) and (max-width: 1160px) {
  .serviceImgBlock {
    width: 100%;
  }
  .slide2 .serviceImgBlock {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .serviceImgBlock {
    width: 100%;
  }
  .slide2 .serviceImgBlock {
    width: 100%;
  }
}

.serviceInfoList > li:not(:last-child) {
  margin-bottom: 8%;
}
.serviceInfoList > li dt {
  font-size: clamp(1.6rem, 1.454368932rem + 0.3883495146vw, 2.2rem);
  font-weight: 500;
  line-height: 1.2;
  padding-left: 2em;
  display: block;
  position: relative;
}
.serviceInfoList > li dt::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -2px;
  width: 28px;
  height: 28px;
  background-image: url(.././img/check.svg);
  background-repeat: no-repeat;
  background-size: 28px;
}
.serviceInfoList > li dd {
  padding-left: 2.9em;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.3514563107rem + 0.1294498382vw, 1.6rem);
  letter-spacing: 0.16em;
  line-height: 2.2;
}
@media only screen and (max-width: 767px) {
  .serviceInfoList > li:not(:last-child) {
    margin-bottom: 6%;
  }
  .serviceInfoList > li dt {
    padding-left: 1.7em;
  }
  .serviceInfoList > li dt::after {
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
  .serviceInfoList > li dd {
    padding-left: 1.9em;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .serviceInfoList > li dt {
    padding-left: 1.8em;
    font-size: 17px;
  }
  .serviceInfoList > li dt::after {
    width: 25px;
    height: 25px;
    background-size: 25px;
  }
  .serviceInfoList > li dd {
    padding-left: 2.2em;
  }
}

.featureList {
  -moz-column-gap: 42px;
       column-gap: 42px;
  row-gap: 40px;
}
.featureList > li {
  width: calc((100% - 84px) / 3);
  border-radius: 15px;
}
@media only screen and (min-width: 1205px) and (max-width: 1455px) {
  .featureList {
    width: 100%;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .featureList > li {
    width: calc((100% - 30px) / 3);
    border-radius: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .featureList {
    width: 95%;
    margin-inline: auto;
    row-gap: 50px;
  }
  .featureList > li {
    width: 100%;
    border-radius: 10px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .featureList {
    width: 100%;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
  .featureList > li {
    width: calc((100% - 24px) / 3);
    border-radius: 13px;
  }
}

.featureBox {
  padding: 4em 2.5em 3em 2.5em;
}
@media only screen and (min-width: 1205px) and (max-width: 1455px) {
  .featureBox {
    padding: 4em 1.5em 3em;
  }
}
@media only screen and (max-width: 767px) {
  .featureBox {
    padding: 2em 1.2em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .featureBox {
    padding: 1.8em 1.1em;
  }
}

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

.featureNbWrap {
  position: absolute;
  max-width: 124px;
  top: -16px;
  left: 23px;
}
.featureNbWrap span {
  background-color: #31adad;
  text-align: center;
  padding: 0.5em;
  display: inline-block;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 1;
  font-family: "SUSE Mono", sans-serif;
  color: #fff;
  position: relative;
}
.featureNbWrap span::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #31adad;
  width: 33px;
  height: 20px;
  clip-path: polygon(0 0, 100% 0, 95% 100%);
}

.featureTitleBox.line_sing {
  padding: 0.7em 0 1.7em;
}
@media only screen and (max-width: 1653px) {
  .featureTitleBox.line_sing_sp {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .featureTitleBox {
    margin-bottom: 0;
  }
  .featureTitleBox.line_sing {
    padding: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .featureTitleBox.line_sing {
    padding: 0.7em 0 0.9em;
  }
  .featureTitleBox.line_sing_sp {
    padding: 0;
  }
}

.featureTitle {
  font-size: clamp(1.8rem, 1.654368932rem + 0.3883495146vw, 2.4rem);
  font-weight: bold;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .featureTitle {
    font-size: 17px;
  }
}
@media only screen and (max-width: 520px) {
  .featureTitle {
    font-size: 18px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .featureTitle {
    font-size: 17px;
  }
}

.featureImgWrap {
  width: 30%;
  margin-inline: auto;
}
.recruitment .featureImgWrap {
  width: 35%;
}
.support-foreigners .featureImgWrap {
  width: 33%;
}
.homevisit-nursing .featureImgWrap {
  width: 23%;
}
.cleaning .featureImgWrap {
  width: 22%;
}
@media only screen and (max-width: 767px) {
  .featureImgWrap {
    margin-inline: unset;
    margin-right: 10px;
    width: 20%;
  }
  .featureImgWrap img {
    margin: 0;
  }
  .recruitment .featureImgWrap {
    width: 23%;
  }
  .support-foreigners .featureImgWrap {
    width: 21%;
  }
  .homevisit-nursing .featureImgWrap {
    width: 17%;
  }
  .cleaning .featureImgWrap {
    width: 15%;
  }
  .featureImgWrap.__sp {
    width: 39%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .featureImgWrap {
    width: 56%;
  }
}

.jobList {
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 20px;
}
.jobList > li {
  width: calc((100% - 48px) / 4);
  background-color: #f9f9f9;
  border-radius: 5px;
  position: relative;
}
.jobList > li::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 36px;
  background-color: #31adad;
}
.jobList > li span {
  padding: 1.6em 0.5em;
  display: block;
  font-size: clamp(1.3rem, 1.1300970874rem + 0.4530744337vw, 2rem);
  text-align: center;
  line-height: 1;
  font-weight: bold;
}
@media only screen and (min-width: 1025px) and (max-width: 1160px) {
  .jobList {
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 15px;
  }
  .jobList > li {
    width: calc((100% - 30px) / 3);
  }
  .jobList > li::after {
    width: 3px;
    height: 25px;
  }
  .jobList > li span {
    padding: 1.3em 0.5em;
    letter-spacing: 0.01em;
  }
}
@media only screen and (max-width: 767px) {
  .jobList {
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 15px;
  }
  .jobList > li {
    width: calc((100% - 10px) / 2);
  }
  .jobList > li::after {
    width: 3px;
    height: 25px;
  }
  .jobList > li span {
    padding: 1.3em 0.5em;
    letter-spacing: 0.01em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .jobList {
    -moz-column-gap: 11px;
         column-gap: 11px;
    row-gap: 15px;
  }
  .jobList > li {
    width: calc((100% - 33px) / 4);
  }
  .jobList > li::after {
    width: 4px;
    height: 25px;
  }
  .jobList > li span {
    padding: 1.3em 0.5em;
    font-size: 15px;
  }
}

.areaList {
  -moz-column-gap: 39px;
       column-gap: 39px;
  width: 78%;
  margin-inline: auto;
}
.areaList > li {
  width: calc((100% - 39px) / 2);
  padding: 2.8em 0.6em 2.8em 5.5em;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .areaList {
    width: 100%;
    row-gap: 15px;
  }
  .areaList > li {
    width: 100%;
    padding: 1.2em 2em 1.2em 4em;
    border-radius: 10px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .areaList {
    width: 100%;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .areaList > li {
    width: calc((100% - 20px) / 2);
    padding: 2em 1em 2em 4em;
    border-radius: 7px;
  }
}
@media only screen and (min-width: 1205px) and (max-width: 1400px) {
  .areaList {
    width: 100%;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .areaList > li {
    width: calc((100% - 20px) / 2);
    padding: 2em 1em 2em 4em;
    border-radius: 7px;
  }
}

.areaTitle span {
  font-size: clamp(1.8rem, 1.7029126214rem + 0.2588996764vw, 2.2rem);
  line-height: 1;
  font-weight: bold;
  position: relative;
}
.areaTitle span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -45px;
  width: 26px;
  height: 37px;
  transform: translateY(-50%);
  background-image: url(.././img/map.webp);
  background-repeat: no-repeat;
  background-size: 26px;
}

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

.flowBox {
  background-color: #31adad;
  border-radius: 20px;
  position: relative;
  z-index: 0;
}

.flowList {
  width: 75%;
  margin-inline: auto;
  padding: 4.3em 0 5.3em;
}
.flowList > li {
  background-color: #fff;
  padding: 3em 1em 3em 3em;
  border-radius: 15px;
}
.flowList > li:not(:last-child) {
  margin-bottom: 4%;
  position: relative;
}
.flowList > li:not(:last-child)::before {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 104%;
  left: 63px;
  background-color: #fff;
  bottom: -41px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .flowList {
    width: 90%;
    padding: 2em 0 1.5em;
  }
  .flowList > li {
    padding: 1.5em 1em 1.5em 1em;
  }
  .flowList > li:not(:last-child) {
    margin-bottom: 5%;
  }
  .flowList > li:not(:last-child)::before {
    left: 34px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .flowList {
    width: 100%;
    padding: 2em 1.5em;
  }
  .flowList > li {
    padding: 2em 1em 2em 1.5em;
  }
  .flowList > li:not(:last-child)::before {
    left: 43px;
  }
}

.flowNbText {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  line-height: 1.2;
  font-family: "SUSE Mono", sans-serif;
  font-weight: 500;
}
.flowNbText span {
  font-size: clamp(3rem, 2.854368932rem + 0.3883495146vw, 3.6rem);
  line-height: 1.2;
  font-weight: 500;
}

.flowNbBlock {
  width: 10%;
}
@media only screen and (max-width: 767px) {
  .flowNbBlock {
    width: 15%;
  }
}
@media only screen and (max-width: 520px) {
  .flowNbBlock {
    width: 22%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .flowNbBlock {
    width: 12%;
  }
}

.flowInfoBlock {
  padding-left: 2.3em;
  width: calc(100% - (10% + 2.3em));
  position: relative;
}
.flowInfoBlock::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 120%;
  left: 0;
  background-color: #31adad;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1440px) {
  .flowInfoBlock::before {
    left: 0.6em;
  }
}
@media only screen and (max-width: 767px) {
  .flowInfoBlock {
    padding-left: 1.5em;
  }
  .flowInfoBlock::before {
    width: 2px;
    height: 100%;
    left: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .flowInfoBlock::before {
    left: 0.2em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .flowInfoBlock::before {
    left: 0.5em;
  }
}

.flowTitle {
  font-size: clamp(1.8rem, 1.654368932rem + 0.3883495146vw, 2.4rem);
  line-height: 1.2;
  font-weight: bold;
}
.flowTitle.__lh {
  line-height: 2.8;
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .faqBlock {
    width: 90%;
    margin-inline: auto;
  }
}

.qaList > li {
  border: solid 1px #3f3d56;
  border-radius: 7px;
  position: relative;
}
.qaList > li:not(:last-child) {
  margin-bottom: 3%;
}
.qaList > li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background-color: #3f3d56;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .qaList {
    width: 100%;
  }
  .qaList > li:not(:last-child) {
    margin-bottom: 6%;
  }
  .qaList > li::after {
    width: 54px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .qaList > li::after {
    width: 67px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .qaList {
    width: 90%;
  }
}

.openBtn {
  cursor: pointer;
  padding: 1.8em 6.3em 1.8em 2em;
  position: relative;
}
.openBtn dt {
  font-size: clamp(2rem, 1.7087378641rem + 0.7766990291vw, 3.2rem);
  font-family: "SUSE Mono", sans-serif;
  line-height: 0.8;
  font-weight: 500;
}
.openBtn dd {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.6;
  padding: 0 0 0 1em;
  font-weight: 500;
}
.openBtn::after, .openBtn::before {
  position: absolute;
  content: "";
  display: block;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.3s;
  z-index: 9;
}
.openBtn::before {
  width: 23px;
  height: 3px;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}
.openBtn::after {
  width: 3px;
  height: 23px;
  right: 38px;
  top: 50%;
  transform: translateY(-50%);
}
.openBtn.on::before {
  opacity: 0;
}
.openBtn.on::after {
  width: 3px;
  right: 36px;
  top: 34%;
  transform: rotate(-90deg);
}
@media only screen and (max-width: 767px) {
  .openBtn {
    padding: 1em 3.3em 1em 1em;
  }
  .openBtn dt {
    margin-top: 5px;
  }
  .openBtn dd {
    padding: 0 0.6em 0 0.3em;
  }
  .openBtn::before {
    width: 21px;
    right: 16px;
  }
  .openBtn::after {
    height: 21px;
    right: 26px;
  }
  .openBtn.on::after {
    height: 21px;
    right: 26px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .openBtn::before {
    right: 22px;
  }
  .openBtn::after {
    right: 32px;
  }
  .openBtn.on::after {
    right: 32px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .openBtn {
    padding: 1.5em 6.3em 1.5em 1.5em;
  }
  .openBtn dt {
    line-height: 1.1;
  }
}

.qaInner {
  display: none;
  padding: 2.2em 6.3em 2.2em 2.2em;
  position: relative;
}
.qaInner::after {
  content: "";
  display: block;
  position: absolute;
  width: 87%;
  height: 1px;
  background-color: #e0e0e0;
  top: 0;
  left: 2em;
}
.on .qaInner {
  display: block;
}
.qaInner dt {
  font-size: clamp(2rem, 1.7087378641rem + 0.7766990291vw, 3.2rem);
  font-family: "SUSE Mono", sans-serif;
  line-height: 1;
  font-weight: 500;
}
.qaInner dd {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  font-weight: 400;
  line-height: 1.6;
  padding: 0 1em 0 1em;
}
@media only screen and (min-width: 1250px) and (max-width: 1700px) {
  .qaInner::after {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .qaInner {
    padding: 1.2em 0.3em 1.2em 1.2em;
  }
  .qaInner::after {
    width: 74%;
    left: 1em;
  }
  .qaInner dt {
    margin-top: 5px;
  }
  .qaInner dd {
    padding: 0 4em 0 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .qaInner {
    padding: 2.2em 6.3em 2.2em 1.5em;
  }
  .qaInner dd {
    padding: 0 0.5em 0 1em;
  }
  .qaInner::after {
    width: 83%;
    left: 1.5em;
  }
}

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

.recruit_conBox {
  width: 85%;
  margin-inline: auto;
  background-image: url(.././img/cream_pixels.webp);
  border: solid 1px #31adad;
  border-radius: 15px;
  padding: 4em 2em 4em;
  margin-bottom: 3%;
}
@media only screen and (max-width: 767px) {
  .recruit_conBox {
    width: 92%;
    border-radius: 12px;
    padding: 3em 1.5em 2em;
    padding-inline: 15px;
    margin-bottom: 8%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .recruit_conBox {
    width: 92%;
    border-radius: 15px;
    padding: 4.5em 1.5em 3em;
    padding-inline: 15px;
    margin-bottom: 8%;
  }
}

.conTitle {
  font-size: clamp(2rem, 1.6601941748rem + 0.9061488673vw, 3.4rem);
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .conTitle {
    margin-bottom: 6%;
  }
}

.conText {
  font-size: clamp(1.5rem, 1.3786407767rem + 0.3236245955vw, 2rem);
  letter-spacing: 0.15em;
  line-height: 1.8;
  font-weight: 500;
}
.conText span {
  font-size: clamp(1.5rem, 1.2815533981rem + 0.5825242718vw, 2.4rem);
  color: #31adad;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .conText {
    text-align: left;
    line-height: 1.6;
    padding: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .conText {
    padding: 0;
  }
}

.conBlock {
  padding-top: 4em;
  position: relative;
  padding-inline: 0 !important;
}
.eldercare-taxi .conBlock {
  padding-top: 2em;
}
.conBlock::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 4em);
  height: 1px;
  background-color: #babbbc;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .conBlock {
    padding-top: 2em;
  }
  .conBlock::after {
    width: calc(92% + 4em);
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .conBlock::after {
    width: calc(92% + 6em);
  }
}

.conWrap {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -moz-column-gap: 112px;
       column-gap: 112px;
}
@media only screen and (max-width: 1900px) {
  .conWrap {
    -moz-column-gap: 70px;
         column-gap: 70px;
  }
}
@media only screen and (max-width: 1600px) {
  .conWrap {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media only screen and (max-width: 1400px) {
  .conWrap {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .conWrap {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .conWrap {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}

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

.conTelWrap {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media only screen and (max-width: 767px) {
  .conTelWrap {
    width: 100%;
  }
}

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

.conMailBlock > a {
  width: 367px;
  display: block;
  padding: 2em 1em 2em 5em;
  border: solid 1px #31adad;
  background-color: #fff;
  border-radius: 5px;
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  line-height: 1;
  position: relative;
  transition: 0.3s;
}
.conMailBlock > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 46px;
  width: 35px;
  height: 24px;
  transform: translateY(-50%);
  background-image: url(.././img/mail_g.svg);
  background-repeat: no-repeat;
  background-size: 35px;
  transition: 0.3s;
}
.conMailBlock > a:hover {
  background-color: #363636;
  border: solid 1px #363636;
  color: #fff;
}
.conMailBlock > a:hover::after {
  background-image: url(.././img/mail.svg);
}
@media only screen and (max-width: 767px) {
  .conMailBlock > a {
    width: 293px;
    margin-inline: auto;
    padding: 2em 0.5em 2em 3.3em;
  }
  .conMailBlock > a::after {
    left: 19px;
    width: 30px;
    height: 21px;
    background-size: 30px;
  }
}
@media only screen and (max-width: 520px) {
  .conMailBlock {
    margin-bottom: 7%;
  }
  .conMailBlock > a {
    width: 100%;
    padding: 1.5em 0.5em 1.5em 3.3em;
  }
  .conMailBlock > a::after {
    left: 19px;
    width: 30px;
    height: 21px;
    background-size: 30px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .conMailBlock > a {
    width: 293px;
    padding: 2em 0.5em 2em 3.3em;
  }
  .conMailBlock > a::after {
    left: 19px;
    width: 30px;
    height: 21px;
    background-size: 30px;
  }
}

.conBtnBlock > a {
  margin-inline: auto;
  width: 480px;
  display: block;
  background-color: #31adad;
  border-radius: 8px;
  padding: 1.8em 2em 3.2em 2em;
  transition: 0.3s;
  position: relative;
}
.nursing_conCard .conBtnBlock > a, .homevisit_conCard .conBtnBlock > a {
  padding: 2.7em 2em 4em 2em;
}
.nursing_conCard .conBtnBlock > a::after, .homevisit_conCard .conBtnBlock > a::after {
  bottom: 22px;
  left: 49.2%;
}
.conBtnBlock > a::after {
  content: "";
  display: block;
  position: absolute;
  transition: 0.3s;
  bottom: 21px;
  left: 50%;
  width: 26px;
  height: 26px;
  transform: translateX(-50%);
  background-image: url(.././img/arrow_circle_w.svg);
  background-repeat: no-repeat;
  background-size: 26px;
}
.conBtnBlock > a:hover {
  background-color: #363636;
}
.conBtnBlock > a:hover::after {
  background-image: url(.././img/arrow_circle_blue.svg);
}
@media only screen and (max-width: 1600px) {
  .recruit_conCard .conBtnBlock > a, .foreign_conCard .conBtnBlock > a, .cleaning_conCard .conBtnBlock > a, .foreign_conCard .conBtnBlock > a, .reha_conCard .conBtnBlock > a {
    width: 416px;
  }
}
@media only screen and (max-width: 1400px) {
  .recruit_conCard .conBtnBlock > a, .foreign_conCard .conBtnBlock > a, .cleaning_conCard .conBtnBlock > a, .foreign_conCard .conBtnBlock > a, .reha_conCard .conBtnBlock > a {
    width: 400px;
    padding: 1.8em 1em 3.2em 1em;
  }
}
@media only screen and (max-width: 767px) {
  .conBtnBlock > a {
    width: 100%;
    padding: 1.5em 1em 3em;
  }
  .conBtnBlock > a::after {
    bottom: 14px;
  }
  .nursing_conCard .conBtnBlock > a, .homevisit_conCard .conBtnBlock > a {
    padding: 1.8em 2em 4em 2em;
  }
  .nursing_conCard .conBtnBlock > a::after, .homevisit_conCard .conBtnBlock > a::after {
    bottom: 22px;
  }
  .recruit_conCard .conBtnBlock > a, .foreign_conCard .conBtnBlock > a, .cleaning_conCard .conBtnBlock > a, .foreign_conCard .conBtnBlock > a, .reha_conCard .conBtnBlock > a {
    width: 100%;
    padding: 1.5em 1em 3em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .conBtnBlock > a::after {
    bottom: 18px;
  }
  .foreign_conCard .conBtnBlock > a, .cleaning_conCard .conBtnBlock > a, .foreign_conCard .conBtnBlock > a {
    width: 290px;
  }
  .reha_conCard .conBtnBlock > a {
    width: 303px;
  }
  .recruit_conCard .conBtnBlock > a {
    width: 311px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .recruit_conCard .conBtnBlock > a, .foreign_conCard .conBtnBlock > a, .cleaning_conCard .conBtnBlock > a, .foreign_conCard .conBtnBlock > a {
    width: 330px;
  }
  .recruit_conCard .conBtnBlock > a {
    width: 311px;
  }
  .reha_conCard .conBtnBlock > a {
    width: 311px;
  }
}

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

.conInfoWrap i {
  font-size: clamp(1.8rem, 1.5087378641rem + 0.7766990291vw, 3rem);
}

.confaxImgBlock {
  width: 54px;
  margin-top: 4px;
}
.eldercare_conCard .confaxImgBlock {
  width: 20px;
  margin-right: 7px;
}

.conTelLink {
  white-space: nowrap;
  margin-left: 7px;
  font-size: clamp(2.6rem, 2.1631067961rem + 1.1650485437vw, 4.4rem);
  letter-spacing: 0.01em;
  line-height: 1;
  font-weight: bold;
}
.conTelLink.__tel {
  font-size: clamp(2.6rem, 2.3572815534rem + 0.6472491909vw, 3.6rem);
}
@media print, screen and (min-width: 768px) {
  .conTelLink {
    pointer-events: none;
  }
}

.contelText {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1;
  font-weight: 500;
}

.conBtnText {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.3;
  font-weight: 500;
}

.conBtnTitle {
  font-size: clamp(1.5rem, 1.2330097087rem + 0.71197411vw, 2.6rem);
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.conBtnWrap {
  width: 10%;
  margin-inline: auto;
}

.conMailBlock span {
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  padding-left: 2.5em;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
}
.conMailBlock span::after {
  content: "";
  display: block;
  position: absolute;
  top: 55%;
  left: 0;
  width: 40px;
  height: 26px;
  transform: translateY(-50%);
  background-image: url(.././img/mail_b.svg);
  background-repeat: no-repeat;
  background-size: 40px;
}
@media only screen and (max-width: 767px) {
  .conMailBlock span::after {
    width: 29px;
    height: 20px;
    background-size: 29px;
  }
}

/*==================================================
/*事業案内
*================================================*/
.serviceCard {
  padding-bottom: 5em;
}

.serviceImgWrap {
  width: 70%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .serviceImgWrap {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .serviceImgWrap {
    width: 80%;
  }
}

.serviceCard .serviceBtnWrap {
  display: none;
}

/*==================================================
/*有料老人ホーム運営事業
*================================================*/
.swiperNurse {
  max-width: 1478px;
  margin-left: -6%;
  padding: 5em 0;
}
.swiperNurse .swiper-slide {
  transform: scale(0.7); /* 左右のスライドを小さくする */
  transition: 0.7s; /* ゆっくり小さくさせる */
  margin-top: -28px;
}
.swiperNurse .swiper-slide img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}
.swiperNurse .swiper-slide-active {
  transform: scale(1.3); /* 中央のスライドは小さくしない */
  margin-top: 0;
  padding: 0 2.5em;
  z-index: 1; /* 中央のスライドを一番上にする */
}
@media only screen and (max-width: 767px) {
  .swiperNurse {
    margin-left: 0;
    margin-inline: auto;
    padding: 0;
  }
  .swiperNurse .swiper-slide {
    transform: scale(1) !important; /* 縮小させない */
    z-index: 0;
    margin-top: 0;
    transform: translateZ(0);
    will-change: transform;
  }
  .swiperNurse .swiper-slide-active {
    transform: scale(1) !important; /* 拡大させない */
    padding: 0;
    transform: translateZ(0);
    will-change: transform;
  }
  .swiperNurse .swiper-slide img {
    width: 95%;
    transform: translateZ(0);
    will-change: transform;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .swiperNurse {
    margin-left: 0;
    padding: 1.7em 0 0;
  }
  .swiperNurse .swiper-slide {
    transform: scale(0.8); /* 左右のスライドを小さくする */
    margin-top: -24px;
  }
  .swiperNurse .swiper-slide-active {
    transform: scale(1.1); /* 中央のスライドは小さくしない */
    padding: 0 0.5em;
    margin-top: -10px;
  }
  .swiperNurse .swiper-slide img {
    border-radius: 12px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiperNurse .swiper-slide-active {
    margin-top: -17px;
  }
}

.cntSwipe {
  max-width: 1535px;
  margin-right: auto;
  margin-left: auto;
}

/*==================================================
/*外国人就労支援事業
*================================================*/
.provideText span {
  display: block;
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
  padding-left: 1.9em;
  position: relative;
}
.provideText span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-image: url(.././img/check.svg);
  background-repeat: no-repeat;
  background-size: 28px;
}
@media only screen and (max-width: 959px) {
  .provideText span::after {
    width: 20px;
    height: 20px;
    top: 1px;
    background-size: 20px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .provideText span::after {
    width: 25px;
    height: 25px;
    top: 1px;
    background-size: 25px;
  }
}

/*==================================================
/*清掃事業
*================================================*/
.infoList {
  background-color: #e0ecec;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.5em 2em 1.5em 2em;
}
.infoList > li {
  line-height: 1.4;
}
.infoList > li:not(:last-child) {
  margin-bottom: 10px;
}
.infoList > li span {
  padding-left: 1.6em;
  display: block;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.4;
  font-weight: 500;
  position: relative;
}
.infoList > li span .line_left {
  padding-left: 5.5em;
}
.infoList > li span::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url(.././img/diamond.svg);
  background-repeat: no-repeat;
  background-size: 16px;
}
@media only screen and (max-width: 767px) {
  .infoList {
    padding: 1.5em 1em;
  }
  .infoList > li span .line_left {
    padding-left: 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1500px) {
  .infoList {
    padding: 1.5em 1em;
  }
  .infoList > li span .line_left {
    padding-left: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .infoList {
    padding: 1.5em 1em;
  }
  .infoList > li span {
    letter-spacing: 0.05em;
  }
  .infoList > li span .line_left {
    padding-left: 0;
  }
}

.provideboxList {
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.provideboxList > li {
  width: calc((100% - 20px) / 2);
  border: solid 1px #31adad;
}
@media only screen and (max-width: 767px) {
  .provideboxList {
    row-gap: 20px;
  }
  .homevisit_provideCard .provideboxList > li {
    width: 100%;
  }
  .eldercare_provideCard .provideboxList > li {
    width: 100%;
  }
  .provideboxList > li {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1480px) {
  .cleaning .provideboxList {
    width: 77%;
    margin-inline: auto;
    row-gap: 20px;
  }
  .cleaning .provideboxList > li {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .cleaning .provideboxList {
    width: 77%;
    margin-inline: auto;
    row-gap: 20px;
  }
  .cleaning .provideboxList > li {
    width: 100%;
  }
}

.providebox {
  border: solid 1px #31adad;
}

.provideTitle {
  background-color: #faffe3;
  border-bottom: solid 1px #31adad;
  padding: 1em 0.5em;
  font-size: clamp(1.8rem, 1.727184466rem + 0.1941747573vw, 2.1rem);
  line-height: 1.4;
  font-weight: bold;
}
.providebox02 .provideTitle {
  background-color: #faebe3;
}
@media only screen and (max-width: 767px) {
  .provideTitle {
    padding: 0.8em 0.5em;
  }
}

.provideInnerBox {
  border: solid 1px #31adad;
  width: -moz-fit-content;
  width: fit-content;
}

.provideInfoList {
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding: 2.6em 2.5em;
}
.homevisit-nursing .provideInfoList {
  -moz-column-gap: 59px;
       column-gap: 59px;
}
@media only screen and (max-width: 1788px) {
  .cleaning .provideInfoList {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1170px) {
  .homevisit-nursing .provideInfoList {
    padding: 2.6em 1.2em;
    -moz-column-gap: 13px;
         column-gap: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .provideInfoList {
    justify-content: flex-start;
    padding: 1.5em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .homevisit-nursing .provideInfoList {
    padding: 2.6em 1.2em;
    -moz-column-gap: 13px;
         column-gap: 13px;
  }
}

/*==================================================
/*介護タクシー事業
*================================================*/
.provideSubText {
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  line-height: 1.6;
  font-weight: 400;
}

.outlineList {
  -moz-column-gap: 121px;
       column-gap: 121px;
}
@media only screen and (max-width: 767px) {
  .outlineList {
    row-gap: 10px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .outlineList {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}

.outlineInnerList > li {
  line-height: 1.5;
}
.outlineInnerList > li:not(:last-child) {
  margin-bottom: 10%;
}
.outlineInnerList > li span {
  padding-left: 2.3em;
  display: block;
  font-size: clamp(1.5rem, 1.3786407767rem + 0.3236245955vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}
.outlineInnerList > li span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-image: url(.././img/check.svg);
  background-repeat: no-repeat;
  background-size: 28px;
}
@media only screen and (max-width: 767px) {
  .outlineInnerList > li {
    line-height: 1.5;
  }
  .outlineInnerList > li:not(:last-child) {
    margin-bottom: 3%;
  }
  .outlineInnerList > li span {
    padding-left: 1.8em;
  }
  .outlineInnerList > li span::after {
    top: 1px;
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .outlineInnerList > li:not(:last-child) {
    margin-bottom: 4%;
  }
  .outlineInnerList > li span {
    padding-left: 2em;
  }
  .outlineInnerList > li span::after {
    top: 0;
    width: 24px;
    height: 24px;
    background-size: 24px;
  }
}

/*==================================================
/*訪問看護事業
*================================================*/
.baseList {
  width: 63%;
  margin-inline: auto;
}
.baseList > li {
  border-radius: 10px;
  padding: 2em;
  border: solid 2px #31adad;
}
.baseList > li:not(:last-child) {
  margin-bottom: 2%;
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
  .baseList {
    width: 65%;
  }
}
@media only screen and (max-width: 767px) {
  .baseList {
    width: 100%;
  }
  .baseList > li {
    padding: 1.5em 1em;
  }
  .baseList > li:not(:last-child) {
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .baseList {
    width: 80%;
  }
  .baseList > li {
    padding: 1.5em 1em;
  }
  .baseList > li:not(:last-child) {
    margin-bottom: 3%;
  }
}

.baseTitle {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  line-height: 1.4;
  font-weight: bold;
}
.baseTitle i {
  color: #036ea9;
}

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

@media screen and (min-width: 1280px) {
  .section {
    min-height: 100vh;
    position: relative;
    overflow: visible;
  }
}
.section1,
.section2,
.section3 {
  background-color: #c7dddd;
  border: solid 1px #3f3d56;
  border-bottom: unset;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}
@media only screen and (max-width: 767px) {
  .section1,
  .section2,
  .section3 {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .section2,
  .section3 {
    margin-top: -20%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .section2,
  .section3 {
    margin-top: -8%;
  }
}

.footeMenuSp {
  background-color: #fff;
  border: solid 1px #31adad;
  border-radius: 8px;
  padding: 0 1em;
}

.openBtn4 {
  cursor: pointer;
  position: relative;
  transition: 0.3s ease-in-out;
  position: relative;
}
.open .openBtn4 {
  pointer-events: none;
}
.openBtn4::after, .openBtn4::before {
  position: absolute;
  content: "";
  display: block;
  background-color: #31adad;
  border-radius: 10px;
  transition: 0.3s;
  z-index: 8;
}
.openBtn4::before {
  width: 18px;
  height: 3px;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
}
.openBtn4::after {
  width: 3px;
  height: 18px;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
}
.openBtn4.on::before {
  opacity: 0;
}
.openBtn4.on::after {
  width: 3px;
  right: 10px;
  top: 34%;
  transform: rotate(-90deg);
}

.serviceMapBlock {
  width: 95%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .serviceMapBlock {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceMapBlock {
    width: 100%;
  }
}

.serviceImgBtn {
  position: absolute;
}
.serviceImgBtn.__img01 {
  top: 8%;
  left: 20%;
  width: 16%;
}
.serviceImgBtn.__img02 {
  top: 29%;
  left: 11%;
  width: 13%;
}
.serviceImgBtn.__img03 {
  top: 17.5%;
  right: 37%;
  width: 11%;
}
.serviceImgBtn.__img04 {
  top: 19%;
  right: 11%;
  width: 16%;
}
.serviceImgBtn.__img05 {
  top: 51%;
  right: 16%;
  width: 13%;
}
.serviceImgBtn.__img06 {
  top: 64%;
  left: 10%;
  width: 16%;
}
.serviceImgBtn.__img07 {
  top: 76.5%;
  left: 47%;
  width: 13%;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .serviceImgBtn.__img01 {
    top: 3%;
    left: 17%;
    width: 19%;
  }
  .serviceImgBtn.__img02 {
    top: 29%;
    left: 6%;
    width: 16%;
  }
  .serviceImgBtn.__img03 {
    top: 14.5%;
    right: 35%;
    width: 14%;
  }
  .serviceImgBtn.__img04 {
    top: 19%;
    right: 7%;
    width: 19%;
  }
  .serviceImgBtn.__img05 {
    top: 53%;
    right: 15%;
    width: 16%;
  }
  .serviceImgBtn.__img06 {
    top: 64%;
    left: 6%;
    width: 19%;
  }
  .serviceImgBtn.__img07 {
    top: 75.5%;
    left: 46%;
    width: 16%;
  }
}

@media print, screen and (min-width: 768px) {
  .serviceBtn {
    display: block;
    border-radius: 50%;
    transition: 0.3s;
    position: relative;
  }
  .serviceBtn::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -22px;
    right: -23px;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%);
    background-image: url(.././img/btn.svg);
    background-repeat: no-repeat;
    background-size: 48px;
  }
  .__small .serviceBtn::after {
    right: -28px;
  }
  .__mid .serviceBtn::after {
    bottom: -28px;
  }
  .serviceBtn img {
    display: block;
    transition: 0.3s;
  }
  .serviceBtn:hover {
    box-shadow: 0 10px 10px rgba(49, 173, 173, 0.3);
    transform: scale(1.05);
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1420px) {
  .serviceBtn::after {
    bottom: -22px;
    right: -23px;
    width: 43px;
    height: 43px;
    background-size: 43px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .serviceBtn::after {
    bottom: -9px;
    width: 30px;
    height: 30px;
    background-size: 30px;
  }
  .__mid .serviceBtn::after {
    bottom: -15px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .serviceBtn::after {
    bottom: -15px;
    right: -16px;
    width: 33px;
    height: 33px;
    background-size: 33px;
  }
}

/*==================================================
/*map
*================================================*/
.cls-1 {
  fill: #363636;
}

.cls-2 {
  stroke: url(#_新規グラデーションスウォッチ_2);
}

.cls-2,
.cls-3,
.cls-4,
.cls-5,
.cls-6,
.cls-7,
.cls-8,
.cls-9,
.cls-10,
.cls-11,
.cls-12,
.cls-13,
.cls-14,
.cls-15,
.cls-16,
.cls-17,
.cls-18,
.cls-19,
.cls-20 {
  stroke-miterlimit: 10;
}

.cls-2,
.cls-3,
.cls-5,
.cls-6,
.cls-7,
.cls-8,
.cls-9,
.cls-10,
.cls-11,
.cls-12 {
  fill: none;
}

.cls-2,
.cls-3,
.cls-5,
.cls-6,
.cls-7,
.cls-8,
.cls-9,
.cls-10,
.cls-11,
.cls-12 {
  stroke-width: 0.84px;
}

.cls-21 {
  fill: #ecfdfd;
}

.cls-3 {
  stroke: url(#_新規グラデーションスウォッチ_2-10);
}

.cls-22 {
  fill: #31adad;
}

.cls-23 {
  fill: #3e3a39;
}

.cls-24,
.cls-4,
.cls-13,
.cls-14,
.cls-15,
.cls-16,
.cls-17,
.cls-18,
.cls-19,
.cls-20 {
  fill: #fff;
}

.cls-4 {
  filter: url(#outer-glow-1);
  stroke: #c7dddd;
}

.cls-4,
.cls-13,
.cls-14,
.cls-15,
.cls-16,
.cls-17,
.cls-18,
.cls-19,
.cls-20 {
  stroke-width: 0.28px;
}

.cls-5 {
  stroke: url(#_新規グラデーションスウォッチ_2-3);
}

.cls-6 {
  stroke: url(#_新規グラデーションスウォッチ_2-9);
}

.cls-7 {
  stroke: url(#_新規グラデーションスウォッチ_2-2);
}

.cls-8 {
  stroke: url(#_新規グラデーションスウォッチ_2-6);
}

.cls-9 {
  stroke: url(#_新規グラデーションスウォッチ_2-5);
}

.cls-10 {
  stroke: url(#_新規グラデーションスウォッチ_2-7);
}

.cls-11 {
  stroke: url(#_新規グラデーションスウォッチ_2-4);
}

.cls-12 {
  stroke: url(#_新規グラデーションスウォッチ_2-8);
}

.cls-13 {
  stroke: url(#_新規グラデーションスウォッチ_2-18);
}

.cls-14 {
  stroke: url(#_新規グラデーションスウォッチ_2-11);
}

.cls-15 {
  stroke: url(#_新規グラデーションスウォッチ_2-17);
}

.cls-16 {
  stroke: url(#_新規グラデーションスウォッチ_2-16);
}

.cls-17 {
  stroke: url(#_新規グラデーションスウォッチ_2-13);
}

.cls-18 {
  stroke: url(#_新規グラデーションスウォッチ_2-12);
}

.cls-19 {
  stroke: url(#_新規グラデーションスウォッチ_2-15);
}

.cls-20 {
  stroke: url(#_新規グラデーションスウォッチ_2-14);
}

.cls-25 {
  fill: #e1eded;
}/*# sourceMappingURL=import.css.map */