@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: #060842;
  --subColor: #d4fc32;
}

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

.subColorDeep {
  color: #e3e3fb;
}

.bgSubColorDeep {
  background-color: #e3e3fb;
}

.bgSubColorLight {
  background-color: #ff6f00;
}

.compColor {
  color: #ecfe02;
}

.bgCompColor {
  background-color: #ecfe02;
}

.grayColor {
  color: #dedede;
}

.bgGrayColor {
  background-color: #dedede;
}

.grayColorLight {
  color: #dcdcdc;
}

.bgGrayColorLight {
  background-color: #dcdcdc;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

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

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

.bgBlack {
  background: #000;
}

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

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

.grayLight {
  color: #9a9a9a;
}

/*フォント系*/
: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 {
  color: #1f1f1f;
  font-family: var(--fontJp);
}

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

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

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

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

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 {
  -webkit-transition: 0.3s;
  background: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  transition: 0.3s;
  vertical-align: baseline;
}
a:hover {
  opacity: 0.7;
}
a.notOp:hover {
  opacity: 1;
}

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

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

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
  border: 0;
  border-top: 1px solid #cccccc;
  display: block;
  height: 1px;
  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 {
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
  margin-top: 0;
}

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

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

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

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

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

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

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

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

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

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

.ls_xl {
  letter-spacing: 0.3em;
}

.ls_l {
  letter-spacing: 0.2em;
}

.ls_m {
  letter-spacing: 0.1em;
}

.ls_s {
  letter-spacing: 0.05em;
}

.ls_xs {
  letter-spacing: 0.01em;
}

.ls_0 {
  letter-spacing: 0;
}

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

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

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

.thin {
  font-weight: 100;
}

.nowrap {
  white-space: nowrap;
}

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

.black {
  color: #000;
}

.gray {
  color: #686868;
}

.red {
  color: #ff4501 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h000 {
  font-size: 100px;
}

.h00 {
  font-size: 64px;
}

.h0 {
  font-size: 42px;
}

.h1 {
  font-size: 32px;
}

.h2 {
  font-size: 28px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 16px;
}

.text_m {
  font-size: 14px;
}

.text_sm {
  font-size: 13px;
}

.text_s {
  font-size: 12px;
}

.text_ss {
  font-size: 10px;
}

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

html,
body {
  width: 100%;
}

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

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

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

hr {
  margin: 10px auto;
}

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

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

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

.inlineBlockUl li {
  display: inline-block;
}

.disNone {
  display: none !important;
}

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

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

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

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

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

.p0 {
  padding: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

.ml0 {
  margin-left: 0;
}

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

.mbL {
  margin-bottom: 30%;
}

.mbL2 {
  margin-bottom: 25%;
}

.mbL3 {
  margin-bottom: 20%;
}

.mbL4 {
  margin-bottom: 15%;
}

.mbM {
  margin-bottom: 10%;
}

.mbM2 {
  margin-bottom: 7.5%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS3 {
  margin-bottom: 1%;
}

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

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

.justEnd {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.justBetween {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.alignCenter {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.alignStart {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.alignEnd {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flexReverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.flexWrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
}

.flexCol {
  width: 100%;
}

.col1 {
  width: 100%;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 33.3333%;
}

.col-3 {
  width: 66.6666%;
}

.col4 {
  width: 25%;
}

.col-4 {
  width: 75%;
}

.col5 {
  width: 20%;
}

.col-5 {
  width: 80%;
}

.col6 {
  width: 16.666%;
}

.col-6 {
  width: 83.333%;
}

.col3-2 {
  width: 60%;
}

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

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

.w100 {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.pb0 {
  padding-bottom: 0;
}

.pt0 {
  padding-top: 0;
}

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

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

.ml0 {
  margin-left: 0;
}

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

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

.none {
  display: none;
}

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

.bgImgHeight {
  padding-bottom: 67%;
}

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

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

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

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

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

.bgWhite {
  background-color: #ffffff;
}

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

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

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

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

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

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

.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;
  left: -100%;
  margin-bottom: 0.25em;
  overflow: hidden;
  position: relative;
}

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

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

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

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

.radiusMax {
  border-radius: 1000px;
}

.ofH {
  overflow: hidden;
}

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

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

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

.shadowLL {
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

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

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

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

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

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

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

.mainImg:nth-of-type(6) {
    animation-delay: 30s;
}
*/
@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  /*3秒：フェードイン.3/alls*/
  16% {
    opacity: 1;
  }
  /*6秒：次のスライド再生.6/alls*/
  33% {
    opacity: 1;
  }
  /*9秒：フェードアウト&次のスライドフェードイン*/
  50% {
    -webkit-transform: scale(1.2);
    opacity: 0;
    transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  /*3秒：フェードイン.3/alls*/
  16% {
    opacity: 1;
  }
  /*6秒：次のスライド再生.6/alls*/
  33% {
    opacity: 1;
  }
  /*9秒：フェードアウト&次のスライドフェードイン*/
  50% {
    -webkit-transform: scale(1.2);
    opacity: 0;
    transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
/*FVスライダー(CSS)ここまで*/
/*==================================================
 * 独自クラス（このサイトだけ）
 *================================================*/
/*線系*/
.titleLine {
  display: inline-block;
  /*
    background: linear-gradient(transparent 50%, #f4d862 0%);
    display: inline;
    */
  position: relative;
  z-index: 10;
  /*
    &.white{
        background: linear-gradient(transparent 70%, $subColorDeep 0%);
    }
    */
}
.titleLine:after {
  background-color: #ecfe02;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 0.3em;
  left: -2.5%;
  position: absolute;
  width: 105%;
  z-index: 0;
}
.titleLine.sub {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, var(--subColor)));
  background: -webkit-linear-gradient(transparent 70%, var(--subColor) 0%);
  background: linear-gradient(transparent 70%, var(--subColor) 0%);
}

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

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

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

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

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

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

html.open {
  overflow: hidden;
}

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

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

:root {
  --menuTrigeHeight: 31px;
}

.menu-trigger {
  height: var(--menuTrigeHeight);
  position: relative;
  width: 42px;
}
.menu-trigger span {
  background-color: var(--subColor);
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  -webkit-transform: translateY(-50%);
  top: calc(var(--menuTrigeHeight) / 2);
  transform: translateY(-50%);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span {
  background-color: var(--mainColor);
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  -webkit-animation: active-menu-bar02 0.8s forwards;
  animation: active-menu-bar02 0.8s forwards;
  left: 50%;
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
  bottom: 6px;
  transform: translateY(-11px) rotate(45deg);
}
.menu-trigger.active span:nth-of-type(4) {
  background: none !important;
}

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
/*------------モーダルウィンドウ終わり------------*/
/*==================================================
 * footer
 *================================================*/
/*スマホfooter追従問い合わせ*/
.footerTelSpFlexLi {
  background-color: #a9946c;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  width: 50%;
}
.footerTelSpFlexLi:last-child {
  background-color: var(--mainColor);
  border-right: none;
}
.footerTelSpFlexLi a {
  display: block;
  padding: 9px 0;
}
.footerTelSpFlexLi a i {
  font-size: 16px;
}

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

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

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

.fixBar {
  bottom: 2%;
  position: fixed;
  right: 2%;
  z-index: 10;
}
.fixBar .button {
  border: 1px solid var(--mainColor);
  padding: 0.7rem 3rem;
}

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

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

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

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

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

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

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

.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) {
  margin-right: 2%;
  width: 8%;
}

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

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

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

.contactTelIcon {
  margin-right: 0.4em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.toc_list li:before {
  display: none;
}

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

.toc_toggle {
  font-size: 14px;
}

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

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

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

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

/*リンクカードプラグイン*/
.lkc-title-text {
  -webkit-transition: 0.3s;
  font-weight: normal;
  letter-spacing: 0.15em;
  transition: 0.3s;
}
a:hover .lkc-title-text {
  color: var(--mainColor);
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .lkc-title-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

.lkc-excerpt {
  display: none;
}

.lkc-url {
  display: none;
}

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

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

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

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

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

.lkc-info {
  background-color: var(--mainColor);
  border-radius: 5px;
  display: inline-block !important;
  padding: 0.5em 1em;
  position: absolute;
  right: 3%;
  top: -5%;
  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 {
  height: inherit !important;
  overflow: auto !important;
}

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

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

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

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

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

.singleColumnArticleContent {
  margin-top: 5%;
}

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

.singleColumnInfoUl .date {
  font-family: var(--fontNum);
  font-size: 12px;
  margin-right: 1em;
}
.singleColumnInfoUl .cateUl {
  display: inline-block;
}
.singleColumnInfoUl .cateUl li {
  background-color: var(--mainColor);
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 0.6em 0.8em;
}
@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 {
  -webkit-transition: 0.3s;
  margin-right: 3%;
  padding: 0.7rem 1rem;
  text-align: center;
  transition: 0.3s;
  width: 20%;
}
@media only screen and (max-width: 959px) {
  .singleColumnShareButton {
    margin-right: 2.5%;
    width: 45%;
  }
}
.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 {
    margin-bottom: 6% !important;
    width: 100%;
  }
}

/*この記事を書いた人*/
.singleColumnWriterImg {
  border-radius: 50%;
  padding-bottom: 100%;
}

@media only screen and (max-width: 767px) {
  .singleColumnWriterImgBox {
    margin-bottom: 4%;
    margin-left: auto;
    margin-right: auto;
    max-width: 140px;
  }
}

.singleColumnWriter {
  border: 1px solid var(--mainColor);
  margin: 6% 0 6% 0;
  padding: 3% 3%;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    margin: 12% 0 6% 0;
    padding: 8%;
  }
}

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

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

.sidebarWriterSns li {
  display: inline-block;
  margin-bottom: 4%;
  margin-right: 3%;
}
.sidebarWriterSns li a {
  background: #fff;
  border: 1px solid #d2d2d2;
  border-radius: 35px;
  letter-spacing: 0.05em;
  padding: 0.4em 1em;
}
.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 {
  -webkit-transition: 0.3s;
  background-color: #ececec;
  border-radius: 10px;
  padding: 5%;
  position: relative;
  transition: 0.3s;
}
.singleColumnPreNextBox.pre {
  margin-right: 1.5%;
}
.singleColumnPreNextBox.next {
  margin-left: 1.5%;
}

.singleClumnPreNextDescri {
  color: #727171;
}

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

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

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

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

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

.cmNewsListImg {
  -webkit-transition: 0.3s;
  background-position: center;
  background-size: cover;
  padding-bottom: 70%;
  transition: 0.3s;
}
a:hover .cmNewsListImg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

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

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

/*Pagenation*/
.pagenation {
  margin: 1em 0;
}
.pagenation ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
.pagenation li {
  background: var(--mainColor);
  color: #fff;
  font-family: var(--fontEn);
  font-size: 18px;
  margin: 0 1%;
}
.pagenation li.active {
  background: #f2f2f2;
  color: #000;
  cursor: not-allowed;
  padding: 0.5em 1em;
}
.pagenation li.prev {
  display: none;
}
.pagenation li.next {
  display: none;
}
.pagenation li a {
  -webkit-transition: 0.3s;
  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: var(--mainColor);
  font-weight: bold;
}

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

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

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

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

.sidebarCategoryBlock li {
  display: inline-block;
  margin-bottom: 1em;
}
.sidebarCategoryBlock li a {
  -webkit-transition: 0.3s;
  background-color: var(--mainColor);
  background-color: #fff;
  border-radius: 5px;
  color: #fff;
  color: var(--mainColor);
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 0.6em 0.8em;
  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 {
  border-bottom: 1px solid;
  color: #fff;
  font-family: "Syncopate", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  .sidebarTitle {
    margin-bottom: 1em;
    padding-bottom: 0.25em;
  }
}

.sidebarRankingImg {
  border-radius: 5px;
  margin-right: 5%;
  padding-bottom: 30%;
  width: 30%;
}
@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%;
  color: var(--mainColor);
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  right: 10px;
  text-align: center;
  top: 10px;
  width: 30px;
}

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

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

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

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

body {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

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

.cmnEn {
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  padding-left: 22px;
  position: relative;
}
.cmnEn::before {
  -webkit-transform: translateY(-50%);
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 100px;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
}
.cmnEn.--orange::before {
  background-color: var(--subColor);
}
.cmnEn.--blue::before {
  background-color: var(--mainColor);
}

.cmnTtl {
  font-size: clamp(
    30px,
    3.088px + 3.509vw,
    48px
  );
  font-weight: 700;
  line-height: 1.2;
}
.cmnTtl span {
  font-size: clamp(
    50px,
    -24.756px + 9.747vw,
    100px
  );
  font-weight: 700;
  line-height: 1.2;
}
.cmnTtl.--fsS span {
  font-size: clamp(
    32px,
    -15.844px + 6.238vw,
    64px
  );
}

.cmnbtn {
  background-color: #fff;
  border: solid 1px var(--mainColor);
  border-radius: 100vw;
  display: inline-block;
  font-size: 14px;
  min-width: 160px;
  padding: 0.5em 1em;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.cmnbtn::before {
  -webkit-transform: translateY(-50%);
  background: url(../img/ic-ku.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 13px;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
@media only screen and (max-width: 767px) {
  .cmnbtn {
    max-width: 320px;
  }
}

#aboutNumber {
  background-color: #f0f0f0;
  position: relative;
}
#aboutNumber::before, #aboutNumber::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
}
#aboutNumber::before {
  -webkit-transform: translateY(-100%);
  aspect-ratio: 2560/676;
  background: url(../img/aboutNum1.png) no-repeat center/cover;
  left: 0;
  top: 1px;
  transform: translateY(-100%);
}
#aboutNumber::after {
  -webkit-transform: translateY(100%);
  aspect-ratio: 2560/474;
  background: url(../img/aboutNum2.png) no-repeat center/cover;
  bottom: 1px;
  left: 0;
  transform: translateY(100%);
}

.aboutNumP {
  aspect-ratio: 2560/676;
  width: 100%;
}

.aboutNumP2 {
  aspect-ratio: 2560/474;
  width: 100%;
}

.aboutNumFlex {
  -ms-flex-wrap: wrap;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 30px;
  row-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .aboutNumFlex {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
  }
}
.aboutNumFlex > * {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 2em 5px;
  position: relative;
  width: calc(33.3333333333% - 20px);
}
@media only screen and (max-width: 767px) {
  .aboutNumFlex > * {
    border-radius: 20px;
  }
}
.aboutNumFlex > *::before {
  content: "";
  display: block;
  position: absolute;
}
.aboutNumFlex > * > * {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .aboutNumFlex > * {
    width: calc(50% - 7.5px);
  }
}
.aboutNumFlex > *:nth-of-type(1) {
  border: solid 1px var(--mainColor);
}
.aboutNumFlex > *:nth-of-type(1) * {
  color: var(--mainColor);
}
.aboutNumFlex > *:nth-of-type(2) {
  border: solid 1px #ff521c;
}
.aboutNumFlex > *:nth-of-type(2) * {
  color: #ff521c;
}
.aboutNumFlex > *:nth-of-type(3) {
  border: solid 1px #00b473;
}
.aboutNumFlex > *:nth-of-type(3) * {
  color: #00b473;
}
.aboutNumFlex > *:nth-of-type(4) {
  border: solid 1px #00b473;
}
.aboutNumFlex > *:nth-of-type(4) * {
  color: #00b473;
}
.aboutNumFlex > *:nth-of-type(5) {
  border: solid 1px #ff4566;
}
.aboutNumFlex > *:nth-of-type(5) * {
  color: #ff4566;
}
.aboutNumFlex > *:nth-of-type(6) {
  border: solid 1px #fd9800;
}
.aboutNumFlex > *:nth-of-type(6) * {
  color: #fd9800;
}
.aboutNumFlex > *:nth-of-type(1)::before {
  aspect-ratio: 323/340;
  background: url(../img/num1.png) no-repeat top left/contain;
  left: 0;
  top: 0;
  width: 50%;
}
.aboutNumFlex > *:nth-of-type(2)::before {
  aspect-ratio: 234/280;
  background: url(../img/num2.png) no-repeat right bottom/contain;
  bottom: 0;
  right: 0;
  width: 54.6875%;
}
.aboutNumFlex > *:nth-of-type(3)::before {
  aspect-ratio: 378/184;
  background: url(../img/num3.png) no-repeat right top/contain;
  right: 0;
  top: 0;
  width: 59.0625%;
}
.aboutNumFlex > *:nth-of-type(4)::before {
  aspect-ratio: 300/328;
  background: url(../img/num4.png) no-repeat left top/contain;
  left: 0;
  top: 0;
  width: 46.875%;
}
.aboutNumFlex > *:nth-of-type(5)::before {
  aspect-ratio: 333/206;
  background: url(../img/num5.png) no-repeat left top/contain;
  bottom: 0;
  right: 0;
  width: 51.5625%;
}
.aboutNumFlex > *:nth-of-type(6)::before {
  aspect-ratio: 271/426;
  background: url(../img/num6.png) no-repeat left top/contain;
  left: 0;
  top: 0;
  width: 42.1875%;
}
.aboutNumFlex .num {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

#aboutCompany {
  position: relative;
}
#aboutCompany::before, #aboutCompany::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
}
#aboutCompany::before {
  aspect-ratio: 480/613;
  background-image: url(../img/orn-topFaq1.png);
  left: 0;
  top: 5%;
  width: clamp(
    100px,
    -109.318px + 27.29vw,
    240px
  );
}
#aboutCompany::after {
  -webkit-transform: translateY(-20%);
  aspect-ratio: 553/624;
  background-image: url(../img/orn-topFaq2.png);
  right: 5%;
  top: 0;
  transform: translateY(-20%);
  width: clamp(
    100px,
    -80.91px + 23.587vw,
    221px
  );
}
#aboutCompany .inner {
  position: relative;
}
#aboutCompany .inner::before, #aboutCompany .inner::after {
  background: url(../img/aboutCompany1.png) no-repeat center/contain;
  content: "";
  display: block;
  position: absolute;
}
#aboutCompany .inner::before {
  aspect-ratio: 662/1182;
  background: url(../img/aboutCompany1.png) no-repeat center/contain;
  bottom: 0;
  right: 0;
  width: clamp(
    150px,
    -119.123px + 35.088vw,
    330px
  );
}
#aboutCompany .inner::after {
  -webkit-transform: translateY(30%);
  aspect-ratio: 820/1182;
  background: url(../img/aboutCompany2.png) no-repeat center/contain;
  bottom: 0;
  left: 0;
  transform: translateY(30%);
  width: clamp(
    200px,
    -113.977px + 40.936vw,
    410px
  );
}
#aboutCompany .cmnTable {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #aboutCompany .cmnTable {
    width: calc(100% - 15px);
  }
}
@media only screen and (max-width: 767px) {
  #aboutCompany .cnt {
    padding-right: 0;
  }
}

.aboutCompanyFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .aboutCompanyFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.aboutCompanyFlex > * {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .aboutCompanyFlex > * {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .aboutCompanyFlex .cmnTable {
    padding-right: 15px;
  }
}
.aboutCompanyFlex .aboutCompanyPh {
  aspect-ratio: 550/800;
  max-height: 800px;
  position: absolute;
  right: 0;
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .aboutCompanyFlex .aboutCompanyPh {
    margin-left: auto;
    margin-right: 0;
    position: relative;
    width: 80%;
  }
}
.aboutCompanyFlex .aboutCompanyPh img {
  -o-object-fit: cover;
  border-radius: 80px 0 0 80px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

#aboutHistory {
  overflow-x: hidden;
}
#aboutHistory .scrollSlide {
  padding-left: calc((100vw - 1035px) / 2);
}
@media only screen and (max-width: 767px) {
  #aboutHistory .scrollSlide {
    padding-left: 15px;
  }
}

.scrollSlide .swiper-slide {
  padding-right: 15px;
}
.scrollSlide .pointBox {
  height: 80px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .scrollSlide .pointBox {
    height: 50px;
  }
}
.scrollSlide .pointBox::before, .scrollSlide .pointBox::after {
  content: "";
  display: block;
  position: absolute;
}
.scrollSlide .pointBox::before {
  -webkit-transform: translateY(-50%);
  aspect-ratio: 1/1;
  background-color: var(--subColor);
  border-radius: 100px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3em;
}
.scrollSlide .pointBox::after {
  background-color: var(--subColor);
  height: 1px;
  left: 0;
  top: 50%;
  width: 100vw;
}
.scrollSlide .inner {
  padding-bottom: 80px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .scrollSlide .inner {
    max-width: calc(100% - 15px);
  }
}
.scrollSlide .swiper-scrollbar {
  background-color: #4885ff;
  border-radius: 100px;
  height: 28px;
  left: 0;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .scrollSlide .swiper-scrollbar {
    width: 100%;
  }
}
.scrollSlide .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: var(--subColor);
  border-radius: 100px;
  height: 22px;
  margin-top: 2px;
  position: relative;
}
.scrollSlide .swiper-scrollbar .swiper-scrollbar-drag::before, .scrollSlide .swiper-scrollbar .swiper-scrollbar-drag::after {
  content: "";
  display: block;
  height: 6px;
  position: absolute;
  top: 50%;
  width: 4px;
}
.scrollSlide .swiper-scrollbar .swiper-scrollbar-drag::before {
  -webkit-transform: translateY(-50%);
  background: url(../img/ic-bar-arw-left.svg) no-repeat center/contain;
  left: 10px;
  transform: translateY(-50%);
}
.scrollSlide .swiper-scrollbar .swiper-scrollbar-drag::after {
  -webkit-transform: translateY(-50%) scale(-1, 1);
  background: url(../img/ic-bar-arw-left.svg) no-repeat center/contain;
  right: 10px;
  transform: translateY(-50%) scale(-1, 1);
}

