@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@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&display=swap");
.mainColor {
  color: #5380eb;
}

.bgMainColor {
  background-color: #5380eb;
}

.mainColorDeep {
  color: #001c56;
}

.bgMainColorDeep {
  background-color: #001c56;
}

.mainColorExDeep {
  color: #03312e;
}

.mainColorLight {
  color: #bfd9ed;
}

.bgMainColorLight {
  background-color: #bfd9ed;
}

.mainColorExLight {
  color: #EDF0F1;
}

.bgMainColorExLight {
  background-color: #EDF0F1;
}

.mainColorUlLight {
  color: #F6F7F9;
}

.bgMainColorUlLight {
  background-color: #F6F7F9;
}

.subColor {
  color: #3e3a39;
}

.bgSubColor {
  background-color: #3e3a39;
}

.subColorDeep {
  color: #e3e3fb;
}

.bgSubColorDeep {
  background-color: #e3e3fb;
}

.subColorLight {
  color: #595757;
}

.bgSubColorLight {
  background-color: #595757;
}

.compColor {
  color: #ECFE02;
}

.bgCompColor {
  background-color: #ECFE02;
}

.grayColor {
  color: #666;
}

.bgGrayColor {
  background-color: #666;
}

.grayColorLight {
  color: #c9caca;
}

.bgGrayColorLight {
  background-color: #c9caca;
}

.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: rgb(0, 35, 106);
  background: radial-gradient(circle, rgb(0, 35, 106) 0%, rgb(23, 0, 58) 100%);
}

.bgGradFv {
  background: rgb(0, 35, 106);
  background: linear-gradient(90deg, rgb(94, 128, 173) 0%, rgba(255, 255, 255, 0) 100%);
}

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

.grayLight {
  color: #9a9a9a;
}

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

.fontEn {
  font-family: "Marcellus", serif;
  font-weight: 400;
}

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

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

