@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");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
:root {
  --mainColor: #021976;
  --subColor: #2C5298;
}

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

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

.mainColorDeep {
  color: #1a1a1a;
}

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

.mainColorExDeep {
  color: #03312e;
}

.mainColorLight {
  color: #808080;
}

.bgMainColorLight {
  background-color: #808080;
}

.mainColorExLight {
  color: #f2f2f2;
}

.bgMainColorExLight {
  background-color: #f2f2f2;
}

.mainColorUlLight {
  color: #f6f7f9;
}

.bgMainColorUlLight {
  background-color: #f6f7f9;
}

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

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

.subColorDeep {
  color: #e3e3fb;
}

.bgSubColorDeep {
  background-color: #e3e3fb;
}

.bgSubColorLight {
  background-color: #F8FBFF;
}

.compColor {
  color: #ecfe02;
}

.bgCompColor {
  background-color: #ecfe02;
}

.grayColor {
  color: #a9a9a9;
}

.bgGrayColor {
  background-color: #a9a9a9;
}

.grayColorLight {
  color: #dcdcdc;
}

.bgGrayColorLight {
  background-color: #dcdcdc;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

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

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

.bgBlack {
  background: #000;
}

.bgGrad {
  background: rgb(255, 178, 90);
  background: -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);
}

/*==================================================
 * リセット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 {
  background: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

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

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

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

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

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

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

.ls_xl {
  letter-spacing: 0.3em;
}

.ls_l {
  letter-spacing: 0.2em;
}

.ls_m {
  letter-spacing: 0.1em;
}

.ls_s {
  letter-spacing: 0.05em;
}

.ls_xs {
  letter-spacing: 0.01em;
}

.ls_0 {
  letter-spacing: 0;
}

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

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

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

.thin {
  font-weight: 100;
}

.nowrap {
  white-space: nowrap;
}

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

.black {
  color: #000;
}

.gray {
  color: #686868;
}

.red {
  color: #ff4501 !important;
}

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

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

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

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

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

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

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

.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 {
  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-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: #021976;
  text-decoration: underline;
  transition: 0.3s;
}
.linkA:hover {
  color: #021976;
  text-decoration: underline;
}

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

.p0 {
  padding: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

.ml0 {
  margin-left: 0;
}

.mbL {
  margin-bottom: 30%;
}

.mbL2 {
  margin-bottom: 25%;
}

.mbL3 {
  margin-bottom: 20%;
}

.mbL4 {
  margin-bottom: 15%;
}

.mbM {
  margin-bottom: 10%;
}

.mbM2 {
  margin-bottom: 7.5%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS3 {
  margin-bottom: 1%;
}

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

.w100 {
  width: 100%;
}

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

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

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

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

.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(30px, 7vw, 60px);
  --spaceSize: clamp(80px, 7vw, 90px);
  --spaceSizeWide: clamp(160px, 20vw, 240px);
}

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

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

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

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

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

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

.pb0 {
  padding-bottom: 0;
}

/*背景系*/
.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: 5px;
}

.radiusM {
  border-radius: 10px;
}

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

/*影*/
.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%, #2C5298));
  background: -webkit-linear-gradient(transparent 70%, #2C5298 0%);
  background: linear-gradient(transparent 70%, #2C5298 0%);
}

.titleBd {
  display: inline-block;
  margin-bottom: 7rem;
  position: relative;
}
.titleBd:before {
  background-color: #021976;
  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: #021976;
}
.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: #021976;
  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: #021976;
  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 #021976;
  display: inline-block;
}

.bdBox {
  border: 2px solid #021976;
}

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

html.open {
  overflow-y: hidden;
}

/*ハンバーガーメニュー*/
.menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  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: 22px;
}

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

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

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

.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 {
  height: 14rem !important;
  width: 100%;
}

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

.contactTelIcon {
  margin-right: 0.4em;
}

.mw_wp_form button {
  background: #deba29;
  border-radius: 0;
  color: #fff;
  max-width: 70%;
}

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

.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: #f7f7f7;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  height: 4rem;
  padding: 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] {
    padding: 2rem;
  }
}

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

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

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