#aboutOutline {
  background-color: #dedede;
  border-radius: 80px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #aboutOutline {
    border-radius: 40px;
  }
}
#aboutOutline::before, #aboutOutline::after {
  aspect-ratio: 95/1350;
  content: "";
  display: block;
  position: absolute;
  width: 94px;
}
#aboutOutline::before {
  background: url(../img/ourbusiness.png) no-repeat center/contain;
  left: 50px;
  top: 0;
}
#aboutOutline::after {
  -webkit-transform: scale(-1, -1);
  background: url(../img/ourbusiness.png) no-repeat center/contain;
  bottom: 0;
  right: 50px;
  transform: scale(-1, -1);
}

.blank {
  padding-right: 35px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .blank {
    padding-right: 22px;
  }
}
.blank::before {
  -webkit-transform: translateY(-50%);
  aspect-ratio: 1/1;
  background: url(../img/ic-blank.svg) no-repeat center/contain;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
}
@media only screen and (max-width: 767px) {
  .blank::before {
    width: 15px;
  }
}

.outlineFlex {
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  -ms-flex-wrap: wrap;
  column-gap: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
}
@media only screen and (max-width: 767px) {
  .outlineFlex {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
}
.outlineFlex > * {
  width: calc(50% - 30px);
}
@media only screen and (max-width: 767px) {
  .outlineFlex > * {
    width: 100%;
  }
}
.outlineFlex > * a:hover {
  color: var(--mainColor);
}
.outlineFlex > *:first-of-type {
  width: 100%;
}
.outlineFlex > *:first-of-type .img {
  border-radius: 40px;
}
@media only screen and (max-width: 767px) {
  .outlineFlex > *:first-of-type .img {
    border-radius: 20px;
  }
}
.outlineFlex .img {
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .outlineFlex .img {
    border-radius: 20px 20px 0 0;
  }
}
.outlineFlex .txt {
  background-color: #fff;
  border-radius: 0 0 40px 40px;
  padding: 40px;
}
@media only screen and (max-width: 767px) {
  .outlineFlex .txt {
    border-radius: 0 0 20px 20px;
    padding: 20px 15px;
  }
}
.outlineFlex table {
  color: var(--mainColor);
  font-weight: 700;
}
.outlineFlex table th,
.outlineFlex table td {
  text-align: left;
}
.outlineFlex table th {
  padding-right: 2em;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .outlineFlex table th,
  .outlineFlex table td {
    display: block;
    width: 100%;
  }
  .outlineFlex table th {
    margin-top: 0.5em;
  }
}

.cmnBlank {
  border-bottom: solid 1px var(--mainColor);
  color: var(--mainColor);
  font-size: 20px;
  font-weight: 700;
  padding-right: 35px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cmnBlank {
    font-size: 18px;
    padding-right: 25px;
  }
}
.cmnBlank::before {
  -webkit-transform: translateY(-50%);
  aspect-ratio: 1/1;
  background: url(../img/ic-blank.svg) no-repeat center/contain;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
}
@media only screen and (max-width: 767px) {
  .cmnBlank::before {
    width: 20px;
  }
}
.cmnBlank:hover {
  color: var(--mainColor);
}

.cmnTable th,
.cmnTable td {
  border-bottom: solid 1px #fff;
  padding-bottom: 1.2em;
  padding-top: 1.2em;
  text-align: left;
}
.cmnTable th {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .cmnTable th,
  .cmnTable td {
    display: block;
    width: 100%;
  }
  .cmnTable th {
    border-bottom: none;
    padding-bottom: 0.2em;
  }
  .cmnTable td {
    border-top: none;
    padding-top: 0;
  }
  .cmnTable tr:last-of-type th {
    border-bottom: none;
  }
  .cmnTable + .cmnTable tr:first-of-type th {
    border-top: none;
  }
}

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

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

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

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

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

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

/*==================================================
 * 当サイト共通
 *================================================*/
main {
  overflow: hidden;
}

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

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

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

.commonTitleSub {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 767px) {
  .commonTitleSub {
    font-size: 18px;
  }
}

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

.commonHead {
  font-size: 16px;
  font-weight: 500;
}
.commonHead.__m {
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  .commonHead.__m {
    font-size: 18px;
  }
}

.textBox.textBox__wide p {
  letter-spacing: 0.2em;
  line-height: 2.6;
}
.button {
  -webkit-transition: 0.3s;
  background-color: #fff;
  border-radius: 3em;
  display: inline-block;
  line-height: 1;
  padding: 1.7em 7em;
  position: relative;
  transition: 0.3s;
}
.button span {
  -webkit-transition: 0.3s;
  color: var(--mainColor);
  display: inline-block;
  font-family: var(--fontEn);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}
.button::after {
  -webkit-transform: translateY(-50%);
  -webkit-transition: 0.3s;
  background-image: url(.././img/button_arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 11px;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  width: 18px;
}
.button.__text {
  background-color: transparent;
  padding: 1em 3em 1em 0;
}
.button.__text::after {
  right: 0;
}
.button:hover {
  background-color: var(--mainColor);
}
.button:hover span {
  color: #fff;
}
.button:hover::after {
  background-image: url(.././img/button_arrow_white.svg);
}
.button:hover.__text {
  background-color: transparent;
  padding-right: 4em;
}
.button:hover.__text span {
  color: var(--subColor);
}
.button:hover.__text::after {
  background-image: url(.././img/button_arrow_sub.svg);
}
@media only screen and (max-width: 767px) {
  .button {
    padding: 1.4em 5em;
  }
  .button span {
    font-size: 14px;
  }
}

.en {
  font-family: "Syncopate", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
}

.firBlock {
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.firItemRight {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  row-gap: 60px;
  width: 100%;
}
.firItemRight .instagram {
  height: 100%;
  width: 62%;
}
@media only screen and (max-width: 767px) {
  .firItemRight .instagram {
    display: none;
    width: 100%;
  }
}

.firItem {
  background-color: #fff;
  border: solid 1px #050542;
  border-radius: 30px;
  padding: 30px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .firItem {
    border-left: none;
    border-radius: 0;
    border-right: none;
  }
}

.firTtl {
  -webkit-transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px;
  color: #050542;
  font-size: clamp(
    20px,
    14.019px + 0.78vw,
    24px
  );
  font-weight: 700;
  left: 50%;
  line-height: 1;
  padding: 0 0.2em;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .firTtl {
    border-radius: 5px;
  }
}
.firTtl.--fsL {
  font-size: clamp(
    30px,
    15.049px + 1.949vw,
    40px
  );
}
@media only screen and (max-width: 767px) {
  .firTtl.--fsL {
    font-size: 30px;
  }
}

.firFb {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  align-items: center;
  background-color: #fff;
  border: solid 1px var(--mainColor);
  border-radius: 20px;
  column-gap: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0.7em 2.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 767px) {
  .firFb {
    -webkit-column-gap: 0.5em;
    -moz-column-gap: 0.5em;
    border-radius: 10px;
    column-gap: 0.5em;
    padding: 0.5em 1em;
  }
}
.firFb * {
  color: var(--mainColor);
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .firFb * {
    font-size: 15px;
  }
}
.firFb .img {
  width: 45px;
}
@media only screen and (max-width: 767px) {
  .firFb .img {
    width: 30px;
  }
}

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

.relationFlex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-column-gap: 14px;
  -moz-column-gap: 14px;
  column-gap: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .relationFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 22px;
  }
}
.relationFlex .report,
.relationFlex .letter {
  border: solid 2px var(--mainColor);
}
.relationFlex .backnumber {
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1em;
}
@media only screen and (max-width: 767px) {
  .relationFlex .backnumber {
    padding-top: 0;
  }
}
.relationFlex .backnumber .backnumberBox {
  -ms-flex-wrap: wrap;
  -webkit-column-gap: 0.5em;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(
    10px,
    4.019px + 0.78vw,
    14px
  );
  height: 60px;
  overflow-y: scroll;
  padding: 0;
  row-gap: 0.5em;
  width: 60%;
}
.relationFlex .backnumber .backnumberBox > * {
  color: var(--mainColor);
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .relationFlex .backnumber .backnumberBox > * {
    font-size: 20px;
  }
}
.relationFlex .backnumber .backTtl {
  font-size: 13px;
  font-weight: 700;
}

.footerSNS {
  display: none;
}
@media only screen and (max-width: 767px) {
  .footerSNS {
    display: block;
    padding-bottom: 60px;
  }
  .footerSNS .firBlock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
  }
  .footerSNS .firBlock .firItemLeft,
  .footerSNS .firBlock .firItemRight {
    width: 100%;
  }
  .footerSNS .firBlock .firItemLeft,
  .footerSNS .firBlock .firItemRight .instagram {
    display: block;
  }
}
.footerSNS .fbWrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 340px;
}

