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

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


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

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

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

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

.mainColorDeep {
  color: #1a1a1a;
}

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

.mainColorExDeep {
  color: #03312e;
}

.mainColorLight {
  color: #808080;
}

.bgMainColorLight {
  background-color: #808080;
}

.mainColorExLight {
  color: #f2f2f2;
}

.bgMainColorExLight {
  background-color: #f2f2f2;
}

.mainColorUlLight {
  color: #f6f7f9;
}

.bgMainColorUlLight {
  background-color: #f6f7f9;
}

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

.bgSubColor {
  background-color: #2C5298;
}

.subColorDeep {
  color: #e3e3fb;
}

.bgSubColorDeep {
  background-color: #e3e3fb;
}

.bgSubColorLight {
  background-color: #F8FBFF;
}

.compColor {
  color: #ecfe02;
}

.bgCompColor {
  background-color: #ecfe02;
}

.grayColor {
  color: #a9a9a9;
}

.bgGrayColor {
  background-color: #a9a9a9;
}

.grayColorLight {
  color: #dcdcdc;
}

.bgGrayColorLight {
  background-color: #dcdcdc;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

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

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

.bgBlack {
  background: #000;
}

.bgGrad {
  background: rgb(255, 178, 90);
  background: linear-gradient(90deg, rgb(255, 178, 90) 0%, rgb(255, 143, 90) 100%);
}

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

.grayLight {
  color: #9a9a9a;
}

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

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

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

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

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

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

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

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

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

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

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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input,
select {
  vertical-align: middle;
}

li {
  list-style-type: none;
}

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

html {
  font-size: 10px;
}

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

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

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

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

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

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

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

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

.ls_xl {
  letter-spacing: 0.3em;
}

.ls_l {
  letter-spacing: 0.2em;
}

.ls_m {
  letter-spacing: 0.1em;
}

.ls_s {
  letter-spacing: 0.05em;
}

.ls_xs {
  letter-spacing: 0.01em;
}

.ls_0 {
  letter-spacing: 0;
}

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

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

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

.thin {
  font-weight: 100;
}

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}
.whiteAll * {
  color: #fff;
}

.black {
  color: #000;
}

.gray {
  color: #686868;
}

.red {
  color: #ff4501 !important;
}

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

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

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

.fsL3-7 {
  font-size: 45px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL3-7 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL3-7 {
    font-size: 26px;
  }
}

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

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

