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

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


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

*/
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
.mainColor {
  color: #163590;
}

.mainColorSub {
  color: #231815;
}

.bgmainColor {
  color: #f1f3f3;
}

.mainColorDeep {
  color: #596166;
}

.bgMainColorDeep {
  background-color: #596166;
}

.mainColorExDeep {
  color: #c5c5c5;
}

.mainColorLight {
  color: #aad1c1;
}

.bgMainColorLight {
  background-color: #aad1c1;
}

.mainColorExLight {
  color: #e9f9f2;
}

.bgMainColorExLight {
  background-color: #e9f9f2;
}

.mainColorUlLight {
  color: #f6f7f9;
}

.cautionColor {
  color: #e60110;
}

.bgMainColorUlLight {
  background-color: #f6f7f9;
}

.subColor {
  color: #596166;
}

.bgSubColor {
  background-color: #004996;
}

.subColorDeep {
  color: #e3e3fb;
}

.bgSubColorDeep {
  background-color: #e3e3fb;
}

.bgSubColorLight {
  background-color: #e3e2e2;
}

.compColor {
  color: #a9a8a9;
}

.bgCompColor {
  background-color: #a9a8a9;
}

.grayColor {
  color: #cccdcd;
}

.bgGrayColor {
  background-color: #cccdcd;
}

.grayColorLight {
  color: #dcdcdc;
}

.bgGrayColorLight {
  background-color: #dcdcdc;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

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

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

.bgBlack {
  background: #000;
}

.bgGrad {
  background: rgb(255, 174, 86);
  background: linear-gradient(to right, #efe590 0%, #ffae56 100%);
}

.bgGradafter {
  background: rgb(239, 229, 144);
  background: linear-gradient(to left, #efe590 0%, #ffae56 100%);
}

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

.grayLight {
  color: #9a9a9a;
}

.white {
  color: #fff;
}

/*フォント系*/
.fontEn {
  font-family: "Source Sans Pro", sans-serif;
}

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

.fontNumSub {
  font-family: "Barlow Condensed", sans-serif;
}

.fontNumSubA {
  font-family: "Didact Gothic", sans-serif;
}

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

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

.serif {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #3e3a39;
}

/*==================================================
 * リセット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: 15px;
  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: 400;
  line-height: 1.8;
}

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

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

.red2 {
  color: #b50d23 !important;
}

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

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

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

.fsL35 {
  font-size: 50px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL35 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL35 {
    font-size: 30px;
  }
}

.fsL45 {
  font-size: 45px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL45 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL45 {
    font-size: 27px;
  }
}

.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: 22px;
  }
}

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

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

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

.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: 28px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM3 {
    font-size: 18px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.writting-rl {
  writing-mode: vertical-rl;
  font-feature-settings: normal;
}

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

@media screen and (min-width: 959px) {
  .spTab {
    display: none !important;
  }
}
@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;
}

.mb15 {
  margin-bottom: 15px;
}

.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: 959px) {
  .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%;
}

.mbL5 {
  margin-bottom: 12%;
}

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

.mbS4 {
  margin-bottom: 0.5%;
}

@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) {
  .flexTab {
    display: block;
  }
  .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: 90%;
  max-width: 1730px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 959px) {
  .cnt {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.cntInnerWide {
  margin-left: -15px;
  margin-right: 0;
}
@media only screen and (min-width: 1201px) {
  .cntInnerWide {
    width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 959px) {
  .cntInnerWide {
    width: 100%;
    margin: auto;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cntInnerWide {
    width: 100%;
    margin: auto;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.w100 {
  width: 100%;
}

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

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

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

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

.cntXL {
  max-width: 1772px;
  margin-right: auto;
  margin-left: auto;
}

.cntInner {
  max-width: 1260px;
  margin-right: auto;
  margin-left: auto;
}

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

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

:root {
  --spaceSize: clamp(50px, 3.5vw, 63px);
  --spaceSizeMiddle: clamp(75px, 8vw, 150px);
  --spaceSizeWide: clamp(135px, 14vw, 270px);
}

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

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

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

.marginV {
  margin-bottom: var(--spaceSizeMiddle);
}

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

.marginMT {
  margin-top: var(--spaceSizeMiddle);
}

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

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

/*背景系*/
.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;
  filter: blur(3px);
  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 {
  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.5) 0px 30px 60px -30px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

/*ボタン*/
/* ボタンだけに指定する場合は以下 */
.button {
  display: inline-block;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  border: 1px solid #333;
  padding: 0.5em 1em;
  letter-spacing: 0.1em;
  line-height: 1.4;
  box-shadow: 4px 4px 0px 0 #596166;
  font-size: 21px;
  background-color: #fff;
}
.button:hover {
  color: #596166;
  background-color: #fff;
}
.button.small {
  font-size: 16px;
}
.button.insta {
  box-shadow: 4px 4px 0px 0 #e264af;
}
.button.line {
  box-shadow: 4px 4px 0px 0 #4caa4d;
}
.button.mono {
  box-shadow: 4px 4px 0px 0 #c4c4c4;
}
/*==================================================
 * header
 *================================================*/
/*------------モーダルウィンドウ------------*/
/*オーバーレイメニュー*/
.overRayBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}
.overRayBox > ul {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.open .overRayBox {
  cursor: url(../images/cross.svg), auto;
  visibility: visible;
  opacity: 1;
}

html.open {
  overflow-y: hidden;
}

/*ハンバーガーメニュー*/
.menu-btn {
  position: fixed;
  cursor: pointer;
  z-index: 1001;
  right: 20px;
  top: 27px;
  background-color: #fff;
  background-color: transparent;
  height: 50px;
  width: 57px;
  border: none;
}

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

.menu-trigger {
  position: relative;
  width: 42px;
  height: 24px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #163590;
  border-radius: 2px;
}
.menu-trigger span:nth-of-type(1) {
  top: 6px;
}
.menu-trigger span:nth-of-type(2) {
  top: 17px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: -6px;
}
.menu-trigger.active span {
  background-color: "#000";
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 0.8s forwards;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}
.menu-trigger.active span:nth-of-type(4) {
  background: none !important;
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
/*------------モーダルウィンドウ終わり------------*/
/*==================================================
 * footer
 *================================================*/
/*スマホfooter追従問い合わせ*/
.footerTelSpFlexLi {
  width: 50%;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  background-color: #a9946c;
}
.footerTelSpFlexLi:last-child {
  border-right: none;
  background-color: #163590;
}
.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 #163590;
}

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

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

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

/*残す--ここまで*/
/*お問い合わせページ------------------------------------*/
/*お問い合わせページ------------------------------------*/
.cform {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.cform tr {
  margin-bottom: 1.5em;
  display: block;
}
.cform tr th,
.cform tr td {
  letter-spacing: 0.01em;
  text-align: left;
  display: block;
  width: 100%;
}
.cform tr th {
  margin-bottom: 0.5em;
}
.cform label {
  margin-right: 1.5em;
}
.cform label span {
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
}
.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 1em;
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 1.4;
  background-color: #f6f6f6;
}
.cform option::-moz-placeholder,
.cform textarea::-moz-placeholder,
.cform input[type=text]::-moz-placeholder,
.cform input[type=email]::-moz-placeholder,
.cform input[type=search]::-moz-placeholder,
.cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option::-moz-placeholder, .cform textarea::-moz-placeholder, .cform input[type=text]::-moz-placeholder, .cform input[type=email]::-moz-placeholder, .cform input[type=search]::-moz-placeholder, .cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option::placeholder,
.cform textarea::placeholder,
.cform input[type=text]::placeholder,
.cform input[type=email]::placeholder,
.cform input[type=search]::placeholder,
.cform input[type=url]::placeholder {
  color: #c1c1c1;
}
.cform input[type=checkbox] + span:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  font-weight: 400;
}
.cform .title {
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .cform tr {
    margin-bottom: 2em;
  }
}

.thcomment {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.2;
}

.mwform-radio-field input {
  margin: 0;
  margin-right: 0 !important;
  display: inline-block;
  vertical-align: middle;
}

.required-srt {
  color: #f04876;
  margin-left: 0.7em;
}

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

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

.contactAlertBox {
  border: 1px solid #dcdcdc;
  padding: 8% 5%;
  margin: 3% 0;
}
@media only screen and (max-width: 767px) {
  .contactAlertBox {
    padding: 12% 5%;
    margin: 13% 0;
  }
}

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

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

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

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

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

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

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

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

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

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

.entry {
  line-height: 1.8;
  letter-spacing: 0.15em;
  float: none;
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}
.entry figcaption {
  font-size: 13px;
  color: gray;
}
.entry a {
  display: inline;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
  color: #33bad4;
}
.entry blockquote {
  padding: 2em 4em;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  color: #7b7b7b;
  background-color: #f6f7f9;
  font-style: italic;
  margin-bottom: 1.5em;
}
.entry blockquote p {
  font-size: 14px;
}
.entry strong {
  font-style: normal;
  font-weight: bold;
  background: linear-gradient(transparent 40%, #fff7c0 40%);
}
.entry p {
  margin: 0.5em 0 1.3em 0;
  line-height: 2.2;
  letter-spacing: 0.1em;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .entry p {
    font-size: 14px;
  }
}
.entry h2 span,
.entry h3 span,
.entry h4 span,
.entry h5 span {
  font-weight: bold;
}
.entry h2 {
  font-size: 24px;
  margin: 8% auto 3%;
  background-color: #e9f9f2;
  padding: 0.5em 1em;
  border-radius: 3px;
  font-weight: bold;
  border-left: 4px solid #163590;
  padding-left: 0.7em;
}
@media only screen and (max-width: 767px) {
  .entry h2 {
    font-size: 18px;
    margin: 12% auto 6%;
  }
}
.entry h3 {
  font-size: 22px;
  margin: 4% auto 3%;
  font-weight: bold;
  line-height: 1.7;
  border-left: 4px solid #163590;
  padding-left: 0.7em;
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    font-size: 18px;
    margin: 12% auto 6%;
  }
}
.entry h4 {
  margin: 3% auto 3%;
  border-bottom: 1px solid #163590;
  padding-bottom: 0.4em;
  color: #163590;
  font-weight: bold;
  font-size: 21px;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .entry h4 {
    margin: 6% auto 3%;
    font-size: 16px;
  }
}
.entry h5 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #aad1c1;
  font-size: 20px;
}
.entry h6 {
  font-weight: bold;
  margin-bottom: 10px;
}
.entry table td {
  border-right: 1px solid #163590;
  border-bottom: 1px solid #163590;
}
.entry table td:first-child {
  width: 30%;
  background-color: #eef6fa;
  color: #163590;
  font-weight: bold;
  border-left: 1px solid #163590;
}
.entry table td:last-child {
  width: auto;
  border-right: 1px solid #163590;
}
.entry table th,
.entry table td {
  padding: 1.5rem 2rem;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.entry table tr:first-child td,
.entry table tr:first-child th {
  border-top: 1px solid #163590;
}
.entry table tr:last-child td {
  border-bottom: 1px solid #163590;
}
@media only screen and (max-width: 767px) {
  .entry table th,
  .entry table td {
    padding: 1rem 1.5rem;
    font-size: 14px;
  }
}
.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: #163590;
  position: absolute;
  left: 0;
  font-weight: 400;
}
.entry figure {
  width: min(100%, 700px);
  margin-right: auto;
  margin-left: auto;
}

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

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

.toc_list li:before {
  display: none;
}

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

.toc_toggle {
  font-size: 14px;
}

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

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

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

@media screen and (max-width: 767px) {
  .wp-caption-text {
    background: hsla(330, 50%, 60%, 0.48);
    width: 100%;
    text-align: left;
    padding: 1% 3%;
    word-wrap: break-word;
    font-size: 10px;
    color: white !important;
    position: relative !important;
    z-index: 1;
    top: -50px;
    display: block;
    left: 5%;
  }
}
/*リンクカードプラグイン*/
.lkc-title-text {
  font-weight: normal;
  letter-spacing: 0.15em;
  transition: 0.3s;
}
a:hover .lkc-title-text {
  color: #163590;
  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 #163590;
  border-radius: 10px;
  background-color: #aad1c1;
}

.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: #163590;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  display: none !important;
}

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