.f-sns {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  align-items: center;
  column-gap: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .f-sns li {
    width: 25px;
  }
}

/*==================================================
 * ヘッダー
 *================================================*/
header {
  -webkit-transition: 0.3s;
  padding: 25px 0;
  position: fixed;
  transition: 0.3s;
  width: 100%;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  header {
    padding: 15px 0;
  }
}
header.pageHead .headerMenu li a,
header.pageHead .headerLogoWrap * {
  color: var(--mainColor);
}

@media only screen and (max-width: 767px) {
  .headerLogoCard {
    left: auto;
    position: relative;
    top: auto;
  }
}

.headerLogoWrap {
  display: block;
  position: relative;
  width: 190px;
}
.headerLogoWrap span {
  -webkit-transition: 0.3s;
  color: #fff;
  display: block;
  text-align: left;
  transition: 0.3s;
}
.headerLogoWrap span:first-of-type {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .headerLogoWrap span:first-of-type {
    font-size: 11px;
  }
}
.headerLogoWrap span:last-child {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .headerLogoWrap span:last-child {
    font-size: 30px;
  }
}

.logo {
  width: 190px;
}
@media only screen and (max-width: 767px) {
  .logo {
    max-width: 150px;
  }
}

@media only screen and (max-width: 1279px) {
  .logoBottomTxt {
    font-size: 11px;
  }
}