.fsM15 {
  font-size: 30px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM15 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM15 {
    font-size: 21px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.h000 {
  font-size: 100px;
}

.h00 {
  font-size: 64px;
}

.h0 {
  font-size: 42px;
}

.h1 {
  font-size: 32px;
}

.h2 {
  font-size: 28px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 16px;
}

.text_m {
  font-size: 14px;
}

.text_sm {
  font-size: 13px;
}

.text_s {
  font-size: 12px;
}

.text_ss {
  font-size: 10px;
}

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

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

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

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

hr {
  margin: 10px auto;
}

a:hover {
  text-decoration: none;
}

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

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

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

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

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

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

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

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

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

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

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

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

.p0 {
  padding: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

.ml0 {
  margin-left: 0;
}

.mbL {
  margin-bottom: 30%;
}

.mbL2 {
  margin-bottom: 25%;
}

.mbL3 {
  margin-bottom: 20%;
}

.mbL4 {
  margin-bottom: 15%;
}

.mbM {
  margin-bottom: 10%;
}

.mbM2 {
  margin-bottom: 7.5%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS3 {
  margin-bottom: 1%;
}

@media only screen and (max-width: 767px) {
  .mbSpL {
    margin-bottom: 30%;
  }
  .mbSpL2 {
    margin-bottom: 25%;
  }
  .mbSpL3 {
    margin-bottom: 20%;
  }
  .mbSpL4 {
    margin-bottom: 15%;
  }
  .mbSpM {
    margin-bottom: 10%;
  }
  .mbSpM2 {
    margin-bottom: 7.5%;
  }
  .mbSpM3 {
    margin-bottom: 5%;
  }
  .mbSpS {
    margin-bottom: 3.5%;
  }
  .mbSpS2 {
    margin-bottom: 2%;
  }
  .mbSpS3 {
    margin-bottom: 1%;
  }
  .mbSp0 {
    margin-bottom: 0;
  }
}
/*flex・グリッド系*/
.flex {
  display: 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%;
}

.col-5 {
  width: 80%;
}

.col6 {
  width: 16.666%;
}

.col-6 {
  width: 83.333%;
}

.col3-2 {
  width: 60%;
}

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

@media screen and (max-width: 767px) {
  .flexSplit {
    width: 100%;
  }
  .flexPc {
    display: block;
  }
  .flexWrapSp {
    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) {
  .colMd1 {
    width: 100%;
  }
  .colMd2 {
    width: 50%;
  }
  .colMd3 {
    width: 33.3333%;
  }
  .colMd-3 {
    width: 66.6666%;
  }
  .colMd4 {
    width: 25%;
  }
  .colMd-4 {
    width: 75%;
  }
  .colMd5 {
    width: 20%;
  }
  .colMd-5 {
    width: 80%;
  }
  .colMd6 {
    width: 16.666%;
  }
  .colMd-6 {
    width: 83.333%;
  }
  .colMd3-2 {
    width: 60%;
  }
  .colMd-3-2 {
    width: 40%;
  }
}
/*横幅*/
.cnt {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
.cnt.max {
  max-width: 100%;
}

.w100 {
  width: 100%;
}

.cntXXS {
  max-width: 540px;
  margin-right: auto;
  margin-left: auto;
}

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

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

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

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

.cntXl {
  max-width: 1020px;
  margin-right: auto;
  margin-left: auto;
}

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

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

:root {
  --spaceSizeS: clamp(30px, 7vw, 60px);
  --spaceSize: clamp(80px, 7vw, 90px);
  --spaceSizeWide: clamp(160px, 20vw, 240px);
}

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

.padding {
  padding-top: 145px;
  padding-bottom: 165px;
}
@media only screen and (max-width: 767px) {
  .padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.paddingTop {
  padding-top: var(--spaceSize);
}

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

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

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

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

.pb0 {
  padding-bottom: 0;
}

.pt0 {
  padding-top: 0;
}

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

.bgImgHeight {
  padding-bottom: 67%;
}

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

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

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

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

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

.bgWhite {
  background-color: #ffffff;
}

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

.bgZoomImg {
  position: absolute;
  width: 100%;
  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.3) 0px 30px 60px -30px;
  }
}

.shadowL {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
@media only screen and (max-width: 767px) {
  .shadowL {
    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: #ecfe02;
  position: absolute;
  bottom: 0;
  left: -2.5%;
  width: 105%;
  height: 0.3em;
  z-index: 0;
}
.titleLine.sub {
  background: linear-gradient(transparent 70%, #2C5298 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: #23ABAF;
  border-radius: 50px;
}
.titleBd.compColor:before {
  background-color: #23ABAF;
}
.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: #23ABAF;
  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: #23ABAF;
  display: block;
  margin-right: 1.5rem;
  max-width: 3rem;
}
.titleBdLeft.white:before {
  background: #fff;
}

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

.bdBox {
  border: 2px solid #23ABAF;
}

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

html.open {
  overflow-y: hidden;
}

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

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

:root {
  --menuTrigeHeight: 22px;
}

.menu-trigger {
  position: relative;
  width: 40px;
  height: var(--menuTrigeHeight);
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: calc(var(--menuTrigeHeight) / 2);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span {
  background-color: #fff;
}
.menu-trigger.active span:nth-of-type(1) {
  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(-11px) 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: #23ABAF;
}
.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 #23ABAF;
}

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

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

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

/*残す--ここまで*/
.contactForm {
  width: 100%;
  margin: 0 auto;
}

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

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

.contactTelIcon {
  margin-right: 0.4em;
}

.mw_wp_form button {
  border-radius: 0;
}

.sendBtnWrap button {
  width: 240px;
  text-align: center;
  border: solid 1px #003234;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.cform {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.cform th {
  font-size: 17px;
  font-family: bold;
  width: 35%; /*変なところで改行される場合はここの数字を変更します。*/
  padding: 10px 0 10px 15px;
  font-weight: normal;
  vertical-align: middle;
  text-align: left;
  position: relative;
}
.cform th .title {
  width: 72%;
  display: inline-block;
  font-size: 15px;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@media only screen and (max-width: 767px) {
  .cform th .title {
    vertical-align: bottom;
    width: auto;
    margin-right: 5%;
  }
}
.cform td {
  font-size: 15px;
  line-height: 150%;
  padding: 2.5% 0;
}
.cform td .error {
  font-size: 14px;
}
.cform td input::-moz-placeholder, .cform td textarea::-moz-placeholder {
  color: #ddd;
}
.cform td input::placeholder,
.cform td textarea::placeholder {
  color: #ddd;
}
.cform td span label span {
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .cform td,
  .cform th {
    padding-bottom: 0;
    padding-top: 10px;
    font-size: 15px;
  }
  .cform td {
    padding: 5px 0;
  }
  .cform th .required-srt {
    padding: 0.1em 0.4em;
  }
  .cform tr {
    border-bottom: none;
  }
}

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

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

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

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

@media only screen and (max-width: 767px) {
  .cform th,
  .cform td {
    width: 100%;
    display: block;
    border-top: none;
  }
}
.contactAlertBox {
  border: 1px solid #dcdcdc;
  padding: 8% 5%;
  margin: 10% 0;
}
@media only screen and (max-width: 767px) {
  .contactAlertBox {
    padding: 12% 5%;
    margin: 13% 0;
  }
}

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

.submit-btn {
  text-align: center;
  margin-top: 4%;
}
.submit-btn input {
  transition: 0.3s;
  font-size: 16px;
  letter-spacing: 0.07em;
  padding: 1.25em 2em;
  background-color: #23ABAF;
  color: #fff;
  cursor: pointer;
  border: 1px solid #23ABAF;
  width: 340px;
  font-weight: 500;
}
.submit-btn input:hover {
  color: #23ABAF;
  background-color: #fff;
}
@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;
  }
}

/*下層ページ共通------------------------------------*/
/*投稿詳細ページ------------------------------------*/
li.widget {
  list-style-type: none;
  margin-bottom: 20%;
}

.widgettitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 3%;
}

li.widget li {
  color: #a7a7a7;
  margin-bottom: 3%;
}

/*タグクラウド*/
.tagCloud li {
  list-style: none;
  background: #db4a39;
  display: inline-block;
  color: #fff;
  padding: 0.5% 2%;
  font-size: 12px;
}

.tagCloud li .glyphicon {
  right: 5px;
}

.tagCloud li a {
  color: #fff;
  font-weight: 100;
  text-decoration: none;
}

.tagcloud a {
  color: #808080;
  border: 1px solid #808080;
  border-radius: 25px;
  padding: 2%;
  margin-bottom: 5%;
  display: inline-block;
}

.entry {
  line-height: 1.8;
  letter-spacing: 0.15em;
  float: none;
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}
.entry figcaption {
  font-size: 13px;
  color: gray;
}
.entry a {
  display: inline;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
  color: #33bad4;
}
.entry blockquote {
  padding: 2em 4em;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  color: #7b7b7b;
  background-color: #f6f7f9;
  font-style: italic;
  margin-bottom: 1.5em;
}
.entry blockquote p {
  font-size: 14px;
}
.entry strong {
  font-style: normal;
  font-weight: bold;
  background: linear-gradient(transparent 40%, #fff7c0 40%);
}
.entry p {
  margin: 0.5em 0 1.3em 0;
  line-height: 2;
  letter-spacing: 0.2em;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .entry p {
    font-size: 14px;
    line-height: 1.9;
  }
}
.entry h2 span,
.entry h3 span,
.entry h4 span,
.entry h5 span {
  font-weight: bold;
}
.entry h2 {
  font-size: 21px;
  margin: 8% auto 3%;
  background-color: #f2f2f2;
  padding: 0.5em 1em;
  border-radius: 3px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .entry h2 {
    font-size: 18px;
    margin: 12% auto 6%;
  }
}
.entry h3 {
  position: relative;
  padding-bottom: 0.3em;
  border-bottom: 1.5px solid #ccc;
  font-size: 18px;
  margin: 4% auto 3%;
  color: #23ABAF;
  font-weight: bold;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    font-size: 16px;
    padding-bottom: 0.5em;
    margin: 12% auto 6%;
  }
}
.entry h3::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 3px;
  background-color: #23ABAF;
}
.entry h4 {
  margin: 3% auto 3%;
  border-bottom: 1px solid #23ABAF;
  padding-bottom: 0.4em;
  color: #23ABAF;
  font-weight: bold;
  font-size: 18px;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .entry h4 {
    margin: 15% auto 8%;
  }
}
.entry table td:nth-child(1) {
  background-color: #f7f6f9;
  font-weight: bold;
  color: #515151;
}
.entry table th,
.entry table td {
  padding: 2rem 3rem;
}
@media only screen and (max-width: 767px) {
  .entry table th,
  .entry table td {
    padding: 1rem 2rem;
    width: 100%;
    display: block;
    border-bottom: 1px solid #dad8de;
  }
}
.entry table tr {
  border-bottom: 1px solid #dad8de;
}
@media only screen and (max-width: 767px) {
  .entry table tr {
    border-bottom: none;
  }
}
.entry table tr:first-child {
  border-top: 1px solid #dad8de;
}
.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 6 Pro";
  content: "\f14a";
  color: #23ABAF;
  position: absolute;
  left: 0;
  font-weight: 400;
}

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

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

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

.toc_list li:before {
  display: none;
}

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

.toc_toggle {
  font-size: 14px;
}

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

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

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

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

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

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

.lkc-info {
  background-color: #23ABAF;
  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-top: 5%;
}

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

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

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

.singleColumnShareButton {
  padding: 0.7rem 1rem;
  width: 20%;
  margin-right: 3%;
  text-align: center;
  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 #23ABAF;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    padding: 8%;
    margin: 12% 0 6% 0;
  }
}

.singleColumnWriterTitle {
  border-bottom: 1px solid #23ABAF;
}

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

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

/*次のページを見る*/
.singleColumnPreNextBox {
  position: relative;
  transition: 0.3s;
  background-color: #23ABAF;
  border-radius: 3px;
  position: relative;
}
.singleColumnPreNextBox.pre {
  margin-right: 1.5%;
}
.singleColumnPreNextBox.next {
  margin-left: 1.5%;
}
.singleColumnPreNextBox a {
  padding: 5%;
  display: block;
  text-align: center;
  color: #fff;
}

.singleClumnPreNextDescri {
  color: #727171;
}

.singleColumnPrevNextArrow {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 33px;
  height: 1px;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .singleColumnPrevNextArrow {
    width: 22px;
  }
}
.singleColumnPrevNextArrow::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 2px;
  width: 1px;
  height: 5px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(45deg);
}
.next .singleColumnPrevNextArrow {
  transform: scale(-1, 1);
  left: 15px;
  right: auto;
}
.singleColumnPrevNextArrow.arwPre {
  left: 15px;
  top: 50%;
}
.singleColumnPrevNextArrow.arwNext {
  left: auto;
  right: 15px;
  top: 50%;
}

/*アーカイブページ------------------------------------*/
.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: 16px;
  line-height: 1.4;
  border-bottom: 1px solid #808080;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .cmNewsTitle {
    font-size: 16px;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
  }
}

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

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