.submit-btn {
  margin-top: 4%;
  text-align: center;
}
.submit-btn input {
  -webkit-transition: 0.3s;
  background-color: #021976;
  border: 1px solid #021976;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.07em;
  padding: 1.25em 2em;
  transition: 0.3s;
  width: 340px;
}
.submit-btn input:hover {
  background-color: #fff;
  color: #021976;
}
@media only screen and (max-width: 767px) {
  .submit-btn input {
    font-size: 14px;
  }
}

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

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

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

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

/*タグクラウド*/
.tagCloud li {
  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%;
}

.entry {
  float: none;
  letter-spacing: 0.15em;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  max-width: 870px;
}
.entry figcaption {
  color: gray;
  font-size: 13px;
}
.entry a {
  word-wrap: break-word;
  color: #33bad4;
  display: inline;
  text-decoration: underline;
  word-break: break-all;
}
.entry 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;
}
.entry blockquote p {
  font-size: 14px;
}
.entry 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;
}
.entry 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) {
  .entry p {
    font-size: 14px;
    line-height: 1.9;
  }
}
.entry h2 span,
.entry h3 span,
.entry h4 span,
.entry h5 span {
  font-weight: bold;
}
.entry h2 {
  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) {
  .entry h2 {
    font-size: 18px;
    margin: 12% auto 6%;
  }
}
.entry h3 {
  border-bottom: 1.5px solid #ccc;
  color: #021976;
  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) {
  .entry h3 {
    font-size: 16px;
    margin: 12% auto 6%;
    padding-bottom: 0.5em;
  }
}
.entry h3::after {
  background-color: #021976;
  bottom: -2px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 20%;
  z-index: 2;
}
.entry h4 {
  border-bottom: 1px solid #021976;
  color: #021976;
  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) {
  .entry h4 {
    margin: 15% auto 8%;
  }
}
.entry table td:nth-child(1) {
  background-color: #f7f6f9;
  color: #515151;
  font-weight: bold;
}
.entry table th,
.entry table td {
  padding: 2rem 3rem;
}
@media only screen and (max-width: 767px) {
  .entry table th,
  .entry table td {
    border-bottom: 1px solid #dad8de;
    display: block;
    padding: 1rem 2rem;
    width: 100%;
  }
}
.entry table tr {
  border-bottom: 1px solid #dad8de;
}
@media only screen and (max-width: 767px) {
  .entry table tr {
    border-bottom: none;
  }
}
.entry table tr:first-child {
  border-top: 1px solid #dad8de;
}
.entry ul {
  margin-bottom: 2%;
}
.entry li {
  font-weight: normal;
  font-weight: bold;
  line-height: 1.7;
  list-style-type: none;
  margin-bottom: 0.3em;
  padding-left: 1.5em;
  position: relative;
}
.entry li:before {
  color: #021976;
  content: "\f14a";
  font-family: "Font Awesome 6 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: #021976;
}

.toc_list li:before {
  display: none;
}

.toc_title {
  border-bottom: 1px solid #021976;
  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: #021976;
  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 #021976;
  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: #021976;
  display: none !important;
  font-family: var(--fontNum);
  font-size: 14px;
  position: absolute;
  right: 3%;
}

.lkc-info {
  background-color: #021976;
  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%;
}

.singleColumnArticleContent {
  margin-top: 5%;
}

.singleColumnTitle {
  border-bottom: 1px solid #021976;
  font-size: 21px;
  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 {
  color: #b3b3b3;
  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 #021976;
  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 #021976;
}

.singleColumnWriterButton {
  -webkit-transition: 0.3s;
  background: #fff;
  border: 1px solid #021976;
  border-radius: 25px;
  color: #021976;
  display: block;
  max-width: 280px;
  padding: 0.25em;
  transition: 0.3s;
}
.singleColumnWriterButton:hover {
  background: #021976;
  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: #021976;
  border-radius: 3px;
  position: relative;
  position: relative;
  transition: 0.3s;
}
.singleColumnPreNextBox.pre {
  margin-right: 1.5%;
}
.singleColumnPreNextBox.next {
  margin-left: 1.5%;
}
.singleColumnPreNextBox a {
  color: #fff;
  display: block;
  padding: 5%;
  text-align: center;
}

.singleClumnPreNextDescri {
  color: #727171;
}

.singleColumnPrevNextArrow {
  background: #fff;
  height: 1px;
  position: absolute;
  right: 15px;
  top: 20px;
  width: 33px;
}
@media only screen and (max-width: 767px) {
  .singleColumnPrevNextArrow {
    width: 22px;
  }
}
.singleColumnPrevNextArrow::after {
  -webkit-transform: rotate(45deg);
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  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);
}
.singleColumnPrevNextArrow.arwPre {
  left: 15px;
  top: 50%;
}
.singleColumnPrevNextArrow.arwNext {
  left: auto;
  right: 15px;
  top: 50%;
}