.headerInner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding: 0 155px;
  width: 100%;
}
@media only screen and (max-width: 1279px) {
  .headerInner {
    padding: 0 155px 0 15px;
  }
}
@media only screen and (max-width: 959px) {
  .headerInner {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .headerInner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

.headerMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 959px) {
  .headerMenu {
    display: none;
  }
}
.headerMenu ul {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.headerMenu li a {
  color: #fff;
  display: block;
  padding: 0 1em;
}
.headerMenu li a * {
  text-align: center;
}
.headerMenu li a .eng {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}
.headerMenu li a .ja {
  font-size: 10px;
  text-align: center;
}

.snsHead {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-column-gap: 0.5em;
  -moz-column-gap: 0.5em;
  align-items: center;
  column-gap: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.snsHead li {
  width: 30px;
}
.snsHead li a {
  padding: 0;
  width: 100%;
}
.snsHead li svg {
  display: block;
  width: 100%;
}

.headerContact {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: 0.3s;
  align-items: center;
  aspect-ratio: 1/1;
  background-color: var(--subColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.3s;
  width: 145px;
}
@media only screen and (max-width: 767px) {
  .headerContact {
    display: none;
  }
}
.headerContact * {
  line-height: 1.2;
  text-align: center;
}
.headerContact .eng {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.6em;
}
.headerContact .ja {
  font-size: 10px;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 767px) {
  .headerContact.--sp {
    aspect-ratio: unset;
    background-color: #fff;
    border-radius: 10px;
    display: block;
    margin-left: 0;
    max-width: 300px;
    padding: 1em;
    position: relative;
    width: 100%;
  }
  .headerContact.--sp * {
    text-align: left;
  }
  .headerContact.--sp .eng {
    font-size: 16px;
  }
  .headerContact.--sp .ja {
    font-size: 8px;
  }
}

.headerName .name {
  letter-spacing: 0.4em;
}

.headerMap {
  background-color: #fff;
  border-radius: 100px;
  display: block;
  font-size: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 1em 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

header.fixed {
  background-color: #fff;
}
header.fixed .headerLogoWrap * {
  color: var(--mainColor);
}
header.fixed .headerMenu li a {
  color: var(--mainColor);
}
header.fixed .headerContact {
  background-color: var(--mainColor);
}
header.fixed .headerContact * {
  color: #fff;
}
header.fixed .snsHead svg path:not(.fillNone) {
  fill: var(--mainColor);
}

.overRayMenuUl {
  margin-bottom: 30px;
}
.overRayMenuUl > li {
  border-bottom: solid 1px var(--mainColor);
  margin-bottom: 2em;
  padding-bottom: 2em;
  position: relative;
}
.overRayMenuUl > li a {
  color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .overRayMenuUl > li a {
    font-size: 16px;
    font-weight: 700;
  }
}
.overRayMenuUl > li a div {
  -webkit-transition: 0.3s;
  color: var(--mainColor);
  transition: 0.3s;
}
.overRayMenuUl > li a div.eng {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-right: 0.5em;
}
.overRayMenuUl > li a div.ja {
  font-size: 7px;
  font-weight: 500;
}
.overRayMenuUl > li a:hover span {
  color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .overRayMenuUl > li {
    margin-bottom: 0.9em;
    padding-bottom: 0.9em;
  }
  .overRayMenuUl > li a span.eng {
    font-size: 21px;
    margin-right: 0.5em;
  }
  .overRayMenuUl > li a span.jp {
    font-size: 12px;
  }
}

.spmenuBlock {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: var(--subColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100dvh;
  overflow-y: scroll;
  padding: 100px 50px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .spmenuBlock {
    padding: 0;
  }
}

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

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

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

/*==================================================
 * フッター
 *================================================*/
footer {
  background-color: var(--mainColor);
  position: relative;
}
footer .inner {
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
footer * {
  color: #fff;
}
footer .fName {
  font-size: 30px;
  letter-spacing: 0.4em;
}
@media only screen and (max-width: 767px) {
  footer .fName {
    font-size: 20px;
    text-align: center;
  }
}
footer .fAdFlex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  align-items: center;
  column-gap: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  footer .fAdFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  footer .fAdFlex * {
    font-size: 12px;
  }
}
footer .fAdFlex .headerMap {
  color: var(--mainColor);
  font-size: 14px;
  margin-left: 2em;
  padding: 0.8em 2.2em;
}
@media only screen and (max-width: 767px) {
  footer .fAdFlex .headerMap {
    font-size: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}

.fCopy {
  background-color: var(--mainColor);
  border-top: solid 1px #fff;
  color: #fff;
  font-size: 12px;
  padding: 2em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .fCopy {
    font-size: 6px;
  }
}

.modal {
  background-color: transparent;
  display: none;
  padding-left: 0;
  padding-right: 0;
  width: 100vw;
}
@media only screen and (max-width: 767px) {
  .modal {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
.modal .modalWrap {
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  padding-bottom: 30px;
  padding-left: 50px;
  padding-right: 50px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .modal .modalWrap {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    overflow: scroll;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.modal .inner {
  -ms-flex-negative: 0;
  background-color: #fff;
  border-radius: 30px;
  flex-shrink: 0;
  max-width: 1000px;
  padding: 2.5em 3.75em 3.75em;
  white-space: nowrap;
  width: 70vw;
}
@media only screen and (max-width: 767px) {
  .modal .inner {
    border-radius: 15px;
    padding: 15px;
    width: 80vw;
  }
}
.modal .inner ::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
.modal .inner * {
  white-space: normal;
}
.modal .inner .ttl {
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(
    40px,
    -4.854px + 5.848vw,
    70px
  );
  padding-top: 0.5em;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.modal .inner .ttl .ttlInner {
  text-align: left;
}
.modal .inner .ttl span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, var(--subColor)));
  background: -webkit-linear-gradient(transparent 70%, var(--subColor) 0%);
  background: linear-gradient(transparent 70%, var(--subColor) 0%);
  font-size: clamp(
    20px,
    -3.922px + 3.119vw,
    36px
  );
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.modal .inner .ttl::before {
  -webkit-transform: translateY(-50%);
  content: "Q.";
  font-size: clamp(
    26px,
    -24.834px + 6.628vw,
    60px
  );
  font-weight: 700;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.modal .inner .naiyoFlex {
  -webkit-column-gap: 1.8em;
  -moz-column-gap: 1.8em;
  column-gap: 1.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .modal .inner .naiyoFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-top: 25px;
  }
}
.modal .inner .naiyoFlex .img {
  -ms-flex-negative: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  width: 36.3636363636%;
}
@media only screen and (max-width: 767px) {
  .modal .inner .naiyoFlex .img {
    margin-bottom: 15px;
    width: 50%;
  }
}
.modal .inner .naiyoFlex .txt {
  font-size: 14px;
  max-height: 350px;
  overflow-y: scroll;
  padding-right: 30px;
  position: relative;
  width: 100%;
}
.modal .inner .naiyoFlex .txt p {
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .modal .inner .naiyoFlex .txt p {
    white-space: normal;
  }
}
@media only screen and (max-width: 767px) {
  .modal .inner .naiyoFlex .txt {
    height: 300px;
    overflow: auto;
    padding-right: 15px;
  }
}
.modal .inner .naiyoFlex .txt span {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, var(--subColor)));
  background: -webkit-linear-gradient(transparent 0%, var(--subColor) 0%);
  background: linear-gradient(transparent 0%, var(--subColor) 0%);
  font-size: clamp(
    18px,
    12.019px + 0.78vw,
    22px
  );
  font-weight: 700;
}
.modal ::-webkit-scrollbar {
  background: #f2f2f2;
  width: 5px;
}
.modal ::-webkit-scrollbar-thumb {
  background-color: #aaa;
  cursor: pointer;
}

.fancybox-slide--html {
  padding: 0;
}
.fancybox-slide--html .fancybox-button {
  -webkit-transform: translateY(-30%);
  height: 80px;
  transform: translateY(-30%);
  width: 80px;
}
@media only screen and (max-width: 767px) {
  .fancybox-slide--html .fancybox-button {
    top: 15px;
  }
}
.fancybox-slide--html .fancybox-button svg path {
  fill: #fff;
}

.scroll-hint-icon-wrap {
  z-index: 9999;
}
.scroll-hint-icon-wrap * {
  z-index: 9999;
}

/*==================================================
 * トップページ
 *================================================*/
.mvBottomBg {
  background: url(../img/firstBg.png) no-repeat center/cover;
}

.topBlogWrap {
  padding-top: 70px;
}

.topBlogFlex {
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 15px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .topBlogFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    row-gap: 20px;
  }
}
.topBlogFlex > * {
  width: calc(25% - 15px);
}
@media only screen and (max-width: 767px) {
  .topBlogFlex > * {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
.topBlogFlex .img {
  aspect-ratio: 185/130;
}
@media only screen and (max-width: 767px) {
  .topBlogFlex .img {
    aspect-ratio: 1/1;
    width: 35.7142857143%;
  }
}
.topBlogFlex .img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .topBlogFlex .txt .fsS {
    font-size: 14px;
  }
}

.tsunagi {
  background-color: var(--subColor);
}
.tsunagi .inner {
  background: url(../img/tsunagi-bg.png) no-repeat center/cover;
}

.tsunagiFlex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .tsunagiFlex {
    padding-top: 30px;
  }
}
.tsunagiFlex .txt {
  font-size: clamp(
    40px,
    10.097px + 3.899vw,
    60px
  );
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: -60px;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .tsunagiFlex .txt {
    display: none;
  }
}
.tsunagiFlex .img {
  width: 52.4%;
}
@media only screen and (max-width: 767px) {
  .tsunagiFlex .img {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 90%;
    z-index: 1;
  }
}

@-webkit-keyframes tenmetu {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}

@keyframes tenmetu {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
.motto {
  aspect-ratio: 1/1;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
  padding: 50px;
  position: relative;
  position: relative;
  width: 130px;
}
.motto::before {
  -webkit-transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
}
.motto:hover {
  -webkit-animation: blink 1s ease-in-out infinite alternate;
  animation: blink 1s ease-in-out infinite alternate;
}
.motto > * {
  -webkit-transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
}
.motto > *.ic2 {
  opacity: 0;
}
.motto.open .ic1 {
  opacity: 0;
}
.motto.open .ic2 {
  opacity: 1;
}

.hide {
  display: none;
}

.changeTtl {
  font-size: clamp(
    21px,
    -7.407px + 3.704vw,
    40px
  );
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 767px) {
  .changeTtl {
    letter-spacing: 0;
  }
}

.changeTxt .img1,
.changeTxt .img2 {
  position: absolute;
}
.changeTxt .img1 {
  -webkit-transform: translate(-100%, 0);
  bottom: 0;
  left: 0;
  transform: translate(-100%, 0);
  width: 42.1875%;
}
@media only screen and (max-width: 767px) {
  .changeTxt .img1 {
    -webkit-transform: none;
    bottom: auto;
    left: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    transform: none;
    width: 80%;
  }
}
.changeTxt .img2 {
  -webkit-transform: translate(130%, -50%);
  right: 0;
  top: 50%;
  transform: translate(130%, -50%);
  width: 12.1875%;
}
@media only screen and (max-width: 767px) {
  .changeTxt .img2 {
    display: none;
  }
}

.bg2 {
  background: url(../img/bg2.png) no-repeat top center/cover;
}
@media only screen and (max-width: 767px) {
  .bg2 {
    background-size: cover;
  }
}

.cmnttl {
  font-size: clamp(
    30px,
    15.049px + 1.949vw,
    40px
  );
  letter-spacing: 0.1em;
}

.name * {
  letter-spacing: 0.3em;
  text-align: center;
}
.name .kana {
  font-size: 14px;
}
.name .kanji {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.timeline {
  padding-bottom: 1.5em;
  padding-top: 1em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .timeline {
    padding-bottom: 1em;
    padding-top: 0.5em;
  }
}
.timeline dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.timeline dl + dl {
  padding-top: 1em;
}
.timeline dl dt,
.timeline dl dd {
  font-size: 14px;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .timeline dl dt,
  .timeline dl dd {
    font-size: 13px;
  }
}
.timeline dl dt .strong,
.timeline dl dd .strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, var(--subColor)));
  background: -webkit-linear-gradient(transparent 70%, var(--subColor) 0%);
  background: linear-gradient(transparent 70%, var(--subColor) 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 2px 4px;
}
.timeline dl dt {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 50px;
  text-align: right;
  width: 110px;
}
@media only screen and (max-width: 767px) {
  .timeline dl dt {
    margin-right: 35px;
    width: 90px;
  }
}
.timeline .line {
  -webkit-transition: 1s;
  background-color: var(--subColor);
  height: 0;
  left: 132px;
  position: absolute;
  top: 0;
  transition: 1s;
  width: 6px;
}
@media only screen and (max-width: 767px) {
  .timeline .line {
    left: 102px;
  }
}
.timeline.run .line {
  height: 100%;
}

.timeline-gut {
  font-size: 18px;
  font-weight: 700;
  margin-left: 115px;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
}
@media only screen and (max-width: 767px) {
  .timeline-gut {
    margin-left: 85px;
  }
}

#profile {
  position: relative;
}
#profile .img1,
#profile .img2,
#profile .img3 {
  position: absolute;
}
#profile .img1 {
  left: 0;
  max-width: 315px;
  top: 0;
  width: 22.5%;
}
@media only screen and (max-width: 1279px) {
  #profile .img1 {
    width: 17.8571428571%;
  }
}
#profile .img2 {
  max-width: 372px;
  right: 0;
  top: 0;
  width: 26.5714285714%;
}
#profile .img3 {
  max-width: 474px;
  right: 0;
  top: 310px;
  width: 33.8571428571%;
}
@media only screen and (max-width: 767px) {
  #profile .profileImg {
    aspect-ratio: 750/530;
    position: relative;
  }
  #profile .profileImg .img1,
  #profile .profileImg .img2,
  #profile .profileImg .img3 {
    max-width: 100%;
  }
  #profile .profileImg .img1 {
    top: 10%;
    width: 39.4666666667%;
    width: 30%;
  }
  #profile .profileImg .img2 {
    width: 42.6666666667%;
  }
  #profile .profileImg .img3 {
    bottom: 0;
    top: auto;
    width: 52.1333333333%;
  }
}
#profile .inner {
  width: 90%;
}
@media only screen and (max-width: 1400px) {
  #profile .inner {
    width: 80%;
  }
}
@media only screen and (max-width: 1279px) {
  #profile .inner {
    width: 75%;
  }
}
@media only screen and (max-width: 959px) {
  #profile .inner {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  #profile .inner {
    width: 100%;
  }
}