.cmNewsListImgWrap {
  overflow: hidden;
  margin-bottom: 4%;
}

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

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

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

span.page-numbers {
  color: #23ABAF;
  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 a {
  transition: 0.3s;
}
.sidebarNewsUl .cat-item a:hover {
  opacity: 0.7;
}
.sidebarNewsUl .cat-item .date {
  font-family: var(--fontNum);
  font-size: 12px;
  color: #b3b3b3;
}
.sidebarNewsUl .cat-item .title {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .sidebarNewsUl .cat-item {
    padding-bottom: 0.25em;
    margin-bottom: 0.25em;
  }
}

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

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

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

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

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

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

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

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*==================================================
 * 全サイト共通
 *================================================*/
/*共通部分*/
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.font-b {
  font-weight: 600;
}

.font-l {
  font-weight: 400;
}

@media print, screen and (min-width: 768px) {
  [data-sp] {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  [data-pc] {
    display: none;
  }
}
.eng {
  font-family: "Hind", sans-serif;
}

.gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

body {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-feature-settings: "palt";
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #4d4d4d;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
}
body.open {
  height: 100%;
  overflow: hidden;
}

.text {
  font-size: clamp(14px, 11.01px + 0.39vw, 16px);
}

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

/* fadeUp */
.fade {
  opacity: 0;
  transition: 1.5s;
}
.fade.run {
  opacity: 1;
  transform: translateY(0);
}
.fade.delay-1 {
  transition-delay: 0.2s;
}
.fade.delay-2 {
  transition-delay: 0.4s;
}
.fade.delay-3 {
  transition-delay: 0.6s;
}
.fade.delay-4 {
  transition-delay: 0.8s;
}
.fade.delay-5 {
  transition-delay: 1s;
}

.fadeBox .fadeBoxChild {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.78, 0.18, 0.34, 0.98), opacity 0.8s cubic-bezier(0.78, 0.18, 0.34, 0.98);
}
.fadeBox .fadeBoxChild:nth-of-type(2) {
  transition-delay: 0.3s;
}
.fadeBox .fadeBoxChild:nth-of-type(3) {
  transition-delay: 0.6s;
}
.fadeBox .fadeBoxChild:nth-of-type(4) {
  transition-delay: 0.9s;
}
.fadeBox .fadeBoxChild:nth-of-type(5) {
  transition-delay: 1.2s;
}
.fadeBox.run .fadeBoxChild {
  opacity: 1;
}

.fade {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.78, 0.18, 0.34, 0.98), opacity 0.8s cubic-bezier(0.78, 0.18, 0.34, 0.98);
}
.fade.run {
  opacity: 1;
}

