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

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


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

*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&display=swap");
.mainColor {
  color: #001191;
}

.bgMainColor {
  background-color: #001191;
}

.mainColorDeep {
  color: #6a3906;
}

.bgMainColorDeep {
  background-color: #6a3906;
}

.mainColorExDeep {
  color: #03312e;
}

.mainColorLight {
  color: #ffe4b8;
}

.bgMainColorLight {
  background-color: #ffe4b8;
}

.mainColorExLight {
  color: #EDF0F1;
}

.bgMainColorExLight {
  background-color: #EDF0F1;
}

.mainColorUlLight {
  color: #F6F7F9;
}

.bgMainColorUlLight {
  background-color: #F6F7F9;
}

.subColor {
  color: #231815;
}

.bgSubColor {
  background-color: #231815;
}

.subColorDeep {
  color: #484d53;
}

.bgSubColorDeep {
  background-color: #484d53;
}

.subColorLight {
  color: #595757;
}

.bgSubColorLight {
  background-color: #595757;
}

.compColor {
  color: #ff4d01;
}

.bgCompColor {
  background-color: #ff4d01;
}

.grayColorDeep {
  color: #333333;
}

.grayColor {
  color: #a9a9a9;
}

.bgGrayColor {
  background-color: #a9a9a9;
}

.grayColorLight {
  color: #c6c6bb;
}

.bgGrayColorLight {
  background-color: #c6c6bb;
}

.bgGrayColorExLight {
  background-color: #f7f8f8;
}

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

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

.bgBlack {
  background: #000;
}

.bgGrad {
  background: #00236a;
  background: radial-gradient(circle, #00236a 0%, #17003a 100%);
}

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

.grayLight {
  color: #9a9a9a;
}

/*フォント系*/
.fontJp {
  font-family: "Noto Sans JP", sans-serif;
}

.fontEn {
  font-family: "Outfit", sans-serif;
}

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

.fontEnSub {
  font-family: "Mrs Saint Delafield", cursive;
}

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

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

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

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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

li {
  list-style-type: none;
}

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

html {
  font-size: 10px;
}

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

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

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

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

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

.lhXxl {
  line-height: 2.5;
}

.lhXxl * {
  line-height: 2.5;
}

.lhXl {
  line-height: 2;
}

.lhXl * {
  line-height: 2;
}

.lhL {
  line-height: 1.8;
}

.lhL * {
  line-height: 1.8;
}

.lhM {
  line-height: 1.5;
}

.lhM * {
  line-height: 1.5;
}

.lhS {
  line-height: 1.1;
}

.lhS * {
  line-height: 1.1;
}

.lhXs {
  line-height: 0.7;
}

.lhXs * {
  line-height: 0.7;
}

.lsXl {
  letter-spacing: 0.3em;
}

.lsL {
  letter-spacing: 0.2em;
}

.lsM {
  letter-spacing: 0.1em;
}

.lsS {
  letter-spacing: 0.05em;
}

.lsXs {
  letter-spacing: 0.01em;
}

.ls0 {
  letter-spacing: 0;
}

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

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

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

.thin {
  font-weight: 100;
}

.regular {
  font-weight: 400;
}

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}

.black {
  color: #0a0a0a;
}

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

.fsS4 {
  font-size: 10px;
}

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

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

/*==================================================
 * 独自リセット
 *================================================*/
/*リセット関係*/
*, *: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%;
  overflow-x: hidden;
}

ul {
  padding: 0;
  list-style-type: none;
  letter-spacing: -0.4em;
  margin: 0;
}

ul > li {
  letter-spacing: normal;
  vertical-align: top;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0;
  font-weight: 100;
}

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

hr {
  margin: 10px auto;
}

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

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

.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;
  transition: 0.3s;
  opacity: 1;
}

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

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

.linkA:hover {
  color: #001191;
  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;
  }
}

.underline {
  text-decoration: underline;
}

/*余白*/
.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;
  }
}

.mb90 {
  margin-bottom: 90px;
}

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

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