.gothic {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

body {
  font-family: "Noto Sans JP", 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 {
  font-feature-settings: "palt";
}

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

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

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

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

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

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

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

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

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

.ls_xl {
  letter-spacing: 0.3em;
}

.ls_l {
  letter-spacing: 0.2em;
}

.ls_m {
  letter-spacing: 0.1em;
}

.ls_s {
  letter-spacing: 0.05em;
}

.ls_xs {
  letter-spacing: 0.01em;
}

.ls_0 {
  letter-spacing: 0;
}

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

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

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

.thin {
  font-weight: 100;
}

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.gray {
  color: #686868;
}

.red {
  color: #ff4501 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h000 {
  font-size: 100px;
}

.h00 {
  font-size: 64px;
}

.h0 {
  font-size: 42px;
}

.h1 {
  font-size: 32px;
}

.h2 {
  font-size: 28px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 16px;
}

.text_m {
  font-size: 14px;
}

.text_sm {
  font-size: 13px;
}

.text_s {
  font-size: 12px;
}

.text_ss {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  body {
    font-size: 14px;
  }
  .h000 {
    font-size: 64px;
  }
  .h00 {
    font-size: 36px;
  }
  .h0 {
    font-size: 25px;
  }
  .h1 {
    font-size: 24px;
  }
  .h2 {
    font-size: 24px;
  }
  .h3 {
    font-size: 20px;
  }
  .h4 {
    font-size: 15px;
  }
  .h5 {
    font-size: 14px;
  }
  .text_m {
    font-size: 13px;
  }
  .text_s {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .h000 {
    font-size: 42px;
  }
  .h00 {
    font-size: 36px;
  }
  .h0 {
    font-size: 24px;
  }
  .h1 {
    font-size: 22px;
  }
  .h2 {
    font-size: 20px;
  }
  .h3 {
    font-size: 17px;
  }
  .h4 {
    font-size: 15px;
  }
  .h5 {
    font-size: 15px;
  }
  .text_m {
    font-size: 13px;
  }
  .text_s {
    font-size: 11px;
  }
}
/*==================================================
 * 独自リセット
 *================================================*/
/*リセット関係*/
*,
*:before,
*:after {
  -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;
  margin: 0;
}

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

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

hr {
  margin: 10px auto;
}

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

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

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

.inlineBlockUl li {
  display: inline-block;
}

.disNone {
  display: none !important;
}

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

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

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

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

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

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

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

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

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

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

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

p {
  margin-bottom: 10px;
}

.linkA {
  text-decoration: underline;
  transition: 0.3s;
  color: #5380eb;
}
.linkA:hover {
  color: #5380eb;
  text-decoration: underline;
}

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

.p0 {
  padding: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

.ml0 {
  margin-left: 0;
}

.mbL {
  margin-bottom: 30%;
}

.mbL2 {
  margin-bottom: 25%;
}

.mbL3 {
  margin-bottom: 20%;
}

.mbL4 {
  margin-bottom: 15%;
}

.mbM {
  margin-bottom: 10%;
}

.mbM2 {
  margin-bottom: 7.5%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS3 {
  margin-bottom: 1%;
}

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

.justCenter {
  justify-content: center;
}

.justEnd {
  justify-content: flex-end;
}

.justBetween {
  justify-content: space-between;
}

.alignCenter {
  align-items: center;
}

.alignStart {
  align-items: flex-start;
}

.alignEnd {
  align-items: flex-end;
}

.flexReverse {
  flex-flow: row-reverse;
}

.flexWrap {
  flex-wrap: wrap;
}

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

.flexCol {
  width: 100%;
}

.col1 {
  width: 100%;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 33.3333%;
}

.col-3 {
  width: 66.6666%;
}

.col4 {
  width: 25%;
}

.col-4 {
  width: 75%;
}

.col5 {
  width: 20%;
}

.col-5 {
  width: 80%;
}

.col6 {
  width: 16.666%;
}

.col-6 {
  width: 83.333%;
}

.col3-2 {
  width: 60%;
}

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

@media screen and (max-width: 767px) {
  .flexSplit {
    width: 100%;
  }
  .flexPc {
    display: block;
  }
  .flexWrapSp {
    flex-wrap: wrap;
  }
  .bgFixed {
    background-attachment: unset;
  }
  .flexReverse {
    flex-flow: row;
  }
  .flexSp {
    display: flex;
  }
  .colSp1 {
    width: 100%;
  }
  .colSp2 {
    width: 50%;
  }
  .colSp3 {
    width: 33.3333%;
  }
  .colSp-3 {
    width: 66.6666%;
  }
  .colSp4 {
    width: 25%;
  }
  .colSp-4 {
    width: 75%;
  }
  .colSp5 {
    width: 20%;
  }
  .colSp-5 {
    width: 80%;
  }
  .colSp6 {
    width: 16.666%;
  }
  .colSp-6 {
    width: 83.333%;
  }
  .colSp3-2 {
    width: 60%;
  }
  .colSp-3-2 {
    width: 40%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .colMd1 {
    width: 100%;
  }
  .colMd2 {
    width: 50%;
  }
  .colMd3 {
    width: 33.3333%;
  }
  .colMd-3 {
    width: 66.6666%;
  }
  .colMd4 {
    width: 25%;
  }
  .colMd-4 {
    width: 75%;
  }
  .colMd5 {
    width: 20%;
  }
  .colMd-5 {
    width: 80%;
  }
  .colMd6 {
    width: 16.666%;
  }
  .colMd-6 {
    width: 83.333%;
  }
  .colMd3-2 {
    width: 60%;
  }
  .colMd-3-2 {
    width: 40%;
  }
}
/*横幅*/
.cnt {
  width: 100%;
  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;
  }
}

.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;
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}

.bgWhite {
  background-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.radiusM {
  border-radius: 10px;
}

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

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

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

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

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

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

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

.mainImg {
  z-index: 10;
  opacity: 0;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  /*1枚6秒で×枚数*/
  -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) {
    animation-delay: 18s;
}
.mainImg:nth-of-type(5) {
    animation-delay: 24s;
}

.mainImg:nth-of-type(6) {
    animation-delay: 30s;
}
*/
@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  /*3秒：フェードイン.3/alls*/
  16% {
    opacity: 1;
  }
  /*6秒：次のスライド再生.6/alls*/
  33% {
    opacity: 1;
  }
  /*9秒：フェードアウト&次のスライドフェードイン*/
  50% {
    opacity: 0;
    transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  /*3秒：フェードイン.3/alls*/
  16% {
    opacity: 1;
  }
  /*6秒：次のスライド再生.6/alls*/
  33% {
    opacity: 1;
  }
  /*9秒：フェードアウト&次のスライドフェードイン*/
  50% {
    opacity: 0;
    transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
/*FVスライダー(CSS)ここまで*/
/*==================================================
 * 独自クラス（このサイトだけ）
 *================================================*/
/*線系*/
.titleLine {
  /*
  background: linear-gradient(transparent 50%, #f4d862 0%);
  display: inline;
  */
  position: relative;
  display: inline-block;
  z-index: 10;
  /*
  &.white{
      background: linear-gradient(transparent 70%, $subColorDeep 0%);
  }
  */
}
.titleLine:after {
  content: "";
  display: inline-block;
  background-color: #ECFE02;
  position: absolute;
  bottom: 0;
  left: -2.5%;
  width: 105%;
  height: 0.3em;
  z-index: 0;
}
.titleLine.sub {
  background: linear-gradient(transparent 70%, #3e3a39 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: #5380eb;
  border-radius: 50px;
}
.titleBd.compColor:before {
  background-color: #ECFE02;
}
.titleBd.white:before {
  background-color: #fff;
}
.titleBd.sub {
  display: block;
}
.titleBd.sub:before {
  width: 23rem;
  height: 2px;
  bottom: -7px;
}
@media only screen and (max-width: 767px) {
  .titleBd {
    margin-bottom: 3rem;
  }
  .titleBd:before {
    width: 2.5rem;
  }
}

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

.titleBdLeft {
  display: flex;
  align-items: center;
}
.titleBdLeft:before {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #5380eb;
  display: block;
  margin-right: 1.5rem;
  max-width: 3rem;
}
.titleBdLeft.white:before {
  background: #fff;
}

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

.bdBox {
  border: 2px solid #5380eb;
}

/*ボタン*/
.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;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  color: #fff;
  background-color: #5380eb;
  padding: 0.7em 4em 0.7em 2em;
  letter-spacing: 0.03em;
  line-height: 1.7;
  font-size: 14px;
  border: 1px solid #5380eb;
}
.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%;
  transform: translateY(-50%);
  right: 5%;
  z-index: 1;
  font-size: 18px;
}
.button:hover,
.submit-btn input:hover {
  color: #5380eb;
  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: #5380eb;
}
.button.button__white:hover,
.submit-btn input.button__white:hover {
  color: #fff;
  background-color: #5380eb;
}

.submit-btn {
  text-align: center;
  margin-top: 4%;
}
.submit-btn input {
  transition: 0.3s;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.07em;
  padding: 1.5rem 10rem;
  cursor: pointer;
}

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

html.open {
  overflow-y: hidden;
}

.overRayWrap {
  padding: 50px 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;
  transition: all 0.4s;
  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: #fff;
  border-radius: 2px;
  z-index: 1004;
}

.menu-trigger.isActive span {
  background-color: #333;
}

.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) {
  transform: translateY(10px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 0.8s forwards;
  animation: active-menu-bar02 0.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) {
  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: #5380eb;
}
.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 #5380eb;
}

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

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

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

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

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

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

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

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

.topQaBoxDl dt {
  font-weight: normal;
}

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

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

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

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

/*Q&Aここまで*/
@media screen and (max-width: 767px) {
  /*Q&Aのスマホここから*/
  .topQaBoxDl {
    width: 100%;
  }
  /*Q&Aのスマホここまで*/
}
/*==================================================
 * 下層ページ
 *================================================*/
/*共通部分------------------------------------*/
/*パンくず*/
/*パンくず終わり*/
/*about-us------------------------------------*/
/*残す--ここから*/
.pageAboutCompanyUl ul {
  display: flex;
}
.pageAboutCompanyUl li {
  padding: 0.5em 0;
}
@media only screen and (max-width: 767px) {
  .pageAboutCompanyUl li {
    padding: 0.8em 0;
    font-size: 13px;
  }
}
.pageAboutCompanyUl li:nth-child(1) {
  width: 30%;
  text-align: left;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .pageAboutCompanyUl li:nth-child(1) {
    font-size: 15px;
  }
}
.pageAboutCompanyUl li:nth-child(2) {
  width: 70%;
}
.fa-map-marker {
  color: #d9534f;
  font-size: 20px;
  margin-left: 1%;
}

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

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

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

.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 #5380eb;
}
.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;
  background: #ce0000;
  color: #fff;
  border-radius: 3px;
  margin-right: 0;
  vertical-align: middle;
  display: inline-block;
  padding: 0.5em;
  height: 1.5em;
  line-height: 1;
  width: auto;
}
tr:last-child .cform th .required-srt {
  top: 41%;
}
.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;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  color: #7b7b7b;
  background-color: #f6f7f9;
  font-style: italic;
  margin-bottom: 1.5em;
}
.entry blockquote p {
  font-size: 14px;
}
.entry strong {
  font-style: normal;
  font-weight: bold;
  background: linear-gradient(transparent 40%, #fff7c0 40%);
}
.entry p {
  margin: 0.5em 0 1.3em 0;
  line-height: 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: #5380eb;
  font-weight: bold;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    font-size: 16px;
    padding-bottom: 0.5em;
    margin: 12% auto 6%;
  }
}
.entry h3::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 3px;
  background-color: #5380eb;
}
.entry h4 {
  margin: 3% auto 3%;
  border-bottom: 1px solid #5380eb;
  padding-bottom: 0.4em;
  color: #5380eb;
  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: #5380eb;
  position: absolute;
  left: 0;
  font-weight: 400;
}

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

/*目次*/
.toc_number {
  font-family: "Inter", 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: #5380eb;
}

.toc_list li:before {
  display: none;
}

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

.toc_toggle {
  font-size: 14px;
}

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

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

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

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

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

.lkc-excerpt {
  display: none;
}

.lkc-url {
  display: none;
}

.lkc-external-wrap,
.lkc-internal-wrap {
  box-shadow: none;
  border: 2px solid #5380eb;
  border-radius: 10px;
  background-color: #bfd9ed;
}

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

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

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

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

.lkc-info {
  background-color: #5380eb;
  display: inline-block !important;
  position: absolute;
  right: 3%;
  top: -5%;
  padding: 0.5em 1em;
  border-radius: 5px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .lkc-info {
    top: -11%;
  }
}

.lkc-domain {
  color: #fff;
}

.lkc-card {
  padding: 2rem 1rem 1rem;
}
.lkc-card img {
  vertical-align: middle;
}

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

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

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

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

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

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

.singleColumnTitle {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #5380eb;
  padding-bottom: 0.4em;
}
.singleColumnTitle:before {
  content: "";
  flex-grow: 1;
  height: 3px;
  background: #5380eb;
  display: block;
  margin-right: 0.8em;
  max-width: 1.5em;
  width: 100%;
}

.singleColumnInfoUl .cate {
  background-color: #5380eb;
  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: #c9caca;
  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;
  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 #5380eb;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    padding: 8%;
    margin: 12% 0 6% 0;
  }
}

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