.lkc-domain {
  color: #fff;
}

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

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

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

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

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

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

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

.singleColumnArticleContent {
  margin: auto;
  margin-top: 0;
}

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

.singleColumnInfoUl .date {
  margin-right: 1em;
}
.singleColumnInfoUl .cateUl {
  display: inline-block;
}
.singleColumnInfoUl .cateUl li {
  display: inline-block;
  font-size: 13px;
  line-height: 0.7;
  background-color: #163590;
  color: #fff;
  border-radius: 5px;
  padding: 0.4em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 12px;
  }
}

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

.singleColumnShareButton {
  padding: 0.7rem 1rem;
  width: 20%;
  margin-right: 3%;
  text-align: center;
  transition: 0.3s;
}
@media only screen and (max-width: 959px) {
  .singleColumnShareButton {
    width: 45%;
    margin-right: 2.5%;
  }
}
.singleColumnShareButton > * {
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .singleColumnShareButton > * {
    font-size: 12px;
  }
}
.singleColumnShareButton i {
  font-size: 22px;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .singleColumnShareButton i {
    font-size: 16px;
  }
}
.singleColumnShareButton.twitter {
  background: #1da1f2;
  border: 1px solid #1da1f2;
}
.singleColumnShareButton.twitter:hover {
  background: #fff;
  color: #1da1f2;
}
.singleColumnShareButton.facebook {
  background: #1877f2;
  border: 1px solid #1877f2;
}
.singleColumnShareButton.facebook:hover {
  background: #fff;
  color: #1877f2;
}

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

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

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

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

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

.singleColumnWriterButton {
  background: #fff;
  border: 1px solid #163590;
  border-radius: 25px;
  padding: 0.25em;
  max-width: 280px;
  display: block;
  transition: 0.3s;
  color: #163590;
}
.singleColumnWriterButton:hover {
  background: #163590;
  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: #e9eef0;
  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;
}

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

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

.cmNewsTitle {
  font-size: 17px;
  line-height: 1.5;
  padding-bottom: 0.75em;
  margin-bottom: 0.75em;
  font-weight: 600;
  border-bottom: 1px solid #596166;
}
@media only screen and (max-width: 767px) {
  .cmNewsTitle {
    font-size: 16px;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
  }
}

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

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

.cmNewsListImgWrap {
  overflow: hidden;
  margin-bottom: 6%;
}
@media only screen and (max-width: 767px) {
  .cmNewsListImgWrap {
    border-radius: 15px;
  }
}