/*アーカイブページ------------------------------------*/
.cmNewsListUl {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.cmNewsListUl > li {
  margin: 0 2%;
  margin-bottom: 6%;
  width: 46%;
}
@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 #808080;
  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: #a0a0a0;
  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;
  padding-bottom: 70%;
  transition: 0.3s;
}
a:hover .cmNewsListImg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

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

.cmNewsListInfoUl li {
  background-color: var(--mainColor);
  border-radius: 5px;
  color: #fff;
  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: #021976;
  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: #021976;
  font-weight: bold;
}

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

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

.sidebarBox {
  margin-bottom: 15%;
  margin-left: 5%;
}
@media only screen and (max-width: 767px) {
  .sidebarBox {
    margin-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 {
  color: #b3b3b3;
  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);
  border-radius: 5px;
  color: #fff;
  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: var(--mainColor);
  font-family: var(--fontEn);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.5em;
  padding-bottom: 0.5em;
  padding-left: 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: #021976;
  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: #021976;
  font-size: 14px !important;
}
.sidebarTagWrap a:before {
  content: "#";
}
.sidebarTagWrap a:after {
  color: #a9a9a9;
  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
   ========================================================================== */
/*==================================================
 * 全サイト共通
 *================================================*/
/*共通部分*/
@media (min-width: 751px) {
  a[href*="tel:"] {
    cursor: default;
    pointer-events: none;
    text-decoration: none;
  }
}
.font-b {
  font-weight: 600;
}

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

@media print, screen and (min-width: 768px) {
  [data-sp] {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  [data-pc] {
    display: none;
  }
}
.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

body {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #021976;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
}
body.open {
  height: 100%;
}

.head01 {
  font-size: clamp(32px, 20.039px + 1.559vw, 40px);
  font-weight: 600;
  line-height: 1.375;
}

.head02 {
  font-size: clamp(20px, 11.029px + 1.17vw, 26px);
  font-weight: 600;
  line-height: 1.3846153846;
}

.head03 {
  background-color: #021976;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(16px, 10.019px + 0.78vw, 20px);
  font-weight: 600;
  padding: 0.2em 0.8em;
}

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

.commonBtn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: 0.5s;
  align-items: center;
  background-color: #021976;
  border: solid 2px #021976;
  border-radius: 20px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(15px, 7.524px + 0.975vw, 20px);
  font-weight: 600;
  height: 80px;
  justify-content: center;
  max-width: 330px;
  overflow: hidden;
  position: relative;
  transition: 0.5s;
  width: 100%;
}
.commonBtn span {
  -webkit-transition: 1s;
  color: #fff;
  position: relative;
  transition: 1s;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .commonBtn {
    border-radius: 10px;
    height: 60px;
  }
}
.commonBtn:hover {
  background-color: #fff;
  border: solid 2px #021976;
  color: #021976;
}
.commonBtn:hover span {
  color: #021976;
}
.commonBtn.send {
  height: 60px;
  margin-top: 10%;
  max-width: 100%;
  width: 100%;
}

/* fadeUp */
.fade {
  -webkit-transform: translateY(100px);
  -webkit-transition: 0.9s;
  opacity: 0;
  transform: translateY(100px);
  transition: 0.9s;
}
.fade.run {
  -webkit-transform: translateY(0);
  opacity: 1;
  transform: translateY(0);
}

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

header {
  -webkit-transition: 1s;
  -webkit-transition-timing-function: cubic-bezier(0.705, 0.17, 0.325, 0.925);
  left: 0;
  position: relative;
  position: fixed;
  top: 0;
  transition: 1s;
  transition-timing-function: cubic-bezier(0.705, 0.17, 0.325, 0.925);
  width: 100%;
  z-index: 999;
}
@media print, screen and (min-width: 768px) {
  header {
    padding: 35px;
  }
}

.header__navi {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: 0.8s;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  transition: 0.8s;
}
@media print, screen and (min-width: 768px) {
  .header__navi {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .header__navi ul {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__navi ul li {
    margin-left: 1.5em;
  }
  .header__navi ul li a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    white-space: nowrap;
  }
  .header__navi ul li a:hover {
    opacity: 0.7;
  }
  .header__navi ul li.menu__contact a {
    background-color: #021976;
    border-radius: 100px;
    color: #fff;
    display: block;
    padding: 0.5em 1em;
  }
}
@media only screen and (max-width: 767px) {
  .header__navi {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-transform: translateY(-30%);
    height: 70dvh;
    justify-content: center;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    text-align: center;
    transform: translateY(-30%);
    width: 100%;
  }
  .header__navi.open {
    -webkit-transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .header__navi::before {
    -webkit-transform: translateX(-50%);
    background-color: #FDBC27;
    border-radius: 0 0 100% 100%;
    content: "";
    display: block;
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 110%;
    z-index: -1;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .header__navi::before {
    width: 150%;
  }
}
@media only screen and (max-width: 767px) {
  .header__navi li a {
    -webkit-transition: 0.3s;
    color: #fff;
    display: block;
    font-weight: 600;
    margin-top: 1.5em;
    transition: 0.3s;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .header__navi li a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .header__navi li a:hover {
    opacity: 0.7;
  }
}

.header__btn {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header__btn {
    -webkit-transition: 0.3s;
    cursor: pointer;
    display: block;
    height: 26px;
    position: fixed;
    right: 26px;
    top: 34px;
    transition: 0.3s;
    width: 40px;
  }
  .header__btn .inner {
    height: 100%;
    position: relative;
    width: 100%;
  }
  .header__btn span {
    -webkit-transition: 0.5s;
    background-color: #021976;
    display: block;
    height: 8px;
    position: absolute;
    transition: 0.5s;
    width: 100%;
  }
  .header__btn span:first-of-type {
    top: 0;
  }
  .header__btn span:last-child {
    bottom: 0;
  }
  .header__btn.open span:first-of-type {
    -webkit-transform: rotate(45deg);
    top: 9px;
    transform: rotate(45deg);
  }
  .header__btn.open span:last-of-type {
    -webkit-transform: rotate(-45deg);
    bottom: 9px;
    transform: rotate(-45deg);
  }
}

footer {
  background-color: #EFEFEF;
}

.footer__inner {
  padding: 120px 0;
}
@media only screen and (max-width: 767px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }
}
.footer__inner > * {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .footer__inner > * {
    width: 100%;
  }
}

.footer__logo {
  -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;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .footer__logo {
    padding-bottom: 220px;
    padding-top: 220px;
  }
}

.footer__menu {
  -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;
  justify-content: center;
}
.footer__menu table th, .footer__menu table td {
  font-size: clamp(10px, 7.01px + 0.39vw, 12px);
  font-weight: 400;
  padding-top: 0.5em;
  text-align: left;
}
.footer__menu table th {
  padding-right: 2em;
}

.copyright {
  font-size: clamp(8px, 2.019px + 0.78vw, 12px);
  font-weight: 400;
  padding-bottom: clamp(40px, 10.097px + 3.899vw, 60px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .copyright {
    padding-top: 35px;
  }
}

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

.fv {
  height: 100vh;
}

#intro .imageBox {
  aspect-ratio: 882/843;
  position: relative;
  width: 49.7916666667%;
}
@media only screen and (max-width: 959px) {
  #intro .imageBox {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  #intro .imageBox {
    height: 560px;
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  #intro .imageBox {
    aspect-ratio: 340/330;
    height: auto;
  }
}
#intro .imageBox img {
  bottom: 0;
  max-width: none;
  position: absolute;
  right: 0;
  width: 882px;
}
@media only screen and (min-width: 2050px) {
  #intro .imageBox img {
    width: 1100px;
  }
}
@media only screen and (min-width: 1685px) {
  #intro .imageBox img {
    -webkit-transform: translateX(100%);
    right: 50vw;
    transform: translateX(100%);
  }
}
@media only screen and (max-width: 767px) {
  #intro .imageBox img {
    right: 30px;
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  #intro .imageBox img {
    max-width: 540px;
  }
}
#intro .textBox {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 39.5833333333%;
}
@media only screen and (max-width: 959px) {
  #intro .textBox {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  #intro .textBox {
    margin-top: 34px;
    width: 100%;
  }
}
#intro .textBox__text {
  margin-top: clamp(60px, 10.661px + 6.433vw, 93px);
}
#intro .textBox__list {
  margin-top: clamp(32px, 5.088px + 3.509vw, 50px);
}
#intro .textBox__list li {
  font-weight: 400;
  padding-left: 1.6em;
  text-indent: -1.6em;
}
#intro .textBox__list li::first-letter {
  padding-right: 0.6em;
}