.singleColumnWriterButton {
  background: #fff;
  border: 1px solid #5380eb;
  border-radius: 25px;
  padding: 0.25em;
  max-width: 280px;
  display: block;
  transition: 0.3s;
  color: #5380eb;
}
.singleColumnWriterButton:hover {
  background: #5380eb;
  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;
  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;
  transform: rotate(45deg);
}
.next .singleColumnPrevNextArrow {
  transform: scale(-1, 1);
  left: 15px;
  right: auto;
}

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

.articleListCard {
  margin-bottom: 15%;
}

.articleListCard_text {
  padding: 4% 8%;
}

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

.excerpt {
  color: #777777;
}

.archiveColumnButton {
  padding: 0.3em 1em;
  transition: 0.3s;
  border-bottom: 1px solid #5380eb;
}
a:hover .archiveColumnButton {
  border-bottom: 1px solid #3e3a39;
  color: #3e3a39;
}
.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 {
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .archiveColumnTitle {
    font-size: 14px;
  }
}
a:hover .archiveColumnTitle {
  color: #5380eb;
}

/*Pagenation*/
.pagenation {
  margin: 1em 0;
}
.pagenation ul {
  display: flex;
  justify-content: center;
}
.pagenation li {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  margin: 0 1%;
  color: #fff;
  background: #3e3a39;
}
.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: "Inter", sans-serif;
  display: block;
  padding: 10px 20px;
}
.pagenation li a:hover {
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: ease;
  background: #5380eb;
}
@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: #5380eb;
  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 {
  transition: 0.3s;
}
.sidebarNewsUl .cat-item a:hover p.mainColor {
  color: #bfd9ed;
}
.sidebarNewsUl .cat-item .date {
  font-weight: bold;
  color: #5380eb;
  font-family: "Inter", sans-serif;
}

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

.sidebarTitle {
  font-size: 14px;
}
.sidebarTitle .fontEn {
  font-size: 32px;
  color: #5380eb;
  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: #5380eb;
  right: 10px;
  top: 10px;
  position: absolute;
  font-size: 14px;
}

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

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

/* リスト */
.cmUl {
  letter-spacing: -0.4em;
  margin-left: -10px;
  margin-right: -10px;
}

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

.ul6 > li {
  width: 16.6666666667%;
}

.ul5 > li {
  width: 20%;
}

.ul4 > li {
  width: 25%;
}

.ul3 > li {
  width: 33.3333333333%;
}

.ul2 > li {
  width: 50%;
}

.ul1 > li {
  width: 100%;
}

@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%;
  }
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*==================================================
 * 共通
 *================================================*/
/*共通部分*/
body {
  color: #3e3a39;
}

.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: #5380eb;
  font-size: 24px;
  position: absolute;
  top: 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;
  transition: 0.3s;
}
.externalLink:hover {
  color: #5380eb;
}
.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;
  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: #bfd9ed;
  z-index: -1;
  border-radius: 25px;
  left: -10%;
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.textButton:hover:before {
  width: 120%;
}
@media only screen and (max-width: 767px) {
  .textButton {
    font-size: 12px;
  }
}

.vertical {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
}

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

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