#listen {
  background-color: var(--subColor);
  position: relative;
}
@media only screen and (max-width: 767px) {
  #listen {
    padding-top: 75px;
  }
}
#listen .earWrap {
  -webkit-transform: translate(-50%, -50%);
  left: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  width: clamp(50px, 8vw, 100px);
}
@media only screen and (max-width: 767px) {
  #listen .earWrap {
    width: 50px;
  }
}
#listen .earWrap .ear.run {
  -webkit-animation: poyoyon2 1s ease-in-out forwards;
  animation: poyoyon2 1s ease-in-out forwards;
}
#listen * {
  font-weight: 700;
}

.listenTtl {
  font-size: clamp(
    30px,
    0.097px + 3.899vw,
    50px
  );
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.8em;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 767px) {
  .listenTtl {
    letter-spacing: 0.12em;
  }
}
.listenTtl::before, .listenTtl::after {
  aspect-ratio: 26/38;
  background: url(../img/ic-kakko.svg) no-repeat center/contain;
  content: "";
  display: block;
  position: absolute;
  width: 26px;
}
@media only screen and (max-width: 767px) {
  .listenTtl::before, .listenTtl::after {
    width: 13px;
  }
}
.listenTtl::before {
  left: 0;
  top: 0;
}
.listenTtl::after {
  -webkit-transform: rotate(180deg);
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.listenTtl span {
  font-size: clamp(
    20px,
    -3.922px + 3.119vw,
    36px
  );
}

.youtubeSlide {
  overflow-x: hidden;
  position: relative;
}
.youtubeSlide .youtubeItem {
  padding: 0 8px;
}
.youtubeSlide .youtubeItem img {
  width: 100%;
}

#listen .youtubeItem-pager {
  -webkit-transform: translateX(-50%);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-column-gap: 0.4em;
  -moz-column-gap: 0.4em;
  bottom: -70px;
  column-gap: 0.4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  left: 50%;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  #listen .youtubeItem-pager {
    bottom: -30px;
  }
}
#listen .youtubeItem-pager .swiper-pagination-bullet {
  aspect-ratio: 1/1;
  background-color: var(--mainColor);
  border: solid 1px transparent;
  height: 10px;
  opacity: 1;
  width: 10px;
}
@media only screen and (max-width: 767px) {
  #listen .youtubeItem-pager .swiper-pagination-bullet {
    height: 6px;
    width: 6px;
  }
}
#listen .youtubeItem-pager .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: transparent;
  border: solid 1px var(--mainColor);
}

@-webkit-keyframes poyoyon2 {
  0% {
    -webkit-transform: scale(1, 1) translate(0, 0);
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    -webkit-transform: scale(0.98, 0.9) translate(0, 5px);
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    -webkit-transform: scale(1.02, 1) translate(0, 8px);
    transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    -webkit-transform: scale(0.98, 1.05) translate(0, -8px);
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    -webkit-transform: scale(1, 0.9) translate(0, 5px);
    transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0, 0);
    transform: scale(1, 1) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}

@keyframes poyoyon2 {
  0% {
    -webkit-transform: scale(1, 1) translate(0, 0);
    transform: scale(1, 1) translate(0, 0);
  }
  15% {
    -webkit-transform: scale(0.98, 0.9) translate(0, 5px);
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    -webkit-transform: scale(1.02, 1) translate(0, 8px);
    transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    -webkit-transform: scale(0.98, 1.05) translate(0, -8px);
    transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    -webkit-transform: scale(1, 0.9) translate(0, 5px);
    transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0, 0);
    transform: scale(1, 1) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}
.youtubeItem-btn-next,
.youtubeItem-btn-prev {
  aspect-ratio: 1/1;
  background: url(../img/ic-slide-arw.svg) no-repeat center/contain;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 78px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .youtubeItem-btn-next,
  .youtubeItem-btn-prev {
    width: 34px;
  }
}

.youtubeItem-btn-prev {
  -webkit-transform: translateY(-50%);
  left: 5%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .youtubeItem-btn-prev {
    left: 10px;
  }
}