#profile {
  margin-top: clamp(65px, 5.195px + 7.797vw, 105px);
  padding-top: clamp(100px, 25.244px + 9.747vw, 150px);
}
#profile .textBox {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #profile .textBox {
    width: 100%;
  }
}
#profile .textBox__name {
  font-size: clamp(20px, 5.049px + 1.949vw, 30px);
  line-height: 1;
}
#profile .textBox__comment {
  margin-top: clamp(95px, 119.951px + -1.949vw, 105px);
  margin-top: 20.2127659574%;
}
#profile .textBox table {
  margin-top: clamp(30px, 0.097px + 3.899vw, 50px);
}
#profile .textBox table * {
  font-weight: 400;
}
#profile .textBox table * th, #profile .textBox table * td {
  padding-top: 0.6em;
}
#profile .textBox table * th {
  padding-right: 1em;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #profile .textBox table * th {
    padding-right: 2.5em;
  }
}
#profile .imageBox {
  margin-top: -7%;
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #profile .imageBox {
    margin-top: -18%;
    max-width: 300px;
    width: 56.7567567568%;
  }
}
@media only screen and (max-width: 500px) {
  #profile .imageBox {
    margin-top: -24%;
  }
}

#works {
  margin-top: clamp(40px, 52.476px + -0.975vw, 45px);
  padding-top: clamp(100px, 25.244px + 9.747vw, 150px);
  position: relative;
}
#works .works__bg {
  position: relative;
}
#works .works__bg::before {
  -webkit-transform: translateY(-55%) translateX(-58%);
  aspect-ratio: 1705/763;
  background: url(../img/worksBg.svg) no-repeat center/contain;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-55%) translateX(-58%);
  width: 1705px;
  z-index: -1;
}
@media only screen and (max-width: 959px) {
  #works .works__bg::before {
    -webkit-transform: translateY(-55%) translateX(-36%);
    transform: translateY(-55%) translateX(-36%);
  }
}
@media only screen and (max-width: 767px) {
  #works .works__bg::before {
    -webkit-transform: translateY(-50%) translateX(-70%);
    aspect-ratio: 1677/751;
    transform: translateY(-50%) translateX(-70%);
    width: 1677px;
  }
}
#works .head02 {
  margin-bottom: clamp(85px, -19.659px + 13.645vw, 155px);
}