.cmnTtl {
  text-align: center;
}
.cmnTtl .en {
  font-size: 32px;
  letter-spacing: 0.16em;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .cmnTtl .en {
    font-size: 22px;
  }
}
.cmnTtl .ja {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .cmnTtl .ja {
    font-size: 15px;
  }
}

/* header */
header.hidden,
.header__btn.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

header {
  position: relative;
  z-index: 999;
  transition: 1s;
  transition-timing-function: cubic-bezier(0.705, 0.17, 0.325, 0.925);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  width: 100%;
  justify-content: space-between;
  transition: 0.5s;
}
@media print, screen and (min-width: 768px) {
  header.scrl {
    background-color: #133949;
  }
}
@media print, screen and (min-width: 768px) {
  header {
    padding: 25px 15px;
  }
  header.js_hide {
    transform: translateY(-100%);
  }
}
@media only screen and (min-width: 1281px) {
  header {
    padding: 25px 35px;
  }
}
@media only screen and (max-width: 959px) {
  header {
    padding: 15px;
    height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  header {
    height: 64px;
  }
}

.headerLogo {
  display: flex;
  align-items: center;
  width: 115px;
}
.headerLogo h1 {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .headerLogo {
    width: 0;
    z-index: -9999;
    position: relative;
  }
}

.headerInner {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}

.header__navi {
  display: flex;
  align-items: center;
  transition: 0.8s;
}
@media only screen and (min-width: 960px) {
  .header__navi {
    justify-content: flex-end;
  }
  .header__navi ul {
    display: flex;
    align-items: center;
  }
  .header__navi ul li a {
    transition: 0.3s;
    padding: 0 2em;
    white-space: nowrap;
    font-size: 14px;
    color: #fff;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1199px) {
  .header__navi ul li a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 960px) {
  .header__navi ul li a:hover {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .header__navi li:nth-of-type(2) {
    border-top: none;
  }
}
@media only screen and (max-width: 959px) {
  .header__navi {
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    left: 0;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    padding-top: 90px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .header__navi.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    z-index: 1;
  }
  .header__navi::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: rgba(19, 57, 73, 0.7);
    z-index: -1;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 959px) and (max-width: 767px) {
  .header__navi::before {
    width: 150%;
  }
}
@media only screen and (max-width: 959px) {
  .header__navi ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
  }
  .header__navi li + li {
    border-top: solid 1px #fff;
    border-left: none;
    padding-top: 1.3em;
    margin-top: 1.3em;
    display: block;
    width: 100%;
  }
  .header__navi li a {
    font-weight: 600;
    display: block;
    transition: 0.3s;
    font-size: 16px;
    color: #fff;
  }
  .header__navi li a:hover {
    opacity: 0.7;
  }
  .header__navi li.menu__contact {
    display: none;
  }
}

.header__btn {
  display: none;
}
@media only screen and (max-width: 959px) {
  .header__btn {
    display: block;
    position: fixed;
    width: 40px;
    height: 25px;
    right: 13px;
    top: 20px;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2;
  }
  .header__btn .inner {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .header__btn span {
    height: 1px;
    width: 100%;
    display: block;
    position: absolute;
    background-color: #f7f7f7;
    transition: 0.5s;
  }
  .header__btn span:first-of-type {
    top: 0;
  }
  .header__btn span:nth-of-type(2) {
    top: 12px;
  }
  .header__btn span:last-child {
    bottom: 0;
  }
  .header__btn.open span:first-of-type {
    transform: rotate(45deg);
    top: 9px;
  }
  .header__btn.open span:nth-of-type(2) {
    opacity: 0;
  }
  .header__btn.open span:last-of-type {
    transform: rotate(-45deg);
    bottom: 14px;
  }
}

@media only screen and (max-width: 959px) {
  body.open header {
    background-color: transparent;
  }
}
.bodyPage header {
  background-color: #133949;
}

.float-book {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 192px;
  z-index: 2;
  transition: none;
}
@media only screen and (max-width: 767px) {
  .float-book {
    width: 150px;
  }
}

footer {
  background-color: #133949;
  padding: 65px 0 30px;
  position: relative;
}
footer * {
  color: #fff;
}

.footerLogo {
  width: 230px;
  margin-left: 0;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .footerLogo {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footerInner {
    flex-direction: column;
    row-gap: 30px;
  }
}

.footerRight {
  width: 240px;
}
.footerRight .insta {
  display: flex;
  align-items: center;
}
.footerRight .insta img {
  margin-left: 0;
  margin-right: 0.4em;
}

.footerBook {
  background-color: #fff;
  padding: 1em 2em;
  color: #003234;
  width: 100%;
  display: block;
  text-align: center;
}

.footerMenu {
  display: flex;
  justify-content: space-between;
}
.footerMenu a {
  padding-bottom: 1em;
  display: block;
}

.copyright {
  background-color: #4D4D4D;
  color: #fff;
  font-family: "Hind", sans-serif;
  text-align: center;
  padding: 1.6em 15px;
}

/*==================================================
 * TOP
*================================================*/
main {
  overflow-x: hidden;
}

.bgGray {
  background-color: #f6f6f6;
}

.sBlock {
  overflow: hidden;
}

.fv {
  height: 100vh;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .fv {
    height: 80vh;
  }
}
@media only screen and (max-width: 767px) {
  .fv .inner {
    height: 80vh;
  }
  .fv .inner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.fv .swiper-slide-active .inner,
.fv .swiper-slide-duplicate-active .inner,
.fv .swiper-slide-prev .inner {
  animation: zoomUp 7s linear 0s normal both;
}
.fv .swiper-slide img {
  height: auto;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .fv .swiper-slide img {
    height: 80vh;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.sMain {
  position: relative;
}
.sMain .swiper-slide {
  height: 100%;
}
.sMain .swiper-slide .inner {
  height: 100%;
}
.sMain .swiper-slide .inner .img {
  height: 100%;
  aspect-ratio: 800/535;
}
.sMain .swiper-slide .inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sMain .swiper-slide .inner .sCap {
  text-align: right;
}

.sThumbs {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 5px;
       column-gap: 5px;
  row-gap: 5px;
}
.sThumbs > * {
  width: calc(12.5% - 4.375px);
  opacity: 0.5;
  transition: 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .sThumbs > * {
    width: calc(20% - 4px);
  }
}
.sThumbs > * img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sThumbs > *.sThumb-active {
  opacity: 1;
}

.spaceMap {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .spaceMap {
    flex-direction: column-reverse;
  }
}
.spaceMap .img {
  width: 67.5%;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .spaceMap .img {
    width: 100%;
  }
}

#faci .sBlock {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  #faci .sBlock {
    flex-direction: column;
  }
}
#faci .sBlock .sMain {
  width: 62.5%;
  flex-shrink: 0;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  #faci .sBlock .sMain {
    width: 100%;
  }
}
#faci .sBlock .sMain > * .img {
  aspect-ratio: 500/335;
}
#faci .sBlock .sMain > * img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
#faci .sBlock .sThumbs > * {
  width: calc(33.3333333333% - 3.3333333333px);
  aspect-ratio: 95/64;
}

.faciMenu {
  background-color: #f6f6f6;
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  .faciMenu {
    padding: 0 15px;
  }
}
.faciMenu table th {
  white-space: nowrap;
  text-align: left;
  padding-right: 1.5em;
}
.faciMenu table tr + tr {
  border-top: solid 1px #9d9d9d;
}
.faciMenu table tr th,
.faciMenu table tr td {
  padding-top: 2em;
  padding-bottom: 2em;
}
@media only screen and (max-width: 767px) {
  .faciMenu table tr th,
  .faciMenu table tr td {
    display: block;
    width: 100%;
  }
  .faciMenu table tr th {
    padding-bottom: 0;
  }
  .faciMenu table tr td {
    padding-top: 5px;
  }
}

.infoTable th {
  text-align: left;
  padding-right: 2em;
  white-space: nowrap;
}
.infoTable th,
.infoTable td {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.infoTable th a,
.infoTable td a {
  text-decoration: underline;
}
.infoTable table tr th,
.infoTable table tr td {
  padding-top: 0;
  padding-bottom: 0;
}
.infoTable table tr th {
  padding-right: 1em;
}

#access dl dt {
  border-bottom: solid 1px #878787;
}
#access dl dd .child {
  padding-left: 2em;
  margin-top: 1em;
}