ul.flexOrderSpReverse > li:first-child {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media only screen and (max-width: 767px) {
  ul.flexOrderSpReverse > li:first-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

ul.flexOrderSpReverse > li:last-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media only screen and (max-width: 767px) {
  ul.flexOrderSpReverse > li:last-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

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

/*横幅*/
.cnt {
  width: 100%;
  max-width: 1170px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1441px) {
  .cnt {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 1279px) {
  .cnt {
    max-width: 950px;
  }
}

@media screen and (max-width: 959px) {
  .cnt {
    max-width: 758px;
  }
}

.w100 {
  width: 100%;
}

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

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

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

.cntXl {
  max-width: 1740px;
  margin-right: 2%;
  margin-left: 2%;
}

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

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

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

.padding {
  padding-top: 8vw;
  padding-bottom: 8vw;
}

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

.paddingW {
  padding-top: 16vw;
  padding-bottom: 16vw;
}

.margin {
  margin-top: 8vw;
  margin-bottom: 8vw;
}

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

.marginW {
  margin-top: 16vw;
  margin-bottom: 16vw;
}

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

.bgImgHeight {
  padding-bottom: 67%;
}

.bgFixed {
  background-attachment: fixed;
}

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

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

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

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

.bgWhite {
  background-color: #ffffff;
}

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

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

a:hover .bgZoomImg {
  -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 {
  position: relative;
  pointer-events: none;
  width: 100%;
  z-index: 1;
}

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

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table th {
  text-align: inherit;
  font-weight: normal;
}

.table td, .table th {
  padding: 1.2rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #e8edf0;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered td, .table-bordered th {
  border: 1px solid #dee2e6;
}

/*マスクアニメーション*/
.maskCenter .maskWrap {
  margin-left: auto;
  margin-right: auto;
}

.maskWrap {
  display: table;
  overflow: hidden;
}

.maskWrap .mask {
  display: table;
  position: relative;
  margin-bottom: .25em;
  left: -100%;
  overflow: hidden;
}

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

/*角丸*/
.radiusS {
  border-radius: 5px;
}

.radiusM {
  border-radius: 10px;
}

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

.radiusXxl {
  border-radius: 40px;
}

/*影*/
.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: 25vw;
}

@media only screen and (max-width: 767px) {
  .mainImgBox, .mainImg {
    padding-bottom: 90vw;
  }
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .mainImgBox, .mainImg {
    padding-bottom: 95vw;
  }
}

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

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

/*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) {
  -webkit-animation-delay: 18s;
          animation-delay: 18s;
}

.mainImg:nth-of-type(5) {
  -webkit-animation-delay: 24s;
          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% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            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% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

/*FVスライダー(CSS)ここまで*/
/*==================================================
 * 独自クラス（このサイトだけ）
 *================================================*/
/*線系*/
.titleLine {
  /*
    background: linear-gradient(transparent 50%, #f4d862 0%);
    display: inline;
    */
  position: relative;
  display: inline-block;
  z-index: 10;
  /*
    &.white{
        background: linear-gradient(transparent 70%, $subColorDeep 0%);
    }
    */
}

.titleLine:after {
  content: '';
  display: inline-block;
  background-color: #ff4d01;
  position: absolute;
  bottom: 0;
  left: -2.5%;
  width: 105%;
  height: 0.3em;
  z-index: 0;
}

.titleLine.sub {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #231815));
  background: linear-gradient(transparent 70%, #231815 0%);
}

.titleBd {
  position: relative;
  margin-bottom: 7rem;
  display: inline-block;
}

.titleBd:before {
  position: absolute;
  content: " ";
  display: block;
  width: 5rem;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
  bottom: -1.5rem;
  height: 2px;
  background-color: #001191;
  border-radius: 50px;
}

.titleBd.compColor:before {
  background-color: #ff4d01;
}

.titleBd.white:before {
  background-color: #fff;
}

.titleBd.sub {
  display: block;
}

.titleBd.sub:before {
  width: 23rem;
  height: 2px;
  bottom: -7px;
}

@media only screen and (max-width: 767px) {
  .titleBd {
    margin-bottom: 3rem;
  }
  .titleBd:before {
    width: 2.5rem;
  }
}

.titleBdCenter {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}

.titleBdCenter:after {
  content: '';
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 80px;
  height: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #001191;
  border-radius: 2px;
}

.titleBdCenter.mini:after {
  bottom: -15px;
  width: 40px;
  height: 1.5px;
  border-radius: 0px;
}

.titleBdLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.titleBdLeft:before {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #001191;
  display: block;
  margin-right: 1.5rem;
  max-width: 3rem;
}

.titleBdLeft.white:before {
  background: #fff;
}

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

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

/*ボタン*/
.button, .submit-btn input {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  color: #fff;
  background-color: #001191;
  padding: 0.7em 4em 0.7em 2em;
  letter-spacing: 0.03em;
  line-height: 1.7;
  font-size: 14px;
  border: 1px solid #001191;
}

.button span, .submit-btn input span {
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.button:after, .submit-btn input:after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5%;
  z-index: 1;
  font-size: 18px;
}

.button:hover, .submit-btn input:hover {
  color: #001191;
  background-color: #fff;
}

.button.button__large, .submit-btn input.button__large {
  padding: 0.7em 5em;
}

.button.button__white, .submit-btn input.button__white {
  background-color: #fff;
  color: #001191;
}

.button.button__white:hover, .submit-btn input.button__white:hover {
  color: #fff;
  background-color: #001191;
}

.submit-btn {
  text-align: center;
  margin-top: 4%;
}

.submit-btn input {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.07em;
  padding: 1.5rem 10rem;
  cursor: pointer;
}

/* リスト */
.ul6 > li {
  width: 16.6666666667%;
  display: inline-block;
}

.ul5 > li {
  width: 20%;
  display: inline-block;
}

.ul4 > li {
  width: 25%;
  display: inline-block;
}

.ul3 > li {
  width: 33.3333333333%;
  display: inline-block;
}

.ul2 > li {
  width: 50%;
  display: inline-block;
}

.ul1 > li {
  width: 100%;
  display: inline-block;
}

@media screen and (max-width: 1279px) {
  .ul-nt-6 > li {
    width: 16.6666666667%;
  }
  .ul-nt-5 > li {
    width: 20%;
  }
  .ul-nt-4 > li {
    width: 25%;
  }
  .ul-nt-3 > li {
    width: 33.3333333333%;
  }
  .ul-nt-2 > li {
    width: 50%;
  }
  .ul-nt-1 > li {
    width: 100%;
  }
}

@media screen and (max-width: 959px) {
  .ul-tb-6 > li {
    width: 16.6666666667%;
  }
  .ul-tb-5 > li {
    width: 20%;
  }
  .ul-tb-4 > li {
    width: 25%;
  }
  .ul-tb-3 > li {
    width: 33.3333333333%;
  }
  .ul-tb-2 > li {
    width: 50%;
  }
  .ul-tb-1 > li {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .ul-sp-6 > li {
    width: 16.6666666667%;
  }
  .ul-sp-5 > li {
    width: 20%;
  }
  .ul-sp-4 > li {
    width: 25%;
  }
  .ul-sp-3 > li {
    width: 33.3333333333%;
  }
  .ul-sp-2 > li {
    width: 50%;
  }
  .ul-sp-1 > li {
    width: 100%;
  }
}

/*==================================================
 * header
 *================================================*/
/*------------モーダルウィンドウ------------*/
/*オーバーレイメニュー*/
.overRayBox {
  position: fixed;
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
}

.overRayBox > ul {
  width: 100%;
  display: block;
}

.open .overRayBox {
  cursor: url(../images/cross.svg), auto;
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

html.open {
  overflow-y: hidden;
}

.overRayWrap {
  padding: 100px 15px 50px;
  overflow-y: scroll;
  height: 100%;
}

/*ハンバーガーメニュー*/
.menu-btn {
  position: static;
  cursor: pointer;
  z-index: 1001;
  margin-top: 13px;
  margin-right: 15px;
}

.menu-btn span {
  color: #fff;
}

.menu-btn span:after {
  content: attr(data-txt-menu);
}

.open .menu-btn span:after {
  content: attr(data-txt-close);
}

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

.menu-trigger {
  position: relative;
  width: 33px;
  height: 20px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 9px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.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) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}

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

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

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
          transform: translateY(-8px) rotate(45deg);
}

.menu-trigger span:nth-of-type(4) {
  background: none !important;
}

/*------------モーダルウィンドウ終わり------------*/
/*==================================================
 * footer
 *================================================*/
/*スマホfooter追従問い合わせ*/
.footerTelSpFlexLi {
  width: 50%;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  background-color: #a9946c;
}

.footerTelSpFlexLi:last-child {
  border-right: none;
  background-color: #001191;
}

.footerTelSpFlexLi a {
  display: block;
  padding: 9px 0;
}

.footerTelSpFlexLi a i {
  font-size: 16px;
}

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

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

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

.fixBar {
  position: fixed;
  z-index: 10;
  right: 2%;
  bottom: 2%;
}

.fixBar .button {
  padding: 0.7rem 3rem;
  border: 1px solid #001191;
}

.fixBarA {
  margin-right: 10px;
}

.fixBarA:hover {
  background-color: #fff;
  color: #001191;
}

.fixBarTop {
  height: 44px;
  width: 44px;
  cursor: pointer;
  border: 1px solid #001191;
  border-radius: 50px;
}

.fixBarTop:hover {
  background-color: #fff;
  border: 1px solid #001191;
  color: #001191;
}

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

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

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

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

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

.topQaBoxDl dd {
  display: none;
  margin-top: 3%;
}

.topQaBoxDl dt {
  font-weight: normal;
}

.topQaBoxDl dt:hover {
  background: rgba(242, 203, 149, 0.3);
  border-radius: 5px;
  cursor: pointer;
}

.topQaBoxUl li:nth-child(3) {
  width: 74%;
}

.topQaBoxUl li:nth-child(1) {
  margin-right: 2%;
}

.topQaBoxUl li:nth-child(2) {
  width: 8%;
  margin-right: 2%;
}

/*Q&Aここまで*/
@media screen and (max-width: 767px) {
  /*Q&Aのスマホここから*/
  .topQaBoxDl {
    width: 100%;
  }
  /*Q&Aのスマホここまで*/
}

/*==================================================
 * 下層ページ
 *================================================*/
/*共通部分------------------------------------*/
/*パンくず*/
/*パンくず終わり*/
/*about-us------------------------------------*/
/*残す--ここから*/
.pageAboutCompanyUl ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pageAboutCompanyUl li {
  padding: 0.5em 0;
}

@media only screen and (max-width: 767px) {
  .pageAboutCompanyUl li {
    padding: 0.8em 0;
    font-size: 13px;
  }
}

.pageAboutCompanyUl li:nth-child(1) {
  width: 30%;
  text-align: left;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .pageAboutCompanyUl li:nth-child(1) {
    font-size: 15px;
  }
}

.pageAboutCompanyUl li:nth-child(2) {
  width: 70%;
}

.fa-map-marker {
  color: #d9534f;
  font-size: 20px;
  margin-left: 1%;
}

/*残す--ここまで*/
/*お問い合わせページ------------------------------------*/
.contactForm {
  width: 100%;
  margin: 0 auto;
}

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

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

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

.cform {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cform tr {
  border-bottom: solid 1px #001191;
}

.cform th {
  font-size: 14px;
  width: 35%;
  /*変なところで改行される場合はここの数字を変更します。*/
  padding: 10px 0 10px 15px;
  font-weight: normal;
  vertical-align: middle;
  text-align: left;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .cform th {
    padding-bottom: 0;
    padding-top: 20px;
  }
}

.cform th .title {
  width: 72%;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .cform th .title {
    vertical-align: bottom;
    width: auto;
    margin-right: 5%;
  }
}

.cform th .required-srt {
  font-size: 12px;
  padding: 0.5em 1em;
  background: #ce0000;
  color: #fff;
  border-radius: 3px;
  margin-right: 0;
  width: 4.5em;
  vertical-align: middle;
  display: inline-block;
}

tr:last-child .cform th .required-srt {
  top: 41%;
}

@media only screen and (max-width: 767px) {
  .cform th .required-srt {
    top: auto;
    bottom: 10%;
  }
}

.cform td {
  font-size: 14px;
  line-height: 150%;
  padding: 3.5% 0;
}

@media only screen and (max-width: 767px) {
  .cform td {
    padding-bottom: 20px;
  }
}

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

.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
  width: 100%;
  height: 4rem;
  font-size: 14px;
  padding: 2.5rem;
  background-color: #f7f8f8;
  border: 1px solid transparent;
  border-radius: 5px;
}

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

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

@media only screen and (max-width: 767px) {
  .cform th,
  .cform td {
    width: 100%;
    display: block;
    border-top: none;
  }
}

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

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

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

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

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

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

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

.entry {
  line-height: 1.8;
  letter-spacing: 0.15em;
  float: none;
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}

.entry figcaption {
  font-size: 13px;
  color: gray;
}

.entry a {
  display: inline;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
  color: #33bad4;
}

.entry blockquote {
  padding: 2em 4em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #e6e6e6;
  color: #7b7b7b;
  background-color: #f6f7f9;
  font-style: italic;
  margin-bottom: 1.5em;
}

.entry blockquote p {
  font-size: 14px;
}

.entry strong {
  font-style: normal;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #fff7c0));
  background: linear-gradient(transparent 40%, #fff7c0 40%);
}

.entry p {
  margin: 0.5em 0 1.3em 0;
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-size: 14px;
}

.entry h2 span, .entry h3 span, .entry h4 span, .entry h5 span {
  font-weight: bold;
}

.entry h2 {
  font-size: 21px;
  margin: 8% auto 3%;
  background-color: #EDF0F1;
  padding: 0.5em 1em;
  border-radius: 3px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .entry h2 {
    font-size: 18px;
    margin: 12% auto 6%;
  }
}

.entry h3 {
  position: relative;
  padding-bottom: 0.3em;
  border-bottom: 1.5px solid #ccc;
  font-size: 18px;
  margin: 4% auto 3%;
  color: #001191;
  font-weight: bold;
  padding-left: 0.5em;
}

@media only screen and (max-width: 767px) {
  .entry h3 {
    font-size: 16px;
    padding-bottom: .5em;
    margin: 12% auto 6%;
  }
}

.entry h3::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: '';
  width: 20%;
  height: 3px;
  background-color: #001191;
}

.entry h4 {
  margin: 3% auto 3%;
  border-bottom: 1px solid #001191;
  padding-bottom: 0.4em;
  color: #001191;
  font-weight: bold;
  font-size: 18px;
  padding-left: 0.5em;
}

@media only screen and (max-width: 767px) {
  .entry h4 {
    margin: 15% auto 8%;
  }
}

.entry table td:nth-child(1) {
  background-color: #f7f6f9;
  font-weight: bold;
  color: #515151;
}

.entry table th, .entry table td {
  padding: 2rem 3rem;
}

@media only screen and (max-width: 767px) {
  .entry table th, .entry table td {
    padding: 1rem 2rem;
    width: 100%;
    display: block;
    border-bottom: 1px solid #dad8de;
  }
}

.entry table tr {
  border-bottom: 1px solid #dad8de;
}

@media only screen and (max-width: 767px) {
  .entry table tr {
    border-bottom: none;
  }
}

.entry table tr:first-child {
  border-top: 1px solid #dad8de;
}

.entry ul {
  margin-bottom: 2%;
}

.entry li {
  list-style-type: none;
  line-height: 1.7;
  font-weight: normal;
  margin-bottom: 0.3em;
  position: relative;
  padding-left: 1.5em;
  font-weight: bold;
}

.entry li:before {
  font-family: "Font Awesome 5 Pro";
  content: '\f14a';
  color: #001191;
  position: absolute;
  left: 0;
  font-weight: 400;
}

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

/*目次*/
.toc_number {
  font-family: "Fira Sans", sans-serif;
  font-size: 18px;
  line-height: 1;
  color: #cacaca;
  font-weight: normal;
}

#toc_container {
  background: #f7f8f8;
  border: none !important;
  margin: 0 auto;
  padding: 4% 6%;
  border-radius: 10px;
}

#toc_container a {
  color: #001191;
}

.toc_list li:before {
  display: none;
}

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

.toc_toggle {
  font-size: 14px;
}

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

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

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

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

.entry img {
  margin: 2% auto 5%;
}

/*リンクカードプラグイン*/
.lkc-title-text {
  font-weight: normal;
  letter-spacing: 0.15em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover .lkc-title-text {
  color: #001191;
  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;
          box-shadow: none;
  border: 2px solid #001191;
  border-radius: 10px;
  background-color: #ffe4b8;
}

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

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

a:hover .lkc-thumbnail-img {
  opacity: 0.7;
}

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

.lkc-date {
  position: absolute;
  bottom: 10%;
  right: 3%;
  color: #001191;
  font-family: "Fira Sans", sans-serif;
  font-size: 14px;
  display: none !important;
}

.lkc-info {
  background-color: #001191;
  display: inline-block !important;
  position: absolute;
  right: 3%;
  top: -5%;
  padding: 0.5em 1em;
  border-radius: 5px;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .lkc-info {
    top: -11%;
  }
}

.lkc-domain {
  color: #fff;
}

.lkc-card {
  padding: 2rem 1rem 1rem;
}

.lkc-card img {
  vertical-align: middle;
}

.lkc-content {
  overflow: auto !important;
  height: inherit !important;
}

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

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

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

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

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

.singleColumnTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px dashed #001191;
  padding-bottom: 0.4em;
}

.singleColumnTitle:before {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 3px;
  background: #001191;
  display: block;
  margin-right: .8em;
  max-width: 1.5em;
  width: 100%;
}

.singleColumnInfoUl .cate {
  background-color: #001191;
  border-radius: 25px;
  padding: 0.3em 0.7em;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cate {
    padding: 0.1em 0.7em;
  }
}

.singleColumnInfoUl .date {
  color: #c6c6bb;
  margin-right: 1em;
}

/*この記事をシェアするボタン*/
.singleColumnShare {
  padding: 3% 6%;
}

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

.singleColumnShareButton {
  padding: 0.7rem 1rem;
  width: 20%;
  margin-right: 3%;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 959px) {
  .singleColumnShareButton {
    width: 45%;
    margin-right: 2.5%;
  }
}

.singleColumnShareButton > * {
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .singleColumnShareButton > * {
    font-size: 12px;
  }
}

.singleColumnShareButton i {
  font-size: 22px;
  margin-right: 0.5rem;
}

@media only screen and (max-width: 767px) {
  .singleColumnShareButton i {
    font-size: 16px;
  }
}

.singleColumnShareButton.twitter {
  background: #1da1f2;
  border: 1px solid #1da1f2;
}

.singleColumnShareButton.twitter:hover {
  background: #fff;
  color: #1da1f2;
}

.singleColumnShareButton.facebook {
  background: #1877f2;
  border: 1px solid #1877f2;
}

.singleColumnShareButton.facebook:hover {
  background: #fff;
  color: #1877f2;
}

.singleColumnShareTitle {
  width: 50%;
}

@media only screen and (max-width: 959px) {
  .singleColumnShareTitle {
    width: 100%;
    margin-bottom: 6% !important;
  }
}

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

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

.singleColumnWriter {
  padding: 3% 3%;
  margin: 6% 0 6% 0;
  border: 1px solid #001191;
}

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

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

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

.singleColumnWriterButton:hover {
  background: #001191;
  color: #fff;
}

.sidebarWriterSns li {
  display: inline-block;
  margin-right: 3%;
  margin-bottom: 4%;
}

.sidebarWriterSns li a {
  border: 1px solid #d2d2d2;
  padding: 0.4em 1em;
  border-radius: 35px;
  background: #fff;
  letter-spacing: 0.05em;
}

.sidebarWriterSns li a:hover {
  background-color: #f1f1f1;
}

.sidebarWriterSns li a .fa-instagram {
  color: #fd1d1d;
}

.sidebarWriterSns li a .fa-twitter {
  color: #00acee;
}

.sidebarWriterSns li a .fa-facebook {
  color: #3b5998;
}

.sidebarWriterSns li a .fa-comment {
  color: #00b900;
}

/*次のページを見る*/
.singleColumnPreNextBox {
  padding: 5%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #f7f8f8;
  border-radius: 10px;
}

.singleColumnPreNextBox.pre {
  margin-right: 1.5%;
}

.singleColumnPreNextBox.next {
  margin-left: 1.5%;
}

.singleClumnPreNextDescri {
  color: #727171;
}

.singleColumnPrevNextArrow {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 33px;
  height: 1px;
  background: #727171;
}

.singleColumnPrevNextArrow::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 2px;
  width: 1px;
  height: 5px;
  border-top: 1px solid #727171;
  border-left: 1px solid #727171;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.next .singleColumnPrevNextArrow {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  left: 15px;
  right: auto;
}

/*アーカイブページ------------------------------------*/
.archiveColumnImg {
  padding-bottom: 66%;
}

.archiveColumnBox {
  padding: 4% 0;
  border-bottom: 1px solid #d7d5db;
  margin-right: 3%;
}

.excerpt {
  color: #777777;
}

.archiveColumnButton {
  padding: 0.3em 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1px solid #001191;
}

a:hover .archiveColumnButton {
  border-bottom: 1px solid #231815;
  color: #231815;
}

.archiveColumnButton:before {
  content: "\f138";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  vertical-align: middle;
  margin-right: 0.3em;
}

.archiveColumnText {
  margin-left: 5%;
}

.archiveColumnTitle {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

a:hover .archiveColumnTitle {
  color: #001191;
}

/*Pagenation*/
.pagenation {
  margin: 1em 0;
}

.pagenation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagenation li {
  font-family: "Fira Sans", sans-serif;
  font-size: 2rem;
  margin: 0 1%;
  color: #fff;
  background: #231815;
}

.pagenation li.active {
  cursor: not-allowed;
  color: #000;
  background: #f7f8f8;
  padding: 10px 20px;
}

.pagenation li.prev {
  display: none;
}

.pagenation li.next {
  display: none;
}

.pagenation li a {
  font-family: "Fira Sans", sans-serif;
  display: block;
  padding: 10px 20px;
}

.pagenation li a:hover {
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  background: #ff4d01;
}

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

.sidebarBox .cat-item {
  font-size: 14px;
}

.sidebarBox .cat-item:not(:last-child) {
  margin-bottom: 1.7rem;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 1.7rem;
}

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

.sidebarNewsUl .cat-item:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 0;
}

.sidebarNewsUl .cat-item p.mainColor {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sidebarNewsUl .cat-item a:hover p.mainColor {
  color: #ffe4b8;
}

.sidebarNewsUl .cat-item .date {
  font-weight: bold;
  color: #001191;
  font-family: "Fira Sans", sans-serif;
}

.sidebarRankingUl.sidebarNewsUl .cat-item:not(:last-child) {
  padding-bottom: 1rem;
}

.sidebarTitle {
  font-size: 14px;
}

.sidebarTitle .fontEn {
  font-size: 32px;
  color: #001191;
  font-weight: bold;
  margin-right: 0.4em;
  letter-spacing: 0;
}

.sidebarRankingImg {
  width: 30%;
  padding-bottom: 30%;
  margin-right: 5%;
  border-radius: 5px;
}

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

.sidebarRankingText {
  width: 65%;
}

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

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

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

.sidebarTagWrap a {
  font-size: 14px !important;
  color: #001191;
}

.sidebarTagWrap a:before {
  content: '#';
}

.sidebarTagWrap a:after {
  content: '/';
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 0.5em;
  color: #a9a9a9;
}

@media only screen and (max-width: 767px) {
  .sidebarTagWrap a {
    font-size: 12px !important;
  }
}

/* コンテナから少しはみ出すレイアウト */
.objectOverLeft {
  width: 120%;
  right: 30%;
  position: relative;
}

@media only screen and (max-width: 959px) {
  .objectOverLeft {
    right: 20%;
  }
}

.objectOverRight {
  width: 120%;
  left: 10%;
  position: relative;
}

@media only screen and (max-width: 959px) {
  .objectOverRight {
    left: 0%;
  }
}

/* 基本ボタン */
.cmBtn {
  color: #fff;
  font-weight: bold;
  /*background:-webkit-gradient(linear, left top, left bottom, from(#00D8FF), to(#0062FF));
     background:-webkit-linear-gradient(top, #00D8FF, #0062FF);
     background:-moz-linear-gradient(top, #00D8FF, #0062FF);
     background:-o-linear-gradient(top, #00D8FF, #0062FF);*/
  background: -webkit-gradient(linear, left top, left bottom, from(#00D8FF), to(#0062FF));
  background: linear-gradient(#00D8FF, #0062FF);
  display: inline-block;
  padding: 15px 20px;
  border-radius: 50px;
  width: 100%;
  max-width: 240px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  text-align: center;
}

.cmBtn svg {
  fill: #fff;
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.cmBtn:hover {
  opacity: 0.7;
  color: #fff;
}

.cmBtn:hover svg {
  fill: #001191;
}

@media only screen and (max-width: 767px) {
  .cmBtn {
    padding: 12px 20px;
    max-width: 230px;
  }
}

.fContactInner .cmBtn {
  background: -webkit-gradient(linear, left top, left bottom, from(#FF9300), to(#FF5800));
  background: linear-gradient(#FF9300, #FF5800);
  color: #fff !important;
}

.cmBtnBukken {
  color: #fff;
  font-weight: bold;
  border: 1px solid #0FBF00;
  background-color: #0FBF00;
  display: inline-block;
  padding: 12px 20px;
  width: 100%;
  max-width: 200px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  text-align: center;
  margin: 10px;
}

.cmBtnBukken svg {
  fill: #fff;
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.cmBtnBukken:before {
  content: "";
  display: inline-block;
  position: absolute;
  border: 1px solid #0FBF00;
  right: -3px;
  bottom: -3px;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.cmBtnBukken:hover {
  background-color: #fff;
  color: #0FBF00;
}

.cmBtnBukken:hover svg {
  fill: #001191;
}

.cmBtnBukken:hover:before {
  display: none;
}

@media only screen and (max-width: 767px) {
  .cmBtnBukken {
    padding: 12px 20px;
    max-width: 230px;
  }
}

.cmBtnBukkenContact {
  background-color: #FF9300;
  border: 1px solid #FF9300;
}

.cmBtnBukkenContact:before {
  border-color: #FF9300;
}

.cmBtnBukkenContact:hover {
  color: #FF9300;
}

/* 基本テーブル */
.cmTable {
  width: 100%;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.cmTable th, .cmTable td {
  padding: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .cmTable th, .cmTable td {
    display: block;
    width: 100%;
  }
}

.cmTable th {
  width: 140px;
  color: #001191;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .cmTable th {
    color: #001191;
  }
}

.cmTable th span {
  border-bottom: 2px solid #6EA5FF;
  display: block;
  padding: 10px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .cmTable th span {
    border-bottom: none;
    padding-bottom: 0px;
    padding-top: 0px;
  }
}

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

.cmTable td span {
  border-bottom: 2px solid #a9a9a9;
  display: block;
  padding: 10px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .cmTable td span {
    padding-top: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .cmTable td {
    padding-top: 0px;
    padding-bottom: 5px;
  }
}

.cmTable02 {
  width: 100%;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.cmTable02 th, .cmTable02 td {
  padding: 20px 25px;
  text-align: left;
  border-bottom: 1px solid #fff;
}

@media only screen and (max-width: 767px) {
  .cmTable02 th, .cmTable02 td {
    display: block;
    width: 100% !important;
    padding: 12px 15px;
  }
}

.cmTable02 th {
  letter-spacing: 0.2em;
  background-color: #CDF3FA;
  color: #001191;
  width: 160px;
}

.cmTable02 td {
  background-color: #EFFAFC;
}

.cmPd {
  padding-top: 70px;
  padding-bottom: 70px;
}

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

.cmPdM {
  padding-top: 50px;
  padding-bottom: 50px;
}

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

.cmBgTransWhite {
  position: relative;
}

.cmBgTransWhite:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

.cmBgTransWhite > * {
  position: relative;
  z-index: 1;
}

.cmBgTransBlack {
  position: relative;
}

.cmBgTransBlack:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.cmBgTransBlack > * {
  position: relative;
  z-index: 1;
  color: #fff;
}

.cmSectionShape {
  position: relative;
  padding-bottom: 180px;
}

.cmSectionShape:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0px;
  border-top: 80px solid transparent;
  /* 透明 */
  border-left: 50vw solid transparent;
  /* 透明 */
  border-right: 50vw solid #fff;
  /* むらさき */
  border-bottom: 80px solid #fff;
  /* むらさき */
}

.cmSectionShape.cmSectionShapeGray:before {
  border-top: 80px solid transparent;
  border-left: 50vw solid transparent;
  border-right: 50vw solid #f7f8f8;
  border-bottom: 80px solid #f7f8f8;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*==================================================
 * 共通
 *================================================*/
/*共通部分*/
body {
  color: #333;
}

.commonUl li {
  position: relative;
  padding: 1em 0;
  border-bottom: 1px solid #d1d1d1;
}

.commonUl li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  color: #001191;
  font-size: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media only screen and (max-width: 959px) {
  .commonUl li:before {
    font-size: 18px;
  }
}

.commonUl li span {
  font-size: 18px;
  margin-left: 45px;
  display: inline-block;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

@media only screen and (max-width: 959px) {
  .commonUl li span {
    font-size: 14px;
    margin-left: 30px;
  }
}

.commonUl.white li:before {
  color: #fff;
}

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

.telA i {
  margin-right: 0.15em;
}

.telA.white:hover {
  color: #fff;
}

.externalLink {
  border-bottom: 1px solid;
  padding-bottom: 0.1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.externalLink:hover {
  color: #001191;
}

.externalLink:after {
  content: "\f08e";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  margin-left: 0.5em;
}

.textButton {
  font-size: 14px;
  position: relative;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-left: 20px;
}

.textButton span {
  line-height: 1;
}

.textButton:after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #000;
}

.textButton:before {
  width: 50px;
  height: 50px;
  content: '';
  background-color: #ffe4b8;
  z-index: -1;
  border-radius: 25px;
  left: -10%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.textButton:hover:before {
  width: 120%;
}

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

.vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          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;
  }
}

/*==================================================
 * ヘッダー
 *================================================*/
.logo {
  width: 140px;
  margin-left: 0;
}

@media only screen and (max-width: 959px) {
  .logo {
    width: 120px;
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 10px;
  z-index: 2;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    padding: 10px 0;
  }
}

header.headerPt02 {
  position: relative;
  color: #333;
  padding-bottom: 10px;
}

.hArea {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hLogoArea {
  width: 220px;
}

@media only screen and (max-width: 959px) {
  .hLogoArea {
    width: 160px;
  }
}

@media only screen and (max-width: 767px) {
  .hLogoArea {
    width: 120px;
  }
}

.hNavList > li {
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
}

.hNavList > li a {
  padding: 10px 15px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .hNavList > li a {
    padding: 10px 10px;
  }
}

.hNavList > li a:hover {
  color: #001191;
}

.hNavList > li a.hNavListBtn {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFAF41), to(#FF5800));
  background: linear-gradient(#FFAF41, #FF5800);
  border-radius: 50px;
  color: #fff;
  margin-left: 10px;
}

.hNavList > li a.hNavListBtn:hover {
  opacity: 0.7;
}

.hNavList > li.snsIcon a {
  display: block;
  width: 35px;
  padding: 5px;
}

.hNavList > li.snsIcon a:hover:after {
  width: 0px !important;
}

@media only screen and (max-width: 767px) {
  main {
    margin-top: 60px;
  }
}

.headerNavContCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 5%;
}

@media only screen and (max-width: 959px) {
  .headerNavContCard {
    margin-left: 15px;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerNavContCard {
    margin-left: 2%;
  }
}

.headerNavUnit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.headerMenuUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.headerMenuUl li a {
  display: block;
  padding: 0.3em 1.3em;
  letter-spacing: 0.01em;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.headerMenuUl li a span {
  font-weight: bold;
}

.headerMenuUl li a:hover {
  color: #001191;
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerMenuUl li a {
    padding: 0.3em 0.5em;
    font-size: 10px;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerMenuUl li a {
    padding: 0.3em 0.5em;
    font-size: 12px;
  }
}

.overRayMenuUl > li {
  position: relative;
}

.overRayMenuUl > li:before {
  content: '';
  display: block;
  width: 95%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
}

.overRayMenuUl > li a {
  padding: 2rem 3rem;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.overRayMenuUl > li a span {
  display: block;
  text-align: left;
  letter-spacing: 0.015em;
  line-height: 1.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  font-size: 16px;
}

.headerLangButtonCard {
  margin: 0 20px 0 40px;
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerLangButtonCard {
    margin: 0 10px 0 20px;
  }
}

.headerLangButtonElem {
  font-size: 13px;
  padding: 0.5em 1em;
  line-height: 1;
}

.headerLangButtonElem.on {
  background-color: #001191;
  color: #fff;
}

.headerLangButtonElem.off {
  background-color: #c6c6bb;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.headerLangButtonElem.off:hover {
  color: #001191;
  background: #f7f8f8;
}

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

.headerNavButton {
  padding: 1em 3em 1em 4em;
  background: #0066c7;
  background: -webkit-gradient(linear, left top, right top, from(#0066c7), to(#1d256c));
  background: linear-gradient(90deg, #0066c7 0%, #1d256c 100%);
  color: #fff;
  display: block;
  text-align: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.headerNavButton:before {
  content: '';
  display: block;
  position: absolute;
  border-bottom: 74px solid transparent;
  border-left: 40px solid #fff;
  top: 0;
  left: 0;
}

.headerNavButton span {
  display: block;
  letter-spacing: 0.01em;
}

.headerNavButton span.fontEn {
  font-size: 21px;
  line-height: 1;
}

.headerNavButton span.jp {
  font-size: 12px;
}

.headerNavButton:hover {
  color: #c6c6bb;
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerNavButton {
    padding: 1em 1em 1em 3em;
  }
  .headerNavButton:before {
    border-bottom: 66px solid transparent;
    border-left: 30px solid #fff;
  }
  .headerNavButton span.fontEn {
    font-size: 16px;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerNavButton {
    padding: 1em 2em 1em 3em;
  }
  .headerNavButton:before {
    border-bottom: 74px solid transparent;
    border-left: 35px solid #fff;
  }
}

/*==================================================
 * フッター
 *================================================*/
.footerContactCover {
  background-color: rgba(106, 57, 6, 0.6);
  padding-top: 8vw;
}

@media only screen and (max-width: 767px) {
  .footerContactCover {
    padding-top: 16vw;
  }
}

.footerContactTelCard {
  text-align: right;
}

.footerContactTelCard a:hover {
  color: #fff;
}

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

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

.footerCopy {
  padding-top: 10%;
  padding-bottom: 5px;
}

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

.footerCopyText {
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .footerContactUnit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footerContactCardInner {
  padding: 7% 6%;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover .footerContactCardInner {
  background-color: #001191;
}

@media print, screen and (min-width: 768px) {
  .footerContactCard {
    width: 50%;
  }
  .footerContactCard:first-child {
    padding-right: 2%;
  }
  .footerContactCard:last-child {
    padding-left: 2%;
  }
}

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

.footerContactIco {
  background-color: #001191;
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footerContactIco i {
  color: #fff;
  font-size: 24px;
  line-height: 50px;
}

a:hover .footerContactIco {
  background-color: #fff;
}

a:hover .footerContactIco i {
  color: #001191;
}

.footerContactCardInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footerContactText {
  padding-left: 4%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footerContactText .main {
  font-size: 42px;
  color: #001191;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

.footerContactText .sub {
  font-size: 12px;
  margin-bottom: 0;
  font-weight: bold;
  color: #595757;
}

a:hover .footerContactText .main {
  color: #fff;
}

a:hover .footerContactText .sub {
  color: #fff;
}

@media only screen and (max-width: 959px) {
  .footerContactText .main {
    font-size: 28px;
  }
  .footerContactText .sub {
    font-size: 10px;
  }
}

.footerTextLinkUl {
  margin-right: 1em;
}

.footerTextLinkUl li {
  margin-bottom: 0.5em;
}

.footerTextLinkUl li a {
  position: relative;
  display: block;
}

.footerTextLinkUl li a:after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: 1;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footerTextLinkUl li a span {
  padding-left: 1.5em;
  font-size: 14px;
  font-weight: bold;
  display: block;
}

.footerTextLinkUl li a:hover:after {
  left: 0.5em;
}

.footerTextLinkUl.footerTextLinkUl__child li a span {
  font-weight: 300;
}

@media only screen and (max-width: 767px) {
  .footerTextLinkUl li a:after {
    font-size: 14px;
  }
  .footerTextLinkUl li a span {
    font-size: 12px;
  }
}

.footerInfoUnit {
  color: #fff;
}

@media print, screen and (min-width: 768px) {
  .footerInfoUnit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media print, screen and (min-width: 768px) {
  .footerInfoCompanyCard {
    width: 35%;
  }
}

.footerInfoLinkCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media print, screen and (min-width: 768px) {
  .footerInfoLinkCard {
    width: 65%;
  }
}

@media print, screen and (min-width: 768px) {
  .footerInfoLinkCardCol1 {
    width: 33%;
  }
}

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

@media print, screen and (min-width: 768px) {
  .footerInfoLinkCardCol2 {
    width: 67%;
  }
}

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

@media print, screen and (min-width: 768px) {
  .footerInfoLinkCardChild {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media print, screen and (min-width: 768px) {
  .footerInfoLinkCardChildCol {
    width: 50%;
  }
}

@media print, screen and (min-width: 768px) {
  .footerInfoLinkCardChildCol {
    width: 50%;
  }
}

.footerLinkInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: radial-gradient(circle, #00236a 0%, #17003a 100%);
  padding: 4%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover .footerLinkInner {
  opacity: 0.8;
}

.footerLinkImgCard {
  width: 30%;
}

.footerLinkTextCard {
  width: 70%;
}

@media print, screen and (min-width: 768px) {
  .footerLinkUnit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 768px) {
  .footerLinkCard {
    width: 46%;
    margin-bottom: 4%;
  }
  .footerLinkCard:nth-child(odd) {
    margin-right: 2%;
  }
  .footerLinkCard:nth-child(even) {
    margin-left: 2%;
  }
}

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

.footerLinkImg {
  padding-bottom: 100%;
}

.footerLinkTextCard {
  padding-left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*==================================================
 * トップページ
 *================================================*/
.topFv_text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  text-shadow: 1px 2px 3px #333;
}

.topFv_textImg {
  max-width: 300px;
  margin-bottom: 3%;
}

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

.bgSeparate {
  position: relative;
  z-index: 0;
}

.bgSeparate:before, .bgSeparate:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: -1;
}

.bgSeparate:before {
  left: 0;
  width: 30%;
  background-image: url(../img/bg_blurred_white.png);
  background-position: center top;
  background-size: cover;
  background-repeat: repeat;
  background-color: #fff;
}

.bgSeparate:after {
  right: 0;
  width: 70%;
  background-color: #f7f8f8;
}

.bgSeparate.bgSeparate__blue:before {
  background-color: #001191;
  background-image: url(../img/bg_blurred_blue.png);
}

.bgSeparate.bgSeparate__blue:after {
  background-color: #6a3906;
}

.bgSeparate.bgSeparate__gray:before {
  background-color: #fafafa;
}

.bgSeparate.bgSeparate__gray:after {
  background-color: #f0f2f2;
}

.bgSeparate.bgSeparate__grayReverse:before {
  background-color: #ebecec;
  background-image: none;
}

.bgSeparate.bgSeparate__grayReverse:after {
  background-color: #fff;
}

.commonTitle__header {
  position: relative;
  left: 70px;
}

@media only screen and (max-width: 767px) {
  .commonTitle__header {
    left: 35px;
  }
}

.commonTitleEn {
  font-family: "Outfit", sans-serif;
  font-size: 46px;
  -webkit-text-stroke-color: #001191;
  -webkit-text-stroke-width: 1px;
  color: rgba(0, 0, 0, 0);
  line-height: 1;
  margin-bottom: 5px;
}

.commonTitleEn::first-letter {
  color: #001191;
}

.commonTitle__white .commonTitleEn {
  -webkit-text-stroke-color: #fff;
}

.commonTitle__white .commonTitleEn::first-letter {
  color: #fff;
}

@media only screen and (max-width: 959px) {
  .commonTitleEn {
    font-size: 32px;
  }
}

.commonTitleJp {
  font-weight: bold;
  color: #231815;
}

.commonTitle__white .commonTitleJp {
  color: #fff;
}

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

.commonTitleIco {
  width: 50px;
  margin-left: 0;
  margin-bottom: 15px;
}

.commonTitle__header .commonTitleIco {
  position: absolute;
  width: 65px;
  left: -80px;
}

@media only screen and (max-width: 767px) {
  .commonTitleIco {
    width: 30px;
  }
  .commonTitle__header .commonTitleIco {
    width: 40px;
    left: -55px;
  }
}

@media print, screen and (min-width: 768px) {
  .cntSeparateUnit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media print, screen and (min-width: 768px) {
  .cntSeparateCard:first-child {
    width: 30%;
  }
  .cntSeparateCard:last-child {
    width: 70%;
    padding-left: 8%;
  }
}

@media print, screen and (min-width: 768px) {
  .cntSeparateFluidUnit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media print, screen and (min-width: 768px) {
  .cntSeparateFluidCard:first-child {
    width: 70%;
  }
  .cntSeparateFluidCard:last-child {
    width: 30%;
  }
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cntSeparateFluidCard:first-child {
    width: 60%;
  }
  .cntSeparateFluidCard:last-child {
    width: 40%;
  }
}

.fContact {
  background-color: #fff;
  position: relative;
}

.fContact:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 0;
}

.fContact .fContactInner {
  position: relative;
  z-index: 1;
}

.fContactList {
  margin-left: -15px;
  margin-right: -15px;
  text-align: center;
}

.fContactList > li {
  display: inline-block;
  padding: 0px 15px;
  width: 100%;
}

.fContactList > li:last-child {
  padding-top: 15px;
  width: 55%;
}

@media only screen and (max-width: 767px) {
  .fContactList > li {
    width: 100% !important;
  }
}

.fContact .cmBtn {
  background-color: #fff;
  color: #001191;
  margin-right: 10px;
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .fContact .cmBtn {
    max-width: 220px;
  }
}

@media only screen and (max-width: 959px) {
  .fContact .cmBtn {
    max-width: 180px;
  }
}

@media only screen and (max-width: 767px) {
  .fContact .cmBtn {
    max-width: 230px;
    margin-bottom: 10px;
    margin-right: 0px;
  }
}

.fContact .cmBtn svg {
  fill: #001191;
}

.fContact .cmBtn i {
  margin-right: 10px;
}

.fContact .cmBtn:hover {
  color: #fff;
  background-color: #001191;
}

.fContact .cmBtn:hover svg {
  fill: #fff;
}

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

.fInfoList {
  margin-left: -15px;
  margin-right: -15px;
  letter-spacing: -0.4em;
}

.fInfoList > li {
  padding: 0px 15px;
  width: 40%;
  display: inline-block;
  letter-spacing: normal;
}

.fInfoList > li:last-child {
  width: 60%;
}

@media only screen and (max-width: 767px) {
  .fInfoList > li {
    width: 100%;
  }
}

.fLogo {
  width: 100%;
  max-width: 220px;
  display: inline-block;
}

@media only screen and (max-width: 959px) {
  .fLogo {
    max-width: 160px;
  }
}

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

.fLogoList {
  margin-left: -15px;
  margin-right: -15px;
  letter-spacing: -0.4em;
}

.fLogoList > li {
  padding: 0px 15px;
  display: inline-block;
  letter-spacing: normal;
}

@media only screen and (max-width: 767px) {
  .fLogoList > li {
    width: 100%;
  }
}

.fNavList {
  margin-top: -5px;
}

.fNavList > li {
  display: inline-block;
  padding: 0px 10px;
}

.fNavList > li a {
  padding: 5px 10px 5px 15px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.fNavList > li a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  display: inline-block;
  position: absolute;
  left: 0;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}

.fNavList > li a:hover {
  color: #001191;
}

.fNavList > li a:hover:before {
  left: 5px;
}

@media only screen and (max-width: 959px) {
  .fNavList > li {
    padding: 0px;
  }
}

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

.fCr {
  font-size: 10px;
}

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 9999;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: -120%;
  width: 100%;
  max-width: 240px;
  height: 100vh;
  /*ナビの高さ*/
  background: rgba(255, 255, 255, 0.95);
  /*動き*/
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  padding: 40px 20px 0px;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  left: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 9999;
  width: 80%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
/*#g-nav ul {
    position: absolute;
    z-index: 9999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 100%;
}*/
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: left;
  border-bottom: 1px solid #333;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 3px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 0px;
  background-color: #333;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

.hSPNavSNS {
  margin-top: 20px;
}

.hSPNavSNS > li {
  display: inline-block;
  width: 100%;
  max-width: 50px;
  border-bottom: none !important;
}

/*.topFv{
    padding-bottom: 55%;
    @include sp{
        padding-bottom: 120%;
    }
}*/
.topIntroUl {
  margin-left: -15px;
  margin-right: -15px;
}

.topIntroUl > li {
  padding: 0px 15px 10px;
  display: inline-block;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .topIntroUl > li {
    width: 100%;
  }
}

.topIntroUl .topIntroLogo {
  width: 100%;
  max-width: 400px;
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topIntroUl .topIntroLogo {
    max-width: 320px;
  }
}

@media only screen and (max-width: 959px) {
  .topIntroUl .topIntroLogo {
    max-width: 260px;
  }
}

@media only screen and (max-width: 767px) {
  .topIntroUl .topIntroLogo {
    max-width: 120px;
    margin-top: 10px;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topIntroUl .topIntroTitle {
    font-size: 34px;
  }
}

@media only screen and (max-width: 959px) {
  .topIntroUl .topIntroTitle {
    font-size: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .topIntroUl .topIntroTitle {
    font-size: 22px;
  }
}

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

.topContentUl > li {
  padding: 0px 15px;
}

@media only screen and (max-width: 767px) {
  .topContentUl > li {
    width: 100%;
  }
}

.topServiceArea {
  background-repeat: no-repeat;
  background-size: 65% auto;
  background-color: #484d53;
  background-position: top left;
}

.topServiceArea#topService02 {
  background-color: #808286;
  background-position: top right;
}

@media only screen and (max-width: 767px) {
  .topServiceArea {
    background-size: cover;
    margin-bottom: 0px;
  }
}

.topPopupImg {
  padding-bottom: 67%;
}

.topPopupImgList {
  margin-left: -10px;
  margin-right: -10px;
}

.topPopupImgList li {
  padding: 0px 10px 20px;
}

.topPopupTitle {
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.topPopupImgTitle {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 30px;
}

.topCompanyUl {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0px 30px;
  /* 余白 */
}

.topCompanyUl > li {
  padding: 0px 0px 10px;
}

.topCompanyUl > li:first-child {
  padding-right: 50px;
}

@media only screen and (max-width: 959px) {
  .topCompanyUl > li:first-child {
    padding-right: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .topCompanyUl > li {
    width: 100%;
  }
}

.mainTitleEn {
  position: relative;
  font-family: "Outfit", sans-serif;
  line-height: 1em;
  font-weight: 500;
  font-size: 21px;
}

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

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

.mainTitleSet {
  position: relative;
  z-index: 2;
}

.mainTitleSet:before {
  content: "";
  display: inline-block;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: skewX(-10deg) translateY(-50%);
          transform: skewX(-10deg) translateY(-50%);
  z-index: -1;
  width: 190px;
  height: 50px;
  margin: 0 auto;
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .mainTitleSet:before {
    width: 120px;
    height: 30px;
  }
}

.mainTitleSet.mainTitleSetBlue:before {
  background-color: #CDF3FA;
}

.mainTitleJp {
  font-weight: bold;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 38px;
  line-height: 1.2em;
  position: relative;
  z-index: 2;
}

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

@media only screen and (max-width: 767px) {
  .mainTitleJp {
    font-size: 21px;
  }
}

.topServiceTitle {
  line-height: 1.2em;
  position: relative;
  padding-left: 84px;
  margin-top: 10px;
}

.topServiceTitle:before {
  content: '';
  display: block;
  position: absolute;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 45%;
  content: "01";
  font-family: "Outfit", sans-serif;
  font-size: 58px;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .topServiceTitle:before {
    font-size: 38px;
  }
}

@media only screen and (max-width: 767px) {
  .topServiceTitle {
    font-size: 20px;
    padding-left: 58px;
  }
}

#topService02 {
  background-position: 100%;
}

.topServiceTitle.topServiceTitle02:before {
  content: "02";
}

.topServiceTitle.topServiceTitle03:before {
  content: "03";
}

.topNewsTable th,
.topNewsTable td {
  padding: 5px 0px;
}

@media only screen and (max-width: 767px) {
  .topNewsTable th,
  .topNewsTable td {
    padding: 0px 0px 25px;
    display: block;
    width: 100%;
  }
}

.topNewsTable th {
  padding: 0;
  width: 250px;
  text-align: left;
}

.topNewsArea {
  position: relative;
}

.topNewsArea .mainTitleEn:before {
  border-color: #0a0a0a transparent transparent transparent;
}

.topNewsUl {
  margin-left: -20px;
  margin-right: -20px;
}

.topNewsUl > li {
  padding: 0px 20px 20px;
  /*width: 33.3333333333%;*/
  display: inline-block;
}

@media only screen and (max-width: 959px) {
  .topNewsUl > li {
    padding: 0px 10px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .topNewsUl > li {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 959px) {
  .topNewsUl {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.topNewsTime {
  margin-right: 10px;
  line-height: 1em;
  font-size: 16px;
}

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

.topNewsTag {
  display: inline-block;
  color: #fff;
  background-color: #FFAF41;
  padding: 8px 10px 9px;
  min-width: 110px;
  border-radius: 50px;
  text-align: center;
  line-height: 1em;
  font-size: 14px;
}

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

.topNewsImg {
  padding-bottom: 63%;
  border: 1px solid #999;
}

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

.topNewsImgOuter {
  width: 280px;
  margin-right: 20px;
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topNewsImgOuter {
    width: 220px;
  }
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topNewsImgOuter {
    width: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .topNewsImgOuter {
    width: 110px;
    margin-right: 10px;
  }
}

.topNewsUl01 .topNewsImg {
  width: 100%;
}

.topNewsUl01 .TopNewsTxtarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*.cmBtnOuter{
    position: absolute;
    right: 50px;
    top: 70px;
    width: 100%;
    max-width: 260px;
    @include spTab{
        top: 50px;
    }
    @include sp{
        position: relative;
        top: inherit;
        right: inherit;
        max-width: none;
        text-align: center;
    }
}*/
/* 投稿 */
.singleArea {
  margin-left: -15px;
  margin-right: -15px;
}

.singleArea > li {
  padding-left: 15px;
  padding-right: 15px;
  width: 75%;
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .singleArea > li {
    width: 70%;
  }
}

@media only screen and (max-width: 959px) {
  .singleArea > li {
    width: 66.6666666666%;
  }
}

.singleArea > li:last-child {
  width: 25%;
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .singleArea > li:last-child {
    width: 30%;
  }
}

@media only screen and (max-width: 959px) {
  .singleArea > li:last-child {
    width: 33.3333333333%;
  }
}

@media only screen and (max-width: 767px) {
  .singleArea > li {
    width: 100%;
    display: block;
  }
}

.singleArea .singleCatName {
  background-color: #333333;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  margin-left: 10px;
}

.entryArea h2 {
  margin-top: 5%;
  padding: 0px 0px 5px;
  border-bottom: 2px solid #ccc;
  margin-bottom: 3%;
  font-size: 1.5em;
  position: relative;
  font-weight: bold;
}

.entryArea h2:after {
  content: "";
  line-height: 0;
  display: block;
  overflow: hidden;
  position: absolute;
  bottom: -2px;
  width: 20%;
  border-top: 2px solid #333;
}

.entryArea h3 {
  font-size: 1.3em;
  border-left: 5px solid #999;
  padding-left: 10px;
  margin-top: 4%;
  margin-bottom: 2%;
  font-weight: bold;
  color: #444;
}

.entryArea h4 {
  font-size: 1.125em;
  font-weight: bold;
  margin-top: 3%;
  margin-bottom: 1%;
}

.entryArea p {
  margin: 1% 0 5% 0;
  line-height: 2;
}

.entryArea ul:not(.toc_list) li {
  list-style-type: none;
  margin-bottom: 0.3em;
  position: relative;
  padding-left: 1.5em;
  font-weight: bold;
}

.entryArea ul:not(.toc_list) li:last-child {
  margin-bottom: 0px;
}

.entryArea ul:not(.toc_list) li::before {
  font-family: "Font Awesome 5 Free";
  content: '\f14a';
  color: #001191;
  position: absolute;
  left: 0;
  font-weight: 400;
  margin-top: 0px;
}

.entryArea ul:not(.toc_list) {
  background-color: #f7f8f8;
  padding: 15px 25px;
  margin-bottom: 30px;
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  .entryArea ul:not(.toc_list) {
    padding: 12px 15px;
  }
}

.entryArea blockquote {
  position: relative;
  padding: 0px 20px 5px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-style: normal;
  color: #464646;
  background: #f7f8f8;
  border-top: solid 3px #ffe4b8;
}

.entryArea blockquote:before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 30px;
  text-align: center;
  content: "\f10d";
  font-family: 'Font Awesome 5 Free';
  color: #FFF;
  font-size: 18px;
  line-height: 30px;
  background: #ffe4b8;
  font-weight: 900;
}

.entryArea blockquote p {
  position: relative;
  padding: 0;
  margin: 30px 0px 10px;
  z-index: 3;
  line-height: 1.7;
  font-size: 0.875em;
}

.entryArea blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

.sidebar {
  margin-top: 0px;
}

.widget_block {
  margin-bottom: 30px;
}

.widget.widget_recent_entries {
  margin-top: 0px;
}

.widget h2 {
  font-weight: bold;
  border-bottom: 2px solid #444;
  margin-bottom: 0.75em;
  font-size: 18px;
}

.last-col {
  float: none;
}

.widget ul li {
  font-size: 14px;
  line-height: 1.7em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.widget ul li:last-child {
  border-bottom: none;
}

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

.postInner > li {
  padding-left: 15px;
  padding-right: 15px;
  width: 75%;
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .postInner > li {
    width: 70%;
  }
}

@media only screen and (max-width: 959px) {
  .postInner > li {
    width: 66.6666666666%;
  }
}

.postInner > li:last-child {
  width: 25%;
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .postInner > li:last-child {
    width: 30%;
  }
}

@media only screen and (max-width: 959px) {
  .postInner > li:last-child {
    width: 33.3333333333%;
  }
}

@media only screen and (max-width: 767px) {
  .postInner > li {
    width: 100%;
    display: block;
  }
}

.newsImg {
  padding-bottom: 67%;
  border: 1px solid #999;
}

.newsList {
  margin-left: -10px;
  margin-right: -10px;
}

.newsList > li {
  padding: 0px 10px 30px;
  margin-bottom: 30px;
  width: 50%;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .newsList > li {
    width: 100%;
  }
}

@media only screen and (max-width: 959px) {
  .newsList .topNewsTitle {
    font-size: 14px;
  }
}

/* お問い合わせ */
.contactOuter {
  padding: 10px 30px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 959px) {
  .contactOuter {
    padding: 40px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .contactOuter {
    padding: 30px 0px;
  }
}

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

.contactFormPrivacyAlertBox {
  border: 8px solid rgba(231, 224, 224, 0.4);
  padding: 5%;
  width: 100%;
  max-width: 820px;
  margin: 0 auto 30px;
  border-radius: 10px;
  background-color: #fff;
  color: #0a0a0a;
}

.cForm {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.cForm th {
  width: 280px;
  padding-top: 6px;
  vertical-align: top;
  text-align: left;
}

input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], select, textarea, .field {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  background-color: #eaedf2;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}

input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], select, textarea, .field {
  max-width: none;
  margin-bottom: 20px;
  border-radius: 0px;
  background-color: #fff;
  border: 1px solid #eee;
}

.cForm textarea {
  min-height: 120px;
}

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

.mwform-checkbox-field {
  display: block;
}

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

.submit-btn .inline_block {
  width: 100%;
  max-width: 260px;
}

.submit-btn input {
  padding: 10px 10px;
  width: 100%;
  max-width: 260px;
  margin-top: 20px;
  background-color: #93938b;
  border: 1px solid #93938b;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.submit-btn input:hover {
  background-color: #fff;
  color: #93938b;
}

.mw_wp_form .error {
  margin-top: -20px;
  margin-bottom: 10px;
}

.mw_wp_form .contactFormPrivacyAlertBox .error {
  margin-top: 0px;
}

.contactFormPrivacyAlertBox a {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .cForm th, .cForm td {
    display: block;
  }
  .contactFormPrivacyAlertBox {
    padding: 7%;
  }
  .cForm th {
    padding-bottom: 5px;
  }
}

span.required {
  display: inline-block;
  padding: 8px 10px 7px;
  background-color: #ff8383;
  color: #fff;
  margin-left: 10px;
  line-height: 1em;
}

.submitBtnConfirm input {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00D8FF), to(#0062FF));
  background-image: linear-gradient(#00D8FF, #0062FF);
  border: none;
  border-radius: 50px;
  padding: 15px;
}

.submitBtnConfirm input:hover {
  color: #001191;
}

.submitBtnReturn {
  margin-top: 0px;
}

.contactOuter {
  width: 100%;
}

.contactMainTitle {
  background-image: -webkit-gradient(linear, left top, right top, from(#00D8FF), to(#0053D8));
  background-image: linear-gradient(90deg, #00D8FF, #0053D8);
  color: #fff;
  font-size: 1.4em;
  font-weight: bold;
  margin: 0 0 20px;
  padding: 12px 20px;
  text-align: left;
  border-radius: 5px;
  position: relative;
  text-align: center;
}

.contactPageArea,
.contactFormArea {
  background-color: #f7f8f8;
  padding: 50px 40px;
}

.contactPageArea .material-icons,
.contactFormArea .material-icons {
  vertical-align: middle;
  margin-top: -3px;
}

@media only screen and (max-width: 767px) {
  .contactPageArea,
  .contactFormArea {
    padding: 20px;
  }
}

.contactPageGuide .required {
  margin-right: 5px;
}

/* プライバシーポリシー */
.privacyTable {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  grid-row-gap: 0;
  grid-column-gap: 0;
}

.privacyTable dt,
.privacyTable dd {
  border-bottom: 1px dotted #ccc;
  padding: 10px;
}

.cmTitle02 {
  color: #333;
  border-left: none;
  border-bottom: 2px solid #ddd;
  font-weight: bold;
  font-size: 1.2em;
  padding: 10px 10px 10px 1.4em;
  margin-bottom: 10px;
  position: relative;
  text-align: left;
  line-height: inherit;
}

.cmTitle02:before {
  content: "\e8e6";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Material Icons" !important;
}

.underFv {
  padding-top: 6%;
  padding-bottom: 10%;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .underFv {
    padding-top: 25%;
    padding-bottom: 30%;
  }
}

.underFv .underFvTitle {
  font-size: 2.2vw;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 2;
  text-shadow: 1px 2px 5px #0a0a0a;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .underFv .underFvTitle {
    font-size: 6.8vw;
  }
}

.underFv:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: transparent -webkit-gradient(linear, left top, right top, from(#00D8FF), to(#0053D8)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #00D8FF 0%, #0053D8 100%) 0% 0% no-repeat padding-box;
  opacity: 0.4;
}

.underFv .cmWave {
  top: inherit;
  bottom: -15px;
}

@media only screen and (max-width: 767px) {
  .underFv .cmWave {
    bottom: -8px;
  }
}

@media only screen and (max-width: 959px) {
  .newsOuter > li {
    width: 100% !important;
  }
}

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

/**/
.topFvTxtarea {
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  text-shadow: 3px 3px 6px #333;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

/*================================================*/
/* トップページ
/*================================================*/
.topAboutImg {
  padding-bottom: 67%;
}

.topAboutUlOuter {
  width: 100%;
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
}

.topAboutUl {
  margin-left: -10px;
  margin-right: -10px;
}

.topAboutUl > li {
  padding: 0px 10px 20px;
}

/* 採用情報 */
.recruitMessageImg {
  padding-bottom: 80%;
}

.recruitMessageInner {
  padding: 35px 45px 15px 40px;
  background-color: #fff;
  border-radius: 40px;
  margin-top: 80px;
}

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

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

.recruitMessageUl > li {
  padding: 0px 15px;
  width: 45%;
}

.recruitMessageUl > li:last-child {
  width: 55%;
}

@media only screen and (max-width: 767px) {
  .recruitMessageUl > li:last-child {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .recruitMessageUl > li {
    width: 100%;
  }
}

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

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

.recruitWantedUl > li {
  padding: 0px 15px 20px;
}

.recruitWantedUl > li .recruitWantedUlTxt {
  padding-left: 10px;
  padding-right: 10px;
}

.aboutHistoryUl {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto 80px;
}

.aboutHistoryUl > li {
  position: relative;
  padding: 20px 30px 50px;
  border-top: 2px solid #333;
}

.aboutHistoryUl > li:nth-child(odd):before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #333;
}

.aboutHistoryUl > li:nth-child(odd):after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -9px;
  top: -9px;
  width: 20px;
  height: 20px;
  background-color: #001191;
  border-radius: 50%;
}

.aboutHistoryUl > li:nth-child(even) {
  margin-top: 80px;
}

.aboutHistoryUl > li:nth-child(even):before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2px;
  width: 2px;
  height: 100%;
  background-color: #333;
}

.aboutHistoryUl > li:nth-child(even):after {
  content: "";
  display: inline-block;
  position: absolute;
  left: -11px;
  top: -11px;
  width: 20px;
  height: 20px;
  background-color: #001191;
  border-radius: 50%;
}

.aboutHistoryUl > li:last-child {
  padding-bottom: 20px;
}

.aboutHistoryDate {
  font-size: 21px;
  margin-bottom: 10px;
}

.aboutHistoryTitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.gmapIframe {
  width: 100%;
  height: 500px;
  margin: 0 auto 50px;
  display: block;
}

.topPropertyUl {
  margin-left: -10px;
  margin-right: -10px;
}

.topPropertyUl > li {
  padding: 0px 10px;
}

@media only screen and (max-width: 959px) {
  .topPropertyUl > li {
    margin-bottom: 20px;
  }
}

.topPropertyArea {
  padding: 20px 30px 20px;
  border-radius: 5px;
  background-color: #fff;
  border-top: 8px solid #001191;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  border-left: 1px solid #999;
  margin-bottom: 30px;
}

.topPropertyArea .topNewsTitle {
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .topPropertyArea {
    padding: 10px 10px 20px;
  }
}

.topPropertyTag {
  display: inline-block;
  padding: 5px 15px 5px 45px;
  color: #fff;
  font-weight: bold;
  background-image: -webkit-gradient(linear, left top, right top, from(#41a4fd), to(#0ef4ff));
  background-image: linear-gradient(90deg, #41a4fd, #0ef4ff);
  position: relative;
  margin-right: 10px;
}

.topPropertyTag:before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("../img/icon_star.png");
  width: 30px;
  height: 30px;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.topPropertyInfo {
  text-align: center;
}

.topPropertyInfo .cmBtn {
  margin-right: 10px;
  max-width: 180px;
  padding: 7px 10px;
}

@media only screen and (max-width: 767px) {
  .topPropertyInfo .cmBtn {
    max-width: 130px;
    padding: 7px 5px;
  }
}

.topPropertyInfo i {
  margin-right: 10px;
}

.topPropertyInfoPrice {
  margin-left: 0px;
}

.topPropertyFlex {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

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

.topPropertyFlex .topPropertyFlexLeft {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .topPropertyFlex .topPropertyFlexLeft {
    width: 100%;
    margin: 0 auto 10px;
  }
}

.topPropertyFlex .topPropertyFlexRight {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0px;
}

@media only screen and (max-width: 767px) {
  .topPropertyFlex .topPropertyFlexRight {
    padding-left: 10px;
  }
}

.topPropertyFlex .topPropertyImg {
  padding-bottom: 60%;
  border-radius: 20px;
  margin-bottom: 20px;
}

.topPropertyFlex .topPropertyTable th,
.topPropertyFlex .topPropertyTable td {
  padding: 0px 0px 5px;
}

.topPropertyFlex .topPropertyTable th {
  width: 80px;
}

@media only screen and (max-width: 767px) {
  .topPropertyFlex .topPropertyTable th {
    width: 68px;
  }
}

.topNewsFlex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topNewsFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.topNewsFlex .topNewsLeft {
  width: 200px;
}

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

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

.topNewsFlex .topNewsRight {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.propertyArea .topPropertyUl {
  margin: 0 auto;
}

.propertyArea .topPropertyUl > li {
  margin-bottom: 20px;
}

.cmWave {
  z-index: 1;
  width: 100%;
  top: -5vw;
}

.cmWaveUnder {
  z-index: 1;
  width: 100%;
  bottom: -4vw;
}

@media only screen and (max-width: 767px) {
  .cmWaveUnder {
    bottom: -35px;
  }
}

#topNews .cmWave {
  top: -4vw;
}

@media only screen and (max-width: 767px) {
  #topNews .cmWaveUnder {
    bottom: -25px;
  }
}

footer .cmWaveUnder {
  bottom: inherit;
  top: 0;
}

@media only screen and (max-width: 767px) {
  footer .cmWaveUnder {
    top: -2px;
  }
}

#topNews {
  padding-top: 0px;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  #topNews {
    padding-top: 20px;
  }
}

.topNewsIcon {
  width: 100%;
  max-width: 150px;
  position: absolute;
  bottom: -54px;
  left: 10px;
}

@media only screen and (max-width: 767px) {
  .topNewsIcon {
    max-width: 90px;
    bottom: -32px;
  }
}

.fIcon {
  width: 100%;
  max-width: 220px;
  position: absolute;
  top: -100px;
  right: 10px;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .fIcon {
    max-width: 150px;
    top: -70px;
  }
}

#aboutCompany,
#privacyTop {
  padding-top: 10px;
}

@media only screen and (max-width: 767px) {
  #aboutCompany,
  #privacyTop {
    padding-top: 30px;
  }
}

#aboutCompany .contactOuter,
#privacyTop .contactOuter {
  padding-top: 30px;
}

.singleFv {
  border: 1px solid #999;
  margin-bottom: 30px;
}

.bgGradBlue {
  background: -webkit-gradient(linear, left top, left bottom, from(#D3F8FF), to(#fff));
  background: linear-gradient(#D3F8FF, #fff);
  position: relative;
}

.bgGradBlue:before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("../img/bg_cross.png??");
  width: 100%;
  height: 100%;
  background-size: 30px auto;
  background-repeat: repeat;
}

.bgBlue {
  background-color: #E4F5F8;
  position: relative;
}

.bgBlue:before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("../img/bg_cross.png??");
  width: 100%;
  height: 100%;
  background-size: 30px auto;
  background-repeat: repeat;
}

.cmGradHBlue {
  background-image: -webkit-gradient(linear, left top, right top, from(#00D8FF), to(#0053D8));
  background-image: linear-gradient(90deg, #00D8FF, #0053D8);
}

.pagination {
  text-align: center;
  position: relative;
  z-index: 2;
}

.pagination .page-numbers li {
  display: inline-block;
  vertical-align: middle;
  padding: 0px 10px;
}

.pagination .page-numbers li span,
.pagination .page-numbers li a {
  padding: 10px;
  display: block;
  color: #333;
}

.pagination .page-numbers li span {
  background-color: #001191;
  border-radius: 50%;
  color: #fff;
  width: 40px;
  height: 40px;
  padding: 6px;
  text-align: center;
}

.fInfoArea {
  background: -webkit-gradient(linear, left top, left bottom, from(#00D8FF), to(#001191));
  background: linear-gradient(#00D8FF, #001191);
  color: #fff;
}

.topFvArea {
  padding-bottom: 20%;
}

/* ==========================================================================
   印刷用
   ========================================================================== */
/* -------------------------------------------------------------- 
 
 Hartija CSS Print Framework -MIT License
   * Version:   1.0
 
-------------------------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
    /*chrome用*/
    zoom: .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=import.css.map */