.youtubeItem-btn-next {
  -webkit-transform: translateY(-50%) scale(-1, 1);
  right: 5%;
  transform: translateY(-50%) scale(-1, 1);
}
@media only screen and (max-width: 767px) {
  .youtubeItem-btn-next {
    right: 10px;
  }
}

#phi {
  background-color: var(--subColor);
  overflow-x: hidden;
}
#phi li {
  line-height: 1.6;
}

.phiTtl {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.phiTtl * {
  font-weight: 700;
}
.phiTtl .ja {
  font-size: clamp(
    30px,
    -19.339px + 6.433vw,
    63px
  );
  padding: 0 80px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .phiTtl .ja {
    padding: 0 20px;
  }
}
.phiTtl .ja::before, .phiTtl .ja::after {
  background-color: var(--mainColor);
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  top: 50%;
  width: 100vw;
}
@media only screen and (max-width: 767px) {
  .phiTtl .ja::before, .phiTtl .ja::after {
    height: 15px;
  }
}
.phiTtl .ja::before {
  -webkit-transform: translateY(-50%) translateX(-100%);
  left: 0;
  transform: translateY(-50%) translateX(-100%);
}
.phiTtl .ja::after {
  -webkit-transform: translateY(-50%) translateX(100%);
  right: 0;
  transform: translateY(-50%) translateX(100%);
}
.phiTtl .eng {
  font-size: clamp(
    12px,
    -2.951px + 1.949vw,
    22px
  );
}

#phi .phiFlex {
  position: relative;
}
#phi .phiFlex .youtubeItem-pager {
  -webkit-transform: translateX(-50%);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-column-gap: 0.4em;
  -moz-column-gap: 0.4em;
  bottom: -70px;
  column-gap: 0.4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  left: 50%;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  #phi .phiFlex .youtubeItem-pager {
    bottom: -30px;
  }
}
#phi .phiFlex .youtubeItem-pager .swiper-pagination-bullet {
  aspect-ratio: 1/1;
  background-color: var(--mainColor);
  border: solid 1px transparent;
  height: 10px;
  opacity: 1;
  width: 10px;
}
@media only screen and (max-width: 767px) {
  #phi .phiFlex .youtubeItem-pager .swiper-pagination-bullet {
    height: 6px;
    width: 6px;
  }
}
#phi .phiFlex .youtubeItem-pager .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: transparent;
  border: solid 1px var(--mainColor);
}
#phi .phiFlex .img1,
#phi .phiFlex .img2 {
  position: absolute;
}
@media only screen and (max-width: 767px) {
  #phi .phiFlex .img1,
  #phi .phiFlex .img2 {
    display: none;
  }
}
#phi .phiFlex .img1 {
  bottom: 3%;
  left: 0;
  max-width: 213px;
  width: 21.3%;
}
#phi .phiFlex .img2 {
  bottom: 8%;
  max-width: 181px;
  right: 0;
  width: 18.1%;
}
@media print, screen and (min-width: 768px) {
  #phi .phiFlex .swiper-wrapper {
    -ms-flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 60px;
  }
}
@media print, screen and (min-width: 768px) {
  #phi .phiFlex .swiper-wrapper > * {
    width: calc(33.3333333333% - 20px);
  }
}
#phi .phiFlex .swiper-wrapper > * .img,
#phi .phiFlex .swiper-wrapper > * .txt {
  -webkit-transform: translateY(-30px);
  -webkit-transition: 0.6s;
  opacity: 0;
  transform: translateY(-30px);
  transition: 0.6s;
}
#phi .phiFlex .swiper-wrapper > * .txt {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
#phi .phiFlex .swiper-wrapper > *:nth-of-type(3n + 2) .img {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
#phi .phiFlex .swiper-wrapper > *:nth-of-type(3n + 2) .txt {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
#phi .phiFlex .swiper-wrapper > *:nth-of-type(3n + 3) .img {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}
#phi .phiFlex .swiper-wrapper > *:nth-of-type(3n + 3) .txt {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
#phi .phiFlex .swiper-wrapper > *.run .img,
#phi .phiFlex .swiper-wrapper > *.run .txt {
  -webkit-transform: translateY(0);
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (max-width: 767px) {
  #phi .phiFlex .swiper-wrapper > * .img,
  #phi .phiFlex .swiper-wrapper > * .txt {
    -webkit-transform: translateY(0) !important;
    -webkit-transition-delay: unset !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition-delay: unset !important;
  }
}
@media only screen and (max-width: 767px) {
  #phi .phiFlex .img {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
}
#phi .phiFlex .txt {
  margin-top: -3em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #phi .phiFlex .txt {
    margin-top: -1.8em;
    text-align: left;
  }
}
#phi .phiFlex .phiTtl {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(
    18px,
    3.049px + 1.949vw,
    28px
  );
  font-weight: 700;
  justify-content: center;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #phi .phiFlex .phiTtl {
    font-size: 22px;
  }
}
#phi .phiFlex li + li {
  margin-top: 0.8em;
}
#phi .phiFlex .swiper-button-next,
#phi .phiFlex .swiper-button-prev {
  display: none;
}
@media only screen and (max-width: 767px) {
  #phi .phiFlex .swiper-button-next,
  #phi .phiFlex .swiper-button-prev {
    display: block;
    top: 22%;
  }
  #phi .phiFlex .swiper-button-next::after,
  #phi .phiFlex .swiper-button-prev::after {
    color: var(--mainColor);
    font-size: 26px;
  }
}

.faqFlex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-column-gap: 70px;
  -moz-column-gap: 70px;
  align-items: center;
  column-gap: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .faqFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }
}
.faqFlex .ttlBlock {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 29.5%;
}
@media only screen and (max-width: 767px) {
  .faqFlex .ttlBlock {
    width: 100%;
  }
  .faqFlex .ttlBlock img {
    margin-left: auto;
    margin-right: auto;
    max-width: 270px;
    width: 100%;
  }
}
.faqFlex .ttlBlock > * {
  position: relative;
  z-index: 1;
}
.faqFlex .ttlBlock::before {
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  aspect-ratio: 1/1;
  background: url(../img/ic-q.svg) no-repeat center/contain;
  content: "";
  display: block;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  width: 250%;
}
@media only screen and (max-width: 767px) {
  .faqFlex .ttlBlock::before {
    content: none;
  }
}
.faqFlex .ttlBlock.run::before {
  opacity: 1;
}
.faqFlex .btnBlockWrap {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .faqFlex .btnBlockWrap {
    -webkit-transition-delay: unset !important;
    transition-delay: unset !important;
  }
}
.faqFlex .btnBlock {
  -ms-flex-wrap: wrap;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .faqFlex .btnBlock {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    column-gap: 10px;
    flex-direction: column;
    row-gap: 22px;
  }
}
.faqFlex .btnBlock > * {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: calc(50% - 15px);
}
.faqFlex .btnBlock > *::before {
  -webkit-transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  content: "";
  height: 100%;
  left: -75%;
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  /*キラッと光る形状*/
  width: 50%;
}
.faqFlex .btnBlock > *:hover {
  opacity: 1;
}
.faqFlex .btnBlock > *:hover::before {
  -webkit-animation: shine 0.7s;
  animation: shine 0.7s;
}
@media only screen and (max-width: 767px) {
  .faqFlex .btnBlock > * {
    width: 100%;
  }
}

#faqVideo {
  background-color: var(--subColor);
  overflow-x: hidden;
}
#faqVideo .youtubeItem-pager {
  -webkit-transform: translateX(-50%);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-column-gap: 0.4em;
  -moz-column-gap: 0.4em;
  bottom: -70px;
  column-gap: 0.4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  left: 50%;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  #faqVideo .youtubeItem-pager {
    bottom: -30px;
  }
}
#faqVideo .youtubeItem-pager .swiper-pagination-bullet {
  aspect-ratio: 1/1;
  background-color: var(--mainColor);
  border: solid 1px transparent;
  height: 10px;
  opacity: 1;
  width: 10px;
}
@media only screen and (max-width: 767px) {
  #faqVideo .youtubeItem-pager .swiper-pagination-bullet {
    height: 6px;
    width: 6px;
  }
}
#faqVideo .youtubeItem-pager .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: transparent;
  border: solid 1px var(--mainColor);
}
#faqVideo .youtubeItem-btn-next,
#faqVideo .youtubeItem-btn-prev {
  background-color: transparent;
  display: none;
}
@media only screen and (max-width: 767px) {
  #faqVideo .youtubeItem-btn-next,
  #faqVideo .youtubeItem-btn-prev {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #faqVideo .youtubeItem-btn-next {
    -webkit-transform: translateY(-110%) scale(-1, 1);
    transform: translateY(-110%) scale(-1, 1);
  }
  #faqVideo .youtubeItem-btn-prev {
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
  }
}

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

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