.works__flex {
  margin-left: -30px;
  margin-right: -30px;
}
@media only screen and (max-width: 767px) {
  .works__flex {
    margin-left: auto;
    margin-right: auto;
  }
}
.works__flex__item {
  margin-left: 30px;
  margin-right: 30px;
  width: calc(50% - 60px);
}
@media only screen and (max-width: 767px) {
  .works__flex__item {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .works__flex__item:last-of-type {
    margin-top: 38px;
  }
}
.works__flex dl {
  margin-top: clamp(22px, 10.039px + 1.559vw, 30px);
}
.works__flex dt {
  font-size: clamp(14px, 5.029px + 1.17vw, 20px);
  font-weight: 600;
  line-height: 1.4;
}
.works__flex dd {
  font-size: clamp(10px, 4.019px + 0.78vw, 14px);
  font-weight: 400;
  margin-top: 0.2em;
}

.worksImg {
  height: 30vw;
  margin-top: 150px;
  position: relative;
  z-index: -2;
}
@media only screen and (min-width: 1367px) {
  .worksImg {
    margin-top: 11vw;
  }
}
@media only screen and (max-width: 767px) {
  .worksImg {
    height: 62vw;
    margin-top: 130px;
  }
}
.worksImg img {
  bottom: 0;
  position: absolute;
  right: 0;
  width: 32.5768667643%;
}
@media only screen and (max-width: 767px) {
  .worksImg img {
    width: 66.6666666667%;
  }
}

#price {
  margin-top: clamp(0px, -14.951px + 1.949vw, 10px);
  padding-top: clamp(100px, 100px + 0vw, 100px);
}
#price .head03 {
  margin-bottom: clamp(25px, 17.524px + 0.975vw, 30px);
}
#price .price__bg {
  margin-top: clamp(85px, 10.244px + 9.747vw, 135px);
  position: relative;
}
#price .price__bg::before {
  -webkit-transform: translateX(14%) translateY(-6%);
  background: url(../img/priceBg.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 2260px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(14%) translateY(-6%);
  width: 3719px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #price .price__bg::before {
    background-image: url(../img/priceBg--sp.svg);
    height: 1714px;
    width: 1714px;
  }
}
@media only screen and (max-width: 500px) {
  #price .price__bg::before {
    -webkit-transform: translateX(18%) translateY(-3%);
    transform: translateX(18%) translateY(-3%);
  }
}
#price .price__01 {
  font-size: clamp(22px, 16.019px + 0.78vw, 26px);
  font-weight: 600;
}
#price .price__item .table__wrap {
  position: relative;
}
#price .price__item .table__wrap::before {
  border: solid 3px #021976;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}