.bodyPage.--fv header {
  background-color: transparent;
}
.bodyPage.--fv header.scrl {
  background-color: #003234;
}
.bodyPage.--fv main.page {
  padding-top: 0;
}

main.page {
  padding: 170px 0 150px;
}
@media only screen and (max-width: 767px) {
  main.page {
    padding: 120px 0 100px;
  }
}

.galleryMain,
.gallerySub {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
}
@media only screen and (max-width: 767px) {
  .galleryMain,
  .gallerySub {
    -moz-column-gap: 5px;
         column-gap: 5px;
    row-gap: 5px;
  }
}

.galleryMain > * {
  width: calc(50% - 5px);
}
@media only screen and (max-width: 767px) {
  .galleryMain > * {
    width: calc(50% - 2.5px);
  }
}

.gallerySub {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .gallerySub {
    margin-top: 5px;
  }
}
.gallerySub > * {
  width: calc(33.3333333333% - 6.6666666667px);
}
@media only screen and (max-width: 767px) {
  .gallerySub > * {
    width: calc(33.3333333333% - 3.3333333333px);
  }
}

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

.fancybox-navigation .fancybox-button {
  background-color: transparent;
}
.fancybox-navigation .fancybox-button div {
  background: transparent;
  border: solid 1px #fff;
  border-radius: 100px;
}