/*==================================================
 * ヘッダー
 *================================================*/
.logo {
  width: 75px;
  margin-left: 0;
}
@media only screen and (max-width: 959px) {
  .logo {
    width: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .logo {
    width: 70px;
  }
}

@media only screen and (max-width: 767px) {
  header {
    position: absolute;
    z-index: 1000;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  header .logo {
    width: 50px;
    margin-top: 8px;
  }
}

.menu-btn {
  position: fixed;
  right: 5px;
  z-index: 1100;
  margin-top: 20px;
}

.open .menu-trigger span {
  background-color: #fff;
}

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

.headerNavContCard {
  display: flex;
  margin-left: 5%;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@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: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .headerNavUnit {
    padding-top: 0px;
  }
}

.headerMenuUl {
  display: flex;
  justify-content: flex-start;
}
.headerMenuUl li a {
  display: block;
  padding: 0.5em 1.3em;
  letter-spacing: 0.01em;
  font-size: 16px;
  transition: 0.3s;
  color: #fff;
  position: relative;
}
.headerMenuUl li a:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s;
}
.headerMenuUl li a span {
  font-weight: normal;
}
.headerMenuUl li a:hover:after {
  width: 100%;
}
.headerMenuUl li:last-child a {
  border: 1px solid #fff;
  margin-left: 1.3em;
}
.headerMenuUl li:last-child a:after {
  display: none !important;
}
.headerMenuUl li:last-child a:hover {
  background-color: #fff;
  color: #5380eb;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerMenuUl li a {
    padding: 0.5em 0.8em;
    font-size: 13px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerMenuUl li a {
    padding: 0.5em 1em;
    font-size: 14px;
  }
}

.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;
  transition: 0.3s;
}
.overRayMenuUl > li a span {
  display: block;
  text-align: left;
  letter-spacing: 0.015em;
  line-height: 1.4;
  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: #5380eb;
  color: #fff;
}
.headerLangButtonElem.off {
  background-color: #c9caca;
  color: #fff;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.headerLangButtonElem.off:hover {
  color: #5380eb;
  background: #f7f8f8;
}
@media only screen and (max-width: 959px) {
  .headerLangButtonElem {
    font-size: 10px;
  }
}

.headerNavButton {
  padding: 1em 3em 1em 4em;
  background: rgb(0, 102, 199);
  background: linear-gradient(90deg, rgb(0, 102, 199) 0%, rgb(29, 37, 108) 100%);
  color: #fff;
  display: block;
  text-align: center;
  position: relative;
  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: #c9caca;
}
@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;
  }
}

.headerLangChange {
  position: absolute;
  top: 120px;
  right: 50px;
  z-index: 1;
  background: #fff;
  border-radius: 50px;
  padding: 0 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media only screen and (max-width: 767px) {
  .headerLangChange {
    top: 17px;
    right: 70px;
    padding: 0 5px;
    z-index: 1000;
  }
}

.headerLangChangeUl li {
  display: inline-block;
}
.headerLangChangeUl li:not(:last-child)::after {
  content: "|";
  display: inline-block;
}
.headerLangChangeUl li.locate a {
  pointer-events: none;
}
.headerLangChangeUl li.locate a span {
  color: #c9caca;
}
.headerLangChangeUl li a:hover span {
  color: #5380eb;
}
.headerLangChangeUl li a span {
  transition: 0.3s;
  font-size: 14px;
  letter-spacing: 0.01em;
  display: inline-block;
  padding: 0.5em 1em;
}
@media only screen and (max-width: 767px) {
  .headerLangChangeUl li a span {
    font-size: 10px;
  }
}

/*==================================================
 * フッター
 *================================================*/
.footerContactCover {
  padding-top: 50px;
}
@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: 5%;
  padding-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .footerCopy {
    padding-bottom: 5px;
  }
}

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

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

.footerContactCardInner {
  padding: 7% 6%;
  background-color: #fff;
  transition: 0.3s;
}
a:hover .footerContactCardInner {
  background-color: #5380eb;
}

@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: #5380eb;
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  transition: 0.3s;
}
.footerContactIco i {
  color: #fff;
  font-size: 24px;
  line-height: 50px;
}
a:hover .footerContactIco {
  background-color: #fff;
}
a:hover .footerContactIco i {
  color: #5380eb;
}

.footerContactCardInner {
  display: flex;
}

.footerContactText {
  padding-left: 4%;
  transition: 0.3s;
}
.footerContactText .main {
  font-size: 42px;
  color: #5380eb;
  font-family: "Marcellus", 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%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  font-size: 16px;
  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: flex;
  }
}

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

.footerInfoLinkCard {
  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: flex;
  }
}

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

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

.footerLinkInner {
  display: flex;
  background: radial-gradient(circle, rgb(0, 35, 106) 0%, rgb(23, 0, 58) 100%);
  padding: 4%;
  transition: 0.3s;
}
a:hover .footerLinkInner {
  opacity: 0.8;
}

.footerLinkImgCard {
  width: 30%;
}

.footerLinkTextCard {
  width: 70%;
}