#price .price__item table {
  background-color: #fff;
  border: solid 3px #021976;
  border-collapse: collapse;
  width: 100%;
}
#price .price__item table * {
  font-weight: 600;
}
#price .price__item table th, #price .price__item table td {
  border: solid 3px #021976;
  vertical-align: middle;
}
#price .price__item table td {
  background-color: #021976;
  border-bottom: solid 3px #fff;
  color: #fff;
  text-align: center;
}
#price .price__item table td:first-of-type {
  border-right: solid 3px #fff;
}
#price .price__item table .mainTtl {
  font-size: clamp(16px, 10.019px + 0.78vw, 20px);
}
#price .price__item table thead th {
  height: 70px;
}
@media only screen and (max-width: 767px) {
  #price .price__item table thead th {
    height: 40px;
  }
}
#price .price__item table thead th:first-of-type {
  width: 30.2631578947%;
}
@media only screen and (max-width: 767px) {
  #price .price__item table thead th:first-of-type {
    width: 34.8484848485%;
  }
}
#price .price__item table thead th:nth-of-type(2),
#price .price__item table thead th:last-of-type {
  width: 34.8684210526%;
}
@media only screen and (max-width: 767px) {
  #price .price__item table thead th:nth-of-type(2),
  #price .price__item table thead th:last-of-type {
    width: 32.4242424242%;
  }
}
#price .price__item table tbody th, #price .price__item table tbody td {
  height: 140px;
  padding: 1em;
}
@media only screen and (max-width: 767px) {
  #price .price__item table tbody th, #price .price__item table tbody td {
    height: 70px;
    padding: 1em 0.3em;
  }
}
#price .price__item table tbody th {
  font-size: clamp(12px, 0.039px + 1.559vw, 20px);
  line-height: 1.4;
  text-align: left;
}
#price .price__item table tbody .large {
  font-size: clamp(26px, 5.068px + 2.729vw, 40px);
  line-height: 1.25;
}
#price .price__item table tbody .small {
  font-size: clamp(12px, 6.019px + 0.78vw, 16px);
}
#price .price__item table tbody tr:last-of-type td {
  border-bottom: solid 3px #021976;
}
#price .price__item table.table02 th {
  text-align: center;
}
#price .price__item table.table02 thead th:first-of-type {
  width: 20.1315789474%;
}
#price .price__item table.table02 tbody td .large {
  font-size: clamp(18px, -14.893px + 4.288vw, 40px);
}
#price .price__item .table__figure {
  font-size: clamp(12px, 9.01px + 0.39vw, 14px);
  font-weight: 400;
  margin-top: clamp(10px, 1.029px + 1.17vw, 16px);
}
#price .price__item + .price__item {
  margin-top: clamp(45px, 15.097px + 3.899vw, 65px);
}

