@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: #2c97d1;
}

.mainColorSub {
  color: #171c61;
}

.bgmainColor {
  color: #f1f3f3;
}

.mainColorDeep {
  color: #596166;
}

.bgMainColorDeep {
  background-color: #596166;
}

.mainColorExDeep {
  color: #c5c5c5;
}

.mainColorLight {
  color: #40c4f8;
}

.bgMainColorLight {
  background-color: #40c4f8;
}

.mainColorExLight {
  color: #f2f2f2;
}

.bgMainColorExLight {
  background-color: #f2f2f2;
}

.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: #333;
}

/*==================================================
 * リセット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: #c30d23 !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: #2c97d1;
}
.linkA:hover {
  color: #2c97d1;
  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;
  }
}
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .notNote {
    display: none !important;
  }
  .note {
    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) {
  .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.cntXL {
  width: 98%;
}
.cnt {
  width: 90%;
  max-width: 1260px;
  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: -15px;
}
@media only screen and (min-width: 1201px) {
  .cntInnerWide {
    margin-left: calc((100vw - 1200px) / -2 - 15px);
    width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
}

.w100 {
  width: 100%;
}

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

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

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

.cntMM {
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
}

.cntL {
  max-width: 1698px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cntL.brakepoint-padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cntL.brakepoint-padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.cntXL {
  max-width: 1800px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cntXL.brakepoint-padding {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cntXL.brakepoint-padding {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

.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;
}
.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 {
  /*
  &.white{
      background: linear-gradient(transparent 70%, $subColorDeep 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: #2c97d1;
  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: #2c97d1;
  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: #2c97d1;
  display: block;
  margin-right: 1.5rem;
  max-width: 3rem;
}
.titleBdLeft.white:before {
  background: #fff;
}

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

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

/*ボタン*/
/* ボタンだけに指定する場合は以下 */
.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: 5px;
  top: 5px;
  background: #1d87f6;
  height: 71px;
  width: 80px;
  border: none;
}
.menu-btn span:after {
  content: attr(data-txt-menu);
}
.open .menu-btn span:after {
  content: attr(data-txt-close);
}

.menuText2 {
  color: #fff;
  font-size: 14px;
  display: none;
}
.open .menuText2 {
  display: block;
}

.menuText {
  color: #fff;
  font-size: 14px;
}
.open .menuText {
  display: none;
}

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

.menu-trigger {
  position: relative;
  width: 30px;
  height: 24px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  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: #fff;
}
.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: #2c97d1;
}
.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 #2c97d1;
}

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

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

.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: #f2f2f2;
  padding: 0.5em 1em;
  border-radius: 3px;
  font-weight: bold;
  border-left: 4px solid #2c97d1;
  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 #2c97d1;
  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 #2c97d1;
  padding-bottom: 0.4em;
  color: #2c97d1;
  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: #40c4f8;
  font-size: 20px;
}
.entry h6 {
  font-weight: bold;
  margin-bottom: 10px;
}
.entry table td {
  border-right: 1px solid #2c97d1;
  border-bottom: 1px solid #2c97d1;
}
.entry table td:first-child {
  width: 30%;
  background-color: #eef6fa;
  color: #2c97d1;
  font-weight: bold;
  border-left: 1px solid #2c97d1;
}
.entry table td:last-child {
  width: auto;
  border-right: 1px solid #2c97d1;
}
.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 #2c97d1;
}
.entry table tr:last-child td {
  border-bottom: 1px solid #2c97d1;
}
@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: #2c97d1;
  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: #2c97d1;
}

.toc_list li:before {
  display: none;
}

.toc_title {
  border-bottom: 1px solid #2c97d1;
  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: #2c97d1;
  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 #2c97d1;
  border-radius: 10px;
  background-color: #40c4f8;
}

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

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

.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: #2c97d1;
  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 #2c97d1;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    padding: 8%;
    margin: 12% 0 6% 0;
  }
}

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

.singleColumnWriterButton {
  background: #fff;
  border: 1px solid #2c97d1;
  border-radius: 25px;
  padding: 0.25em;
  max-width: 280px;
  display: block;
  transition: 0.3s;
  color: #2c97d1;
}
.singleColumnWriterButton:hover {
  background: #2c97d1;
  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: 70%;
}
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: #2c97d1;
  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: 1em 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 #2c97d1;
  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: #2c97d1;
  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: #2c97d1;
  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: #2c97d1;
  color: #fff;
  border-radius: 5px;
  padding: 0.5em;
  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: #2c97d1;
  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: #2c97d1;
  right: 10px;
  top: 10px;
  position: absolute;
  font-size: 14px;
}

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

.sidebarTagWrap a {
  font-size: 14px !important;
  color: #2c97d1;
}
.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
   ========================================================================== */
/*==================================================
 * 全サイト共通
 *================================================*/
/*共通部分*/
:root {
  --header: 200px;
  scroll-padding: var(--header);
}

/*パンくず*/
.home .sectionPankuzu {
  display: none;
}

#pankuzu {
  font-size: 12px;
  color: #dcdcdc;
}
#pankuzu a {
  color: #000;
  position: relative;
}
#pankuzu a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  bottom: -0.3em;
  left: 0;
}
#pankuzu strong {
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  #pankuzu {
    font-size: 12px;
  }
}

.sectionPankuzu {
  padding: 10px 0;
}
@media only screen and (max-width: 767px) {
  .sectionPankuzu {
    padding: 6px 0;
  }
}

/*パンくず終わり*/
.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 {
  padding-top: 141px;
}
@media screen and (max-width: 1385px) {
  main {
    padding-top: 204px;
  }
}
@media only screen and (max-width: 767px) {
  main {
    padding-top: 85px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  main {
    padding-top: 181px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  main {
    padding-top: 181px;
  }
}

.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: 0.7em 4em;
  border: solid 1px #fff;
  color: #fff;
  background: #2c97d1;
  border-radius: 50px;
  font-size: 15px;
  display: inline-block;
  transition: 0.3s;
  letter-spacing: 0.2em;
  font-weight: 100;
  cursor: pointer;
  width: auto;
}
.submit-btn input:hover,
.submit-btn button:hover {
  background: #777778;
}
@media only screen and (max-width: 959px) {
  .submit-btn input,
  .submit-btn button {
    font-size: 13px;
    height: 43px;
  }
}

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

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

.linkList > li:not(:last-child) {
  margin-bottom: 10px;
}

.textLink2 {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #000;
  text-decoration-color: #000;
  transition: 0.3s;
}
.textLink2:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .textLink2 {
    font-size: 16px;
  }
}

.textLink3 {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .textLink3 {
    font-size: 16px;
  }
}

.commonTitleJp {
  font-size: 35px;
  line-height: 1.6;
  color: #171c61;
}
.commonTitleJp.__small {
  font-size: 32px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .commonTitleJp {
    font-size: 26px;
    margin-bottom: 10%;
  }
  .commonTitleJp.__small {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonTitleJp.__small {
    font-size: 30px;
  }
  .commonTitleJp {
    font-size: 30px;
    margin-bottom: 10%;
  }
}

.commonCaution {
  font-size: 18px;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .commonCaution {
    font-size: 16px;
  }
}

.commonText {
  font-size: 16px;
  line-height: 2.3;
}
.commonText.__hs {
  line-height: 2;
}
.commonText i {
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .commonText {
    font-size: 15px;
    line-height: 2;
  }
  .commonText.__sp {
    font-size: 14px;
    line-height: 1.5;
  }
}
.commonText a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #2c97d1;
  text-decoration-color: #2c97d1;
  transition: 0.3s;
}
.commonText a:hover {
  color: #171c61;
  text-decoration-color: unset;
}

.commonComent {
  font-size: 14px;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .commonComent {
    font-size: 13px;
  }
}

.commonIndent {
  margin-left: 1em;
  text-indent: -1.4em;
}

.commonIndentS {
  display: inline-block;
  font-weight: 500;
  margin-left: 1em;
  text-indent: -1.4em;
  line-height: 1.4;
}

.after_line {
  position: relative;
}
.after_line::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(.././img/title_Line.svg);
  background-repeat: no-repeat;
  bottom: -21px;
  left: 50%;
  width: 100px;
  height: 10px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .after_line::after {
    bottom: -12px;
  }
}