.cmNewsListInfoUl li {
  display: inline-block;
  font-size: 12px;
  background: #163590;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  padding: 0.4em;
  text-align: center;
  line-height: 0.7;
}
.cmNewsListInfoUl li:not(:last-child) {
  margin-right: 5px;
}
.cmNewsListInfoUl.nofover {
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .cmNewsListInfoUl li {
    font-size: 12px;
  }
}

/*Pagenation*/
.pagenation {
  margin: 3em 0;
}
.pagenation ul {
  display: flex;
  justify-content: center;
}
.pagenation li {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  margin: 0 0.5%;
  border-radius: 50px;
  border: solid 1px #163590;
  color: #707070;
  text-align: center;
  width: 43px;
  height: 55px;
  border-radius: 5px;
  position: relative;
}
.pagenation li a {
  width: 43px;
  height: 55px;
  display: block;
}
.pagenation li.active {
  cursor: not-allowed;
  display: inline-block;
  line-height: 0.7;
  color: #fff;
  background: #b9bec3;
  border: solid 1px #b9bec3;
}
.pagenation li.active span {
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pagenation li.prev {
  display: none;
}
.pagenation li.next {
  display: none;
}
.pagenation li.activeno {
  background: #163590;
  border: solid 1px bold;
  transition: 0.3s;
  color: #fff;
}
.pagenation li.activeno span {
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pagenation li.activeno:hover {
  opacity: 0.7;
  border-radius: 5px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .pagenation li {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pagenation li {
    width: 50px;
    height: 50px;
  }
}

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

span.page-numbers {
  color: #163590;
  font-weight: bold;
}

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

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

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

.sidebarNewsUl .cat-item {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.sidebarNewsUl .cat-item .date {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 12px;
}
.sidebarNewsUl .cat-item .title {
  font-size: 14px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .sidebarNewsUl .cat-item {
    padding-bottom: 0.25em;
    margin-bottom: 0.25em;
  }
  .sidebarNewsUl .cat-item .date {
    font-size: 13px;
  }
  .sidebarNewsUl .cat-item .title {
    font-size: 14px;
  }
}

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

.sidebarTitle {
  font-size: 27px;
  line-height: 1;
  font-family: "Source Sans Pro", sans-serif;
  color: #163590;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 1px solid;
  padding-bottom: 0.25em;
  margin-bottom: 0.75em;
}
@media only screen and (max-width: 767px) {
  .sidebarTitle {
    padding-bottom: 0.25em;
    margin-bottom: 1em;
    font-size: 26px;
  }
}

.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: #163590;
  right: 10px;
  top: 10px;
  position: absolute;
  font-size: 14px;
}

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

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

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*==================================================
 * 全サイト共通
 *================================================*/
/*共通部分*/
#CanvasContainer {
  position: fixed;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  contain: strict;
}

/*パンくず*/
/*パンくず終わり*/
.vertical {
  writing-mode: vertical-rl;
  font-feature-settings: normal;
  white-space: nowrap;
}

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

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

/*==================================================
 * 当サイトのみ共通
 *================================================*/
body {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

main {
  margin-top: 218px;
}
.home main {
  margin-top: 15%;
}
@media only screen and (max-width: 767px) {
  main {
    margin-top: 126px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  main {
    margin-top: 130px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  main {
    margin-top: 140px;
  }
}

.submit-btn input,
.submit-btn button {
  margin-top: 4%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 1.2em 4em;
  border-radius: 50px;
  border: solid 2px #163590;
  color: #fff;
  background: #163590;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
  letter-spacing: 0.2em;
  cursor: pointer;
  width: auto;
}
.submit-btn input:hover,
.submit-btn button:hover {
  background: #777778;
  border: solid 2px #777778;
  color: #fff;
}
@media only screen and (max-width: 959px) {
  .submit-btn input,
  .submit-btn button {
    padding: 0.8em 4em;
    font-size: 13px;
    height: 60px;
  }
}

.boxSadow {
  box-shadow: 2px 1px 6px 1px rgba(0, 0, 0, 0.06);
}

.boxSadow_b {
  position: relative;
}
.boxSadow_b::after {
  position: absolute;
  content: "";
  display: block;
  top: 1%;
  left: 1%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  filter: blur(15px);
  z-index: -1;
}
.boxSadow_b.__ww::after {
  border-radius: 50px;
  filter: blur(5px);
}

.textSadow {
  text-shadow: 3px 2px 8px rgba(0, 0, 0, 0.2);
}

.text_under {
  text-decoration: underline;
}

.textShadow {
  text-shadow: 3px 2px 8px rgba(0, 0, 0, 0.2);
}

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

.commonTitleEn {
  font-size: clamp(2.6rem, 2.5514563107rem + 0.1294498382vw, 2.8rem);
  color: #163590;
  line-height: 1;
}
.commonTitleEn.__small {
  font-size: clamp(2rem, 1.8058252427rem + 0.5177993528vw, 2.8rem);
}
.commonTitleEn.__large {
  font-size: clamp(2rem, 1.6601941748rem + 0.9061488673vw, 3.4rem);
}
.commonTitleEn.white {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .commonTitleEn.__sp {
    font-size: 36px;
    margin-bottom: 17%;
  }
}

.newTitleEn {
  font-size: clamp(3.6rem, 3.5514563107rem + 0.1294498382vw, 3.8rem);
  color: #163590;
  line-height: 1;
}

.commonTitleEn_head {
  position: relative;
}
.commonTitleEn_head span {
  display: inline-block;
  font-size: clamp(2.6rem, 2.5514563107rem + 0.1294498382vw, 2.8rem);
  color: #163590;
  font-weight: 500;
  line-height: 0.6;
  padding-right: 0.5em;
  background-color: #fff;
  position: relative;
}
.commonTitleEn_head::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #163590;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.commonTitleJp {
  font-size: clamp(2.6rem, 2.3087378641rem + 0.7766990291vw, 3.8rem);
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.commonTitleJp.__small {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
}

.commonText {
  font-size: clamp(1.6rem, 1.6rem + 0vw, 1.6rem);
  letter-spacing: 0.1em;
  line-height: 2.2;
}
.commonText.__large {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
}
.commonText.__lh {
  line-height: 2.8;
}
@media only screen and (max-width: 767px) {
  .commonText.__lh {
    line-height: 2.2;
  }
}

.commonTextS {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .commonTextS {
    line-height: 1.9;
  }
}

.commonMidashi {
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 0.8em;
  display: inline-block;
  line-height: 1;
  position: relative;
}
.commonMidashi::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 4px;
  border-radius: 50px;
  background-color: #163590;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.commonMidashi.__white::after {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .commonMidashi {
    font-size: 26px;
  }
}

.commonBtn {
  display: inline-block;
  line-height: 1;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  color: #fff;
  background-color: #163590;
  padding: 1.1em 3em;
  border-radius: 50px;
  transition: 0.3s;
  position: relative;
  z-index: 9;
}
.commonBtn.__trans {
  border: solid 1px #fff;
  padding: 1.2em 4.5em;
}
.commonBtn:hover {
  color: #fff;
  background-color: #777778;
}
.commonBtn:hover.__trans {
  border: solid 1px #777778;
}
@media only screen and (max-width: 767px) {
  .commonBtn {
    font-size: 15px;
    padding: 1em 3em;
  }
}

.commonBtnSub {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 13px;
  line-height: 0.7;
  color: #fff;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}
.commonBtnSub.commonBtnSub_gray {
  color: #b9bec3;
}
.commonBtnSub.commonBtnSub_gray::after {
  background: #b9bec3;
}
a:hover .commonBtnSub.commonBtnSub_p {
  opacity: 0.7;
}
.commonBtnSub::after {
  position: absolute;
  content: "";
  width: 89%;
  height: 1px;
  background: #fff;
  bottom: 3px;
  left: 0;
}
.commonBtnSub:hover {
  opacity: 0.7;
}

.commonBtnSub_next {
  display: inline-block;
  width: 15px;
  height: 15px;
  bottom: -1px;
  right: 21px;
  background: #fff;
  border-radius: 50%;
  margin-left: 24px;
  position: relative;
  transition: 0.3s;
}
.commonBtnSub_next::after {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  top: 5px;
  left: 3px;
  transform: rotate(45deg);
  border-top: solid 1px #333;
  border-right: solid 1px #333;
}
.commonBtnSub_gray .commonBtnSub_next {
  background: #b9bec3;
}
.commonBtnSub_gray .commonBtnSub_next::after {
  border-top: solid 1px #b9bec3;
  border-right: solid 1px #b9bec3;
}
.commonBtnSub_gray .commonBtnSub_next::after {
  transform: rotate(45deg);
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
a:hover .commonBtnSub_next {
  right: 15px;
}

.shadowBack::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}
.shadowBack.__brown::after {
  background-color: rgba(88, 66, 45, 0.6);
}
.shadowBack.__blue::after {
  background-color: rgba(0, 33, 94, 0.6);
}

.back_blue {
  background: #163590;
  padding: 5% 0;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .back_blue {
    padding: 13% 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .back_blue {
    padding: 10% 0;
  }
}

.swiperServise {
  overflow: hidden;
  position: relative;
}

.swiper-scrollWrap {
  width: 100%;
  position: absolute;
  bottom: 3%;
  right: 0;
}
@media only screen and (max-width: 959px) {
  .swiper-scrollWrap {
    position: static;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiper-scrollWrap {
    position: static;
  }
}

.swiperServise .swiper-scrollbar {
  width: 53% !important;
  height: 3px !important;
  cursor: pointer !important;
}
@media only screen and (max-width: 767px) {
  .swiperServise .swiper-scrollbar {
    width: 84% !important;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .swiperServise .swiper-scrollbar {
    width: 78% !important;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiperServise .swiper-scrollbar {
    width: 78% !important;
  }
}

.swiperServise .swiper-horizontal > .swiper-scrollbar {
  left: unset !important;
  bottom: 70px !important;
  right: 3.9% !important;
}

.swiperServise .swiper-scrollbar-drag {
  background: #163590 !important;
}

.swiperleftBlock {
  width: 53%;
}
@media only screen and (max-width: 767px) {
  .swiperleftBlock {
    display: none;
  }
}

.swiperrightBlock {
  width: 47%;
  padding: 1em 0;
}
@media only screen and (max-width: 767px) {
  .swiperrightBlock {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .swiperrightBlock {
    margin-top: 3%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiperrightBlock {
    margin-top: 3%;
  }
}

.swiper-pagination {
  position: static !important;
}
@media only screen and (max-width: 767px) {
  .swiper-pagination {
    font-size: 13px;
  }
}

.swiperrightBlock_1 {
  width: 59%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .swiperrightBlock_1 {
    width: 70%;
  }
}

.ServiceswiperWrap {
  right: 0;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 9;
}

.swiperServise .swiper-button-prev {
  left: 54% !important;
  top: 31% !important;
}
.swiperServise .swiper-button-prev::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  content: "\f104";
  color: #163590;
  font-size: 30px;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .swiperServise .swiper-button-prev {
    left: 87% !important;
  }
  .swiperServise .swiper-button-prev::after {
    font-size: 24px;
    bottom: 4px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .swiperServise .swiper-button-prev {
    left: 80% !important;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiperServise .swiper-button-prev {
    left: 81% !important;
  }
}

.swiperServise .swiper-button-next {
  right: 38% !important;
  top: 31% !important;
}
.swiperServise .swiper-button-next::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  color: #163590;
  font-size: 30px;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .swiperServise .swiper-button-next {
    right: -2% !important;
  }
  .swiperServise .swiper-button-next::after {
    font-size: 24px;
    bottom: 4px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .swiperServise .swiper-button-next {
    right: 4% !important;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiperServise .swiper-button-next {
    right: 7% !important;
  }
}

.cntListWrap {
  background-color: #f4f4f7;
  border-radius: 7px;
}

.cntList {
  padding: 1.6em 2em;
  border-radius: 7px;
  background-color: #f4f4f7;
}
.cntList.__grid3_s {
  width: 40%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.cntList.__grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.cntList.__grid8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.cntList.__grid2 {
  width: 80%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 5px;
  column-gap: 5px;
}
.cntList.__lh > li:not(:last-child) {
  margin-bottom: 8px;
}
.cntList > li {
  line-height: 2;
}
.cntList > li span {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  line-height: 1.6;
  padding-left: 17px;
  display: inline-block;
  position: relative;
}
.cntList > li span::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #163590;
  top: 9px;
  left: 0;
}
.cntList > li span.__none {
  padding-left: 0;
}
.cntList > li span.__none::after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .cntList {
    padding: 1.6em 1em;
  }
  .cntList.__grid3, .cntList.__grid3_s {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
  .cntList.__grid2 {
    display: block;
    width: 100%;
  }
  .cntList.__grid8 {
    grid-template-columns: 1fr 1fr;
  }
  .cntList > li:not(:last-child) {
    margin-bottom: 2px;
  }
  .cntList > li span::after {
    top: 6px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cntList.__grid3 {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  .cntList.__grid3_s {
    width: 100%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cntList.__grid3 {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  .cntList.__grid3_s {
    width: 60%;
  }
}

.cntListNumber {
  padding: 1.6em 1.6em 1.6em 3.5em;
  border-radius: 15px;
  background-color: #f4f4f7;
}
.cntListNumber.__lh > li:not(:last-child) {
  margin-bottom: 8px;
}
.cntListNumber > li {
  list-style: decimal !important;
  color: #163590;
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  line-height: 1.4;
  font-weight: 500;
}
.cntListNumber > li:not(:last-child) {
  margin-bottom: 5px;
}
.cntListNumber > li span {
  color: #3e3a39;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .cntListNumber {
    padding: 1.6em 1.6em 1.6em 2.5em;
  }
  .cntListNumber.__lh > li:not(:last-child) {
    margin-bottom: 15px;
  }
}

.commontitle_line {
  background: linear-gradient(transparent 60%, rgb(188, 209, 253) 0%);
}

/*==================================================
 * ヘッダー
 *================================================*/
header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  padding: 6em 0;
}
@media print, screen and (min-width: 768px) {
  .change-color header {
    top: 0;
    padding: 1.7em 0;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
@media only screen and (max-width: 767px) {
  header {
    padding: 2.2em 0 4em;
  }
  .change-color header {
    background-color: #fff;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  header {
    padding: 1.1em 0;
  }
  .change-color header {
    padding: 0.5em 0;
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  header {
    padding: 1.1em 0;
  }
  .change-color header {
    padding: 0.5em 0;
    background-color: rgba(255, 255, 255, 0.5);
  }
}

.headerlogoBlock {
  position: absolute;
  width: 19%;
  left: 8%;
  top: 66px;
}
.headerlogoBlock img {
  margin: 0;
}
@media screen and (max-width: 1763px) {
  .headerlogoBlock {
    top: 18px;
    left: 2%;
    width: 10%;
  }
  .change-color .headerlogoBlock {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .change-color .headerlogoBlock {
    width: 5%;
    top: 10px;
    left: 18%;
  }
}
@media only screen and (max-width: 767px) {
  .headerlogoBlock {
    width: 30%;
    left: 21px;
    top: 21px;
  }
  .change-color .headerlogoBlock {
    display: block;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerlogoBlock {
    width: 14%;
    top: 7px;
  }
  .change-color .headerlogoBlock {
    display: block;
    width: 14%;
    top: 7px;
    left: 8%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerlogoBlock {
    width: 14%;
    top: 7px;
  }
  .change-color .headerlogoBlock {
    display: block;
    width: 14%;
    top: 7px;
    left: 8%;
  }
}

.topRecruitBlock {
  margin-left: 2%;
}

.RecruitBtn {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  line-height: 1;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
  color: #fff;
  padding: 0.9em 2.8em;
  border-radius: 50px;
  background-color: #163590;
}
.change-color .RecruitBtn {
  font-size: 15px;
  padding: 0.6em 2em;
}
.RecruitBtn:hover {
  color: #fff;
  background-color: #777778;
}
@media only screen and (max-width: 767px) {
  .RecruitBtn {
    margin-left: auto;
    margin-right: auto;
    width: 180px;
    padding: 0.9em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .RecruitBtn {
    display: none;
  }
}

.headerMenueCard_Main > li {
  transition: 0.3s;
  padding: 0 2.2em;
}
.headerMenueCard_Main > li > a {
  display: inline-block;
  letter-spacing: 0.15em;
  font-size: 18px;
  text-align: center;
  display: block;
  line-height: 1.6;
  transition: 0.3s;
  position: relative;
}
.headerMenueCard_Main > li > a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 100%;
  padding-left: 10%;
  height: 3px;
  background: #163590;
  transform: scale(0, 1);
  transform-origin: left;
  transition: 0.4s;
}
.headerMenueCard_Main > li:hover > a::before {
  transform: scale(1);
}
.headerMenueCard_Main .lastMenue {
  padding-right: 0;
}
@media screen and (max-width: 1500px) {
  .headerMenueCard_Main > li {
    padding: 0 1em;
  }
}
@media screen and (max-width: 1340px) {
  .headerMenueCard_Main > li {
    padding: 0 1em;
  }
  .headerMenueCard_Main > li a {
    font-size: 16px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerMenueCard_Main > li {
    padding: 1em 0.6em;
  }
  .headerMenueCard_Main > li a {
    font-size: 15px;
  }
  .change-color .headerMenueCard_Main > li {
    padding: 1.5em 0.6em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerMenueCard_Main > li {
    padding: 1em 0.6em;
  }
  .headerMenueCard_Main > li a {
    font-size: 16px;
  }
  .change-color .headerMenueCard_Main > li {
    padding: 1.5em 0.6em;
  }
}

.topInfoBlock {
  padding-left: 0.7em;
  margin-top: 10px;
}

.overRayMenuUl > li:not(:last-child) {
  margin-bottom: 9%;
}
.overRayMenuUl > li a {
  text-align: center;
  font-size: 18px;
  display: block;
  transition: 0.3s;
  position: relative;
}
.overRayMenuUl > li.__contact {
  display: block;
  width: 69%;
  margin: auto;
  padding: 0.8em;
  background-color: #163590;
  color: #fff;
  border-radius: 50px;
  margin-top: 15%;
}
@media only screen and (max-width: 767px) {
  .overRayMenuUl {
    padding-bottom: 59px;
  }
}

.overRayMenue {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.overRayBlock {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background-color: #fff;
}

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

.overRayTextCard {
  width: 30%;
  padding: 70px 50px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .overRayTextCard {
    width: 100%;
    padding: 29% 25px 0;
  }
}

.spFooterLink {
  display: flex;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 1000;
}

.topFvMsgBannerLink {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  transition: 0.3s;
  width: 100%;
  text-align: center;
  border-top: 1px solid #fff;
  background-color: #163590;
  padding: 0.7em 1em;
}
.topFvMsgBannerLink:first-child {
  border-right: 1px solid #fff;
}
.topFvMsgBannerLink i {
  display: inline-block;
  margin-right: 5px;
  transition: 0.3s;
}
a:hover .topFvMsgBannerLink i {
  opacity: 0.7;
}
.topFvMsgBannerLink:hover {
  background-color: rgb(100, 100, 100);
  color: #fff;
}

.topFvWrap {
  position: relative;
  width: 100%;
  height: clamp(200px, 54vw, 692px);
}
.topFvWrap > video {
  position: absolute;
  top: 0;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
  min-width: 100%;
  min-height: 100%;
}
@media only screen and (max-width: 767px) {
  .topFvWrap {
    height: 100px;
  }
  .topFvWrap > video {
    top: 60%;
    width: 800px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFvWrap > video {
    width: 1200px;
  }
}

.topFvTextWrap {
  margin-top: clamp(200px, 30%, 409px);
  margin-bottom: clamp(200px, 30%, 409px);
}
@media only screen and (max-width: 767px) {
  .topFvTextWrap {
    margin: 64% 0 60%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topFvTextWrap {
    margin: 40% 0 60%;
  }
}

.topFvTitle {
  font-size: clamp(2.1rem, 1.5417475728rem + 1.4886731392vw, 4.4rem);
  letter-spacing: 0.2em;
  line-height: 1.9;
}

/*==================================================
 * header
 *================================================*/
/*==================================================
 * pagenation*/
:root {
  --swiper-theme-color: #fff;
}

.topFv {
  position: relative;
  top: 0;
}

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

/*==================================================
 * フッター
 *================================================*/
footer {
  padding: 5% 0 0;
  background-color: #fff;
  position: relative;
}
@media only screen and (max-width: 767px) {
  footer {
    padding-top: 7%;
  }
}

.footerBtnList {
  width: 40%;
  margin-right: 5%;
}
.footerBtnList > li:not(:last-child) {
  margin-bottom: 26px;
}
@media only screen and (max-width: 767px) {
  .footerBtnList {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10%;
  }
  .footerBtnList > li:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerBtnList {
    display: flex;
    width: 70%;
    margin: auto;
    margin-bottom: 5%;
  }
  .footerBtnList > li {
    width: 50%;
  }
  .footerBtnList > li:not(:last-child) {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .footerBtnList {
    width: 28%;
  }
}

.footerMenueBtn {
  width: 100%;
  display: block;
  color: #163590;
  font-size: clamp(1.8rem, 1.7029126214rem + 0.2588996764vw, 2.2rem);
  line-height: 1;
  padding: 2.5em 1em 2.5em 3em;
  border: solid 2px #e9e9e9;
  position: relative;
  transition: 0.3s;
}
.footerMenueBtn::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  top: 0;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.footerMenueBtn:hover {
  background-color: #163590;
  border: solid 2px #163590;
  color: #fff;
}
.footerMenueBtn:hover::after {
  right: 20px;
}
@media only screen and (max-width: 959px) {
  .footerMenueBtn {
    padding: 1.5em 1em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .footerMenueBtn {
    padding: 1.5em 1em;
  }
}

.footerWrap {
  padding-bottom: 3%;
}
@media only screen and (max-width: 767px) {
  .footerWrap {
    padding-bottom: 8%;
  }
}

.footerInfoBlock {
  margin-top: 47px;
}
@media only screen and (max-width: 767px) {
  .footerInfoBlock {
    padding: 0 0.5em;
    margin-top: 23px;
  }
}

.footerInfoText {
  font-size: clamp(1.4rem, 1.3757281553rem + 0.0647249191vw, 1.5rem);
  line-height: 1.6;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .footerInfoText {
    line-height: 1.6;
  }
}

.footerMenue > li {
  padding-right: 3em;
  font-weight: 500;
}

.footerCopy {
  padding: 4% 0 45px;
}
@media only screen and (max-width: 767px) {
  .footerCopy {
    padding: 8% 0 20px;
  }
}

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

.footerBtn {
  cursor: pointer;
  position: fixed;
  right: 3%;
  bottom: 6%;
  z-index: 9999;
}
.footerBtn::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  content: "\f077";
  font-weight: 900;
  font-size: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerBtn {
    display: none;
  }
}

.footerLogoBlock {
  margin-right: 5%;
}
.footerLogoBlock img {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .footerLogoBlock {
    margin-right: 0;
  }
  .footerLogoBlock img {
    width: 40%;
    margin: auto;
  }
}

/*==================================================
 * 矢印
 *================================================*/
/*==================================================
 * 下層section
 *================================================*/
/*トップページ
*================================================*/
.commonBreadCard {
  margin-top: 10px;
}

.breadcrumbs {
  color: #163590;
  font-size: 15px;
}
.breadcrumbs span {
  font-weight: 500;
}
.breadcrumbs .current-item {
  color: #777778;
}
.breadcrumbs a {
  transition: 0.3s;
}
.breadcrumbs a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs {
    font-size: 13px;
  }
}

.topAboutImgBlock {
  width: 45%;
  margin-right: 10%;
}
@media only screen and (max-width: 767px) {
  .topAboutImgBlock {
    width: 100%;
  }
}

.topAboutTextBlock {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .topAboutTextBlock {
    width: 100%;
    margin-bottom: 18%;
  }
}

.topAboutImg {
  padding-bottom: 110%;
}
@media only screen and (max-width: 767px) {
  .topAboutImg {
    padding-bottom: 72%;
  }
}

.back_white {
  background-color: #fff;
}

.topAboutCard {
  padding-top: 5%;
}
@media only screen and (max-width: 767px) {
  .topAboutCard {
    padding-top: 10%;
  }
}

.topServiceImgBlock {
  width: 48%;
  margin-right: 5%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .topServiceImgBlock {
    width: 100%;
    margin-right: 0;
  }
}

.topServiceTextBlock {
  width: 47%;
}
@media only screen and (max-width: 767px) {
  .topServiceTextBlock {
    margin-top: 0;
    width: 100%;
    margin-bottom: 13%;
  }
}

.topServiceImg {
  padding-bottom: 67%;
}

.topCaseList {
  width: 95%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 80px;
  column-gap: 70px;
  row-gap: 50px;
}
@media only screen and (max-width: 767px) {
  .topCaseList {
    width: 100%;
    display: block;
  }
  .topCaseList > li:not(:last-child) {
    margin-bottom: 20%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topCaseList {
    width: 100%;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topCaseList {
    width: 100%;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}

.topCaseImg {
  padding-bottom: 65%;
}

.CaseType {
  font-size: clamp(1.4rem, 1.3757281553rem + 0.0647249191vw, 1.5rem);
  line-height: 1.4;
  color: #163590;
  font-weight: 500;
}

.CaseTitle {
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  line-height: 1.4;
  font-weight: 500;
}

.topCaseTextWrap {
  padding: 0 1em;
}
@media only screen and (max-width: 959px) {
  .topCaseTextWrap {
    padding: 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topCaseTextWrap {
    padding: 0;
  }
}

.CaseBtn {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  padding: 1em 3.4em 0.7em 0.8em;
  position: relative;
}
.CaseBtn::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  right: 0;
  top: 58%;
  transform: translateY(-50%);
}
.CaseBtn::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #5f5f5f;
  left: 0;
  bottom: 0;
}
a:hover .CaseBtn::after {
  right: -5px;
}

.recruitLeftBlock {
  background: #163590;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .recruitLeftBlock {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitLeftBlock {
    width: 70%;
  }
}

.recruitImg {
  padding-bottom: clamp(500px, 37%, 676px);
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .recruitImg {
    width: 100%;
    padding-bottom: 71%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitImg {
    width: 40%;
    padding-bottom: 63%;
    background-position: 15% 0;
  }
}

.topRecruitTextWrap {
  padding: 7em 3em 7em 22%;
}
@media only screen and (max-width: 767px) {
  .topRecruitTextWrap {
    padding: 3.2em 2em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topRecruitTextWrap {
    padding: 3.2em 2em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topRecruitTextWrap {
    padding: 3.2em 2em;
  }
}

.topRecruit {
  font-size: clamp(2.4rem, 2.2058252427rem + 0.5177993528vw, 3.2rem);
  letter-spacing: 0.1em;
  line-height: 1.9;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .topRecruit {
    margin-bottom: 9%;
  }
}

.topNewsCard {
  background-image: url(.././img/back.jpg);
  padding: 6% 0 7%;
}
@media only screen and (max-width: 767px) {
  .topNewsCard {
    padding: 17% 0 19%;
  }
}

.newsImg {
  padding-bottom: 67%;
}

.topNewsInner {
  padding: 0 1em;
}

.topNewsDay {
  font-size: clamp(1.6rem, 1.6rem + 0vw, 1.6rem);
  color: #163590;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .topNewsDay {
    margin-bottom: 20px;
  }
}

.topNewsTitle {
  font-size: clamp(1.6rem, 1.6rem + 0vw, 1.6rem);
  line-height: 1.8;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .topNewsTitle {
    margin-bottom: 24px;
  }
}

.topNewsCateList.__color > li a {
  background-color: #163590;
  color: #fff;
}
.topNewsCateList.__color > li a:hover {
  background: #777778;
  border: solid 2px #777778;
  color: #fff;
}
.topNewsCateList > li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.topNewsCateList > li a {
  transition: 0.3s;
  display: inline-block;
  font-size: clamp(1.3rem, 1.2757281553rem + 0.0647249191vw, 1.4rem);
  line-height: 1;
  padding: 0.6em 1.5em;
  background: #fff;
  color: #163590;
  font-weight: 500;
  border: solid 2px #163590;
  border-radius: 50px;
}
.topNewsCateList > li a:hover {
  background: #163590;
  border: solid 2px #163590;
  color: #fff;
}
.topNewsCateList.__small > li {
  margin-right: 5px;
  margin-bottom: 5px;
}
.topNewsCateList.__small > li a {
  padding: 0.4em 1em;
}
@media only screen and (max-width: 767px) {
  .topNewsCateList > li a {
    padding: 0.6em 1.3em;
  }
}

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

.footerMenueList {
  width: 55%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 20px;
}
.footerMenueList > li dl,
.footerMenueList > li dt,
.footerMenueList > li dd {
  margin-bottom: 20px;
  transition: 0.3s;
}
.footerMenueList > li dl > a,
.footerMenueList > li dt > a,
.footerMenueList > li dd > a {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  display: block;
}
.footerMenueList > li dl > a:hover,
.footerMenueList > li dt > a:hover,
.footerMenueList > li dd > a:hover {
  opacity: 0.7;
}
.footerMenueList > li dd {
  padding-left: 2em;
}
@media only screen and (max-width: 767px) {
  .footerMenueList {
    display: block;
    width: 90%;
    margin: auto;
    margin-bottom: 14%;
  }
  .footerMenueList > li dl {
    margin-bottom: 23px;
  }
  .footerMenueList > li dd,
  .footerMenueList > li dt {
    margin-bottom: 7px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerMenueList {
    width: 80%;
    grid-template-columns: 40% 30% 30%;
    margin: auto;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .footerMenueList {
    width: 67%;
    grid-template-columns: 40% 30% 30%;
  }
}

/*==================================================
 * 下層　header
 *================================================*/
.commonFvTitleBlock {
  width: 58%;
  padding: 0 2em 0 13em;
}
@media screen and (max-width: 1300px) {
  .commonFvTitleBlock {
    padding: 0 2em 0 10em;
  }
}
@media only screen and (max-width: 767px) {
  .commonFvTitleBlock {
    width: 100%;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonFvTitleBlock {
    padding-left: 46px;
    padding-right: 1em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .commonFvTitleBlock {
    padding-left: 46px;
    padding-right: 1em;
  }
}

.commonSubTitleWrap {
  padding-top: clamp(50px, 18%, 159px);
  padding-bottom: clamp(50px, 18%, 159px);
}
@media only screen and (max-width: 767px) {
  .commonSubTitleWrap {
    padding: 7% 0 15%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonSubTitleWrap {
    padding: 7% 0 7%;
  }
}

.commonFvImg {
  width: 42%;
}
@media only screen and (max-width: 959px) {
  .commonFvImg {
    display: none;
  }
}

.commonSubTitleEn {
  font-size: clamp(4rem, 3.5631067961rem + 1.1650485437vw, 5.8rem);
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .commonSubTitleEn {
    text-align: left;
    line-height: 1;
  }
}

.commonSubTitleJp {
  font-size: clamp(1.4rem, 1.3514563107rem + 0.1294498382vw, 1.6rem);
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}

.commonMidashi_1 {
  font-size: clamp(1.8rem, 1.6058252427rem + 0.5177993528vw, 2.6rem);
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  padding: 0 1em 1.5em 0;
}
.commonMidashi_1::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #163590;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .commonMidashi_1 {
    padding: 0 0 1em 0;
  }
}

.commonMidashi_2 {
  font-size: clamp(1.8rem, 1.7029126214rem + 0.2588996764vw, 2.2rem);
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-weight: 500;
  padding: 1.3em 1em 1.3em 1.5em;
  color: #163590;
  background-color: #f7f7f7;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .commonMidashi_2 {
    padding: 1em;
  }
}

.commonMidashi_3 {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  line-height: 1.6;
  padding-left: 32px;
  font-weight: 500;
  margin-bottom: 25px;
  position: relative;
}
.commonMidashi_3 span {
  font-weight: 500;
}
.commonMidashi_3::after {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 150%;
  background-color: #163590;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media only screen and (max-width: 767px) {
  .commonMidashi_3 {
    line-height: 1.4;
    padding-left: 13px;
    margin-bottom: 20px;
  }
  .commonMidashi_3::after {
    width: 3px;
  }
}

.commonTable {
  width: 100%;
}
.commonTable td,
.commonTable th {
  border-bottom: solid 1px #babbbc;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  padding: 1.5em 1em;
  vertical-align: middle;
}
.commonTable th {
  color: #163590;
}
.commonTable.__last tr:last-child td,
.commonTable.__last tr:last-child th {
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  .commonTable {
    width: 600px;
  }
  .commonTable th,
  .commonTable td {
    padding: 0.7em 0.5em;
  }
  .commonTable.__brake {
    width: 100%;
    border: solid 1px #babbbc;
  }
  .commonTable.__brake tr:last-child td {
    border-bottom: none;
  }
  .commonTable.__brake th,
  .commonTable.__brake td {
    display: block;
    padding: 0.5em;
    border-bottom: solid 1px #babbbc;
    width: 100%;
  }
  .commonTable.__brake th {
    background-color: #f5f6f7;
  }
  .commonTable.__brake.__width100 {
    width: 100% !important;
  }
  .commonTable.__brake.__width100 th,
  .commonTable.__brake.__width100 td {
    border: solid 1px #babbbc;
    padding: 0.5em;
    font-size: 14px;
  }
  .commonTable.__brake.__width100 th {
    background-color: #ececec;
  }
  .commonTable.__brake.__width100 tr:last-child td {
    border: solid 1px #babbbc;
  }
}

.width20 {
  width: 20%;
}
@media only screen and (max-width: 767px) {
  .width20 {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .width20 {
    width: 35%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .width20 {
    width: 40%;
  }
}

.cntMenueList {
  padding: 1.3em;
  border: solid 7px #e9e9e9;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.cntMenueList > li {
  border-bottom: solid 1px #b4b4b5;
  padding-bottom: 10px;
  margin-bottom: 8px;
  margin-right: 2%;
}
.cntMenueList > li a {
  display: block;
  width: 100%;
  position: relative;
  transition: 0.3s;
  padding: 0 1.2em 0 1em;
  font-size: 16px;
  line-height: 1.3;
}
.cntMenueList > li a::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  transition: 0.3s;
  content: "\f105";
  top: 3px;
  right: 0;
  color: #163590;
  font-weight: 900;
  font-size: 15px;
}
.cntMenueList > li a span {
  line-height: 1.3;
}
.cntMenueList > li:hover {
  color: #163590;
}
.cntMenueList > li:hover a::after {
  right: -5px;
  top: 3px;
}
@media only screen and (max-width: 767px) {
  .cntMenueList {
    display: block;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cntMenueList {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cntMenueList {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.Table_scroll {
  overflow-y: unset !important;
}

/*==================================================
 * case 詳細
 *================================================*/
.singleImgBlock {
  width: 50%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .singleImgBlock {
    width: 100%;
    margin-right: 5%;
    margin-bottom: 5%;
  }
}

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

/*==================================================
 * company
 *================================================*/
.companyImg {
  padding-bottom: clamp(200px, 52%, 275px);
}
@media only screen and (max-width: 767px) {
  .companyImg {
    padding-bottom: 52%;
  }
}

.commpanyInner {
  padding: 1em 1em 1em 1.5em;
}
@media only screen and (max-width: 767px) {
  .commpanyInner {
    padding: 1em;
  }
}

.compnyList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 50px;
}
.compnyList.__grid2 {
  grid-template-columns: 1fr 1fr;
  width: 80%;
  margin: auto;
}
.compnyList > li {
  background: #fff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .compnyList {
    display: block;
    margin: auto;
    margin-top: 5%;
  }
  .compnyList.__grid2 {
    width: 100%;
  }
  .compnyList > li:not(:last-child) {
    margin-bottom: 14%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .compnyList {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
  .compnyList.__grid2 {
    width: 100%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .compnyList {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
  .compnyList.__grid2 {
    width: 100%;
  }
}

.companyTitle {
  font-size: clamp(1.5rem, 1.3300970874rem + 0.4530744337vw, 2.2rem);
  color: #163590;
  font-weight: 500;
}

.companyText {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.4;
  font-weight: 500;
}

.contactCard {
  background-color: #163590;
  padding: 0 1em;
  padding-top: clamp(90px, 6%, 103px);
  padding-bottom: clamp(90px, 6%, 103px);
}
@media only screen and (max-width: 767px) {
  .contactCard {
    padding: 12% 0;
  }
}

.contactTitleJp {
  font-size: clamp(1.8rem, 1.7514563107rem + 0.1294498382vw, 2rem);
  line-height: 1;
}

.contactText {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  line-height: 1.6;
}

/*==================================================
 * business
 *================================================*/
.businessImg {
  padding-bottom: clamp(200px, 52%, 275px);
}
@media only screen and (max-width: 767px) {
  .businessImg {
    padding-bottom: 52%;
  }
}

/*==================================================
 * display
 *================================================*/
.slick-track {
  transform: unset !important;
}

.displayBtn {
  margin-right: 5px;
  cursor: pointer;
  padding: 1em;
  background-color: #163590;
  color: #fff;
  font-size: clamp(1.3rem, 1.1786407767rem + 0.3236245955vw, 1.8rem);
  line-height: 1;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  text-align: center;
  position: relative;
  transition: 0.3s;
}
.displayBtn.__last {
  margin-right: 0;
}
.__en .displayBtn {
  font-size: clamp(1rem, 0.8058252427rem + 0.5177993528vw, 1.8rem);
}
.displayBtn::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  content: "\f107";
  right: 17px;
  top: 53%;
  transform: translateY(-50%);
}
.displayBtn:hover {
  background-color: #d7d7d7;
}
.displayBtn:hover::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  top: 60%;
}
@media only screen and (max-width: 767px) {
  .displayBtn {
    margin-right: 0;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    padding: 0.5em 0.1em 1.5em;
    border-right: solid 3px #fff;
  }
  .displayBtn::after {
    left: 50%;
    top: unset;
    bottom: 5px;
    transform: translateX(-50%);
  }
}

.displayContent {
  background-color: #d7d7d7;
  padding: 3em 3em 4em;
}
@media only screen and (max-width: 959px) {
  .displayContent {
    padding: 3em 1em 4em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .displayContent {
    padding: 3em 1em 4em;
  }
}

.displayWrap {
  background-color: #fff;
  padding: 4em 3em;
}
@media only screen and (max-width: 767px) {
  .displayWrap {
    padding: 4em 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .displayWrap {
    padding: 4em 1.5em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .displayWrap {
    padding: 4em 1.8em;
  }
}

.businessCntList > li:not(:last-child) {
  padding-bottom: 5%;
  margin-bottom: 5%;
  border-bottom: solid 2px #d7d7d7;
}
@media only screen and (max-width: 767px) {
  .businessCntList > li:not(:last-child) {
    padding-bottom: 10%;
    margin-bottom: 10%;
  }
}

.langBtn > li {
  margin-right: 5px;
}
.langBtn > li a {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: #163590;
  border-radius: 50px;
  padding: 1em 4em;
  font-weight: 500;
  border: solid 3px #163590;
  transition: 0.3s;
}
.langBtn > li a:hover {
  background-color: #163590;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .langBtn > li {
    margin-right: 5px;
  }
  .langBtn > li a {
    font-size: 14px;
    line-height: 1;
    padding: 0.5em 2em;
    border: solid 2px #163590;
  }
}

.displayImg {
  width: 70%;
}
.displayImg.__small {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .displayImg {
    width: 100%;
  }
  .displayImg.__small {
    width: 100%;
  }
}

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

/*==================================================
 * ファインポリマービジネス
 *================================================*/
.finePolymerImgBlock {
  width: 45%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .finePolymerImgBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10%;
  }
}

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

.peraronlogoImg {
  margin: 0;
  width: 30%;
}

.seikeiImg {
  width: 18%;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .seikeiImg {
    width: 55%;
  }
}

.seikeiImgList {
  width: 70%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .seikeiImgList {
    display: block;
  }
  .seikeiImgList > li img {
    width: 300px !important;
  }
  .seikeiImgList > li:not(:last-child) {
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .seikeiImgList {
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .seikeiImgList {
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}

/*==================================================
 * mesage
 *================================================*/
.mesImgBlock {
  width: 50%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .mesImgBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6%;
  }
}

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

.mesImg {
  padding-bottom: 85%;
}

.mesNameText {
  font-weight: 500;
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  line-height: 1.4;
}

.mesBtn {
  padding: 1.5em 7em;
  display: inline-block;
  background-color: #163590;
  position: relative;
  border-radius: 70px;
  transition: 0.3s;
}
.mesBtn span {
  color: #fff;
  line-height: 1;
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
}
.mesBtn::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  color: #fff;
  top: 0;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.mesBtn:hover {
  background-color: #777778;
}
.mesBtn:hover::after {
  right: 20px;
}
@media only screen and (max-width: 767px) {
  .mesBtn {
    padding: 0.8em 4em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .mesBtn {
    padding: 1em 5em;
  }
}

/*==================================================
 * history
 *================================================*/
.historyTitle {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  line-height: 1.4;
  font-weight: 500;
  color: #163590;
}

.houshinList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.houshinList > li {
  padding: 4em 1.5em;
  font-size: clamp(2rem, 1.9514563107rem + 0.1294498382vw, 2.2rem);
  line-height: 1.8;
  background: #163590;
  color: #fff;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .houshinList {
    display: block;
  }
  .houshinList > li {
    padding: 1.5em;
  }
  .houshinList > li:not(:last-child) {
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .houshinList {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
  }
  .houshinList > li {
    padding: 3em 1.5em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .houshinList {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
  }
  .houshinList > li {
    padding: 3em 1.5em;
  }
}

.houshinNbBlock {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: solid 2px #fff;
  background-color: #163590;
  position: absolute;
  top: -24px;
  left: -21px;
}
@media only screen and (max-width: 767px) {
  .houshinNbBlock {
    top: -12px;
    left: -5px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .houshinNbBlock {
    top: -17px;
    left: -9px;
  }
}

.houshinNb {
  font-size: clamp(1.8rem, 1.6300970874rem + 0.4530744337vw, 2.5rem);
  color: #fff;
  line-height: 0.6;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*==================================================
 * about
 *================================================*/
.aboutImgBlock {
  width: 30%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .aboutImgBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5%;
  }
}

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

.aboutImg {
  padding-bottom: 177%;
}
@media only screen and (max-width: 767px) {
  .aboutImg {
    padding-bottom: 106%;
  }
}

.aboutmapBlock iframe {
  width: 100%;
  height: 600px;
}
@media only screen and (max-width: 767px) {
  .aboutmapBlock iframe {
    height: 300px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .aboutmapBlock iframe {
    height: 400px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .aboutmapBlock iframe {
    height: 500px;
  }
}

.mapList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 70px;
}
.mapList > li iframe {
  width: 100%;
  height: 500px;
}
@media only screen and (max-width: 767px) {
  .mapList {
    display: block;
  }
  .mapList > li:not(:last-child) {
    margin-bottom: 20%;
  }
  .mapList > li iframe {
    height: 300px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .mapList {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .mapList > li iframe {
    height: 300px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .mapList {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .mapList > li iframe {
    height: 400px;
  }
}

.sosikiImg {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .sosikiImg {
    width: 80%;
  }
}

.aboutmarkImgBlock {
  width: 15%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .aboutmarkImgBlock {
    width: 50%;
    margin: auto;
    margin-bottom: 5%;
  }
}

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

/*==================================================
 * display
 *================================================*//*# sourceMappingURL=import.css.map */