#access {
  margin-top: 400px;
  padding-top: 150px;
}
@media only screen and (max-width: 767px) {
  #access {
    margin-top: 440px;
  }
}
@media only screen and (max-width: 500px) {
  #access {
    margin-top: 350px;
  }
}
#access .head02 {
  margin-bottom: clamp(85px, 32.671px + 6.823vw, 120px);
}
#access .access__map iframe {
  width: 100%;
}
@media only screen and (max-width: 959px) {
  #access .access__map iframe {
    height: 350px;
  }
}
#access .access_bg_wrap {
  height: 750px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #access .access_bg_wrap {
    margin-top: -20%;
  }
}
#access .access__bg {
  -webkit-transform: translateX(-58%);
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-58%);
  width: 1705px;
}
@media only screen and (max-width: 767px) {
  #access .access__bg {
    -webkit-transform: translateX(-50%);
    aspect-ratio: 2350/763;
    height: 763px;
    left: 50%;
    transform: translateX(-50%);
    width: 2350px;
  }
}
#access .access__bg iframe {
  -webkit-mask-image: url(../img/worksBg.svg);
  -webkit-mask-position: center right;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 100%;
  height: 100%;
  mask-image: url(../img/worksBg.svg);
  mask-position: center right;
  mask-repeat: no-repeat;
  mask-size: auto 100%;
  width: 100%;
}
#access .access__bg::before {
  -webkit-transform: translateY(-50%) translateX(-58%);
  aspect-ratio: 1705/763;
  background: url(../img/accessBg.svg) no-repeat center/contain;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-58%);
  width: 1705px;
  z-index: -1;
}
@media only screen and (max-width: 959px) {
  #access .access__bg::before {
    -webkit-transform: translateY(-50%) translateX(-45%);
    transform: translateY(-50%) translateX(-45%);
  }
}
@media only screen and (max-width: 767px) {
  #access .access__bg::before {
    -webkit-transform: translateY(-50%) translateX(-60%);
    aspect-ratio: 1677/751;
    transform: translateY(-50%) translateX(-60%);
    width: 1360px;
  }
}

#access .head02 {
  margin-bottom: 0;
}
#access .accessImg {
  height: 32vw;
  margin-top: 11vw;
  position: relative;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #access .accessImg {
    height: 70vw;
  }
}
#access .accessImg img {
  bottom: 0;
  position: absolute;
  right: 0;
  width: 43.9238653001%;
}
@media only screen and (max-width: 767px) {
  #access .accessImg img {
    right: -41.410256%;
    width: 121.7948717949%;
  }
}

.access__info {
  font-size: 12px;
}
.access__address, .access__open {
  margin-top: 1em;
}

#contact {
  margin-top: clamp(90px, 277.135px + -14.62vw, 165px);
  padding-bottom: clamp(150px, -74.269px + 29.24vw, 300px);
}
#contact .head02 {
  margin-bottom: clamp(45px, -29.756px + 9.747vw, 95px);
}

@media only screen and (max-width: 767px) {
  .contact__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
  }
  .contact__flex .commonBtn:first-of-type {
    margin-bottom: 20px;
  }
}

/*==================================================
 * 下層ページ
 *================================================*/
main.page {
  padding: 290px 0 200px;
}
@media only screen and (max-width: 767px) {
  main.page {
    padding-bottom: 160px;
    padding-top: 92px;
  }
}