@media print, screen and (min-width: 768px) {
  .footerLinkUnit {
    display: flex;
    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: flex;
  align-items: center;
}

.fNavArea {
  padding-top: 0px !important;
}

.fNavImg {
  padding-bottom: 67%;
  overflow: hidden;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .fNavImg {
    padding-bottom: 40%;
  }
}

.fNavTxtarea {
  position: absolute;
  z-index: 2;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.fNavTxtarea .white {
  transition: all 0.3s;
}

.fNav {
  letter-spacing: -0.4em;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 50px;
}
.fNav li {
  padding: 10px 40px;
  letter-spacing: normal;
  display: inline-block;
  width: 33.3333333333%;
  position: relative;
}
.fNav li a {
  display: block;
  transition: all 0.3s;
  position: relative;
}
.fNav li a .cmCover:before {
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(194, 217, 235, 0.57);
  z-index: 2;
}
.fNav li a:hover .fNavTxtarea .white {
  color: #5380eb !important;
}
.fNav li a:hover .cmCover:before {
  background-color: rgba(255, 255, 255, 0.57);
}
.fNav li a .cmCover:before {
  transition: all 0.3s;
}
.fNav li a .fNavEng {
  color: #5380eb;
  position: absolute;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  top: -20px;
  left: -35px;
  height: 270px;
}
.fNav li a .fNavEng:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 90px;
  background-color: #5380eb;
  margin-top: 15px;
  margin-left: -5px;
}
@media only screen and (max-width: 959px) {
  .fNav li a .fNavEng:after {
    height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .fNav li a .fNavEng:after {
    height: 50px;
  }
}
@media only screen and (max-width: 959px) {
  .fNav li a .fNavEng {
    left: -25px;
  }
}
@media only screen and (max-width: 767px) {
  .fNav li a .fNavEng {
    top: -10px;
  }
}
@media only screen and (max-width: 959px) {
  .fNav li {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .fNav li {
    padding: 10px 15px;
    width: 100%;
  }
}
@media only screen and (max-width: 959px) {
  .fNav {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .fNav {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.fNavJp {
  padding: 6px 12px;
  display: inline-block;
  letter-spacing: 0.1em;
}

/*==================================================
 * トップページ
/*================================================*/
.slickFvImg {
  padding-bottom: 45%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .slickFvImg {
    padding-bottom: 70%;
  }
}

.bgDot {
  background-image: url("../img/bg_dot.png");
  background-size: 46px auto;
  background-repeat: repeat;
}

.bgTrans {
  position: relative;
}
.bgTrans:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../img/bg_dot.png"), rgba(94, 128, 174, 0.93);
  background-size: 46px auto, cover;
  z-index: 0;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .bgTrans:before {
    background-size: 24px auto, cover;
  }
}
.bgTrans.bgTransGray:before {
  background-color: rgba(56, 56, 56, 0.48);
  z-index: 2;
}
.bgTrans.bgTransGray:hover:before {
  background-color: rgba(255, 255, 255, 0.2);
}

.gradLightBlue {
  background: rgb(234, 240, 243);
  background: url("../img/bg_dot.png"), linear-gradient(97deg, rgb(234, 240, 243) 0%, rgb(191, 215, 235) 100%);
  background-size: 46px auto, 100%;
}
@media only screen and (max-width: 767px) {
  .gradLightBlue {
    background-size: 24px auto, cover;
  }
}

.gradLightBlueReverse {
  background: rgb(234, 240, 243);
  background: url("../img/bg_dot.png"), linear-gradient(97deg, rgb(191, 215, 235) 0%, rgb(234, 240, 243) 100%);
  background-size: 46px auto, 100%;
}
@media only screen and (max-width: 767px) {
  .gradLightBlueReverse {
    background-size: 24px auto, cover;
  }
}

.gradBlue {
  background: rgb(83, 128, 239);
  background: url("../img/bg_dot.png"), linear-gradient(85deg, rgb(178, 204, 220) 0%, rgb(83, 128, 239) 100%);
  background-size: 46px auto, 100%;
}
@media only screen and (max-width: 767px) {
  .gradBlue {
    background-size: 24px auto, cover;
  }
}

.cmWave {
  position: relative;
}
.cmWave:before, .cmWave:after {
  content: "";
  display: inline-block;
  background-image: url(../img/wave.png);
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding-bottom: 10%;
}
.cmWave:after {
  transform: rotateX(180deg);
  top: inherit;
  margin-bottom: -10px;
}

.cmWaveTop {
  /*
  position: relative;
  &:before {
      content: "";
      display: inline-block;
      background-image: url(../img/wave.png);
      background-size: cover;
      width: 100%;
      padding-bottom: 10%;
  }
  &.cmWaveTopNavy:before {
      background-image: url(../img/wave_navy.png);
  }
  */
}

.cmWaveBottom {
  /*
  position: relative;
  &:after{
      content: "";
      display: inline-block;
      background-image: url(../img/wave.png);
      background-size: cover;
      transform: rotateX(180deg);
      margin-bottom: -10px;
      width: 100%;
      padding-bottom: 10%;
  }
  &.cmWaveBottomNavy:after{
      background-image: url(../img/wave_navy.png);
  }
  */
}

.cmWaveReverse:before {
  transform: rotateY(180deg);
}
.cmWaveReverse:after {
  transform: rotateX(180deg) rotateY(180deg);
}

/* コンテナから少しはみ出すレイアウト */
.objectOverLeft {
  width: 120%;
  right: 25%;
  position: relative;
}
@media only screen and (max-width: 959px) {
  .objectOverLeft {
    right: 20%;
  }
}

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

.underFv {
  /*padding-top: 30%;*/
  width: 100%;
  height: 44vw;
  margin-top: -9%;
  position: relative;
  z-index: 1;
  /*&:before{
      background: $bgGradFv;
      position: absolute;
      content: "";
      display: block;
      width: 100%;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
  }*/
}
.underFv image {
  width: 100%;
}
.underFv .underFvTitle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .underFv {
    z-index: 1002;
    margin-top: 0%;
  }
}

.underFvOuter {
  position: relative;
}
.underFvOuter .underFvTxtarea {
  position: absolute;
  top: 25%;
  left: 20%;
  z-index: 2;
  color: #fff;
}
.underFvOuter .underFvTxtarea .underFvTitleEn {
  font-size: 3vw;
}
@media only screen and (max-width: 767px) {
  .underFvOuter .underFvTxtarea .underFvTitleEn {
    font-size: 5.6vw;
  }
}
.underFvOuter .underFvTxtarea .underFvTitleJp {
  font-size: 1.2vw;
}
@media only screen and (max-width: 767px) {
  .underFvOuter .underFvTxtarea .underFvTitleJp {
    font-size: 3.6vw;
  }
}
@media only screen and (max-width: 767px) {
  .underFvOuter .underFvTxtarea {
    z-index: 1002;
    top: 28%;
  }
}
@media only screen and (max-width: 767px) {
  .underFvOuter {
    margin-bottom: 0px;
  }
}

.underFvCover {
  opacity: 0.85;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 44vw;
  z-index: 2;
  margin-top: -9%;
}
@media only screen and (max-width: 767px) {
  .underFvCover {
    z-index: 1002;
    margin-top: 0%;
  }
}

.topFv.cmWaveBottom:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: -1px;
}

.cmBtn {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  display: inline-block;
  padding: 12px 20px;
  width: 100%;
  max-width: 340px;
  transition: all 0.3s;
  position: relative;
  text-align: center;
}
.cmBtn:after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: all 0.3s;
}
.cmBtn:hover {
  background-color: #fff;
  color: #5380eb;
}
.cmBtn:hover:after {
  border-color: #5380eb;
}
.cmBtn.cmBtnReverse {
  background-color: #5380eb;
  color: #fff;
  border-color: #5380eb;
}
.cmBtn.cmBtnReverse:hover {
  background-color: #fff;
  color: #5380eb;
}
@media only screen and (max-width: 767px) {
  .cmBtn {
    padding: 12px 20px;
    max-width: 230px;
  }
}

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

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

.mainTitleEn {
  display: inline-block;
}
.mainTitleEn:before, .mainTitleEn:after {
  display: inline-block;
  content: "／";
}
.mainTitleEn:before {
  margin-right: 20px;
}
.mainTitleEn:after {
  margin-left: 20px;
}

.mainTitleJp {
  margin-top: -15px;
}

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

.slickFv svg {
  position: relative;
  z-index: 1;
  width: 100%;
  /*height: auto;*/
  height: 57vw;
}

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

.slickFvOuter {
  position: relative;
}

.slickFvTxtarea {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 10%;
  z-index: 4;
}
.slickFvTxtarea .slickFvTitle {
  font-size: 2.8vw;
  color: #1f1f1f;
  letter-spacing: 0.03em;
  text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.9);
}
.slickFvTxtarea .slickFvTitle span {
  color: #5380eb;
  vertical-align: middle;
}
.slickFvTxtarea .slickFvTitle span.slickFvTitleEn {
  font-style: italic;
  display: inline-block;
  font-size: 1vw;
  letter-spacing: normal;
}
@media only screen and (max-width: 767px) {
  .slickFvTxtarea .slickFvTitle span.slickFvTitleEn {
    font-size: 2.8vw;
  }
}
@media only screen and (max-width: 767px) {
  .slickFvTxtarea .slickFvTitle {
    font-size: 4.8vw;
  }
}
@media only screen and (max-width: 767px) {
  .slickFvTxtarea {
    z-index: 1005;
  }
}

/* トップ コンセプト */
#topConcept {
  background-size: 46px auto, cover;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  #topConcept {
    z-index: 1002;
  }
}