.CommonBtn {
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 0.8em 2em;
  border-radius: 40px;
  font-size: 18px;
  background: transparent;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.CommonBtn.__small {
  padding: 0.8em 4em;
  line-height: 1.2;
}
.CommonBtn.__soudan {
  padding: 1.2em 2em;
}
.CommonBtn.__big {
  padding: 0.5em 2em;
  line-height: 1.2;
  font-size: 29px;
  font-weight: 500;
}
.CommonBtn::before, .CommonBtn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.CommonBtn {
  /* グラデーション1 */
}
.CommonBtn::before {
  transition: all 0.6s; /* アニメーション実行時間 */
  z-index: -1;
  background: linear-gradient(to right, #2c97d1, #036ea8);
}
.CommonBtn.__reseve::before {
  background: linear-gradient(to right, #ffa600, #ff7400);
}
.CommonBtn.__reseve::after {
  background: linear-gradient(to right, #ff7400, #f9b943);
}
.CommonBtn.__recrui::before {
  background: linear-gradient(to right, #7fc8f0, #2ea9eb);
}
.CommonBtn.__recrui::after {
  background: linear-gradient(to left, #7fc8f0, #2ea9eb);
}
.CommonBtn.__hanamizuki::before {
  background: linear-gradient(to right, #f3c9e9, #f58dd0);
}
.CommonBtn.__hanamizuki::after {
  background: linear-gradient(to left, #f3c9e9, #f58dd0);
}
.CommonBtn {
  /* グラデーション2 */
}
.CommonBtn::after {
  z-index: -2;
  background: linear-gradient(to left, #abd7ee, #036ea8);
}
.CommonBtn i {
  font-size: 20px;
  padding-right: 10px;
  line-height: 1;
  vertical-align: middle;
}
.CommonBtn:hover {
  color: #fff;
}
@media screen and (max-width: 1500px) {
  .CommonBtn {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .CommonBtn {
    font-size: 15px;
  }
  .CommonBtn.CommonBtn_sp {
    font-size: 14px;
  }
  .CommonBtn.__soudan {
    padding: 1em 1.5em;
  }
  .CommonBtn.__big {
    font-size: 20px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .CommonBtn {
    font-size: 16px;
  }
  .CommonBtn.CommonBtn_sp {
    font-size: 15px;
  }
}

.CommonBtn:hover:before {
  opacity: 0;
}

#breadcrumbs span {
  font-size: 16px;
  line-height: 1;
  color: #036eb7;
}
#breadcrumbs span .breadcrumb_last {
  color: #000;
}
@media only screen and (max-width: 767px) {
  #breadcrumbs {
    line-height: 1.2;
  }
  #breadcrumbs span {
    font-size: 13px;
  }
}

.backpattern {
  background-image: url(.././img/backpattern.jpg);
  background-repeat: repeat;
}

.text_under {
  text-decoration: underline;
}

.commonBtn2 {
  font-size: 16px;
  display: inline-block;
  color: #fff;
  line-height: 1.2;
  padding: 1em 1.9em;
  border-radius: 30px;
  background: #2c97d1;
  transition: 0.3s;
}
.commonBtn2:hover {
  opacity: 0.7;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .commonBtn2 {
    font-size: 16px;
    padding: 0.6em 1em;
  }
}

.innerTable {
  width: 900px;
  padding-left: 2.8em;
  display: inline-block;
}
.innerTable td {
  padding: 0 0.3em;
}
@media only screen and (max-width: 767px) {
  .innerTable {
    width: 100%;
  }
  .innerTable td {
    display: block;
    width: 100%;
  }
}

.innerTableLink > li:nth-child(1) {
  margin-right: 10px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .innerTableLink {
    display: block;
  }
}

/*==================================================
 * ヘッダー
 *================================================*/
header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  header {
    padding: 4px 0 42px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  header {
    padding: 4px 0 20px;
  }
}

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

.headerlogoCard {
  width: 260px;
  position: relative;
  left: 15px;
  top: 15px;
  z-index: 9999;
}
@media only screen and (max-width: 767px) {
  .headerlogoCard {
    width: 230px;
    top: 19px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerlogoCard {
    width: 154px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerlogoCard {
    width: 185px;
  }
}

.headerMenueCard_Main > li {
  font-family: "Source Sans Pro", sans-serif;
  position: relative;
  transition: 0.3s;
}
.headerMenueCard_Main > li::after {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 50%;
  background-color: #cccdcd;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.headerMenueCard_Main > li.hasMegaMenuLi::before {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  content: "\f078";
  left: 50%;
  transform: translateX(-50%);
  color: #2c97d1;
  bottom: 6px;
  font-weight: 900;
  font-size: 14px;
  z-index: -1;
}
.headerMenueCard_Main > li > a {
  display: block;
  font-size: 16px;
  text-align: center;
  display: block;
  line-height: 1.2;
  padding: 1em 1em 2em;
  transition: 0.3s;
}
.headerMenueCard_Main > li:hover > a {
  color: #2c97d1;
}
@media screen and (max-width: 1385px) {
  .headerMenueCard_Main > li.hasMegaMenuLi::before {
    bottom: 4px;
    font-size: 10px;
  }
  .headerMenueCard_Main > li > a {
    font-size: 15px;
    padding: 1em 0.5em 1.5em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerMenueCard_Main > li > a {
    font-size: 11px;
    letter-spacing: 0.02em;
    padding: 1em 0.5em 1.5em;
  }
  .headerMenueCard_Main > li.hasMegaMenuLi::before {
    bottom: -8px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerMenueCard_Main > li > a {
    letter-spacing: 0.03em;
    font-size: 13px;
    padding: 1em 0.5em 1.5em;
  }
  .headerMenueCard_Main > li.hasMegaMenuLi::before {
    bottom: 0;
  }
}

.overRayBlock {
  display: flex;
  width: 100%;
  overflow-y: scroll;
}

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

.overRayTextCard {
  width: 50%;
  padding: 0 50px;
  background: linear-gradient(to right, #cbecfe, #8fd6fd);
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .overRayTextCard {
    width: 100%;
    padding: 31% 15px;
    padding-bottom: 65px;
  }
}

.overRaySnsIcoUl {
  margin-top: 20px;
  margin-left: 3rem;
}
.overRaySnsIcoUl li {
  display: inline-block;
  margin-right: 0.5em;
}
.overRaySnsIcoUl li a i {
  font-size: 28px;
}

.spHeadertel {
  background-color: #f4eaae;
  padding: 17px 15px;
}
.spHeadertel img {
  width: 22px;
}

.subMenue {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.spHederLink {
  width: 60%;
}

.mailCard {
  background: #fff1e2;
  padding: 15px 6px;
}
.mailCard img {
  width: 90%;
}
.mailCard {
  transition: 0.3s;
}
a:hover .mailCard {
  filter: brightness(90%);
  will-change: filter;
}
@media only screen and (max-width: 767px) {
  .spHederLink .mailCard {
    padding: 19px 11px;
  }
  .spHederLink .mailCard img {
    width: 28px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .mailCard {
    padding: 15px 0;
  }
  .mailCard img {
    width: 62%;
  }
}

.instaCard {
  background: #fff7f4;
  padding: 13px 6px;
  transition: 0.3s;
}
a:hover .instaCard {
  filter: brightness(90%);
  will-change: filter;
}
@media only screen and (max-width: 767px) {
  .spHederLink .instaCard {
    padding: 16px 14px;
  }
  .spHederLink .instaCard img {
    width: 24px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .instaCard {
    padding: 13px 0;
  }
  .instaCard img {
    width: 24px;
  }
}

.spSubtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  right: 20px;
}
a:hover .spSubtn.spSubtn_n {
  right: 15px;
}

.spMenueBtn.on .imgView {
  display: none;
}
.spMenueBtn.on .imgView_after {
  display: block;
  margin-bottom: 58px;
}

.splist {
  display: none;
}
.splist > li {
  background: #fff;
  position: relative;
  transition: 0.3s;
}

.splistText {
  padding: 1em;
  border-top: solid 1px #2c97d1;
}

.headerInfoBlock {
  position: relative;
  margin-right: 2%;
  margin-top: -1.5%;
  padding-bottom: 15px;
}
@media screen and (max-width: 1400px) {
  .headerInfoBlock {
    margin-top: 2.5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerInfoBlock {
    margin-top: 2.5%;
  }
}

.headerTel {
  font-size: 28px;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
}
.headerTel.__big {
  font-size: 40px;
}
.headerTel.__big i {
  font-size: 30px;
}
.headerTel i {
  margin-right: 5px;
  color: #2c97d1;
}
@media only screen and (max-width: 767px) {
  .headerTel.__big {
    font-size: 28px;
  }
  .headerTel.__big i {
    font-size: 19px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerTel.__big {
    font-size: 29px;
  }
  .headerTel.__big i {
    font-size: 15px;
  }
}

.headerInfoTel {
  margin-right: 2%;
}

.headerInfoBtn > li:not(:last-child) {
  margin-right: 15px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerInfoBtn > li:nth-child(3) {
    display: none;
  }
  .headerInfoBtn > li:nth-child(4) {
    display: none;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerInfoBtn > li:nth-child(4) {
    display: none;
  }
}

.menueTimeWrap {
  border-radius: 10px;
  background-color: #fff;
  padding: 1em 0.6em;
}

.menueTimeBlock.__time {
  width: 41%;
}
.menueTimeBlock {
  width: 34%;
  padding-right: 7px;
  margin-right: 7px;
  position: relative;
}
.menueTimeBlock::after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 95%;
  background-color: #cccdcd;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.timeImg {
  width: 36px;
}

.menueTitle {
  font-size: 12px;
  line-height: 1.4;
  color: #036ea8;
}

.menueTimetextBlock {
  width: 48%;
  white-space: nowrap;
}

.menueTimetext {
  font-size: 13px;
  letter-spacing: 0.05em;
}
.menueTimetext span {
  font-size: 12px;
}

.menueTimeBox {
  background-color: #b40d23;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  padding: 0.5em;
  text-align: center;
  border-radius: 22px;
  margin-left: 7px;
}
@media only screen and (max-width: 767px) {
  .menueTimeBox {
    width: 90px;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 10px;
  }
}

.menueReseveCard {
  background: #fff;
  padding: 1em 2.3em 1em 0.7em;
  border-radius: 30px;
  position: relative;
  transition: 0.3s;
}
.menueReseveCard::before, .menueReseveCard::after {
  position: absolute;
  display: block;
}
.menueReseveCard::before {
  width: 25px;
  height: 100%;
  content: "";
  background-color: #171c61;
  top: 0;
  right: 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.menueReseveCard::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  right: 7px;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  content: "\f054";
  font-weight: 900;
  font-size: 15px;
}
.menueReseveCard:hover {
  opacity: 0.7;
}
.menueReseveCard:hover::after {
  right: 4px;
}

.menueReseveTitle {
  font-size: 18px;
  color: #171c61;
  line-height: 1;
}

.menueReseveText {
  font-size: 14px;
  line-height: 1.4;
}

.menueinfoTitle {
  font-size: 18px;
  line-height: 1;
  color: #171c61;
}

.menueinfoList {
  padding: 0.4em 1em;
  border-left: solid 2px #171c61;
}
.menueinfoList > li {
  padding: 0.4em 0;
  transition: 0.3s;
}
.menueinfoList > li a {
  display: block;
  font-size: 16px;
  line-height: 1.4;
}
.menueinfoList > li:hover {
  opacity: 0.7;
}

.menueinfoListBlock:not(:last-child) {
  margin-bottom: 8%;
}

.btnBlock {
  padding: 1em;
  background: #fff;
  border-radius: 10px;
}
.btnBlock.btnBlock_b {
  padding: 2em 1em;
}
.btnBlock.btnBlock_c {
  padding: 2em 1em;
  background: linear-gradient(to bottom, #ffa600, #ff7400);
}
.btnBlock.btnBlock_d {
  padding: 1.3em 1em;
  color: #fff;
  background: linear-gradient(to right, #7fc8f0, #2ea9eb);
}
.btnBlock.btnBlock_e {
  padding: 1.3em 1em;
  color: #fff;
  background: linear-gradient(to right, #f3c9e9, #f58dd0);
}

.line_after {
  position: relative;
}
.line_after::after {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #2c97d1;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.btnTitle {
  font-size: 18px;
  line-height: 1.3;
  display: inline-block;
  padding-bottom: 7px;
}

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

.headerInfomail {
  font-size: 27px;
  line-height: 1.3;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
}
@media only screen and (max-width: 767px) {
  .headerInfomail {
    font-size: 20px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerInfomail {
    font-size: 23px;
    line-height: 1.3;
  }
}

.btnBlockWrap i {
  font-size: 47px;
  color: #2c97d1;
}
@media only screen and (max-width: 767px) {
  .btnBlockWrap i {
    font-size: 30px;
  }
}

.menuePcImg {
  width: 104px;
}
@media only screen and (max-width: 767px) {
  .menuePcImg {
    width: 69px;
  }
}

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

.megaMenu {
  width: 400px;
  position: absolute;
  padding: 1.4em 1.2em 2em;
  background: rgba(44, 151, 209, 0.8);
  left: 0;
  top: 75%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.5s;
}
.megaMenu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
@media screen and (max-width: 1385px) {
  .megaMenu {
    top: 70%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .megaMenu {
    top: 80%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .megaMenu {
    top: 80%;
  }
}

.megaMenuTitleCard {
  width: 21%;
  margin-right: 5%;
  position: relative;
}
.megaMenuTitleCard::after {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 105%;
  background: #fff;
  top: 0;
  right: -20%;
}

.megaMenuListCard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 20px;
}
.megaMenuListCard > li {
  border-bottom: solid 1px #fff;
}
.megaMenuListCard > li.MeneuHasList {
  border-bottom: none;
}
.megaMenuListCard > li span {
  color: #fff;
  line-height: 1.4;
  font-size: 14px;
  padding: 1em 2.5em 1em 0;
  display: inline-block;
}

.MenueWrap dl,
.MenueWrap dd,
.MenueWrap dt {
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}
.MenueWrap dd:not(:last-child) {
  border-bottom: solid 1px #fff;
}
.MenueWrap dd {
  padding: 10px 6px 10px 10%;
  position: relative;
}
.MenueWrap dd::before {
  position: absolute;
  content: "";
  display: block;
}
.MenueWrap dd::before {
  width: 13px;
  height: 1px;
  background-color: #fff;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.MenueWrap dd::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  right: 5px;
  color: #fff;
  top: 50%;
  transition: 0.3s;
  transform: translateY(-50%);
  content: "\f054";
  font-weight: 900;
  font-size: 10px;
}
.MenueWrap dd:hover {
  opacity: 0.7;
}
.MenueWrap dd:hover::after {
  right: 0;
}

.megaMenuBtnWrap {
  position: relative;
}
.megaMenuBtnWrap::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  right: 5px;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  content: "\f054";
  font-weight: 900;
  font-size: 10px;
}
a:hover .megaMenuBtnWrap {
  opacity: 0.7;
}
a:hover .megaMenuBtnWrap::after {
  right: 0;
}

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

@media only screen and (max-width: 767px) {
  .spMenueBtn {
    cursor: pointer;
  }
}

.spPluslist {
  display: none;
}

.headerDetail {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 8px;
}

.topNewsBtn img {
  width: 32px;
}

/* zoomup========================================*/
@keyframes zoomUp {
  /* 1.15倍させる指定 */
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.topFvWrap .swiper-slide {
  overflow: hidden;
  backface-visibility: hidden;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  /* 12秒かけて拡大させる */
  animation: zoomUp 12s linear 0s;
  animation-fill-mode: both;
}

.swiper-container {
  position: relative;
  z-index: -1;
}

/*==================================================
 * フッター
 *================================================*/
footer {
  padding-top: 2%;
}
@media only screen and (max-width: 767px) {
  footer {
    padding-top: 12%;
  }
}

.footerBtn {
  cursor: pointer;
  position: fixed;
  right: 5%;
  bottom: 6%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #cdcece;
  transition: 0.3s;
  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;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .footerBtn {
    width: 30px;
    height: 30px;
  }
  .footerBtn::after {
    font-size: 16px;
  }
}

.messImg {
  max-width: 496px;
  border: solid 2px #036ea8;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .messImg {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15%;
  }
}

.footerMenuList {
  display: grid;
  grid-template-columns: 24% 21% 34% 21%;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.footerMenuList > li .footerMenuTitle {
  font-size: 18px;
  color: #171c61;
  line-height: 1.2;
  margin-bottom: 19px;
}
@media only screen and (max-width: 767px) {
  .footerMenuList {
    display: block;
    margin-bottom: 10%;
  }
  .footerMenuList > li .footerMenuTitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .footerMenuList > li:not(:last-child) {
    margin-bottom: 6%;
  }
  .footerMenuList > li {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerMenuList {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .footerMenuList {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
}

.footerCopyText {
  font-size: 12px;
}

.footerlogoImg img {
  width: 318px;
}
@media only screen and (max-width: 767px) {
  .footerlogoImg img {
    width: 224px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerlogoImg img {
    width: 280px;
  }
}

.footerInfoText {
  font-size: 16px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .footerInfoText {
    font-size: 14px;
  }
}

.footerSubList > li:first-child a::after {
  display: none;
}
.footerSubList > li a {
  font-size: 16px;
  transition: 0.3s;
  position: relative;
}
.footerSubList > li a::after {
  position: absolute;
  display: block;
  content: "/";
  top: 50%;
  transform: translateY(-50%);
}
.footerSubList > li a span {
  padding-left: 13px;
}
.footerSubList > li:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .footerSubList {
    margin-bottom: 7%;
  }
  .footerSubList > li a {
    font-size: 13px;
  }
}

.subMenuList {
  padding-left: 24px;
  border-left: solid 2px #171c61;
}
.subMenuList > li:not(:last-child) {
  margin-bottom: 10px;
}
.subMenuList > li a {
  font-size: 16px;
  line-height: 1;
  color: #3e3a39;
  transition: 0.3s;
}
.subMenuList > li:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .subMenuList > li:not(:last-child) {
    margin-bottom: 0;
  }
  .subMenuList > li a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .subMenuList > li a {
    font-size: 15px;
  }
}

@media print, screen and (min-width: 768px) {
  .footerInfo {
    width: 25%;
    padding-top: 3%;
    margin-right: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .footerInfo {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.footerLogoImg img {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .footerLogoImg {
    padding-top: 40px;
  }
}

.footerCopy {
  padding: 3% 0 5px;
  font-size: 12px;
  font-weight: 300;
  font-family: "Source Sans Pro", sans-serif;
}
@media only screen and (max-width: 767px) {
  .footerCopy {
    padding: 5% 0 20px;
  }
}

.footerInfoBox {
  max-width: 670px;
  padding: 2em;
  background-color: #e8e8e8;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .footerInfoBox {
    width: 100%;
    padding: 1.5em 1em;
  }
}

.footerInfoBoxText {
  font-size: 16px;
  letter-spacing: 0.17em;
  line-height: 1.3;
  color: #171c61;
  font-weight: bold;
}
.footerInfoBoxText span {
  color: #b40d23;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .footerInfoBoxText {
    font-size: 14px;
    line-height: 1.3;
  }
}

/*==================================================
 * 矢印
 *================================================*/
/*==================================================
 * 下層section
 *================================================*/
/*トップページ
*================================================*/
.topFvImg {
  padding-bottom: clamp(400px, 57%, 730px);
  position: relative;
}
.topFvImg::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(82, 169, 203, 0.1);
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .topFvImg {
    padding-bottom: 140%;
  }
}

.topFvTitle {
  font-size: clamp(1px, 3.1vw, 44px);
  letter-spacing: 0.1em;
  line-height: 1.3;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  color: #171c61;
}
@media only screen and (max-width: 767px) {
  .topFvTitle {
    margin-bottom: 10px;
    font-size: 28px;
    letter-spacing: 0.1em;
    line-height: 1.2;
    font-weight: 600;
  }
  .topFvTitle span {
    font-weight: 600;
  }
}

.topFvTitleImg {
  width: 125px;
}
@media only screen and (max-width: 767px) {
  .topFvTitleImg {
    width: 69px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFvTitleImg {
    width: 72px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topFvTitleImg {
    width: 79px;
  }
}

.topFvTextBlock {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 959px) {
  .topFvTextBlock {
    width: 100%;
  }
}
@media only screen and (max-width: 959px) {
  .topFvTextBlock {
    top: 46%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFvTextBlock {
    top: 70%;
  }
}

.topFvTextWrap {
  position: relative;
}
.topFvTextWrap::after {
  position: absolute;
  content: "";
  width: 500px;
  height: 500px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  opacity: 0.8;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(10px);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .topFvTextWrap::after {
    width: 230px;
    height: 220px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFvTextWrap::after {
    width: 350px;
    height: 350px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topFvTextWrap::after {
    width: 400px;
    height: 400px;
  }
}

.topFvText {
  font-size: 22px;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  line-height: 1.8;
  color: #171c61;
}
@media only screen and (max-width: 767px) {
  .topFvText {
    font-size: 18px;
  }
}
.topFvText._bold {
  font-weight: 700;
}

.townImg {
  width: 934px;
}
@media only screen and (max-width: 959px) {
  .townImg {
    width: 89%;
  }
}

.topNewsCard {
  margin-top: -80px;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .topNewsCard {
    margin-top: -11%;
  }
}

.topNewsImg {
  padding-bottom: 41%;
  border: 30px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .topNewsImg {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}

.topNewsWrap {
  background-image: url(.././img/back_slash.jpg);
  background-size: 30px;
  border-radius: 20px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .topNewsWrap {
    border-radius: 10px;
  }
}

.topNewsBlock {
  margin-top: -17%;
  margin-left: auto;
  margin-right: auto;
  padding: 1em;
}
@media only screen and (max-width: 767px) {
  .topNewsBlock {
    margin-top: -11%;
  }
}

.topNewsList {
  padding: 1em;
  background-color: #fff;
  border-radius: 20px;
}
.topNewsList > li {
  padding: 1em 0 1em 4em;
}
.topNewsList > li:not(:last-child) {
  border-bottom: solid 1px #cccdcd;
}
.topNewsList > li {
  position: relative;
  transition: 0.3s;
}
.topNewsList > li::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  right: 5px;
  color: #2c97d1;
  top: 50%;
  transform: translateY(-50%);
  content: "\f138";
  font-weight: 100;
  font-size: 22px;
}
.topNewsList > li:hover {
  opacity: 0.7;
}
.topNewsList > li:hover::after {
  right: 0px;
}
@media only screen and (max-width: 767px) {
  .topNewsList {
    margin-bottom: 3%;
  }
}
@media only screen and (max-width: 959px) {
  .topNewsList {
    width: 93%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 959px) {
  .topNewsList > li {
    padding: 0.7em;
  }
}
@media only screen and (max-width: 767px) {
  .topNewsList {
    width: 93%;
    border-radius: 10px;
    padding: 0;
  }
  .topNewsList > li::after {
    display: none;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topNewsList {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}

.topNewsDayBlock {
  width: 10%;
  margin-right: 3%;
}
@media only screen and (max-width: 767px) {
  .topNewsDayBlock {
    width: 35%;
    margin-right: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topNewsDayBlock {
    width: 20%;
    margin-right: 5%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topNewsDayBlock {
    width: 20%;
    margin-right: 5%;
  }
}

.topNewsTextBlock {
  width: 87%;
  padding-right: 3%;
}

.topNewsDayWrap {
  padding: 1em;
  background-color: #ecf8ff;
  border-radius: 5px;
}

.topNewsYear {
  font-size: 15px;
  line-height: 1;
  margin-bottom: 10%;
  padding-bottom: 15%;
  display: inline-block;
  position: relative;
}
.topNewsYear::after {
  position: absolute;
  content: "";
  width: 200%;
  height: 2px;
  background-color: #cccdcd;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.topNewsDays {
  font-size: 26px;
  line-height: 1;
}
@media only screen and (max-width: 959px) {
  .topNewsDays {
    font-size: 22px;
  }
}

.topNewsTitle {
  font-size: 18px;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .topNewsTitle {
    font-size: 15px;
    line-height: 1.4;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topNewsTitle {
    font-size: 16px;
    line-height: 1.4;
  }
}

.topNewsTitleBlock {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  .topNewsTitleBlock {
    width: 100%;
  }
}

.topNewsHeadLine {
  font-size: 32px;
  line-height: 1;
  color: #171c61;
}
@media only screen and (max-width: 767px) {
  .topNewsHeadLine {
    font-size: 20px;
  }
}

.topNewsBtn {
  font-size: 15px;
  display: inline-block;
  line-height: 1.2;
  padding: 0.3em 1.9em;
  border-radius: 30px;
  background: #fff;
  transition: 0.3s;
}
.topNewsBtn:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .topNewsBtn {
    border: solid 1px #8f8f90;
  }
}

.youtubeBlock {
  position: relative;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  height: 0;
  padding-top: 30%;
}
.youtubeBlock iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .youtubeBlock {
    width: 80%;
    padding-top: 45%;
  }
}

.youtubeTitle {
  font-size: 24px;
  font-weight: 500;
  color: #171c61;
}
.youtubeTitle a {
  transition: 0.3s;
  text-decoration: underline;
  text-decoration-color: rgb(0, 153, 255);
  text-underline-offset: 3px;
}
.youtubeTitle a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .youtubeTitle {
    font-size: 18px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .youtubeTitle {
    font-size: 20px;
  }
}

.topInfoCard {
  position: relative;
  background: linear-gradient(to right, #eff8fd, #bde7fd);
  padding: 4em 0 0;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .topInfoCard {
    padding: 4em 0 0;
  }
}

.topInfoList > li:nth-child(1), .topInfoList > li:nth-child(3) {
  margin-right: 30px;
}
.topInfoList > li:nth-child(-n+2) {
  margin-bottom: 30px;
}
.topInfoList > li {
  width: calc((100% - 30px) / 2);
  background: #fff;
  padding: 1.6em 1em;
  border-radius: 20px;
}
.topInfoList > li:nth-child(2) {
  padding: 1.6em 1em;
}
.topInfoList > li:nth-child(3), .topInfoList > li:nth-child(4) {
  position: relative;
}
.topInfoList > li:nth-child(3)::before, .topInfoList > li:nth-child(4)::before {
  position: absolute;
  display: block;
}
.topInfoList > li:nth-child(3)::before, .topInfoList > li:nth-child(4)::before {
  width: 25px;
  height: 100%;
  content: "";
  background-color: #171c61;
  top: 0;
  right: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.topInfoList > li:nth-child(3)::after, .topInfoList > li:nth-child(4)::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  right: 7px;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  content: "\f054";
  font-weight: 900;
  font-size: 15px;
}
.topInfoList > li:nth-child(3):hover::after, .topInfoList > li:nth-child(4):hover::after {
  right: 2px;
}
@media only screen and (max-width: 767px) {
  .topInfoList > li:not(:last-child) {
    margin-bottom: 20px;
  }
  .topInfoList > li {
    padding: 1em 0.7em;
    width: 100%;
    border-radius: 10px;
    margin-left: 0;
    margin-right: 0;
  }
  .topInfoList > li:nth-child(2) {
    padding: 1.6em 0.5em;
  }
  .topInfoList > li:nth-child(3)::before, .topInfoList > li:nth-child(4)::before {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topInfoList {
    display: block;
    width: 65%;
    margin-inline: auto;
  }
  .topInfoList > li {
    width: 100%;
  }
  .topInfoList > li:nth-child(2) {
    padding: 1.6em 1em;
  }
  .topInfoList > li:nth-child(3) {
    margin-bottom: 18px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topInfoList > li:nth-child(2) {
    padding: 3.2em 1em;
  }
}

.topInfoPcrImgBlock {
  width: 20%;
  margin-right: 5%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topInfoPcrImgBlock {
    width: 29%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topInfoPcrImgBlock {
    width: 29%;
  }
}

.topInfoPcrTextBlock {
  width: 75%;
}

.topInfoPcrText {
  font-size: 16px;
  line-height: 1.6;
}
@media only screen and (max-width: 959px) {
  .topInfoPcrText {
    font-size: 15px;
  }
}

.pcrImg {
  width: 76%;
}
@media only screen and (max-width: 767px) {
  .pcrImg {
    width: 92%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pcrImg {
    width: 90%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .pcrImg {
    width: 100%;
  }
}

.topInfoPcrTitle {
  color: #036ea8;
  font-size: 19px;
}
@media only screen and (max-width: 767px) {
  .topInfoPcrTitle {
    font-size: 16px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topInfoPcrTitle {
    font-size: 18px;
  }
}

.topInfoPcrTime {
  color: #036ea8;
  font-size: clamp(12px, 1vw, 17px);
  line-height: 1.4;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topInfoPcrTime {
    font-size: 16px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topInfoPcrTime {
    font-size: 16px;
  }
}

.topInfoTime {
  font-size: clamp(14px, 1.2vw, 23px);
  white-space: nowrap;
  line-height: 1;
}
.topInfoTime span {
  font-size: clamp(13px, 1vw, 17px);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topInfoTime {
    font-size: 16px;
  }
  .topInfoTime span {
    font-size: 15px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topInfoTime {
    font-size: 16px;
  }
  .topInfoTime span {
    font-size: 15px;
  }
}

.timeImg {
  width: 45px;
}
@media only screen and (max-width: 767px) {
  .timeImg {
    width: 46%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .timeImg {
    width: 24%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .timeImg {
    width: 24%;
  }
}

.topInfoTimeBox {
  padding: 1em;
  font-size: clamp(12px, 1vw, 17px);
  display: inline-block;
  line-height: 1.4;
  color: #fff;
  background-color: #b40d23;
  border-radius: 20px;
}
@media only screen and (max-width: 959px) {
  .topInfoTimeBox {
    padding: 0.5em;
    border-radius: 10px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topInfoTimeBox {
    padding: 0.5em;
    border-radius: 10px;
  }
}

.topInfoTimeImgBlock {
  width: 36%;
  position: relative;
  padding-right: 26px;
  margin-right: 20px;
}
.topInfoTimeImgBlock::after {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  background: #cccdcd;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .topInfoTimeImgBlock {
    width: 38%;
    padding-right: 7px;
    margin-right: 7px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topInfoTimeImgBlock {
    width: 52%;
    padding-right: 13px;
    margin-right: 14px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topInfoTimeImgBlock {
    width: 44%;
    padding-right: 13px;
    margin-right: 14px;
  }
}

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

.topInfoBoxWrap {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .topInfoBoxWrap {
    width: 100%;
    position: static;
    transform: unset;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topInfoBoxWrap {
    width: 95%;
    position: static;
    transform: unset;
    display: block;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topInfoBoxWrap {
    width: 95%;
  }
}

.topInfoTimeTextBlock_left {
  margin-right: 5%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topInfoTimeTextBlock_left {
    margin-right: 10%;
  }
}

.topInfoUkeTitle {
  font-size: 24px;
  line-height: 1;
  color: #171c61;
}
@media only screen and (max-width: 959px) {
  .topInfoUkeTitle {
    font-size: 20px;
  }
}

.topInfoUkeText {
  font-size: 15px;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .topInfoUkeText {
    font-size: 12px;
  }
}

.topInfoUkeTextBlock {
  padding-right: 2em;
  position: relative;
}

.topMenueList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.topMenueList > .topMenueWrap {
  position: relative;
}
.topMenueList > .topMenueWrap::after {
  position: absolute;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #3797ca;
  filter: blur(5px);
  top: 5px;
  left: 5px;
  z-index: -1;
}
.topMenueList > .topMenueWrap:nth-child(1) a {
  border: solid 7px #036ea8;
}
.topMenueList > .topMenueWrap:nth-child(1) a:hover {
  background-color: #edffff;
}
.topMenueList > .topMenueWrap:nth-child(2) a {
  border: solid 7px #b2d05e;
}
.topMenueList > .topMenueWrap:nth-child(2) a:hover {
  background-color: #eeffec;
}
.topMenueList > .topMenueWrap:nth-child(3) a {
  border: solid 7px #ffa600;
}
.topMenueList > .topMenueWrap:nth-child(3) a:hover {
  background-color: #ffffde;
}
.topMenueList > .topMenueWrap:nth-child(4) a {
  border: solid 7px #ee88a3;
}
.topMenueList > .topMenueWrap:nth-child(4) a:hover {
  background-color: #fff5ff;
}
.topMenueList > .topMenueWrap:nth-child(5) a {
  border: solid 7px #a38046;
}
.topMenueList > .topMenueWrap:nth-child(5) a:hover {
  background-color: #f3e9e7;
}
.topMenueList a {
  transition: 0.3s;
  display: block;
  background-color: #fff;
  border-top-left-radius: 30px;
  padding: 3em 0.5em;
  border-bottom-right-radius: 30px;
}
@media only screen and (max-width: 767px) {
  .topMenueList {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 15px;
    column-gap: 15px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .topMenueList > .topMenueWrap:not(:last-child) {
    margin-bottom: 10%;
  }
  .topMenueList > .topMenueWrap:nth-child(1) a {
    border: solid 5px #036ea8;
  }
  .topMenueList > .topMenueWrap:nth-child(2) a {
    border: solid 5px #b2d05e;
  }
  .topMenueList > .topMenueWrap:nth-child(3) a {
    border: solid 5px #ffa600;
  }
  .topMenueList > .topMenueWrap:nth-child(4) a {
    border: solid 5px #ee88a3;
  }
  .topMenueList > .topMenueWrap:nth-child(5) a {
    border: solid 5px #a38046;
  }
  .topMenueList a {
    padding: 1.8em 0.5em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topMenueList {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 30px;
  }
  .topMenueList a {
    padding: 2em 0.5em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topMenueList {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 30px;
  }
  .topMenueList a {
    padding: 2em 0.5em;
  }
}

.topMenueImg {
  width: 56px;
}
@media only screen and (max-width: 767px) {
  .topMenueImg {
    width: 42px;
  }
}

.topMenueText {
  font-size: 23px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .topMenueText {
    font-size: 16px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topMenueText {
    font-size: 20px;
  }
}

.topInfoImgList {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.topInfoImg {
  padding-bottom: clamp(200px, 34%, 257px);
}
@media only screen and (max-width: 767px) {
  .topInfoImg {
    padding-bottom: 55%;
  }
}

.topGuideCard {
  padding-top: 5em;
}
@media only screen and (max-width: 767px) {
  .topGuideCard {
    padding-top: 2em;
  }
}

.topGuideWrap {
  position: relative;
  padding: 2em 0 0;
}
.topGuideWrap::after {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: url(.././img/guideBk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.7;
  z-index: -2;
}

.topGuideList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 20px;
  row-gap: 50px;
}
.topGuideList > li a {
  display: block;
  padding: 1em 1em 1.3em;
  background: linear-gradient(to bottom, #67bfee, #5674bc);
  border-radius: 10px;
  transition: 0.3s;
  position: relative;
}
.topGuideList > li a::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  content: "\f138";
  font-weight: 100;
  color: #fff;
  bottom: 23px;
  right: 14px;
  font-size: 23px;
  transition: 0.3s;
}
.topGuideList > li a:hover {
  background: linear-gradient(to bottom, #559dc4, #4b66a5);
}
.topGuideList > li a:hover::after {
  right: 15px;
}
@media only screen and (max-width: 767px) {
  .topGuideList {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .topGuideList > li:not(:last-child) {
    margin-bottom: 10%;
  }
  .topGuideList > li a {
    padding: 0.7em 0.7em 0.6em;
  }
  .topGuideList > li a::after {
    bottom: 9px;
    font-size: 19px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topGuideList {
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 12px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .topGuideList > li a {
    padding: 0.5em 0.5em 1em;
  }
  .topGuideList > li a::after {
    right: 6px;
    bottom: 13px;
    font-size: 20px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topGuideList {
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 12px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .topGuideList > li a {
    padding: 0.5em 0.5em 1em;
  }
  .topGuideList > li a::after {
    bottom: 13px;
    right: 6px;
    font-size: 20px;
  }
}

.topGuideImg {
  padding-bottom: 75%;
  border-radius: 10px;
  position: relative;
  transition: 0.3s;
}
.topGuideImg::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.topGuideImg::after {
  opacity: 0;
  transition: 0.3s;
}
.topGuideImg:hover::after {
  opacity: 1;
}

.topGuideTitle {
  font-size: clamp(18px, 1.8vw, 24px);
  color: #fff;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topGuideTitle {
    padding-left: 0;
  }
}

.sinryoBlock .topOutList {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 20px;
}
.topOutList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}
.topOutList.__xsmall {
  grid-template-columns: 1fr 1fr;
}
.topOutList .topOutitem {
  background: #fff;
  border-radius: 10px;
  border: solid 2px #036ea8;
  padding: 0.5em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  position: relative;
}
.topOutList .topOutitem.__line {
  padding: 1.3em 0;
}
.topOutList .topOutitem::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #036ea8;
  border-radius: 10px;
  left: 0;
  top: 7px;
  z-index: -1;
}
.sinryoBlock .topOutList .topOutitem a {
  font-size: 16px;
}
.topOutList .topOutitem a {
  display: inline-block;
  text-align: center;
  width: 100%;
  font-size: 24px;
  padding: 0.5em 0;
  line-height: 1.3;
}
.topOutList .topOutitem:hover {
  background: #edffff;
}
@media only screen and (max-width: 767px) {
  .topOutList {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .topOutList .topOutitem:not(:last-child) {
    margin-bottom: 7%;
  }
  .topOutList .topOutitem a {
    font-size: 19px;
  }
  .topOutList .topOutitem.__line {
    padding: 0.5em 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topOutList {
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
  .topOutList .topOutitem a {
    font-size: 19px;
  }
  .topOutList .topOutitem.__line {
    padding: 0.5em 0;
  }
  .sinryoBlock .topOutList {
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 20px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .sinryoBlock .topOutList {
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 20px;
  }
  .topOutList .topOutitem a {
    font-size: 19px;
  }
}

.topOutImg {
  padding-bottom: clamp(50px, 63%, 560px);
}
@media only screen and (max-width: 767px) {
  .topOutImg {
    padding-bottom: 72%;
  }
}

.topRecrCard {
  background-image: url(.././img/recrBk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.topRecrBlock {
  padding: 5em 0;
}
@media only screen and (max-width: 959px) {
  .topRecrBlock {
    padding: 4em 0 3em;
  }
}

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

.topRecrTextBlock {
  width: 35%;
  margin-right: 6%;
  padding-bottom: 0.5em;
  border-bottom: solid 1px #3e3a39;
}
@media only screen and (max-width: 767px) {
  .topRecrTextBlock {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topRecrTextBlock {
    width: 42%;
    margin-right: 5%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topRecrTextBlock {
    width: 44%;
  }
}

.recrImg {
  padding-bottom: 54%;
  position: relative;
  margin-right: -100px;
}
.recrImg::after {
  position: absolute;
  content: "";
  display: block;
  width: 105%;
  height: 110%;
  left: -2.5%;
  top: -5%;
  background: linear-gradient(to bottom, #2c97d1, #036ea8);
  z-index: -1;
}
@media only screen and (max-width: 959px) {
  .recrImg {
    margin-right: 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .recrImg {
    margin-right: 0;
  }
}

.topRecrTitleEn {
  font-size: clamp(30px, 4.2vw, 74px);
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  color: #ff8ea6;
  background: linear-gradient(135deg, #f0a6c7 0%, #0033ad 100%);
  background: -webkit-linear-gradient(-45deg, #f0a6c7 0%, #4ab7f2 50%, #0033ad 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .topRecrTitleEn {
    font-size: 32px;
  }
}

.topRecrTitleJp {
  font-size: 18px;
  color: #036ea8;
  margin-left: 2.2em;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  .topRecrTitleJp {
    font-size: 16px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topRecrTitleJp {
    font-size: 16px;
    margin-left: 0.6em;
  }
}

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

.topRecrText {
  font-size: 18px;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .topRecrText {
    font-size: 15px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topRecrText {
    font-size: 16px;
    line-height: 1.8;
  }
}

.topRecrBtn {
  padding-right: 45px;
}
.topRecrBtn span {
  font-size: 18px;
  line-height: 1;
}
.topRecrBtn {
  transition: 0.3s;
  position: relative;
}
.topRecrBtn::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  right: 5px;
  color: #2c97d1;
  top: 50%;
  transform: translateY(-50%);
  content: "\f138";
  font-weight: 100;
  font-size: 18px;
}
.topRecrBtn:hover {
  opacity: 0.7;
}
.topRecrBtn:hover::after {
  right: 0;
}
a:hover .topRecrBtn {
  opacity: 0.7;
}
a:hover .topRecrBtn::after {
  right: 0;
}
@media only screen and (max-width: 959px) {
  .topRecrBtn span {
    font-size: 16px;
  }
  .topRecrBtn::after {
    font-size: 15px;
  }
}

.topAccesList {
  max-width: 1038px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.topAccesList > li {
  background-image: url(.././img/accessBk.jpg);
  background-repeat: repeat;
  border-radius: 10px;
  padding: 2em 1.6em;
}
@media only screen and (max-width: 767px) {
  .topAccesList {
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8%;
  }
  .topAccesList > li:not(:last-child) {
    margin-bottom: 10%;
  }
  .topAccesList > li {
    padding: 1.5em 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topAccesList {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 15px;
  }
  .topAccesList > li {
    padding: 1.5em 1em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topAccesList {
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 15px;
  }
}

.topAccesTitle {
  font-size: 20px;
  line-height: 1.4;
}
@media only screen and (max-width: 959px) {
  .topAccesTitle {
    font-size: 18px;
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topAccesTitle {
    font-size: 18px;
    margin-bottom: 5%;
  }
}

.topAccesText {
  font-size: 16px;
  line-height: 1.5;
}
.topAccesText span {
  font-size: 15px;
}
@media only screen and (max-width: 959px) {
  .topAccesText {
    font-size: 15px;
  }
  .topAccesText span {
    font-size: 14px;
  }
}

.topAccesImg {
  width: 63px;
}
@media only screen and (max-width: 959px) {
  .topAccesImg {
    width: 48px;
  }
}

.topMapBlock iframe {
  width: 100%;
  height: 458px;
}
@media only screen and (max-width: 767px) {
  .topMapBlock iframe {
    height: 300px;
  }
}

.topContCard {
  margin-bottom: 50px;
}

.topContText {
  font-size: 21px;
  line-height: 2;
  text-shadow: 5px 5px 5px #fff, -5px -5px 5px #fff, -5px 5px 5px #fff, 5px -5px 5px #fff, 5px 0px 5px #fff, -5px 0px 5px #fff, 0px 5px 5px #fff, 0px -5px 5px #fff;
}
@media only screen and (max-width: 767px) {
  .topContText {
    font-size: 16px;
    line-height: 1.8;
  }
}

.topAcceptBox {
  color: #b40d23;
  font-size: 23px;
  line-height: 1.6;
  padding: 1em 3.6em;
  display: inline-block;
  line-height: 1;
  background-color: #fff3ff;
  border: solid 2px #b40d23;
  border-radius: 52px;
}
@media only screen and (max-width: 767px) {
  .topAcceptBox {
    font-size: 16px;
    line-height: 1.3;
  }
}

.topContList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.topContList > li {
  padding: 2em;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}
.topContList > li.btnBlock_c {
  padding: 2em 1em;
  background: linear-gradient(to bottom, #ffa600, #ff7400);
}
.topContList > li:not(:nth-child(1)):hover {
  background: #b3b3b3;
}
.topContList > li:not(:nth-child(1)):hover.btnBlock_c {
  background: #b55100;
}
@media only screen and (max-width: 959px) {
  .topContList {
    display: block;
  }
  .topContList > li {
    padding: 1.5em 0.5em;
  }
  .topContList > li:not(:last-child) {
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topContList {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topContList {
    display: block;
  }
  .topContList > li {
    padding: 1.5em 0.5em;
  }
  .topContList > li:not(:last-child) {
    margin-bottom: 5%;
  }
  .topContList {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

.topContWrap {
  padding-top: 51px;
  padding-bottom: 153px;
}
@media only screen and (max-width: 767px) {
  .topContWrap {
    padding-top: 67px;
    padding-bottom: 59px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topContWrap {
    padding-top: 78px;
    padding-bottom: 92px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topContWrap {
    padding-top: 51px;
    padding-bottom: 51px;
  }
}

@media print, screen and (min-width: 768px) {
  .topTel {
    pointer-events: none;
  }
}

.topPicUpWrap {
  background-image: url(.././img/picUpBK.jpg);
  background-repeat: repeat;
  padding: 5em 0;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .topPicUpWrap {
    padding: 3em 0;
  }
}

.topPicUpList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.topPicUpList > li {
  padding: 1em;
  background-color: #fff;
  border-radius: 10px;
  border: solid 2px #036ea8;
  position: relative;
  transition: 0.3s;
}
.topPicUpList > li::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #036ea8;
  border-radius: 10px;
  top: 5px;
  left: 0;
  z-index: -1;
}
.topPicUpList > li:hover {
  background-color: #edffff;
}
@media only screen and (max-width: 767px) {
  .topPicUpList {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .topPicUpList > li {
    padding: 0.8em;
  }
  .topPicUpList > li:not(:last-child) {
    margin-bottom: 7%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topPicUpList {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 18px;
    column-gap: 18px;
    row-gap: 18px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topPicUpList {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 18px;
    column-gap: 18px;
    row-gap: 18px;
  }
}

.topPicUpImgBlock {
  width: 45%;
  margin-right: 5%;
}

.topPicUpTextBlock {
  width: 50%;
}

.topPicUpImg {
  padding-bottom: 67%;
}

.topPicUpTitle {
  font-size: 18px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .topPicUpTitle {
    font-size: 16px;
  }
}

/*==================================================
 * 下層ページ
 *================================================*/
/*==================================================
 * common
 *================================================*/
@media only screen and (max-width: 767px) {
  .midashiBlock {
    margin-bottom: 15%;
  }
}

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

.page-id-3442 .commonFvTitle {
  font-size: clamp(30px, 4.6vw, 30px);
}
.commonFvTitle {
  font-size: clamp(40px, 4.6vw, 46px);
  line-height: 1.6;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .page-id-3442 .commonFvTitle {
    font-size: 25px;
  }
  .commonFvTitle {
    font-size: 30px;
    line-height: 1.3;
    text-align: left;
  }
}

.commonFvImg {
  position: relative;
}
.commonFvImg.commonSubFvImg::before {
  display: none;
}
.commonFvImg::after, .commonFvImg::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  width: 100%;
}
.commonFvImg::before {
  height: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}
.commonFvImg::after {
  height: 3px;
  bottom: -3px;
  background: #036ebf;
}

.commonFvTextWrap {
  position: relative;
  z-index: 9;
  padding: 6.3%;
}
@media only screen and (max-width: 767px) {
  .commonFvTextWrap {
    padding: 9.3% 1em;
  }
}

.commonBreadCard {
  margin: 15px 0 30px;
}

.commonPartSideCard {
  width: 22%;
  margin-right: 46px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonPartSideCard {
    display: none;
  }
}

.commonPartCntCard {
  width: calc(100% - (22% + 46px));
}
@media only screen and (max-width: 959px) {
  .commonPartCntCard {
    width: 100%;
  }
}

.sideMenueTitle {
  position: relative;
}
.sideMenueTitle span {
  font-size: 20px;
  padding-left: 20px;
  padding-bottom: 15px;
  line-height: 1;
  display: inline-block;
}
.sideMenueTitle::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #c7edff, #036ea8);
}

.sideMenueLink {
  position: relative;
  display: inline-block;
  transition: 0.3s;
  margin-bottom: 10px;
}
.sideMenueLink span {
  font-size: 16px;
  line-height: 1.3;
  padding-left: 25px;
  display: inline-block;
}
.sideMenueLink::after {
  transition: 0.3s;
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 8px;
  width: 28px;
  height: 16px;
  background-image: url(.././img/sankaku_top.svg);
  background-repeat: no-repeat;
  background-size: 14px;
}
.sideMenueLink:hover {
  color: #2c97d1;
}
.sideMenueLink:hover::after {
  left: 4px;
}
@media only screen and (max-width: 767px) {
  .sideMenueLink span {
    font-size: 15px;
  }
  .sideMenueLink {
    margin-bottom: 3px;
  }
}

.sideMenueList {
  margin-left: 9px;
}
.sideMenueList.__siteMap {
  margin-left: 26px;
}
.sideMenueList.__siteMap > li {
  padding-bottom: 6px;
}
.sideMenueList > li:not(:last-child) {
  padding-bottom: 11px;
}
.sideMenueList > li .linkdown > a {
  position: relative;
  padding-left: 46px;
}
.sideMenueList > li .linkdown > a::after {
  transition: 0.3s;
  position: absolute;
  content: "";
  display: block;
  left: 24px;
  top: 8px;
  width: 28px;
  height: 16px;
  background-image: url(.././img/sankaku.svg);
  background-repeat: no-repeat;
  background-size: 14px;
}
.sideMenueList > li .linkdown > a:hover {
  color: #2c97d1;
}
.sideMenueList > li .linkdown > a:hover::after {
  left: 28px;
}
.sideMenueList > li > a {
  position: relative;
  transition: 0.3s;
}
.sideMenueList > li > a span {
  font-size: 16px;
  line-height: 1.3;
  padding-left: 25px;
  display: inline-block;
}
.sideMenueList > li > a::after {
  transition: 0.3s;
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 8px;
  width: 28px;
  height: 16px;
  background-image: url(.././img/sankaku.svg);
  background-repeat: no-repeat;
  background-size: 14px;
}
.sideMenueList > li > a:hover {
  color: #2c97d1;
}
.sideMenueList > li > a:hover::after {
  left: 4px;
}
@media only screen and (max-width: 767px) {
  .sideMenueList.__siteMap > li {
    padding-bottom: 3px;
  }
  .sideMenueList.__siteMap > li > a span {
    font-size: 15px;
  }
}

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

.gairaTantoTB {
  width: 100%;
  border: solid 1px #cccdcd;
}
.gairaTantoTB thead {
  border: solid 1px #5e9ae0;
}
.gairaTantoTB th,
.gairaTantoTB td {
  padding: 1em;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.4;
}
.gairaTantoTB th {
  background-color: #5e9ae0;
  border: solid 1px #fff;
  color: #fff;
}
.gairaTantoTB td:not(:first-child) {
  border: solid 1px #cccdcd;
}
.gairaTantoTB td {
  text-align: center;
}
.gairaTantoTB.__kyushin tr td:nth-child(1) {
  background-color: unset;
}
.gairaTantoTB.__kyushin td,
.gairaTantoTB.__kyushin th {
  border: solid 1px #cccdcd;
}
.gairaTantoTB.__kyushin th {
  text-align: center;
}
.gairaTantoTB.__kyushin th:nth-child(2) {
  border-right: solid 1px #5e9ae0;
}
.gairaTantoTB.__kyushin td {
  text-align: left;
}
.gairaTantoTB.__kyushin td:nth-child(3), .gairaTantoTB.__kyushin td:nth-child(5) {
  text-align: center;
}
.gairaTantoTB.__kyushin2 tr td:nth-child(1) {
  background-color: unset;
}
.gairaTantoTB.__kyushin2 td,
.gairaTantoTB.__kyushin2 th {
  border: solid 1px #cccdcd;
}
.gairaTantoTB.__kyushin2 td {
  text-align: left;
}
.gairaTantoTB.__kyushin2 td:nth-child(4) {
  text-align: center;
}
.gairaTantoTB.__kyushin3 tr td:nth-child(1) {
  background-color: unset;
}
.gairaTantoTB.__kyushin3 td,
.gairaTantoTB.__kyushin3 th {
  border: solid 1px #cccdcd;
}
.gairaTantoTB.__kyushin3 td {
  text-align: left;
}
.gairaTantoTB.__after tr td:nth-child(1) {
  background-color: #f1f2c7;
}
.gairaTantoTB tr td:nth-child(1) {
  width: 6%;
  background-color: #ccffcc;
}
.gairaTantoTB tr td:nth-child(2) {
  width: 15%;
}
.gairaTantoTB tr td:nth-child(3), .gairaTantoTB tr td:nth-child(4), .gairaTantoTB tr td:nth-child(5), .gairaTantoTB tr td:nth-child(6), .gairaTantoTB tr td:nth-child(7), .gairaTantoTB tr td:nth-child(8) {
  width: 11%;
}
.gairaTantoTB .bold {
  font-weight: bold;
  font-size: 18px;
}
.gairaTantoTB a {
  text-decoration: underline;
  transition: 0.3s;
}
.gairaTantoTB a:hover {
  color: #2c97d1;
}
@media only screen and (max-width: 767px) {
  .gairaTantoTB {
    width: 900px;
  }
  .gairaTantoTB th,
  .gairaTantoTB td {
    font-size: 15px;
    padding: 0.5em;
  }
  .gairaTantoTB .bold {
    font-size: 15px;
    line-height: 1.2;
  }
  .gairaTantoTB.__kyushin th:nth-child(1) {
    width: 7%;
  }
  .gairaTantoTB.__kyushin3 th:nth-child(1), .gairaTantoTB.__kyushin3 th:nth-child(2) {
    width: 18%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .gairaTantoTB {
    width: 1000px;
  }
  .gairaTantoTB.__kyushin th:nth-child(1) {
    width: 11%;
  }
  .gairaTantoTB.__kyushin th:nth-child(2) {
    width: 35%;
  }
  .gairaTantoTB.__kyushin3 th:nth-child(1), .gairaTantoTB.__kyushin3 th:nth-child(2) {
    width: 18%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .gairaTantoTB {
    width: 1000px;
  }
  .gairaTantoTB.__kyushin th:nth-child(1) {
    width: 11%;
  }
  .gairaTantoTB.__kyushin th:nth-child(2) {
    width: 35%;
  }
  .gairaTantoTB.__kyushin3 th:nth-child(1), .gairaTantoTB.__kyushin3 th:nth-child(2) {
    width: 18%;
  }
}

.commonMidashi {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  color: #171c61;
  padding: 1em 1em 1em 2.5em;
  background: linear-gradient(to right, #d2f0fe, #88d0f6, #5982ce);
}
@media only screen and (max-width: 767px) {
  .commonMidashi {
    font-size: 18px;
    padding: 0.8em 1em;
    margin-bottom: 4%;
  }
}

.commonMidashi_2 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  background-color: #171c61;
  color: #fff;
  padding: 1.1em 1em 1.1em 2em;
}
.commonMidashi_2 span {
  font-size: 30px;
}
@media only screen and (max-width: 767px) {
  .commonMidashi_2 {
    font-size: 16px;
    margin-bottom: 5%;
  }
}

.commonMidashi_3 {
  font-size: 18px;
  padding-bottom: 12px;
  padding-left: 10px;
  margin-bottom: 11px;
  font-weight: bold;
  position: relative;
}
.commonMidashi_3::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #036eb7;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .commonMidashi_3 {
    font-size: 16px;
    padding-left: 0;
  }
  .commonMidashi_3.__sp {
    font-size: 15px;
    line-height: 1.6;
  }
}

.commonMidashi_4 {
  font-size: 18px;
  line-height: 1.5;
  color: #171c61;
}
@media only screen and (max-width: 767px) {
  .commonMidashi_4 {
    font-size: 15px;
    margin-bottom: 10%;
  }
}

.gekaCntList.__small {
  padding: 0;
}
.gekaCntList.__smallxl {
  padding: 0;
}
.gekaCntList.__smallxl > li {
  line-height: 1.5;
}
.gekaCntList.__ningendoc {
  display: flex;
  padding: 0;
}
.gekaCntList.__ningendoc > li {
  margin-right: 7px;
}
.gekaCntList.__ningendoc > li a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #2c97d1;
  text-decoration-color: #2c97d1;
  transition: 0.3s;
}
.gekaCntList.__ningendoc > li a:hover {
  color: #171c61;
  text-decoration-color: unset;
}
.gekaCntList.__rinen {
  padding: 0;
  max-width: 345px;
  margin-left: auto;
  margin-right: auto;
}
.gekaCntList.__rinen > li span {
  font-size: 24px;
  line-height: 1.8;
}
.gekaCntList.__rinen > li span::after {
  top: 15px;
}
.gekaCntList {
  padding: 2.5em 4.2em;
}
.gekaCntList > li {
  line-height: 2.2;
}
.gekaCntList > li span {
  font-size: 16px;
  line-height: 1.7;
  padding-left: 22px;
  display: inline-block;
  position: relative;
}
.gekaCntList > li span::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #036eb7;
  top: 7px;
  left: 0;
}
.gekaCntList > li span dl > ul > li {
  padding-left: 1.2em;
}
.gekaCntList > li span dl > ul > li > ul > li {
  padding-left: 3.2em;
}
.gekaCntList > li span dl dt {
  padding-left: 1.2em;
}
.gekaCntList > li span dl dd {
  padding-left: 1em;
}
.gekaCntList > li span dl dd > ul > li {
  padding-left: 1em;
}
.gekaCntList > li a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #2c97d1;
  text-decoration-color: #2c97d1;
  transition: 0.3s;
}
.gekaCntList > li a:hover {
  color: #171c61;
  text-decoration-color: unset;
}
@media only screen and (max-width: 767px) {
  .gekaCntList {
    padding: 1.5em 0.9em;
  }
  .gekaCntList > li {
    line-height: 2.7;
  }
  .gekaCntList > li span {
    font-size: 15px;
    line-height: 1.5;
    padding-left: 16px;
  }
  .gekaCntList > li span::after {
    width: 10px;
    height: 10px;
    top: 7px;
  }
  .gekaCntList.__rinen {
    width: 100%;
  }
  .gekaCntList.__rinen > li span {
    font-size: 18px;
    line-height: 1.8;
  }
  .gekaCntList.__rinen > li span::after {
    top: 13px;
  }
  .gekaCntList.__smallxl > li {
    line-height: 1.2;
  }
  .gekaCntList.__smallxl > li span {
    font-size: 14px;
  }
  .gekaCntList.__smallxl > li span::after {
    width: 9px;
    height: 9px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .gekaCntList {
    padding: 1.5em 1.3em;
  }
}

.nbList {
  padding: 2.5em 4.2em;
  font-size: 16px;
  line-height: 1.7;
}
.nbList > li:not(:last-child) {
  margin-bottom: 2%;
}
.nbList > li {
  list-style-type: decimal !important;
}
@media only screen and (max-width: 767px) {
  .nbList {
    font-size: 15px;
  }
}

.kyosikaImg {
  padding-bottom: 66%;
}

.kyosikaImgBlock {
  width: 40%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .kyosikaImgBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5%;
  }
}

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

.kyosikaBox {
  font-size: 18px;
  color: #c30d23;
  line-height: 1.3;
  display: inline-block;
  padding: 1.2em;
  background-color: #ffecf7;
}
@media only screen and (max-width: 959px) {
  .kyosikaBox {
    font-size: 16px;
    padding: 1em;
  }
}

.manmoImgBlock {
  width: 30%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .manmoImgBlock {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
}

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

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

.kekanCntList {
  padding: 3em;
  border-radius: 10px;
}
.kekanCntList > li {
  padding: 2em 1em;
  background-color: #fff;
}
.kekanCntList > li:not(:last-child) {
  margin-bottom: 3%;
}
@media only screen and (max-width: 767px) {
  .kekanCntList {
    padding: 2em 1em;
  }
  .kekanCntList > li {
    padding: 1em;
  }
  .kekanCntList > li:not(:last-child) {
    margin-bottom: 7%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .kekanCntList {
    padding: 2em 1.8em;
  }
}

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

.sinryoText {
  font-size: 16px;
}
.sinryoText a {
  text-decoration: underline;
  transition: 0.3s;
}
.sinryoText a:hover {
  color: #2c97d1;
}
.sinryoText span {
  color: #2c97d1;
}
@media only screen and (max-width: 767px) {
  .sinryoText {
    font-size: 14px;
  }
}

.outTimeTB {
  width: 100%;
  border: solid 1px #cccdcd;
}
.outTimeTB thead {
  border: solid 1px #5e9ae0;
}
.outTimeTB th,
.outTimeTB td {
  padding: 1em;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.4;
}
.outTimeTB th {
  background-color: #5e9ae0;
  border: solid 1px #fff;
  color: #fff;
}
.outTimeTB td:not(:first-child) {
  border: solid 1px #cccdcd;
}
.outTimeTB td {
  text-align: center;
}
.outTimeTB.__gai tr:nth-child(3) td {
  border-bottom: solid 1px #cccdcd;
}
.outTimeTB.__gai tr td:nth-child(1) {
  background-color: #f1f2c7;
}
.outTimeTB.__gai tr:nth-child(n+4) td:nth-child(1) {
  background-color: #ccffcc;
}
.outTimeTB.__naika tr:nth-child(5) td {
  border-bottom: solid 1px #cccdcd;
}
.outTimeTB.__naika tr td:nth-child(1) {
  background-color: #f1f2c7;
}
.outTimeTB.__naika tr:nth-child(n+6) td:nth-child(1) {
  background-color: #ccffcc;
}
.outTimeTB.__seikei tr:nth-child(1) td {
  border-bottom: solid 1px #cccdcd;
}
.outTimeTB.__seikei tr td:nth-child(1) {
  background-color: #f1f2c7;
}
.outTimeTB.__seikei tr:nth-child(n+2) td:nth-child(1) {
  background-color: #ccffcc;
}
.outTimeTB .bold {
  font-weight: bold;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .outTimeTB {
    width: 700px;
  }
  .outTimeTB th,
  .outTimeTB td {
    font-size: 14px;
    padding: 0.5em;
  }
}

.subLinkBtn {
  position: relative;
}
.subLinkBtn span {
  padding-right: 33px;
  font-size: 16px;
  line-height: 1;
  transition: 0.3s;
}
.subLinkBtn::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  content: "\f138";
  right: 5px;
  transform: translateY(-50%);
  color: #2c97d1;
  top: 50%;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}
.subLinkBtn:hover {
  color: #2c97d1;
}
.subLinkBtn:hover::after {
  right: 0;
}
@media only screen and (max-width: 767px) {
  .subLinkBtn {
    font-size: 15px;
  }
}

.opeTableCard table {
  width: 100%;
}
.opeTableCard table th,
.opeTableCard table td {
  font-size: 16px;
  line-height: 1.4;
  padding: 0.5em 1em;
  border: solid 1px #cccdcd;
  vertical-align: middle;
}
.opeTableCard table th {
  background-color: #d9f4ff;
}
.opeTableCard table .cate {
  width: 50%;
}
.opeTableCard table span {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .opeTableCard table {
    width: 800px;
  }
  .opeTableCard table th,
  .opeTableCard table td {
    font-size: 15px;
    padding: 0.3em 0.5em;
  }
  .opeTableCard table span {
    font-size: 13px;
  }
}

.tbLink {
  padding: 1.2em 4em;
  border-radius: 5px;
  color: #171c61;
  display: inline-block;
  line-height: 1.3;
  background-color: #eeeeef;
  color: #171c61;
  position: relative;
}
.tbLink::after {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  content: "\f054";
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  font-size: 15px;
}
.tbLink:hover {
  opacity: 0.7;
  color: #171c61;
}
.tbLink:hover::after {
  right: 10px;
}
@media only screen and (max-width: 767px) {
  .tbLink a {
    font-size: 15px;
  }
}

.bk_yellow {
  background-color: #f1f2c7;
}

.bk_green {
  background-color: #d8f2cc;
}

.bk_blue {
  background-color: #a2e2ff;
}

.bk_lightblue {
  background-color: #e8f2fe;
}

.bk_gray {
  background-color: #eae7e1;
}

.utiwakeBtn {
  cursor: pointer;
  padding: 1.1em;
  font-size: 18px;
  text-align: center;
  background-color: #eeeeef;
  position: relative;
}
.utiwakeBtn.__bumon {
  background-color: unset;
  text-align: unset;
  padding: 0;
}
.utiwakeBtn.__bumon::after, .utiwakeBtn.__bumon::before {
  right: 60px;
}
.utiwakeBtn.__small {
  font-size: 16px;
  padding: 0.7em 6em 0.7em 4em;
}
.utiwakeBtn.__top {
  margin-bottom: 10%;
}
.utiwakeBtn::before {
  opacity: 0;
}
.utiwakeBtn::after, .utiwakeBtn::before {
  position: absolute;
  display: block;
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  right: 25%;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
  font-size: 20px;
}
.utiwakeBtn::after {
  content: "\f078";
}
.utiwakeBtn::before {
  content: "\f077";
}
.utiwakeBtn.on.__top {
  margin-bottom: 5%;
}
.utiwakeBtn.on::before {
  opacity: 1;
}
.utiwakeBtn.on::after {
  opacity: 0;
}
@media only screen and (max-width: 959px) {
  .utiwakeBtn::after, .utiwakeBtn::before {
    right: 4%;
  }
}
@media only screen and (max-width: 767px) {
  .utiwakeBtn {
    font-size: 16px;
    padding: 0.8em;
  }
  .utiwakeBtn::after, .utiwakeBtn::before {
    font-size: 16px;
  }
}

.wraptext-right {
  max-width: 189px;
  display: block;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .wraptext-right {
    width: 100%;
    margin-left: 0;
  }
}

.utiwakeBlock {
  display: none;
}
.on .utiwakeBlock {
  display: block;
}

.opeTableText {
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  color: #171c61;
}
@media only screen and (max-width: 767px) {
  .opeTableText {
    font-size: 15px;
  }
}

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

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

.gekaStaffImg.__noImg {
  padding-bottom: 66%;
}
.gekaStaffImg {
  padding-bottom: 135%;
}

.gekaStaffCareer {
  font-size: 20px;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .gekaStaffCareer {
    font-size: 15px;
  }
}

.gekaStaffName {
  color: #171c61;
  font-size: 30px;
  line-height: 1.2;
}
.gekaStaffName span {
  font-size: 18px;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .gekaStaffName {
    font-size: 20px;
  }
}

.gekaStaffBox {
  width: 20%;
  margin-right: 3%;
  background-color: #c9ecf7;
}

.gekaStaffInfoBox {
  width: 77%;
}

.gekaStaffTitle {
  font-size: 16px;
  vertical-align: middle;
}

.gekaStaffInfoList > li {
  font-size: 16px;
  line-height: 1.6;
}

.gekaStaffTable {
  width: 100%;
}
.gekaStaffTable th,
.gekaStaffTable td {
  font-size: 16px;
  line-height: 1.3;
  padding: 0 1em;
}
.gekaStaffTable td {
  vertical-align: middle;
}
.gekaStaffTable td .sikakuList > li {
  line-height: 1.8;
}
.gekaStaffTable td .sikakuList > li dt {
  width: 11%;
  margin-right: 2%;
}
.gekaStaffTable td .sikakuList > li dd {
  width: 87%;
}
.gekaStaffTable th {
  font-weight: normal;
  padding: 0.6em 0.3em;
  vertical-align: middle;
  text-align: center;
  width: 22%;
  background-color: #c9ecf7;
}
@media only screen and (max-width: 767px) {
  .gekaStaffTable th,
  .gekaStaffTable td {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 0.5em 0.6em 0;
  }
  .gekaStaffTable td {
    padding-left: 1em;
    vertical-align: middle;
  }
  .gekaStaffTable td .sikakuList > li {
    line-height: 1.5;
  }
  .gekaStaffTable td .sikakuList > li dl {
    margin-bottom: 3%;
  }
  .gekaStaffTable td .sikakuList > li dt {
    width: 100%;
  }
  .gekaStaffTable td .sikakuList > li dd {
    width: 100%;
  }
  .gekaStaffTable th {
    width: 25%;
    padding: 1em 0.5em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .gekaStaffTable td .sikakuList > li dt {
    width: 19%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .intyoCard .gekaStaffTable th {
    width: 17%;
  }
  .gekaStaffTable th {
    width: 24%;
  }
  .gekaStaffTable td .sikakuList > li dt {
    width: 23%;
  }
}

.gekaStaffTBList > li:not(:last-child) {
  padding-bottom: 13px;
  border-bottom: solid 1px #b4b4b5;
  margin-bottom: 13px;
}

.gekaStaffList > li:not(:last-child) {
  padding-bottom: 129px;
  border-bottom: solid 2px #036ec7;
  margin-bottom: 53px;
}
@media only screen and (max-width: 767px) {
  .gekaStaffList > li:not(:last-child) {
    padding-bottom: 11%;
    margin-bottom: 11%;
  }
}

.rinenWrap {
  position: relative;
}
.rinenWrap::after {
  position: absolute;
  content: "";
  display: block;
  width: 145px;
  height: 160px;
  background-image: url(.././img/back_maru.png);
  background-repeat: no-repeat;
  background-size: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .rinenWrap::after {
    top: 104%;
    background-size: 100px;
  }
}

.rinexTitle {
  font-size: 26px;
  line-height: 1.8;
  color: #171c61;
}
@media only screen and (max-width: 767px) {
  .rinexTitle {
    font-size: 20px;
    line-height: 1.6;
  }
}

.rinenText {
  font-size: 18px;
  line-height: 2.3;
}
@media only screen and (max-width: 767px) {
  .rinenText {
    font-size: 15px;
    line-height: 2;
  }
}

/*==================================================
 * site map
 *================================================*/
.sitemapList > li {
  display: block;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .sitemapList > li {
    line-height: 1.7;
  }
}

/*==================================================
 * byouinngaiyou
 *================================================*/
.byoui_table {
  width: 100%;
}
.byoui_table td {
  border: solid 1px #cccdcd;
  padding: 0.8em 1em;
  font-size: 16px;
  line-height: 1.5;
  vertical-align: middle;
}
.byoui_table td.tdColor {
  background-color: #e8f2fe;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .byoui_table td {
    padding: 0.6em 0.8em;
    font-size: 14px;
    line-height: 1.4;
  }
  .byoui_table td:nth-child(1) {
    width: 35%;
  }
}

.blue {
  background-color: #e8f2fe;
}

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

/*==================================================
 * rijityou
 *================================================*/
.linkList > li:not(:last-child) {
  margin-right: 15px;
}
.linkList > li i {
  font-size: 33px;
}
.linkList > li a {
  transition: 0.3s;
}
.linkList > li a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .linkList > li i {
    font-size: 25px;
  }
}

.greeImgBlock {
  width: 30%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .greeImgBlock {
    width: 60%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 5%;
  }
}

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

.rijityou_table {
  width: 100%;
}
.rijityou_table th,
.rijityou_table td {
  border: solid 1px #cccdcd;
  padding: 0.8em 1em;
  font-size: 16px;
  line-height: 1.5;
  vertical-align: middle;
}
.rijityou_table th a,
.rijityou_table td a {
  text-decoration: underline;
  transition: 0.3s;
}
.rijityou_table th a:hover,
.rijityou_table td a:hover {
  color: #2c97d1;
}
.rijityou_table th {
  background: #e8f2fe;
}
@media only screen and (max-width: 767px) {
  .rijityou_table.__scroll {
    width: 800px;
  }
  .rijityou_table th,
  .rijityou_table td {
    padding: 0.8em 1em;
    font-size: 14px;
  }
}

/*==================================================
 * access
 *================================================*/
.accessList {
  padding-left: 20px;
}
.accessList > li:nth-child(1) {
  margin-right: 10px;
}
.accessList > li a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #2c97d1;
  text-decoration-color: #2c97d1;
  transition: 0.3s;
}
.accessList > li a:hover {
  color: #171c61;
  text-decoration-color: unset;
}

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

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

.accessBusImg {
  padding-bottom: 57%;
}

.busTimeTable {
  width: 100%;
  border-bottom: solid 1px #cccdcd;
}
.busTimeTable td {
  padding: 0.8em 1em;
  border: solid 1px #cccdcd;
  vertical-align: middle;
  text-align: center;
}
.busTimeTable .bk_lightblue {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .busTimeTable td {
    font-size: 15px;
    padding: 0.6em 1em;
    display: block;
    border-bottom: none;
  }
}

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

/*==================================================
 * gairaiannai
 *================================================*/
.gairaiTable {
  width: 100%;
}
#jisseki .gairaiTable {
  border: solid 2px #cccdcd;
}
#jisseki .gairaiTable tr.__bottom td {
  border-bottom: solid 2px #cccdcd;
}
#jisseki .gairaiTable td.__left {
  border-right: solid 2px #cccdcd;
}
.gairaiTable.__center td {
  text-align: center;
}
.gairaiTable td,
.gairaiTable th {
  padding: 0.8em 1em;
  line-height: 1.4;
  border: solid 1px #cccdcd;
  vertical-align: middle;
}
.gairaiTable .wh_20 {
  width: 20%;
}
.gairaiTable .wh_30 {
  width: 30%;
}
.gairaiTable th {
  font-weight: 400;
}
.gairaiTable th.__big {
  width: 30%;
}
.gairaiTable a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #2c97d1;
  text-decoration-color: #2c97d1;
  transition: 0.3s;
}
.gairaiTable a:hover {
  color: #171c61;
  text-decoration-color: unset;
}
@media only screen and (max-width: 767px) {
  .gairaiTable.__small td,
  .gairaiTable.__small th {
    font-size: 13px;
    padding: 0.5em 1em;
  }
  .gairaiTable.__koshin td {
    display: block;
  }
  .gairaiTable.__center, .gairaiTable.__scroll, .gairaiTable.__rinsyo, .gairaiTable.__ningen, .gairaiTable.__tokutei, .gairaiTable.__width900 {
    width: 900px;
    padding: 0.6em 0.5em;
  }
  .gairaiTable.__koshin2, .gairaiTable.__tokuteihoken, .gairaiTable.__width600 {
    width: 600px;
    padding: 0.6em 0.5em;
  }
  .gairaiTable.__kenkousemina {
    width: 700px;
    padding: 0.6em 0.5em;
  }
  .gairaiTable.__kenkousemina th.__big {
    width: 25%;
  }
  .gairaiTable td,
  .gairaiTable th {
    font-size: 14px;
    padding: 0.6em 1em;
  }
}

.cardList > li {
  width: 30%;
}
.cardList > li:nth-child(1) {
  margin-right: 10px;
}

.imgWrap:nth-child(1) {
  width: 23%;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .imgWrap:nth-child(1) {
    width: 40%;
  }
  .imgWrap:nth-child(2) {
    width: 50%;
  }
}

.saisinImg {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .saisinImg {
    width: 95%;
  }
}

/*==================================================
 * gairaijyusin
 *================================================*/
.jidoseisankiImg {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .jidoseisankiImg {
    width: 100%;
  }
}

/*==================================================
 * qa
 *================================================*/
.Qtext .qTitle {
  font-size: 30px;
  line-height: 1;
  color: #fff;
  padding-right: 10px;
  display: inline-block;
}
.Qtext .qText {
  font-size: 20px;
  line-height: 1.7;
  font-weight: bold;
  display: inline-block;
  color: #fff;
}
.Qtext {
  padding: 1.7em 1em 1.7em;
  background-color: #171c61;
}
@media only screen and (max-width: 767px) {
  .Qtext {
    margin-bottom: 4%;
  }
  .Qtext .qTitle {
    font-size: 22px;
  }
  .Qtext .qText {
    font-size: 16px;
  }
  .Qtext {
    padding: 1em;
  }
}

.answerText {
  padding-left: 16px;
}
.answerText .aTitle {
  font-size: 26px;
  font-weight: bold;
  color: #8a8787;
  line-height: 1;
  padding-right: 10px;
  margin-top: 2px;
  display: inline-block;
}
.answerText .aText {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  display: inline-block;
}
.answerText .aText a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #2c97d1;
  text-decoration-color: #2c97d1;
  transition: 0.3s;
}
.answerText .aText a:hover {
  color: #171c61;
  text-decoration-color: unset;
}
@media only screen and (max-width: 767px) {
  .answerText .aTitle {
    font-size: 22px;
  }
  .answerText .aText {
    font-size: 15px;
    line-height: 1.5;
  }
}

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

/*==================================================
 * nyuinannai
 *================================================*/
@media only screen and (max-width: 767px) {
  .nyuuinVideoWrap iframe {
    width: 70%;
    height: 180px;
  }
}

.nyuinannaiTable {
  width: 100%;
}
.nyuinannaiTable td {
  padding: 0.8em;
  line-height: 1.4;
  vertical-align: middle;
  border: solid 1px #cccdcd;
}

.nyuinannaiImgBlock {
  width: 30%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .nyuinannaiImgBlock {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 5%;
  }
}

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

.uketukeImg {
  padding-bottom: 67%;
}

/*==================================================
 * kaikeitotaiin
 *================================================*/
.kaikeiImg {
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .kaikeiImg {
    width: 100%;
  }
}

/*==================================================
 * medical
 *================================================*/
.medicalImgList > li:nth-child(1) {
  width: 40%;
  margin-right: 3%;
}
.medicalImgList > li:nth-child(2) {
  width: 57%;
}
.medicalImgList.__half > li {
  width: 50%;
  margin-right: 3%;
}
@media only screen and (max-width: 767px) {
  .medicalImgList > li:nth-child(1), .medicalImgList > li:nth-child(2) {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .medicalImgList > li:nth-child(1) {
    margin-bottom: 15px;
  }
}

.mriImg {
  padding-bottom: 75%;
}

.mriImg2 {
  padding-bottom: 29%;
}

.medical02ImgBlock {
  width: 40%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .medical02ImgBlock {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
  }
}

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

.kiki01Img {
  padding-bottom: 67%;
}

.kiki03Img {
  padding-bottom: 66%;
}

.kiki03ImgList {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.kiki03ImgList > li {
  width: 50%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .kiki03ImgList {
    width: 100%;
  }
}

.medical04ImgBlock {
  width: 40%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .medical04ImgBlock {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
  }
}

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

.kiki04Img {
  padding-bottom: 67%;
}

.kiki05Img {
  padding-bottom: 53%;
}

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

.medicakikiImg {
  padding-bottom: 100%;
}

.KikiName {
  font-size: 18px;
  color: #171c61;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .KikiName {
    font-size: 16px;
  }
}

.kikiTable {
  width: 100%;
}
.kikiTable td {
  padding: 0.8em 1em;
  line-height: 1.4;
  border: solid 1px #cccdcd;
  vertical-align: middle;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .kikiTable {
    width: 600px;
    padding: 0.6em 0.5em;
  }
  .kikiTable td {
    font-size: 14px;
    padding: 0.6em 1em;
  }
}

/*==================================================
 * seikeigeka
 *================================================*/
.seikeiPdfList > li:nth-child(1) {
  margin-right: 20px;
}
.seikeiPdfList > li {
  font-size: 16px;
  line-height: 1.4;
}
.seikeiPdfList > li a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #2c97d1;
  text-decoration-color: #2c97d1;
  transition: 0.3s;
}
.seikeiPdfList > li a:hover {
  color: #171c61;
  text-decoration-color: unset;
}

.seikeiImgList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .seikeiImgList {
    display: block;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .seikeiImgList > li:not(:last-child) {
    margin-bottom: 10%;
  }
}

.seikeiImgTitle {
  font-size: 16px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .seikeiImgTitle {
    font-size: 15px;
  }
}

.seikei01Img {
  padding-bottom: 132%;
}

.seikei02Img {
  padding-bottom: 82%;
}

.seikei03Img {
  padding-bottom: 82%;
}

.seikei04Img {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 25%;
}
@media only screen and (max-width: 767px) {
  .seikei04Img {
    width: 100%;
    padding-bottom: 41%;
  }
}

.seikeiBKPImgBlock {
  width: 30%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .seikeiBKPImgBlock {
    margin-bottom: 7%;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

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

.seikei05Img {
  padding-bottom: 77%;
}

.seikei06Img {
  padding-bottom: 64%;
}

.seikei07Img {
  padding-bottom: 88%;
}

.seikei08Img {
  padding-bottom: 104%;
}
@media only screen and (max-width: 767px) {
  .seikei08Img {
    width: 80%;
    padding-bottom: 83%;
    margin-left: auto;
    margin-right: auto;
  }
}

.seikei09Img {
  padding-bottom: 43%;
}

.seikei10Img {
  padding-bottom: 79%;
}

.seikei11Img {
  padding-bottom: 80%;
}
@media only screen and (max-width: 767px) {
  .seikei11Img {
    width: 80%;
    padding-bottom: 64%;
    margin-left: auto;
    margin-right: auto;
  }
}

.seikeiheruniaImgBlock {
  width: 55%;
  margin-right: 5%;
}
.__small .seikeiheruniaImgBlock {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .seikeiheruniaImgBlock {
    width: 100%;
    margin-bottom: 10%;
  }
  .__small .seikeiheruniaImgBlock {
    width: 100%;
  }
}

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

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

/*==================================================
 * rinsyoshihyo
 *================================================*/
.shihyolist > li a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #2c97d1;
  text-decoration-color: #2c97d1;
  transition: 0.3s;
}
.shihyolist > li a:hover {
  color: #171c61;
  text-decoration-color: unset;
}
@media only screen and (max-width: 767px) {
  .shihyolist > li {
    font-size: 15px;
  }
}

.rinshoTextWrap {
  padding: 1.5em;
  font-size: 16px;
  line-height: 1.8;
  background-color: #eaeaea;
}
@media only screen and (max-width: 767px) {
  .rinshoTextWrap {
    font-size: 14px;
  }
}

/*==================================================
 * sinoukunrensi
 *================================================*/
.kensakiList {
  display: grid;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
@media only screen and (max-width: 767px) {
  .kensakiList {
    display: block;
    width: 50%;
  }
  .kensakiList > li:not(:last-child) {
    margin-bottom: 10%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .kensakiList {
    width: 100%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .kensakiList {
    width: 100%;
  }
}

.kensakiImg {
  padding-bottom: 133%;
}

/*==================================================
 * kojinnjyouhou
 *================================================*/
.cutionList > li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 16px;
  line-height: 1.6;
}
.cutionList > li:not(:last-child) {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .cutionList > li {
    font-size: 15px;
    line-height: 1.6;
  }
}

/*==================================================
 * kinen
 *================================================*/
#hpb-main label {
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .kinenBlock {
    margin-bottom: 7%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .kinenBlock {
    margin-bottom: 4%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .kinenBlock {
    margin-bottom: 4%;
  }
}

/*==================================================
 * enka
 *================================================*/
.enkaList > li:nth-child(1) {
  width: 23%;
  margin-right: 5%;
}
.enkaList > li:nth-child(2) {
  width: 18%;
}
.enkaList.__small > li:nth-child(1) {
  width: 25%;
  margin-right: 5%;
}
.enkaList.__small > li:nth-child(2) {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .enkaList > li:nth-child(1) {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10%;
  }
  .enkaList > li:nth-child(2) {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
  .enkaList.__small > li:nth-child(1) {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
  }
  .enkaList.__small > li:nth-child(2) {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}

.enka01Img {
  padding-bottom: 98%;
}

.enka02Img {
  padding-bottom: 120%;
}

.enkaImgBlock {
  width: 25%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .enkaImgBlock {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8%;
  }
}

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

.enka03Img {
  padding-bottom: 92%;
}

.enka04Img {
  padding-bottom: 71%;
}

.enka05Img {
  padding-bottom: 75%;
}

.enka06Img {
  padding-bottom: 86%;
}

/*==================================================
 * sika
 *================================================*/
.infoList > li:not(:last-child) {
  margin-bottom: 3%;
}

/*==================================================
 * lymphedema
 *================================================*/
.lympImgBlock {
  width: 20%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .lympImgBlock {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 7%;
  }
}

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

.lympImg {
  padding-bottom: 100%;
}

/*==================================================
 * innaishisetsu
 *================================================*/
.innaishiImg {
  width: 60%;
}

.mapImg {
  width: 70%;
  margin: 30px auto;
}

/*==================================================
 * jinsenta
 *================================================*/
@media only screen and (max-width: 767px) {
  .jinsentaCard {
    margin-bottom: 13%;
  }
}

.jinsentaImgBlock {
  width: 40%;
  margin-right: 5%;
}
.__tate .jinsentaImgBlock {
  width: 20%;
}
@media only screen and (max-width: 767px) {
  .jinsentaImgBlock {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
  }
  .__tate .jinsentaImgBlock {
    width: 40%;
  }
}

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

.jinsenta01Img {
  padding-bottom: 56%;
}
.jinsenta01Img.__tate {
  padding-bottom: 143%;
}

/*==================================================
 * byousin
 *================================================*/
.byousinImgBlock {
  width: 40%;
  margin-right: 5%;
}
.__yoko .byousinImgBlock {
  width: 95%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .byousinImgBlock {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10%;
  }
}

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

.byousinImg {
  padding-bottom: 79%;
}
.__yoko .byousinImg {
  padding-bottom: 50%;
}

/*==================================================
 * kangobusyoukai
 *================================================*/
.kangoImg {
  width: 55%;
}
@media only screen and (max-width: 959px) {
  .kangoImg {
    width: 100%;
  }
}

.eiyoImgBlock {
  width: 35%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .eiyoImgBlock {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
  }
}

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

.eiyoImg {
  padding-bottom: 75%;
}

/*==================================================
 * gyoujisyoku
 *================================================*/
.gyoujiImgBlock {
  width: 30%;
  margin-right: 5%;
}

.gyoujiInfoBlock {
  width: 65%;
}

.gyoujiImg {
  padding-bottom: 91%;
}

.successBtn {
  padding: 0.8em;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  color: #c30d23;
  border-radius: 10px;
  position: absolute;
  top: 23%;
  right: 5%;
  transform: rotate(5deg);
}
.successBtn::after {
  position: absolute;
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: solid 2px #c30d23;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .successBtn {
    font-size: 15px;
  }
  .successBtn::after {
    width: 80px;
    height: 80px;
  }
}

/*==================================================
 * kenkoseminar
 *================================================*/
.kenko317img {
  width: 60%;
}

/*==================================================
 * gairai
 *================================================*/
.gairaiImgList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.gairaiImgList.__grid2 {
  grid-template-columns: 1fr 1fr;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}
.gairaiImgList {
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .gairaiImgList {
    display: block;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
  }
  .gairaiImgList > li:not(:last-child) {
    margin-bottom: 5%;
  }
}

.gairaiImg {
  padding-bottom: 75%;
}

.gairaiImgBlock {
  width: 35%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .gairaiImgBlock {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
  }
}

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

.gairaiImg2 {
  padding-bottom: 75%;
}

.seminarBlock h4 {
  font-size: 18px;
  padding-bottom: 12px;
  padding-left: 10px;
  margin-bottom: 11px;
  font-weight: bold;
  position: relative;
}
.seminarBlock h4::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #036eb7;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .seminarBlock h4 {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 7.5%;
  }
}
.seminarBlock p {
  font-size: 16px;
  line-height: 2;
  padding: 0 1em;
}
@media only screen and (max-width: 767px) {
  .seminarBlock p {
    padding: 0;
    font-size: 15px;
    line-height: 2;
  }
}

.mealListBlock ul > li span {
  font-size: 16px;
  line-height: 1.7;
  padding-left: 22px;
  display: inline-block;
  position: relative;
}
.mealListBlock ul > li span::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #036eb7;
  top: 7px;
  left: 0;
}
.mealListBlock ul > li a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #2c97d1;
  text-decoration-color: #2c97d1;
  transition: 0.3s;
}
.mealListBlock ul > li a:hover {
  color: #171c61;
  text-decoration-color: unset;
}
@media only screen and (max-width: 767px) {
  .mealListBlock ul > li {
    line-height: 1.2;
  }
  .mealListBlock ul > li span {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 16px;
  }
  .mealListBlock ul > li span::after {
    width: 9px;
    height: 9px;
  }
}

.recemeList > li:not(:last-child) {
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .recemeList {
    display: block;
  }
}

.telBox {
  padding: 1em 2em;
  border-radius: 100px;
  background: linear-gradient(to right, #ffa600, #ff7400);
  transition: 0.3s;
}
.telBox:hover {
  opacity: 0.7;
}

.contactTelText {
  font-size: 17px;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .contactTelText {
    font-size: 16px;
  }
}

.contactTel {
  font-size: 32px;
  font-weight: bold;
}
.contactTel i {
  padding-right: 5px;
  font-size: 25px;
}
@media print, screen and (min-width: 768px) {
  .contactTel {
    pointer-events: none;
  }
}
@media only screen and (max-width: 767px) {
  .contactTel {
    font-size: 22px;
  }
  .contactTel i {
    padding-right: 2px;
    font-size: 20px;
  }
}

.contctList .contctBtn:nth-child(1) {
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  .contctList .contctBtn {
    width: 300px;
  }
  .contctList .contctBtn:nth-child(1) {
    margin-right: 0;
    margin-bottom: 3%;
  }
}

.soudanImgBlock {
  width: 30%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .soudanImgBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .soudanImgBlock {
    width: 45%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .soudanImgBlock {
    width: 45%;
  }
}

.soudanTextBlock {
  width: 65%;
}
@media only screen and (max-width: 767px) {
  .soudanTextBlock {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .soudanTextBlock {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .soudanTextBlock {
    width: 50%;
  }
}

.soudanImg {
  padding-bottom: 70%;
}

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

.intyoInfoBlock {
  width: 65%;
  margin-right: 3%;
}
@media only screen and (max-width: 767px) {
  .intyoInfoBlock {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .intyoInfoBlock {
    width: 61%;
  }
}

.intyoImgBlock {
  width: 32%;
}
@media only screen and (max-width: 767px) {
  .intyoImgBlock {
    width: 100%;
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .intyoImgBlock {
    width: 36%;
  }
}

.intyoImgWrap img {
  margin-right: 0;
  width: 100%;
}
@media only screen and (max-width: 959px) {
  .intyoImgWrap img {
    margin-right: auto;
    margin-left: auto;
    width: 70%;
  }
}

.torikumiList {
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
.torikumiList > li {
  width: calc((100% - 30px) / 2);
  background-color: #2c97d1;
  padding: 3em 1em;
  border-radius: 10px;
  font-weight: 600;
  position: relative;
}
.torikumiList > li.exbox {
  width: 100%;
  padding: 0.5em;
}
.torikumiList > li.exbox > div {
  border: 4px double #fff;
  border-radius: 10px;
  padding: 1em;
}
.torikumiList > li.exbox > div > p {
  font-size: 1.1em;
  font-weight: bold;
}
.torikumiList > li span {
  font-size: clamp(1.5rem, 1.3786407767rem + 0.3236245955vw, 2rem);
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.torikumiList > li p {
  font-size: clamp(1.5rem, 1.3786407767rem + 0.3236245955vw, 2rem);
}
@media only screen and (max-width: 767px) {
  .torikumiList {
    row-gap: 10px;
  }
  .torikumiList > li {
    width: 100%;
    padding: 2em 1em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .torikumiList {
    row-gap: 10px;
  }
  .torikumiList > li {
    width: 100%;
    padding: 2.5em 1em;
  }
}

.torikumiList_2 {
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
}
.torikumiList_2 > li {
  width: calc((100% - 50px) / 2);
  font-size: clamp(2rem, 1.927184466rem + 0.1941747573vw, 2.3rem);
  color: #171c61;
  line-height: 1.6;
  padding: 2em 1em;
  font-weight: 600;
  position: relative;
  background-color: #f1f9fe;
  border-radius: 50px;
  box-shadow: 0px 5px 22px 13px rgb(142, 211, 247);
}
.torikumiList_2 > li.exbox {
  width: 100%;
  padding: 0.5em;
}
.torikumiList_2 > li.exbox > div {
  border: 4px double #2c97d1;
  border-radius: 50px;
  padding: 1em;
}
@media only screen and (max-width: 767px) {
  .torikumiList_2 > li.exbox > div {
    padding: 0.5em;
  }
}
.torikumiList_2 > li.exbox p {
  font-size: 1.1em;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .torikumiList_2 > li.exbox p {
    font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  }
}
.torikumiList_2 > li span {
  font-size: clamp(2rem, 1.927184466rem + 0.1941747573vw, 2.3rem);
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.torikumiList_2 > li p {
  font-size: clamp(2rem, 1.927184466rem + 0.1941747573vw, 2.3rem);
  font-weight: 700;
}
.torikumiList_2 > li p.sub {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .torikumiList_2 > li p.sub {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .torikumiList_2 {
    row-gap: 20px;
  }
  .torikumiList_2 > li {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5em 1em;
  }
  .torikumiList_2 > li p {
    font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  }
  .torikumiList_2 > li p.sub {
    font-size: 13px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .torikumiList_2 {
    row-gap: 20px;
  }
  .torikumiList_2 > li {
    width: 100%;
    padding: 1em 1em;
  }
}

.torikumiBox {
  width: 100%;
  font-size: clamp(1.7rem, 1.5786407767rem + 0.3236245955vw, 2.2rem);
  color: #171c61;
  font-weight: 600;
  line-height: 1.6;
  display: inline-block;
  padding: 1em 1.5em;
  background-color: #a1dbf8;
  border-radius: 10px;
  box-shadow: 0px 5px 22px 13px rgb(142, 211, 247);
}
.torikumiBox._orange {
  padding: 0;
  background-color: #fff;
  border-radius: 0;
  box-shadow: none;
  color: #ffa600;
  text-shadow: 0px 0px 20px rgba(255, 166, 0, 0.7);
  font-weight: bold;
  font-size: clamp(2rem, 1.854368932rem + 0.3883495146vw, 2.6rem);
}
.torikumiBox._navy {
  padding: 0;
  background-color: #fff;
  border-radius: 0;
  box-shadow: none;
  color: #171c61;
  text-shadow: 0px 0px 20px #9edaf8;
  font-weight: bold;
  font-size: clamp(2rem, 1.854368932rem + 0.3883495146vw, 2.6rem);
}
@media only screen and (max-width: 959px) {
  .torikumiBox {
    font-size: 16px;
    padding: 1em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .torikumiBox {
    padding: 1em;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .intyoImgBlock2Wrap {
    display: block;
  }
}

.intyoInfoBlock2 {
  width: 50%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .intyoInfoBlock2 {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .intyoInfoBlock2 {
    width: 100%;
    margin-right: 0;
  }
}

.intyoImgBlock2 {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .intyoImgBlock2 {
    width: 100%;
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .intyoImgBlock2 {
    width: 100%;
    margin-bottom: 5%;
  }
}

.clickImg {
  display: inline-block;
  vertical-align: middle;
  width: 4%;
  margin: 0;
  transition: 0.3s;
}
a:hover .clickImg {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .clickImg {
    width: 12%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .clickImg {
    width: 7%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .clickImg {
    width: 7%;
  }
}/*# sourceMappingURL=import.css.map */