.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1/1;
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 20px;
    height: 20px;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  margin: auto;
  width: 100%;
  height: 100%;
}

.swiper-button-prev::after {
  background-image: url(../img/ic-arw-prev.svg);
}

.swiper-button-next::after {
  background-image: url(../img/ic-arw-next.svg);
}

.descUl li {
  padding-left: 0.7em;
  text-indent: -0.7em;
}

.loader-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #133949;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ローディングアニメーション */
.companyBlock {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.companyBlock .en {
  font-size: 60px;
  color: #ededee;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(60%);
  letter-spacing: 0.15em;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .companyBlock .en {
    font-size: 40px;
    transform: translateY(100%);
  }
}
.companyBlock .en.--deep {
  color: #b3b3b4;
}

.companyImg {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .companyImg {
    flex-wrap: wrap;
  }
}
.companyImg > div {
  height: 230px;
}
@media only screen and (max-width: 767px) {
  .companyImg > div {
    height: auto;
  }
}
.companyImg > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.companyImg > div:first-of-type {
  width: 45.625%;
}
@media only screen and (max-width: 767px) {
  .companyImg > div:first-of-type {
    width: 100%;
  }
}
.companyImg > div:nth-of-type(2) {
  width: 27.1875%;
}
@media only screen and (max-width: 767px) {
  .companyImg > div:nth-of-type(2) {
    width: 50%;
  }
}
.companyImg > div:last-of-type {
  width: 27.1875%;
}
@media only screen and (max-width: 767px) {
  .companyImg > div:last-of-type {
    width: 50%;
  }
}

.toCorp {
  border: solid 1px #3e3a39;
  padding: 0.8em 1.8em;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .pageFv {
    aspect-ratio: 1/1;
  }
  .pageFv img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.comLogoFlex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .comLogoFlex {
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
  }
  .comLogoFlex img:first-of-type {
    width: 168px;
  }
  .comLogoFlex img:last-of-type {
    width: 116px;
  }
}

.contactForm th {
  width: 260px;
  padding-right: 10px;
  vertical-align: top;
}
.contactForm th .inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 1.3em;
}
@media only screen and (max-width: 767px) {
  .contactForm th .inner {
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .contactForm th {
    padding-left: 0;
    width: 100%;
  }
}
.contactForm th .required-srt {
  color: #e63828;
  font-size: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .contactForm th .required-srt {
    margin-top: 0;
  }
}
.contactForm td .textFlex {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .contactForm td .textFlex {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contactForm td .textFlex > div {
  display: flex;
  align-items: center;
}
.contactForm td .textFlex > div + div {
  margin-left: 2.5em;
}
@media only screen and (max-width: 767px) {
  .contactForm td .textFlex > div + div {
    margin-left: 0;
    margin-top: 0.5em;
  }
}
.contactForm td .textFlex span {
  flex-shrink: 0;
  width: 40px;
}
.contactForm td .textFlex.--error {
  flex-wrap: wrap;
}
.contactForm td .textFlex.--error span {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 1em;
}
@media only screen and (max-width: 767px) {
  .contactForm th,
  .contactForm td {
    width: 100%;
    display: block;
  }
  .contactForm th {
    padding-top: 1.5em;
  }
}

.sendBtnWrap {
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.sendBtnWrap * {
  cursor: pointer;
  transition: 0.3s;
  color: #4d4d4d;
}
.sendBtnWrap *:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .sendBtnWrap {
    flex-direction: column;
  }
}
.sendBtnWrap .submit-btn {
  display: flex;
  justify-content: center;
}

.mw_wp_form_input .goback {
  display: none;
}

.mw_wp_form_confirm td .textFlex span,
.mw_wp_form_confirm .required-srt {
  display: none !important;
}

/* ==========================================================================
   印刷用
   ========================================================================== */
/* -------------------------------------------------------------- 
 
 Hartija CSS Print Framework -MIT License
   * Version:   1.0
 
-------------------------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
    /*chrome用*/
    zoom: 0.8;
    border-top: none;
  }
  .bgImg {
    display: list-item; /* 該当箇所の表示方法をlist-itemに */
    list-style-image: url(print_bg.png); /* 表示させたい画像 */
    list-style-position: inside; /* マーカーの位置を内側に */
  }
  header {
    display: none;
  }
  footer {
    display: none;
  }
  .footerTelSp {
    display: none;
  }
  .menu-btn {
    display: none;
  }
  .fixBar {
    display: none !important;
  }
  .parallax-mirror {
    display: none;
    height: 0 !important;
  }
  .rellax {
    transform: none !important;
  }
  .PrintHidden {
    display: none;
  }
  .printArea {
    margin: 0;
    padding: 0;
  }
}/*# sourceMappingURL=import.css.map */