.topConceptTxtarea {
  z-index: 3;
  position: relative;
}

.topConceptBgTrans {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

/* トップ 事業内容 */
#topBusiness {
  background-size: 100% auto;
  background-position: center 0px;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #topBusiness {
    background-size: cover;
    background-position: center center;
  }
}

#topBusiness .mainTitleOuter {
  padding: 0px 50px;
}
@media only screen and (max-width: 767px) {
  #topBusiness .mainTitleOuter {
    display: block;
  }
}

.topBusinessIntroList {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
}
.topBusinessIntroList > li {
  padding: 0px 50px;
}
@media only screen and (max-width: 959px) {
  .topBusinessIntroList > li {
    padding: 0px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .topBusinessIntroList > li {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .topBusinessIntroList {
    margin-bottom: 10px;
  }
}

.topBusinessList {
  margin-top: 12vw;
  position: relative;
  z-index: 2;
}
.topBusinessList > li {
  padding: 0px 40px;
  vertical-align: top;
}
.topBusinessList > li a {
  position: relative;
  display: block;
}
@media only screen and (max-width: 959px) {
  .topBusinessList > li {
    padding: 0px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .topBusinessList > li:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topBusinessList {
    margin-top: 6vw;
  }
}
@media only screen and (max-width: 959px) {
  .topBusinessList {
    margin-top: 6vw;
  }
}
@media only screen and (max-width: 767px) {
  .topBusinessList {
    margin-top: -30px;
  }
}

@media screen and (min-width: 1280px) and (max-width: 1440px) {
  .topBusinessList {
    margin-top: 8vw;
  }
}
.topBusinessListImg {
  padding-bottom: 82%;
  margin-bottom: 30px;
}

.topBusinessListTitle {
  padding-bottom: 30px;
  position: relative;
}
.topBusinessListTitle:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #333;
  left: 0;
  bottom: 0;
}

.topBusinessColorArea {
  background: url("../img/bg_dot.png"), #5380eb;
  background-size: 46px auto, 100%;
}
@media only screen and (max-width: 767px) {
  .topBusinessColorArea {
    background-size: 24px auto, cover;
  }
}

.topBusinessOuter {
  /*background: url('../img/bg_dot.png') , $mainColor;
  background-size: 46px auto , 100%;*/
  position: relative;
  overflow: hidden;
}
.topBusinessOuter:before {
  content: "";
  display: inline-block;
  background: rgb(234, 240, 243);
  background: url("../img/bg_dot.png"), linear-gradient(97deg, rgb(234, 240, 243) 0%, rgb(191, 215, 235) 100%);
  background-size: 46px auto, 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .topBusinessOuter:before {
    height: 80%;
    background-size: 24px auto, cover;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topBusinessOuter:before {
    height: 60%;
  }
}
.topBusinessOuter::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  background-position: center top;
  background-size: contain;
  top: -5%;
  left: -5%;
  z-index: -2;
  filter: blur(7px);
}
@media only screen and (max-width: 767px) {
  .topBusinessOuter::after {
    background-size: cover;
    background-position: center center;
  }
}
@media only screen and (max-width: 767px) {
  .topBusinessOuter {
    z-index: 1004;
  }
}

.topBusinessEng {
  color: #5380eb;
  position: absolute;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  top: -30px;
  left: -50px;
  height: 270px;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
@media only screen and (max-width: 959px) {
  .topBusinessEng {
    left: -30px;
  }
}
@media only screen and (max-width: 767px) {
  .topBusinessEng {
    top: -15px;
  }
}

/* トップ商品紹介 */
@media only screen and (max-width: 767px) {
  #itemList {
    padding-bottom: 0px;
  }
}

.topItemImg {
  padding-bottom: 67%;
  margin-bottom: 20px;
}

.topItemTag {
  color: #5380eb;
  display: inline-block;
  padding: 2px 15px;
  border: 1px solid #5380eb;
}

.topItemList {
  margin-left: -20px;
  margin-right: -20px;
}
.topItemList li {
  padding: 0px 20px;
  letter-spacing: normal;
}
@media only screen and (max-width: 767px) {
  .topItemList li {
    padding: 0px 5px;
  }
}
.topItemList .slick-prev, .topItemList .slick-next {
  left: 0;
  top: 25%;
  z-index: 10;
  width: 35px;
  height: 35px;
}
.topItemList .slick-prev:before, .topItemList .slick-next:before {
  content: "";
  background-image: url("../img/top_item_arrow.png");
  display: inline-block;
  width: 35px;
  height: 35px;
  display: inline-block;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .topItemList .slick-prev, .topItemList .slick-next {
    left: -8px;
    top: 17%;
  }
}
.topItemList .slick-next {
  left: inherit;
  right: 0px;
}
.topItemList .slick-next:before {
  transform: rotateY(180deg);
  transform-origin: center;
}
@media only screen and (max-width: 767px) {
  .topItemList .slick-next {
    left: inherit;
    right: -8px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topItemList {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .topItemList {
    margin-left: -5px;
    margin-right: -5px;
  }
}

#itemList .topItemList > li {
  margin-bottom: 50px;
}

.topNewsTable {
  width: 100%;
}
.topNewsTable tr {
  border-top: 1px solid #666;
}
.topNewsTable tr:last-child {
  border-bottom: 1px solid #666;
}
.topNewsTable td {
  padding: 30px 10px;
}
@media only screen and (max-width: 767px) {
  .topNewsTable td {
    display: inline-block;
    padding: 20px 0px;
  }
}
.topNewsTable td:first-child {
  width: 160px;
  padding-left: 50px;
}
@media only screen and (max-width: 767px) {
  .topNewsTable td:first-child {
    padding-left: 0px;
    padding-bottom: 0px;
    width: 110px;
  }
}
.topNewsTable td:nth-child(2) {
  width: 130px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .topNewsTable td:nth-child(2) {
    padding-bottom: 0px;
  }
}
.topNewsTable td:last-child {
  padding-right: 50px;
}
@media only screen and (max-width: 767px) {
  .topNewsTable td:last-child {
    width: 100%;
    padding-right: 0px;
    padding-top: 10px;
  }
}
.topNewsTable .topNewsTag {
  width: 100%;
  background-color: #5380eb;
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 4px 10px;
}
@media only screen and (max-width: 767px) {
  .topNewsTable .topNewsTag {
    font-size: 12px;
    padding: 3px 5px 4px;
  }
}
.topNewsTable .topNewsTitle {
  transition: all 0.3s;
}
.topNewsTable .topNewsTitle:hover {
  text-decoration: underline;
}

/* トップオンラインストア */
.topOnlineArea .topOnlineImg {
  padding-bottom: 36%;
}
@media only screen and (max-width: 767px) {
  .topOnlineArea .topOnlineImg {
    padding-bottom: 75%;
  }
}
.topOnlineArea:hover * {
  color: #333;
}

.topOnlineTxtarea {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  left: 0;
  right: 0;
}
.topOnlineTxtarea * {
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .topOnlineTxtarea {
    padding: 10px 15px;
  }
}

/* フッターお問い合わせ */
.fContactLogo {
  display: block;
  width: 100%;
  max-width: 120px;
}
@media only screen and (max-width: 959px) {
  .fContactLogo {
    max-width: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .fContactLogo {
    max-width: 70px;
    margin: 0 auto 30px;
  }
}

.fContactList {
  width: 100%;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}
.fContactList > li {
  width: 30%;
  display: inline-block;
}
@media only screen and (max-width: 959px) {
  .fContactList > li {
    width: 20%;
  }
}
.fContactList > li:last-child {
  width: 70%;
}
@media only screen and (max-width: 959px) {
  .fContactList > li:last-child {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .fContactList > li {
    width: 100% !important;
  }
}
.fContactList .fContactBtnList > li {
  padding-bottom: 10px;
  vertical-align: middle;
  min-width: 260px;
}
.fContactList .fContactBtnList > li:last-child {
  margin-left: 30px;
}
@media only screen and (max-width: 767px) {
  .fContactList .fContactBtnList > li {
    width: 100%;
    margin-left: auto !important;
    margin-right: auto;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .fContactList {
    display: block;
  }
}

footer .logo {
  max-width: 75px;
}

/*==================================================
 * 会社概要
/*================================================*/
.pageHeaderInner {
  padding: 10% 0;
  background: linear-gradient(to right, rgb(94, 128, 173) 0%, rgba(94, 128, 173, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
@media only screen and (max-width: 767px) {
  .pageHeaderInner {
    padding: 15% 0;
  }
}

.pageHeaderText {
  color: #fff;
}
.pageHeaderText .en {
  font-family: "Marcellus", serif;
  font-size: 42px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .pageHeaderText .en {
    font-size: 28px;
  }
}

.companyHistoryTable {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.companyHistoryTable tr {
  border-bottom: 1px solid #6d6d6d;
}
.companyHistoryTable th, .companyHistoryTable td {
  padding: 20px 20px;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .companyHistoryTable th, .companyHistoryTable td {
    padding: 15px 10px;
  }
}
.companyHistoryTable th {
  width: 160px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .companyHistoryTable th {
    width: 80px;
  }
}

.companyAboutTable {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.companyAboutTable th, .companyAboutTable td {
  padding: 20px 20px;
  font-weight: normal;
  border: 1px solid #bfd9ed;
}
@media only screen and (max-width: 767px) {
  .companyAboutTable th, .companyAboutTable td {
    padding: 12px 8px;
  }
}
.companyAboutTable th {
  width: 160px;
  border-right: none;
  background-color: #bfd9ed;
  border-bottom: 1px solid #fff;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .companyAboutTable th {
    width: 86px;
    vertical-align: middle;
  }
}
.companyAboutTable td {
  border-left: none;
}

.gmapIframeOuter {
  width: 100%;
  max-width: 1060px;
  height: 500px;
  margin: 0 auto;
  position: relative;
}

.gmapIframe {
  width: 100%;
  height: 500px;
}

/*==================================================
 * 事業内容
/*================================================*/
@media only screen and (max-width: 767px) {
  #business01,
#business02,
#business03 {
    padding-bottom: 0px;
  }
}

.businessMainNum {
  position: relative;
  display: inline-block;
}
.businessMainNum:after {
  content: "";
  position: absolute;
  border: 1px solid #5380eb;
  width: 130px;
  transform: rotateZ(-45deg);
  top: 70%;
  right: -120%;
}
@media only screen and (max-width: 959px) {
  .businessMainNum:after {
    width: 80px;
    right: -100%;
  }
}
@media only screen and (max-width: 767px) {
  .businessMainNum:after {
    width: 70px;
  }
}

.businessContentList {
  margin-left: -15px;
  margin-right: -15px;
}
.businessContentList > li {
  padding: 0px 15px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  width: 63%;
}
@media only screen and (max-width: 959px) {
  .businessContentList > li {
    width: 54%;
  }
}
@media only screen and (max-width: 767px) {
  .businessContentList > li {
    width: 100%;
  }
}
.businessContentList > li:last-child {
  width: 37%;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .businessContentList > li:last-child {
    width: 42%;
  }
}
@media only screen and (max-width: 959px) {
  .businessContentList > li:last-child {
    width: 46%;
  }
}
@media only screen and (max-width: 767px) {
  .businessContentList > li:last-child {
    width: 100%;
    margin-bottom: 40px;
  }
}
.businessContentList .bgImgHeight {
  padding-bottom: 60%;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .businessContentList .bgImgHeight {
    padding-bottom: 67%;
  }
}
@media only screen and (max-width: 959px) {
  .businessContentList .bgImgHeight {
    padding-bottom: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .businessContentList .bgImgHeight {
    padding-bottom: 67%;
    margin-bottom: 20px;
  }
}
.businessContentList.businessContentListReverse > li:first-child {
  order: 2;
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .businessSubTitle {
    line-height: 1.4em;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 959px) {
  .businessSubTitle {
    line-height: 1.4em;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .businessSubTitle {
    line-height: 1.7em;
  }
}

@media screen and (min-width: 1280px) and (max-width: 1440px) {
  .businessSubTitle {
    line-height: 1.4em;
  }
}
.businessFlowArea {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 820px;
}

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

.serviceFlowCard {
  display: flex;
  align-items: center;
}
.serviceFlowCard:not(:last-child) {
  margin-bottom: 4%;
}
@media only screen and (max-width: 767px) {
  .serviceFlowCard {
    align-items: flex-start;
  }
}

.serviceFlowImgCard {
  width: 14%;
}
@media only screen and (max-width: 767px) {
  .serviceFlowImgCard {
    width: 50px;
    padding-top: 4px;
  }
}

.serviceFlowTextCard {
  width: 86%;
  padding-left: 4%;
}

.serviceFlowText_title {
  color: #fff;
  font-size: 21px;
  letter-spacing: 0.01em;
  margin-bottom: 0.3em;
  position: relative;
  padding-bottom: 20px;
}
.serviceFlowText_title:after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #fff;
  margin-top: 20px;
}
.serviceFlowText_title span {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  margin-right: 0.2em;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .serviceFlowText_title {
    font-size: 18px;
  }
  .serviceFlowText_title span {
    font-size: 16px;
  }
}

.serviceFaqText_text {
  font-size: 20px;
  margin-bottom: 0px;
  border-left: 1px solid #5380eb;
  padding-left: 30px;
  margin-left: 15px;
}
.answer .serviceFaqText_text {
  font-size: 14px;
  font-weight: normal;
  color: #595757;
  line-height: 2;
}
.question .serviceFaqText_text {
  transition: 0.3s;
}
.question .serviceFaqText_text:hover {
  color: #5380eb;
}
@media only screen and (max-width: 959px) {
  .serviceFaqText_text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .serviceFaqText_text {
    font-size: 14px;
    padding-left: 15px;
  }
}

.serviceFaqCard {
  position: relative;
  border: 1px solid #5380eb;
  padding: 2% 5% 2% 2%;
  margin-bottom: 1%;
}
.serviceFaqCard.question {
  cursor: pointer;
  margin-top: 2%;
}
.serviceFaqCard.answer {
  margin-bottom: 0px;
}
.serviceFaqCard.question .serviceFaqTextCard:after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #5380eb;
  border-right: 1px solid #5380eb;
  transform: rotate(135deg);
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .serviceFaqCard.question .serviceFaqTextCard:after {
    right: 3%;
  }
}
.serviceFaqCard.question .serviceFaqTextCard.on:after {
  transform: rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .serviceFaqCard {
    padding: 2% 7% 2% 2%;
  }
}

.serviceFaqIcoCard {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  width: 35px;
  height: 35px;
}
@media only screen and (max-width: 767px) {
  .serviceFaqIcoCard {
    left: 5px;
  }
}

.serviceFaqIco_ico {
  font-size: 34px;
  font-family: "Marcellus", serif;
  color: #5380eb;
  text-align: center;
  line-height: 35px;
}
.answer .serviceFaqIco_ico {
  color: #5380eb;
}
@media only screen and (max-width: 767px) {
  .serviceFaqIco_ico {
    font-size: 24px;
  }
}

.serviceFaqTextCard {
  padding-left: 50px;
}
@media only screen and (max-width: 767px) {
  .serviceFaqTextCard {
    padding-left: 25px;
  }
}

/*.serviceFaqUl{
    li{
        &:not(:last-child){
            border: 1px solid $mainColor;
            padding: 2%;
            margin-bottom: 2%;    
        }
    }
}*/
.serviceFaqAnswerWrap {
  display: none;
  background-color: #b7d1e5;
}

/*==================================================
 * 商品詳細
/*================================================*/
.itemDetailArea {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.itemDetailImg {
  padding-bottom: 67%;
}

.cmBgFloat {
  position: relative;
}
.cmBgFloat:after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #bfd9ed;
  width: 100%;
  height: 100%;
  top: 10px;
  right: -10px;
  z-index: -1;
}

.itemDetailTitle {
  position: relative;
  padding-bottom: 20px;
}
.itemDetailTitle:after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #333;
  margin-top: 20px;
}

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