/*共通部分------------------------------------*/
.pageFvTxt {
  padding: 15% 15px 8%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .pageFvTxt {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    aspect-ratio: 1/0.8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    padding: 0;
  }
}
.pageFvTxt::before {
  background-color: rgba(44, 82, 152, 0.85);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

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

/*パンくず*/
.pageHeader {
  margin-bottom: clamp(40px, 5vw, 64px);
  margin-top: clamp(100px, 10vw, 128px);
}

/* contact ------------------------------------*/
.contact__ttl__wrap {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 10.4166666667%;
  width: 39.5833333333%;
}
@media only screen and (max-width: 767px) {
  .contact__ttl__wrap {
    padding-bottom: 95px;
    padding-right: 0;
    width: 100%;
  }
}

.contact__ttl {
  font-size: clamp(20px, 11.029px + 1.17vw, 26px);
  font-weight: 600;
}

.contact__cnt {
  width: 100%;
}

.form__cnt input, .form__cnt textarea {
  border: solid 1.5px #707070;
  border-radius: 10px;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
}
.form__cnt input {
  height: 40px;
}
.form__cnt textarea {
  height: 360px;
  padding: 1em;
}
.form__cnt + .form__ttl {
  margin-top: 67px;
}

.form__ttl {
  font-size: clamp(16px, 10.019px + 0.78vw, 20px);
  font-weight: 600;
  margin-bottom: 0.5em;
}
.form__ttl .hissu {
  color: #CB0000;
  font-size: clamp(14px, 11.01px + 0.39vw, 16px);
  font-weight: 400;
  padding-left: 0.7em;
}

::-webkit-input-placeholder {
  color: #C6C6C6;
}

::-moz-placeholder {
  color: #C6C6C6;
}

:-ms-input-placeholder {
  color: #C6C6C6;
}

::-ms-input-placeholder {
  color: #C6C6C6;
}

::placeholder {
  color: #C6C6C6;
}

.form__send {
  margin-top: clamp(100px, 174.854px + -5.848vw, 130px);
}
.form__send input {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: 0.3s;
  align-items: center;
  background-color: #021976;
  border: solid 2px #021976;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: inherit;
  font-size: clamp(15px, 7.524px + 0.975vw, 20px);
  font-weight: 600;
  height: 60px;
  justify-content: center;
  transition: 0.3s;
  width: 100%;
}
.form__send input:hover {
  opacity: 0.6;
}

.confirm__send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  width: 100%;
}
.confirm__send input {
  margin-left: 10px;
  margin-right: 10px;
  width: 100%;
}

.conf_send_cnt {
  padding-bottom: 20vw;
  padding-top: 20vw;
}
@media only screen and (max-width: 767px) {
  .conf_send_cnt {
    padding-bottom: 50vw;
    padding-top: 50vw;
  }
}

#loading {
  -webkit-transition-timing-function: cubic-bezier(0.775, 0.02, 0.28, 0.995);
  -webkit-transition: 1.3s;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  min-height: 500px;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: 1.3s;
  transition-timing-function: cubic-bezier(0.775, 0.02, 0.28, 0.995);
  width: 100%;
  z-index: 9999;
}
@media only screen and (max-width: 500px) {
  #loading {
    min-height: 100vh;
    padding-bottom: 20px;
  }
}
#loading video {
  -webkit-transition-timing-function: cubic-bezier(0.775, 0.02, 0.28, 0.995);
  -webkit-transition: 1.3s;
  display: block;
  margin-top: 1%;
  transition: 1.3s;
  transition-timing-function: cubic-bezier(0.775, 0.02, 0.28, 0.995);
  width: 394px;
}
@media only screen and (max-width: 500px) {
  #loading video {
    margin-left: auto;
    margin-right: -4%;
    margin-top: 6.2%;
    width: 360px;
  }
}

.loading__inner {
  width: 394px;
}

#loading.end {
  opacity: 0;
  pointer-events: none;
}
main.toppage {
  -webkit-transition-timing-function: cubic-bezier(0.775, 0.02, 0.28, 0.995);
  -webkit-transition: 1.3s;
  padding-top: 30vw;
  transition: 1.3s;
  transition-timing-function: cubic-bezier(0.775, 0.02, 0.28, 0.995);
}
main.toppage.end .fv {
  padding-top: 0;
}

.fvImage {
  -webkit-transition-duration: 1.4s;
  -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;
  height: 100vh;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  transition-duration: 1.4s;
  width: 100%;
}
@media only screen and (max-width: 500px) {
  .fvImage {
    min-height: 100vh;
  }
}
.fvImage .wrap {
  width: 394px;
}
.fvImage.end {
  opacity: 1;
}
.fvImage.end .inner {
  -webkit-transition-timing-function: cubic-bezier(0.775, 0.02, 0.28, 0.995);
  -webkit-transition: 1.3s;
  transition: 1.3s;
  transition-timing-function: cubic-bezier(0.775, 0.02, 0.28, 0.995);
}
.fvImage .inner {
  aspect-ratio: 391/367;
  background: url(../img/logo-fv.svg) no-repeat center right/contain;
  font-size: 0;
  width: 100%;
}
@media only screen and (max-width: 500px) {
  .fvImage .inner {
    background-image: url(../img/logo-fv.svg);
    margin-left: auto;
    margin-right: -4%;
    width: 360px;
  }
}

/* ==========================================================================
   印刷用
   ========================================================================== */
/* -------------------------------------------------------------- 
 
 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 */