.faqVideoTtl {
  background-color: #f3f3f3;
  border-radius: 0 0 15px 15px;
  font-size: clamp(
    20px,
    5.049px + 1.949vw,
    30px
  );
  font-weight: 700;
  padding: 1em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .faqVideoTtl {
    font-size: 30px;
  }
}

.faqVideoCnt {
  position: relative;
  width: 64%;
}
@media only screen and (max-width: 767px) {
  .faqVideoCnt {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .faqVideoCnt .swiper-wrapper {
    -ms-flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    height: auto;
    justify-content: space-between;
    padding: 50px 0;
    row-gap: 30px;
  }
  .faqVideoCnt .swiper-wrapper > * {
    width: 46.875%;
  }
}
@media only screen and (max-width: 767px) {
  .faqVideoCnt .swiper-wrapper {
    padding-bottom: 30px;
  }
}
.faqVideoCnt .swiper-wrapper > * {
  background-color: #fff;
}
.faqVideoCnt .swiper-wrapper p {
  padding: 0.5em;
}
.faqVideoCnt .youtubeplay {
  aspect-ratio: 16/9;
  position: relative;
}
.faqVideoCnt .youtubeplay iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.contactTtl {
  font-size: clamp(
    30px,
    15.049px + 1.949vw,
    40px
  );
}

.contactForm {
  background-color: #fff;
  border: solid 2px var(--mainColor);
  border-radius: 35px;
  padding: 60px 20px 20px;
}
@media only screen and (max-width: 767px) {
  .contactForm {
    padding: 30px 20px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .contactForm {
    border-radius: 22px;
  }
}
.contactForm .check {
  border-bottom: solid 1px var(--mainColor);
  margin-bottom: 1em;
  padding-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .contactForm .check {
    margin-bottom: 0;
  }
}
.contactForm .check * {
  font-size: 18px;
  font-weight: 700;
}
.contactForm table {
  width: 100%;
}
.contactForm table th,
.contactForm table td {
  display: block;
  font-size: 14px;
  text-align: left;
  width: 100%;
}
.contactForm table th input,
.contactForm table th textarea,
.contactForm table td input,
.contactForm table td textarea {
  max-width: 100%;
  resize: vertical;
  width: 100%;
}
.contactForm table th {
  padding-bottom: 0.5em;
  padding-top: 1.5em;
}
.contactForm input:not(.sendbtn, .backbtn, [type=checkbox]),
.contactForm textarea {
  background-color: #f2f2f2;
  border: none;
  padding: 0.5em;
  width: 100%;
}
.contactForm input:not(.sendbtn, .backbtn, [type=checkbox]) {
  height: 36px;
}

.check {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.check .hissu {
  font-size: 12px;
}
.check > div {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.check td {
  margin-top: 10px;
}

.check input[type=checkbox].check_btn_item {
  display: none;
}

.check label {
  display: inline-block;
}

.check .check_btn_item + span {
  display: inline-block;
  padding-left: 28px;
  position: relative;
}

.check .check_btn_item + span::after,
.check .check_btn_item + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
}

.check .check_btn_item + span::before {
  border: 1px solid var(--mainColor);
  height: 20px;
  left: 0;
  width: 20px;
}

.check .check_btn_item + span::after {
  -webkit-transform: rotate(45deg);
  border: none;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  height: 12px;
  left: 6px;
  opacity: 0;
  top: 8px;
  transform: rotate(45deg);
  width: 7px;
}

.check .check_btn_item:checked + span::before {
  background-color: var(--mainColor);
}
.check .check_btn_item:checked + span::after {
  opacity: 1;
}

@-webkit-keyframes skewanime {
  100% {
    left: -10%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}

@keyframes skewanime {
  100% {
    left: -10%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}
.sendBtnWrap {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .sendBtnWrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
  }
}
.sendBtnWrap > * {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background-color: var(--mainColor);
  border: none;
  border-radius: 100vw;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
}
.sendBtnWrap .sendBtn {
  border: solid 1px var(--mainColor);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.sendBtnWrap .sendBtn::before {
  -webkit-transform: skewX(-25deg);
  background-color: var(--subColor);
  content: "";
  display: block;
  height: 100%;
  height: 120%;
  left: -130%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 100%;
  width: 120%;
}
.sendBtnWrap .sendBtn:hover {
  border: solid 1px var(--subColor);
  outline-width: 0;
}
.sendBtnWrap .sendBtn:hover input,
.sendBtnWrap .sendBtn:hover button {
  border: solid 1px var(--subColor);
  color: var(--mainColor);
}
.sendBtnWrap .sendBtn:hover::before {
  -webkit-animation: skewanime 0.5s forwards;
  animation: skewanime 0.5s forwards;
  border: solid 1px var(--subColor);
}
.sendBtnWrap input,
.sendBtnWrap button {
  background-color: transparent;
  border: none;
  border-radius: 100vw;
  color: #fff;
  cursor: pointer;
  display: block;
  height: 50px;
  width: 158px;
  z-index: 1;
}

.policyTtl {
  background-color: #fff;
  padding: 0.4em;
}

.hissu {
  background-color: #fb6d74;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-left: 1em;
  padding: 0.2em 1em;
}

.mw_wp_form_input .goback {
  display: none;
}

.pagePadding {
  padding: 220px 0;
}
@media only screen and (max-width: 767px) {
  .pagePadding {
    padding: 110px 0;
  }
}
.pagePadding.--s {
  padding-top: 130px;
}
@media only screen and (max-width: 767px) {
  .pagePadding.--s {
    padding-top: 50px;
  }
}

.newsBlock {
  background-color: #fff;
}
.newsBlock .inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 660px;
  padding: 70px 30px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .newsBlock .inner {
    padding: 30px 15px;
  }
}
.newsBlock.--single {
  background-color: transparent;
}
.newsBlock.--single .inner {
  padding-left: 0;
  padding-right: 0;
}
.newsBlock.contactBlock .inner {
  max-width: 860px;
}
.newsBlock.contactBlock .inner .hissu {
  display: none;
}

.newsItem {
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .newsItem {
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
  }
}
.newsItem .img {
  aspect-ratio: 768/540;
  width: 40%;
}
.newsItem .img > * {
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.newsItem .txt * {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .newsItem .txt * {
    font-size: 13px;
  }
}
.newsItem .txt .date {
  color: var(--mainColor);
}

.newsUl {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .newsUl {
    row-gap: 15px;
  }
}

.wp-pagenavi {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  -ms-flex-wrap: wrap;
  column-gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wp-pagenavi > * {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  aspect-ratio: 1/1;
  border: solid 1px var(--mainColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  width: 35px;
}
.wp-pagenavi > *.current {
  background-color: var(--mainColor);
  color: #fff;
}
.wp-pagenavi > *.nextpostslink {
  border: none;
}

.editor > * {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  padding-top: 45px;
}
@media only screen and (max-width: 767px) {
  .editor > * {
    padding-top: 22px;
  }
}
.editor p {
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
}

.singlePager {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.singlePager * {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .singlePager * {
    font-size: 13px;
  }
}
.singlePager .prev a,
.singlePager .next a {
  display: block;
  position: relative;
}
.singlePager .prev a::before,
.singlePager .next a::before {
  aspect-ratio: 14/29;
  background: url(../img/ic-newsArw.svg) no-repeat center/contain;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 14px;
}
@media only screen and (max-width: 767px) {
  .singlePager .prev a::before,
  .singlePager .next a::before {
    width: 8px;
  }
}
.singlePager .prev a {
  padding-left: 25px;
}
@media only screen and (max-width: 767px) {
  .singlePager .prev a {
    padding-left: 15px;
  }
}
.singlePager .prev a::before {
  -webkit-transform: translateY(-50%);
  left: 0;
  transform: translateY(-50%);
}
.singlePager .next a {
  padding-right: 25px;
}
@media only screen and (max-width: 767px) {
  .singlePager .next a {
    padding-right: 15px;
  }
}
.singlePager .next a::before {
  -webkit-transform: translateY(-50%) scale(-1, 1);
  right: 0;
  transform: translateY(-50%) scale(-1, 1);
}
.singlePager .toList a {
  border-bottom: solid 1px var(--mainColor);
  padding: 0 0.4em 0.3em;
}

#mw_wp_form_mw-wp-form-6 {
  margin-top: -10%;
  padding-top: 10%;
}

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