@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.pc {
  display: none;
}
@media (min-width: 992px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media (min-width: 992px) {
  .sp {
    display: none;
  }
}

/*1.0rem=10px*/
html {
  font-size: 62.5%;
}

body {
  background-color: #ffffff;
  color: #000;
  font-weight: 500;
  font-family: "Noto Serif JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  overflow-x: hidden;
}

img {
  width: 100%;
}

button {
  background-color: transparent;
  cursor: pointer;
}

em {
  font-style: normal;
}

input,
label,
a {
  cursor: pointer;
}

a {
  transition: all 0.2s linear 0s;
}
a:hover {
  opacity: 0.7;
}

/***********************************************
header
************************************************/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  color: #000;
  background-color: rgba(255, 255, 255, 0.8);
}

.l-header__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
@media (min-width: 992px) {
  .l-header__items {
    height: auto;
    height: 80px;
    padding-left: 10px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/***********************************************
header              左               ロゴ*****/
.l-header__left {
  margin-left: 10px;
  margin-right: auto;
}

a.l-header__logo {
  transition: all 0.2s linear 0s;
  display: block;
  width: 150px;
  margin-left: 20px;
}
a.l-header__logo:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  a.l-header__logo {
    width: 200px;
    margin-left: 30px;
  }
}

/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.l-header__nav-items li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  color: #ffffff;
}

.l-header__nav-items li.current a,
.l-header__nav-items li a:hover {
  opacity: 0.7;
}

.l-header__nav-items li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -10px;
  left: 0;
  /*線の形状*/
  width: 100%;
  height: 1px;
  background: #ffffff;
  /*アニメーションの指定*/
  transition: all 0.6s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
.l-header__nav-items li.current a::after,
.l-header__nav-items li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

/***********************************************
header       右            *****/
.l-header__nav-items ul {
  display: none;
}
@media (min-width: 992px) {
  .l-header__nav-items ul {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .l-header__nav-items {
    display: flex;
  }
}

.l-header__insta-icon {
  display: block;
  width: 34px;
  padding: 0;
  margin: 23px 14px 0 0;
}
.l-header__insta-icon.--sp {
  margin-top: 0px;
  position: absolute;
  top: 17px;
  right: 70px;
}
@media (min-width: 992px) {
  .l-header__insta-icon.--sp {
    display: none;
  }
}

.l-header__nav-items ul > li {
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (min-width: 992px) {
  .l-header__nav-items ul > li {
    padding: 10px 18px;
    font-size: 18px;
  }
}
.l-header__nav-items ul > li a {
  transition: all 0.2s linear 0s;
  color: #333;
}
.l-header__nav-items ul > li a:hover {
  opacity: 0.7;
}

/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.l-header__hamburger-menu li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  color: #000000;
}

.l-header__hamburger-menu li.current a,
.l-header__hamburger-menu li a:hover {
  opacity: 1 !important;
}

.l-header__hamburger-menu li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 4px;
  left: 35%;
  transform: translateX(-50%);
  /*線の形状*/
  width: 30%;
  height: 3px;
  background: #136297;
  /*アニメーションの指定*/
  transition: all 0.6s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
.l-header__hamburger-menu li.current a::after,
.l-header__hamburger-menu li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

/***********************************************
ハンバーガーメニュー
************************************************/
.drawer-icon {
  width: 70px;
  height: 70px;
  position: fixed;
  top: -6px;
  right: 0;
  z-index: 1000;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  background: transparent;
  display: block;
  background-color: #136297;
}
@media (min-width: 992px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-bars {
  display: inline-block;
  width: 54px;
  height: 32.75px;
  position: relative;
  vertical-align: bottom;
  width: 33px;
  height: 12.75px;
}

.drawer-bar {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 2.25px;
  border-radius: 20px;
  transition: all 0.5s linear 0s;
}
.drawer-bar:nth-of-type(1) {
  top: 0;
}
.drawer-bar:nth-of-type(2) {
  top: 10.25px;
}
.drawer-bar:nth-of-type(3) {
  top: 20.5px;
}
.is-checked .drawer-bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(-45deg);
  background: #ffffff;
}
.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}
.is-checked .drawer-bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(45deg);
  background: #ffffff;
}

.drawer-content-cover {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transform: translateX(0);
  top: 0;
  left: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: all 0.5s linear 0s;
  background: #FCF0F0;
  z-index: 999;
  padding-top: 50px;
}
.drawer-content-cover.is-checked {
  visibility: visible;
  opacity: 1;
}
.drawer-content-cover p {
  color: #3C3C3C;
}

.l-header__hamburger-menu ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  z-index: 1;
}
@media (min-width: 992px) {
  .l-header__hamburger-menu ul {
    width: 300px;
    max-width: 100%;
  }
}
.l-header__hamburger-menu ul li a {
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  padding: 26px 17px;
  color: #333;
  transition: all 0.2s linear 0s;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
}
.l-header__hamburger-menu ul li a:hover {
  opacity: 0.7;
}

.menu-dorawer-container li:last-child {
  border: solid 2px #fff;
  background-color: #fff;
  margin: 10px 0;
}
.menu-dorawer-container li:last-child a {
  font-weight: bold;
  color: #002a52;
}
.menu-dorawer-container li:nth-last-child(2) {
  border: solid 1px #fff;
  margin: 10px 0 30px 0;
}

.l-header__hamburger-menu ul li {
  font-size: 18px;
}

.l-header__foot-flex ul {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  font-weight: 600;
}
.l-header__foot-flex ul li a {
  display: block;
  padding: 30px 8px;
  color: #cbcbcb;
  font-size: 11px;
}

/**************?
footer
/*************/
.l-footer a {
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.2s linear 0s;
  color: #fff;
  padding: 10px 0;
  display: block;
  font-weight: 400;
}
.l-footer a:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  .l-footer {
    display: block;
    width: 100%;
    color: #ffffff;
    z-index: 900;
    font-size: 16px;
    background-color: #f06600;
  }
}

.l-footer__nav-items {
  width: 75%;
}
.l-footer__nav-items ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px auto 0;
}
@media (min-width: 992px) {
  .l-footer__nav-items ul {
    margin: 0 auto 0px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.l-footer__nav-items ul > li {
  display: block;
}
@media (min-width: 992px) {
  .l-footer__nav-items ul > li {
    padding: 10px 40px;
  }
}

.l-footer__copyright {
  font-size: 10px;
  color: #ffffff;
  display: block;
  font-weight: 400;
  padding: 10px 0 90px;
  background-color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.6px;
}
@media (min-width: 768px) {
  .l-footer__copyright {
    font-size: 15px;
    padding: 10px 70px 10px 0;
  }
}

.l-footer__vertical-line {
  width: 1px;
  height: 110px;
  background-color: #b2b2b2;
}

/***********************************************
    cv ボタン　最下部固定
    ************************************************/
.l-footer-cv {
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 800;
  font-size: 15px;
  font-weight: 700;
  background-color: #ffffff;
  height: 75px;
  width: 100%;
}
@media (min-width: 992px) {
  .l-footer-cv {
    display: none;
  }
}

a.l-footer-cv__btn {
  width: 50%;
  padding: 27px;
  text-align: center;
  border-right: solid 1px #fff;
  line-height: 1.5;
  color: #fff !important;
  display: block;
  width: 50%;
  height: 100%;
  background-color: #136297;
  padding: 27px 0px;
  font-size: 14px;
}
a.l-footer-cv__btn::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  position: absolute;
  top: 42%;
  right: 10px;
}
@media (min-width: 992px) {
  a.l-footer-cv__btn {
    width: 320px;
    height: 75px;
    right: 0;
    background-color: #136297;
    color: #333;
    font-size: 16px;
    padding: 25px;
  }
  a.l-footer-cv__btn::after {
    border-color: #136297;
    right: 20px;
  }
  a.l-footer-cv__btn.--pc {
    padding: 25px;
    background-color: #136297;
    color: #fff;
  }
  a.l-footer-cv__btn.--pc::after {
    border-color: #fff;
  }
}

@media (min-width: 992px) {
  .l-footer__text-small {
    font-size: 11px;
  }
}

.l-footer-cv__sp {
  display: inline;
}
@media (min-width: 992px) {
  .l-footer-cv__sp {
    display: none;
  }
}

.l-footer__wrapper {
  margin-top: 40px;
  color: #fff;
}

.l-footer__logo-nav-flex {
  display: none;
}
@media (min-width: 992px) {
  .l-footer__logo-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
  }
}

.l-footer__nav {
  margin-top: 30px;
  padding: 15px 0;
}
.l-footer__nav ul {
  display: none;
}
@media (min-width: 992px) {
  .l-footer__nav ul {
    display: flex;
    justify-content: center;
  }
}

.l-footer__nav ul > li {
  font-weight: 700;
}
@media (min-width: 992px) {
  .l-footer__nav ul > li {
    padding: 30px 15px;
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .l-footer__nav ul > li {
    padding: 30px 30px;
    font-size: 22px;
  }
}
.l-footer__nav ul > li a {
  transition: all 0.2s linear 0s;
  /*********フッターナビゲーション文字の色********/
  color: #fff;
}
.l-footer__nav ul > li a:hover {
  opacity: 0.7;
}

.l-footer__logo {
  transition: all 0.2s linear 0s;
  display: block;
}
.l-footer__logo:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  .l-footer__logo {
    width: 99px;
  }
}

.l-footer__info {
  margin: 16px 0 9px 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: normal;
  text-align: left;
  color: #333;
}

.l-footer__contact-bg {
  padding: 30px 0 20px;
  margin: 30px 0 0 0;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .l-footer__contact-bg {
    padding: 80px 0;
    margin: 0;
  }
}

.c-inner__center {
  min-width: 330px;
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .c-inner__center {
    width: 80%;
  }
}

.c-inner__left {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 992px) {
  .c-inner__left {
    width: 80%;
  }
}

.c-inner__flex {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.c-inner__flex.--sp_block {
  display: block;
}
@media (min-width: 992px) {
  .c-inner__flex.--sp_block {
    display: flex;
  }
}

.c-heading {
  text-align: center;
  margin: 65px 0 20px;
}

.c-heading__jp {
  font-size: 35px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -2px;
  text-align: center;
  color: #000;
  position: relative;
}
.c-heading__jp::before {
  content: "";
  background-image: url(../img/logo-heading.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (min-width: 992px) {
  .c-heading__jp::before {
    width: 74px;
    height: 74px;
  }
}
.c-heading__jp.--contact {
  letter-spacing: 0em;
  color: #fff;
}
.c-heading__jp.--contact::before {
  background-image: none;
}
.c-heading__jp.--contact + .c-heading__en {
  letter-spacing: 0em;
  color: #fff;
  padding: 5px 0;
}

.c-heading__en {
  display: inline-block;
  margin-top: -10px;
  font-size: 18px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1px;
  text-align: center;
  color: #000;
}

.c-icon {
  position: relative;
}
.c-icon::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.c-icon::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

/***********************************************
左から右へグイっと登場
************************************************/
.c-icon__from-left {
  animation: fadeIn 1s cubic-bezier(0.9, 0, 0.2, 1) 0.5s 1 normal backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-icon__keyword {
  position: absolute;
  color: transparent;
}

/***********************************************
文字の両サイドに画像配置
************************************************/
.c-icon__both-side {
  position: relative;
}
.c-icon__both-side::before, .c-icon__both-side::after {
  content: "";
  display: inline-block;
  width: 10%;
  aspect-ratio: 100/133;
  background-image: url();
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.c-icon__both-side::after {
  background-image: url();
}

/***********************************************
アンダーライン
************************************************/
.c-icon__marker {
  background: linear-gradient(transparent 60%, yellow 30%);
  display: inline-block;
}

.c-icon__under-line {
  border-bottom: 10px solid #000;
  display: inline-block;
  padding-bottom: 10px;
}

/***********************************************
　ハンバーガーメニュー　細いスクロールバー
************************************************/
.c-icon__scroll-bar {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  overflow-y: auto;
}
.c-icon__scroll-bar::-webkit-scrollbar {
  width: 5px;
  height: 2px;
  border-radius: 10px;
}
.c-icon__scroll-bar::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #D5D5D5;
}
.c-icon__scroll-bar::-webkit-scrollbar-thumb {
  background-color: #969696;
}

/***********************************************
　MV　SCROLL DOWN のモーション
************************************************/
.c-icon__scrolldown1 {
  position: absolute;
  left: 30px;
  bottom: -50px;
  height: 50px;
}

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/
/*スクロールダウン全体の場所*/
.c-icon__scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 58px;
  bottom: 69px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.c-icon__scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -32px;
  bottom: 59px;
  /*テキストの形状*/
  color: #D5C1A1;
  width: 70px;
  font-size: 14px;
  font-weight: 400;
  transform: rotate(90deg);
}

/* 線の描写 */
.c-icon__scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 2px;
  height: 30px;
  background: #D5C1A1;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 55px;
    opacity: 0;
  }
}
/* ------------------------------------
ドキドキするボタン
  ------------------------------------*/
.c-button__doki {
  animation-name: dokidoki;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: block;
  text-decoration: none !important;
  text-align: center;
}

@keyframes dokidoki {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
/***********************************************
ボタンがキラッと光る
************************************************/
/* ------------------------------------
ボタンの基本スタイル
------------------------------------*/
/* ボタン自体のスタイル */
.shine-button,
.shine-button2 {
  /* ボタンを光らせるために必要 */
  position: relative;
  /* ボタンの位置を基準にするため relative指定 */
  overflow: hidden;
  /* ボタンの外の領域は非表示 */
}

/* ------------------------------------
  ボタンの外側にボックス作成
  （疑似要素「before」を使う）
  ------------------------------------*/
.shine-button::before,
.shine-button2::before {
  content: "";
  /* 文字は表示しないので中身無しを指定 */
  position: absolute;
  /* ボタンの位置を基準に絶対値指定する */
  display: block;
  /* 形式はblock */
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  /* 背景色は透明から白になるグラデーション */
  width: 50px;
  /* 横幅 */
  height: 50px;
  /* 縦幅 */
  top: -60px;
  /* ボタン左上を基準に上へ60pxの位置 */
  left: -60px;
  /* ボタン左上を基準に左へ60pxの位置 */
  /* アニメーションの動作指定 */
  animation-name: shine-run;
  /* アニメーション名の指定 */
  animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  animation-duration: 3s;
  /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in;
  /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
  /* アニメーションの無限繰り返しの指定 */
}

.shine-button2::before {
  background: linear-gradient(to right, rgba(255, 223, 64, 0), #fffdf3);
  z-index: 999;
}

/* ------------------------------------
  アニメーションのタイミングとボックスの
  拡大率、角度、透過率の指定
  ------------------------------------*/
@keyframes shine-run {
  0% {
    transform: scale(0) rotate(50deg);
    /* アニメ開始時は大きさ0、50度の傾き */
    opacity: 0;
    /* アニメ開始時は全透過 */
  }
  40% {
    transform: scale(1) rotate(50deg);
    /* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
    opacity: 1;
    /* 透過しない（しっかり表示される）ように1を設定 */
  }
  100% {
    transform: scale(250) rotate(50deg);
    /* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
    opacity: 0;
    /* 全透過になるようにして、徐々に消えるような変化を付ける */
  }
}
/**@use "top2222";**/
/***************
*トップページ「　　」セクション
****************/
.p-top__s1-mv-section {
  margin: 70px 0 0 0;
}

.p-top__mv {
  padding: 300px 20px 100px;
  background-image: url();
  background-size: cover;
  margin: 80px auto 0 0;
}
@media (min-width: 992px) {
  .p-top__mv {
    padding: 300px 0 150px;
    max-width: none;
  }
}
.p-top__mv.--1 {
  background-image: url();
}

.title {
  font-size: 24px;
  padding: 20px 0;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .title {
    font-size: 30px;
    padding: 40px 0 0px;
  }
}

.top-logo {
  width: 170px;
  display: block;
  margin: 30px auto;
}
@media (min-width: 992px) {
  .top-logo {
    width: 400px;
    margin: 80px auto;
  }
}

@media (max-width: 700px) {
  .title {
    font-size: 15px;
    padding: 20px 0 0;
  }
}
/***************
*トップページ「　　」セクション
****************/
.h2-title {
  background-image: url(../img/title1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  font-size: 18px;
  line-height: 1.4;
  padding: 8px 10px 18px;
  color: #fff;
}
@media (min-width: 992px) {
  .h2-title {
    font-size: 40px;
  }
}

.img1-wrapper {
  margin: 20px 0;
}

.img5-wrapper {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.img5-wrapper .img1 {
  margin-left: 0;
}
@media (min-width: 992px) {
  .img5-wrapper .img1 {
    width: 30%;
    margin-right: 30px;
  }
}
.img5-wrapper h3 {
  margin: 0 0 0 0;
}
@media (min-width: 992px) {
  .img5-wrapper {
    margin: 80px 0;
  }
}

.img1 {
  width: 100%;
}
@media (min-width: 992px) {
  .img1 {
    width: 40%;
    max-width: 600px;
    margin-right: 20px;
  }
}

.img5-text {
  width: 100%;
}
@media (min-width: 992px) {
  .img5-text {
    width: 50%;
    max-width: 600px;
  }
}

.img1-text {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 600;
  margin: 20px 0;
}
@media (min-width: 992px) {
  .img1-text {
    font-size: 20px;
    width: 56%;
    margin: 0px 0;
  }
}

h3 {
  color: #136297;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 900;
  margin: 0px 0 10px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 992px) {
  h3 {
    font-size: 22px;
  }
}

p {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 700;
  margin: 0px 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 992px) {
  p {
    font-size: 17px;
  }
}

.map-img {
  position: relative;
}
.map-img .a1,
.map-img .a2 {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 400px;
  transition: all 0.2s linear 0s;
}
.map-img .a1:hover,
.map-img .a2:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.map-img .a2 {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
}

.img2 {
  display: block;
  margin: 10px 0 0;
  width: 100%;
}
@media (min-width: 992px) {
  .img2 {
    width: 30%;
    max-width: 600px;
    margin-left: 20px;
  }
}

.--mgb {
  margin-bottom: 80px;
}

.contact-btn {
  max-width: 300px;
  width: 80%;
  display: block;
  margin: 50px auto;
}
@media (min-width: 992px) {
  .contact-btn {
    max-width: 500px;
  }
}

.mgt30 {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .mgt30 {
    margin-top: 70px;
  }
}

/***************
*トップページ「　map　」セクション
****************/
.takatuki-map {
  width: 60%;
}
@media (min-width: 992px) {
  .takatuki-map {
    width: 40%;
  }
}

.map-right {
  justify-content: flex-end;
}

.map-left {
  justify-content: flex-start;
}

.large-map {
  position: relative;
}
.large-map::before {
  content: "";
  width: 3px;
  height: 6vw;
  max-height: 80px;
  background: #e60012;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 30%;
  z-index: 20;
}
.large-map::after {
  content: "";
  width: 3px;
  height: 11vw;
  max-height: 130px;
  background: #e60012;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 35%;
  z-index: 20;
}
@media (min-width: 992px) {
  .large-map::before {
    content: "";
    max-height: 95px;
  }
  .large-map::after {
    content: "";
    max-height: 150px;
  }
}

.map-margin {
  margin: 0px 10px 20px;
}
.map-margin h3 {
  text-decoration: underline;
  color: #231815;
}
.map-margin a {
  color: #e60012;
  text-decoration: underline;
}

/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　header　common」セクション
****************/
.fr {
  float: right;
}

.fl {
  float: left;
}

.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

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

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

input,
textarea,
label {
  vertical-align: middle;
}

.text-r {
  text-align: right !important;
}

.text-c,
table.text-c th,
table.text-c td,
table.th-c th {
  text-align: center !important;
}

.text-l {
  text-align: left !important;
}

img {
  max-width: 100%;
}

#loading {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 300;
  background: #fff;
}

.ruby {
  position: relative;
}

.ruby::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 47px;
  left: 50%;
  transform: translate(-50%, -100%);
  background: url(../img/ruby_ri.svg) no-repeat center center;
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .ruby {
    position: relative;
  }
  .ruby::before {
    content: "";
    position: absolute;
    width: 2.3rem;
    height: 3.4rem;
    left: 50%;
    transform: translate(-50%, -100%);
    background: url(../img/ruby_ri.svg) no-repeat center center;
    background-size: 100%;
  }
}
.spbr {
  display: none;
}

@media screen and (max-width: 768px) {
  .spbr {
    display: block;
  }
  .pcview {
    display: none;
  }
}
.scroll::before {
  opacity: 0;
  transform: translate3d(-50px, 50px, 0) scale(0);
  transition-property: transform, opacity;
  transition: transform 0.8s cubic-bezier(0.14, 1, 0.34, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scroll:hover::before {
  opacity: 1 !important;
  transform: translateZ(0) scale(1) !important;
}

.animation {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
}

.animation {
  transition-property: transform, opacity;
  transition: transform 1.5s cubic-bezier(0.14, 1, 0.34, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.animation.show {
  opacity: 1 !important;
  transform: translateZ(0) !important;
}

.animation_merit01 .img {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition-property: transform, opacity;
  transition: transform 1.5s cubic-bezier(0.14, 1, 0.34, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.animation_merit01 .copy01 {
  opacity: 0;
  transform: translate3d(100px, 0, 0);
  transition-property: transform, opacity;
  transition: transform 1.5s cubic-bezier(0.14, 1, 0.34, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 1s;
}

.animation_merit01 .copy02 {
  opacity: 0;
  transform: translate3d(100px, 0, 0);
  transition-property: transform, opacity;
  transition: transform 1.5s cubic-bezier(0.14, 1, 0.34, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 1.3s;
}

.animation_merit02 .img {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition-property: transform, opacity;
  transition: transform 1.5s cubic-bezier(0.14, 1, 0.34, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.animation_merit02 .copy01 {
  opacity: 0;
  transform: translate3d(-100px, 0, 0);
  transition-property: transform, opacity;
  transition: transform 1.5s cubic-bezier(0.14, 1, 0.34, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 1s;
}

.animation_merit02 .copy02 {
  opacity: 0;
  transform: translate3d(-100px, 0, 0);
  transition-property: transform, opacity;
  transition: transform 1.5s cubic-bezier(0.14, 1, 0.34, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 1.3s;
}

.animation_merit03 .img {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition-property: transform, opacity;
  transition: transform 1.5s cubic-bezier(0.14, 1, 0.34, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.animation_merit03 .copy01 {
  opacity: 0;
  transform: translate3d(100px, 0, 0);
  transition-property: transform, opacity;
  transition: transform 1.5s cubic-bezier(0.14, 1, 0.34, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 1s;
}

.animation_merit03 .copy02 {
  opacity: 0;
  transform: translate3d(100px, 0, 0);
  transition-property: transform, opacity;
  transition: transform 1.5s cubic-bezier(0.14, 1, 0.34, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 1.3s;
}

.animation_merit01.show .img {
  opacity: 1 !important;
  transform: translateZ(0) !important;
}

.animation_merit01.show .copy01 {
  opacity: 1 !important;
  transform: translateZ(0) !important;
}

.animation_merit01.show .copy02 {
  opacity: 1 !important;
  transform: translateZ(0) !important;
}

.animation_merit02.show .img {
  opacity: 1 !important;
  transform: translateZ(0) !important;
}

.animation_merit02.show .copy01 {
  opacity: 1 !important;
  transform: translateZ(0) !important;
}

.animation_merit02.show .copy02 {
  opacity: 1 !important;
  transform: translateZ(0) !important;
}

.animation_merit03.show .img {
  opacity: 1 !important;
  transform: translateZ(0) !important;
}

.animation_merit03.show .copy01 {
  opacity: 1 !important;
  transform: translateZ(0) !important;
}

.animation_merit03.show .copy02 {
  opacity: 1 !important;
  transform: translateZ(0) !important;
}

.animation_list dl,
.animation_list li {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
}

.animation_list dl,
.animation_list li {
  transition-property: transform, opacity;
  transition: transform 1.5s cubic-bezier(0.14, 1, 0.34, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.animation_list.show dl,
.animation_list.show li {
  opacity: 1 !important;
  transform: translateZ(0) !important;
}

.animation_list.show li:nth-child(1) {
  transition-delay: 0s !important;
}

.animation_list.show dl:nth-child(1) {
  transition-delay: 0s !important;
}

.animation_list.show li:nth-child(2) {
  transition-delay: 0.2s !important;
}

.animation_list.show dl:nth-child(2) {
  transition-delay: 0.2s !important;
}

.animation_list.show li:nth-child(3) {
  transition-delay: 0.4s !important;
}

.animation_list.show dl:nth-child(3) {
  transition-delay: 0.4s !important;
}

.animation_list.show li:nth-child(4) {
  transition-delay: 0.6s !important;
}

.animation_list.show dl:nth-child(4) {
  transition-delay: 0.6s !important;
}

.animation_list.show li:nth-child(5) {
  transition-delay: 0.8s !important;
}

.animation_list.show dl:nth-child(5) {
  transition-delay: 0.8s !important;
}

.animation_list.show li:nth-child(6) {
  transition-delay: 1s !important;
}

.animation_list.show dl:nth-child(6) {
  transition-delay: 1s !important;
}

.animation_list.show li:nth-child(7) {
  transition-delay: 1.2s !important;
}

.animation_list.show dl:nth-child(7) {
  transition-delay: 1.2s !important;
}

.animation_list.show li:nth-child(8) {
  transition-delay: 1.4s !important;
}

.animation_list.show dl:nth-child(8) {
  transition-delay: 1.4s !important;
}

.animation_list.show li:nth-child(9) {
  transition-delay: 1.6s !important;
}

.animation_list.show dl:nth-child(9) {
  transition-delay: 1.6s !important;
}

.animation_list.show li:nth-child(10) {
  transition-delay: 1.8s !important;
}

.animation_list.show dl:nth-child(10) {
  transition-delay: 1.8s !important;
}

.animation_list.show li:nth-child(11) {
  transition-delay: 2s !important;
}

.animation_list.show dl:nth-child(11) {
  transition-delay: 2s !important;
}

.animation_list.show li:nth-child(12) {
  transition-delay: 2.2s !important;
}

.animation_list.show dl:nth-child(12) {
  transition-delay: 2.2s !important;
}

.animation_list.show li:nth-child(13) {
  transition-delay: 2.4s !important;
}

.animation_list.show dl:nth-child(13) {
  transition-delay: 2.4s !important;
}

.animation_list.show li:nth-child(14) {
  transition-delay: 2.6s !important;
}

.animation_list.show dl:nth-child(14) {
  transition-delay: 2.6s !important;
}

.animation_list.show li:nth-child(15) {
  transition-delay: 2.8s !important;
}

.animation_list.show dl:nth-child(15) {
  transition-delay: 2.8s !important;
}

.animation_list.show li:nth-child(16) {
  transition-delay: 3s !important;
}

.animation_list.show dl:nth-child(16) {
  transition-delay: 3s !important;
}

.animation_list.show li:nth-child(17) {
  transition-delay: 3.2s !important;
}

.animation_list.show dl:nth-child(17) {
  transition-delay: 3.2s !important;
}

.animation_list.show li:nth-child(18) {
  transition-delay: 3.4s !important;
}

.animation_list.show dl:nth-child(18) {
  transition-delay: 3.4s !important;
}

.animation_list.show li:nth-child(19) {
  transition-delay: 3.6s !important;
}

.animation_list.show dl:nth-child(19) {
  transition-delay: 3.6s !important;
}

.animation_list.show li:nth-child(20) {
  transition-delay: 3.8s !important;
}

.animation_list.show dl:nth-child(20) {
  transition-delay: 3.8s !important;
}

.animation_list.show li:nth-child(21) {
  transition-delay: 4s !important;
}

.animation_list.show dl:nth-child(21) {
  transition-delay: 4s !important;
}

.animation_list.show li:nth-child(22) {
  transition-delay: 4.2s !important;
}

.animation_list.show dl:nth-child(22) {
  transition-delay: 4.2s !important;
}

.animation_list.show li:nth-child(23) {
  transition-delay: 4.4s !important;
}

.animation_list.show dl:nth-child(23) {
  transition-delay: 4.4s !important;
}

.animation_list.show li:nth-child(24) {
  transition-delay: 4.6s !important;
}

.animation_list.show dl:nth-child(24) {
  transition-delay: 4.6s !important;
}

.animation_list.show li:nth-child(25) {
  transition-delay: 4.8s !important;
}

.animation_list.show dl:nth-child(25) {
  transition-delay: 4.8s !important;
}

.animation_list.show li:nth-child(26) {
  transition-delay: 5s !important;
}

.animation_list.show dl:nth-child(26) {
  transition-delay: 5s !important;
}

.animation_list.show li:nth-child(27) {
  transition-delay: 5.2s !important;
}

.animation_list.show dl:nth-child(27) {
  transition-delay: 5.2s !important;
}

.animation_list.show li:nth-child(28) {
  transition-delay: 5.4s !important;
}

.animation_list.show dl:nth-child(28) {
  transition-delay: 5.4s !important;
}

.animation_list.show li:nth-child(29) {
  transition-delay: 5.6s !important;
}

.animation_list.show dl:nth-child(29) {
  transition-delay: 5.6s !important;
}

.animation_list.show li:nth-child(30) {
  transition-delay: 5.8s !important;
}

.animation_list.show dl:nth-child(30) {
  transition-delay: 5.8s !important;
}

.animation_list.show li:nth-child(31) {
  transition-delay: 6s !important;
}

.animation_list.show dl:nth-child(31) {
  transition-delay: 6s !important;
}

.animation_list.show li:nth-child(32) {
  transition-delay: 6.2s !important;
}

.animation_list.show dl:nth-child(32) {
  transition-delay: 6.2s !important;
}

.animation_list.show li:nth-child(33) {
  transition-delay: 6.4s !important;
}

.animation_list.show dl:nth-child(33) {
  transition-delay: 6.4s !important;
}

.animation_list.show li:nth-child(34) {
  transition-delay: 6.6s !important;
}

.animation_list.show dl:nth-child(34) {
  transition-delay: 6.6s !important;
}

.animation_list.show li:nth-child(35) {
  transition-delay: 6.8s !important;
}

.animation_list.show dl:nth-child(35) {
  transition-delay: 6.8s !important;
}

.animation_list.show li:nth-child(36) {
  transition-delay: 7s !important;
}

.animation_list.show dl:nth-child(36) {
  transition-delay: 7s !important;
}

.animation_list.show li:nth-child(37) {
  transition-delay: 7.2s !important;
}

.animation_list.show dl:nth-child(37) {
  transition-delay: 7.2s !important;
}

.animation_list.show li:nth-child(38) {
  transition-delay: 7.4s !important;
}

.animation_list.show dl:nth-child(38) {
  transition-delay: 7.4s !important;
}

.animation_list.show li:nth-child(39) {
  transition-delay: 7.6s !important;
}

.animation_list.show dl:nth-child(39) {
  transition-delay: 7.6s !important;
}

.animation_list.show li:nth-child(40) {
  transition-delay: 7.8s !important;
}

.animation_list.show dl:nth-child(40) {
  transition-delay: 7.8s !important;
}

.animation_list.show li:nth-child(41) {
  transition-delay: 8s !important;
}

.animation_list.show dl:nth-child(41) {
  transition-delay: 8s !important;
}

.animation_list.show li:nth-child(42) {
  transition-delay: 8.2s !important;
}

.animation_list.show dl:nth-child(42) {
  transition-delay: 8.2s !important;
}

.animation_list.show li:nth-child(43) {
  transition-delay: 8.4s !important;
}

.animation_list.show dl:nth-child(43) {
  transition-delay: 8.4s !important;
}

.animation_list.show li:nth-child(44) {
  transition-delay: 8.6s !important;
}

.animation_list.show dl:nth-child(44) {
  transition-delay: 8.6s !important;
}

.animation_list.show li:nth-child(45) {
  transition-delay: 8.8s !important;
}

.animation_list.show dl:nth-child(45) {
  transition-delay: 8.8s !important;
}

.animation_list.show li:nth-child(46) {
  transition-delay: 9s !important;
}

.animation_list.show dl:nth-child(46) {
  transition-delay: 9s !important;
}

.animation_list.show li:nth-child(47) {
  transition-delay: 9.2s !important;
}

.animation_list.show dl:nth-child(47) {
  transition-delay: 9.2s !important;
}

.animation_list.show li:nth-child(48) {
  transition-delay: 9.4s !important;
}

.animation_list.show dl:nth-child(48) {
  transition-delay: 9.4s !important;
}

.animation_list.show li:nth-child(49) {
  transition-delay: 9.6s !important;
}

.animation_list.show dl:nth-child(49) {
  transition-delay: 9.6s !important;
}

.animation_list.show li:nth-child(50) {
  transition-delay: 9.8s !important;
}

.animation_list.show dl:nth-child(50) {
  transition-delay: 9.8s !important;
}

.animation_list.show li:nth-child(51) {
  transition-delay: 10s !important;
}

.animation_list.show dl:nth-child(51) {
  transition-delay: 10s !important;
}

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: -1600px 0%;
  }
}
@font-face {
  font-family: "fontello";
  src: url("./font/fontello.eot?22238801");
  src: url("./font/fontello.eot?22238801#iefix") format("embedded-opentype"), url("./font/fontello.woff2?22238801") format("woff2"), url("./font/fontello.woff?22238801") format("woff"), url("./font/fontello.ttf?22238801") format("truetype"), url("./font/fontello.svg?22238801#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-]:before,
[class*=" icon-"]:before {
  background-image: url(../img/icon1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 50px;
  height: 50px;
}

.icon-down02:before {
  content: "\e800";
}

.icon-up02:before {
  content: "\e801";
}

.icon-left02:before {
  content: "\e802";
}

.icon-right02:before {
  content: "\e803";
}

.icon-business01:before {
  content: "\e804";
}

.icon-down03:before {
  content: "\e805";
}

.icon-left03:before {
  content: "\e806";
}

.icon-right03:before {
  content: "\e807";
}

.icon-up03:before {
  content: "\e808";
}

.icon-play:before {
  content: "\e809";
}

.icon-business02:before {
  content: "\e80a";
}

.icon-business04:before {
  content: "\e80b";
}

.icon-business03:before {
  content: "\e80c";
}

.icon-company:before {
  content: "\e80d";
}

.icon-home:before {
  background-image: url(../img/icon1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 50px;
  height: 50px;
}

.icon-cancel:before {
  content: "\e80f";
}

.icon-menu:before {
  content: "\e810";
}

.icon-left01:before {
  content: "\f104";
}

.icon-right01:before {
  content: "\f105";
}

.icon-up01:before {
  content: "\f106";
}

.icon-down01:before {
  content: "\f107";
}

.icon-mail:before {
  content: "\f108";
}

.icon-plus:before {
  content: "\f109";
}

.icon-minus:before {
  content: "\f110";
}

@-moz-keyframes spinner-loader {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinner-loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner-loader {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.spinner-loader:not(:required) {
  -moz-animation: spinner-loader 1500ms infinite linear;
  -webkit-animation: spinner-loader 1500ms infinite linear;
  animation: spinner-loader 1500ms infinite linear;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
  -moz-box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
  -webkit-box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
  display: inline-block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin: 1.5em;
  overflow: hidden;
  text-indent: 100%;
}

@-moz-keyframes dots-loader {
  0% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  8.33% {
    -moz-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  16.67% {
    -moz-box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  25% {
    -moz-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  33.33% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px;
  }
  41.67% {
    -moz-box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  50% {
    -moz-box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  58.33% {
    -moz-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  66.67% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  75% {
    -moz-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  83.33% {
    -moz-box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px;
  }
  91.67% {
    -moz-box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  100% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
}
@-webkit-keyframes dots-loader {
  0% {
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  8.33% {
    -webkit-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  16.67% {
    -webkit-box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  25% {
    -webkit-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  33.33% {
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px;
  }
  41.67% {
    -webkit-box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  50% {
    -webkit-box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  58.33% {
    -webkit-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  66.67% {
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  75% {
    -webkit-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  83.33% {
    -webkit-box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px;
  }
  91.67% {
    -webkit-box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  100% {
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
}
@keyframes dots-loader {
  0% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  8.33% {
    -moz-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    -webkit-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  16.67% {
    -moz-box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    -webkit-box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  25% {
    -moz-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px;
    -webkit-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  33.33% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px;
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px;
  }
  41.67% {
    -moz-box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    -webkit-box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  50% {
    -moz-box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    -webkit-box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  58.33% {
    -moz-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    -webkit-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  66.67% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  75% {
    -moz-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px;
    -webkit-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  83.33% {
    -moz-box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px;
    -webkit-box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px;
  }
  91.67% {
    -moz-box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    -webkit-box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  100% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
}
.dots-loader:not(:required) {
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: transparent;
  border-radius: 100%;
  -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  -moz-animation: dots-loader 5s infinite ease-in-out;
  -webkit-animation: dots-loader 5s infinite ease-in-out;
  animation: dots-loader 5s infinite ease-in-out;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

#wrapper {
  padding-top: 70px;
}

#breadcrumb {
  max-width: 1130px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 1.2rem;
  display: flex;
  list-style-type: none;
  align-items: center;
  padding: 15px 20px 0;
}

@media screen and (max-width: 768px) {
  #breadcrumb {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
#breadcrumb li {
  white-space: nowrap;
  padding-right: 8px;
  display: flex;
  list-style-type: none;
  align-items: center;
}

#breadcrumb li a {
  text-decoration: none;
  opacity: 1;
}

#breadcrumb li a:hover {
  opacity: 0.5;
}

#breadcrumb li::before {
  content: ">";
  padding-right: 8px;
}

#breadcrumb li.home::before {
  display: none;
}

.anchor_link {
  padding: 0 20px 0;
  margin-top: 80px;
}

.anchor_link ul {
  max-width: 1130px;
  margin: 0 auto;
  padding: 60px 0;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .anchor_link ul {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
.anchor_link ul li {
  padding: 0 20px;
  font-size: 1.7rem;
  position: relative;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  font-weight: 500;
  line-height: 2;
}

.anchor_link ul li a {
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.anchor_link ul li a::after {
  content: "";
  position: absolute;
  bottom: -0.5em;
  height: 1px;
  left: 0;
  width: 0%;
  background-color: #116195;
  transition: width 0.3s ease-in-out;
}

.anchor_link ul li a.on {
  color: #116195;
}

.anchor_link ul li a.on::after {
  width: 100%;
}

.anchor_link ul li a:hover {
  color: #116195;
}

.anchor_link ul li a:hover::after {
  width: 100%;
}

.anchor_link ul li::after {
  content: "";
  width: 1px;
  height: 1.4rem;
  background-color: #000;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.anchor_link ul li:last-child::after {
  display: none;
}

.more_btn {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.more_btn a {
  display: inline-flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  background-color: #116195;
  color: #fff;
  padding: 20px 100px;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 1px;
  border-radius: 4px;
  position: relative;
  text-decoration: none;
  transition: opacity 0.2s ease-in;
}

.more_btn a:hover {
  opacity: 0.6;
}

.more_btn a::after {
  content: "\f105";
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  position: absolute;
  right: 25px;
  text-indent: 0.2em;
  font-size: 18px;
}

#sp_area {
  display: none;
}

.pager_numberList {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.pager_prev {
  list-style-type: none;
}

.pager_prev a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: #6D6D6D;
  font-size: 1.6rem;
  text-decoration: none;
  position: relative;
  font-weight: bold;
  border-radius: 6px 0 0 6px;
  color: #fff;
}

.pager_prev a span {
  display: none;
}

.pager_prev a::before {
  content: "\f007";
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
}

.pager_next {
  list-style-type: none;
}

.pager_next a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: #6D6D6D;
  font-size: 1.6rem;
  text-decoration: none;
  position: relative;
  font-weight: bold;
  border-radius: 0 6px 6px 0;
  color: #fff;
}

.pager_next a span {
  display: none;
}

.pager_next a::before {
  content: "\f006";
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
}

.pager_number {
  margin: 0 10px;
  list-style: none;
}

.pager_number:last-of-type {
  margin-right: 0;
}

.pager_number a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: #262626;
  font-size: 1.6rem;
  text-decoration: none;
  position: relative;
  font-weight: bold;
}

.pager_number.-active a {
  color: #fff;
  background: #4893c3;
  animation: gradient2 5s ease infinite;
}

#mainvisual {
  position: relative;
  width: 100%;
  height: 240px;
  background-color: #f5f5f5;
  padding: 0 20px;
  box-sizing: border-box;
}

#mainvisual .inner {
  max-width: 1130px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: flex;
  height: 100%;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #mainvisual .inner {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
#mainvisual .inner h1 {
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  color: #513c2b;
  font-size: 4rem;
  position: relative;
}

#mainvisual .inner p {
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  color: #116195;
  font-size: 1.6rem;
  letter-spacing: 2px;
  position: relative;
}

#mainvisual .inner .img {
  position: absolute;
  right: 0;
  bottom: -100px;
  width: 500px;
}

@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
#header {
  background-color: #fff;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 0px 0px 0 transparent;
  transition: box-shadow 0.2s ease-in-out;
  box-sizing: border-box;
  z-index: 10;
}

#header.short_type {
  box-shadow: 0 1px 2px 5px rgba(0, 0, 0, 0.15);
}

#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background-color: #fff;
}

#header .inner #header_logo {
  width: 170px;
  order: 1;
  margin-left: 15px;
}

#header .inner .site_link {
  order: 2;
  margin-left: auto;
  display: flex;
  align-items: center;
  padding-right: 15px;
  background-color: #fff;
}

#header .inner .site_link li {
  font-size: 1.5rem;
  position: relative;
  margin-right: 25px;
  height: 70px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

#header .inner .site_link li a {
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease-in;
}

#header .inner .site_link li a::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #116195;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: width 0.2s ease-in;
}

#header .inner .site_link li:hover .dmanu {
  transform: translate(-50%, 0%);
}

#header .inner .site_link li .dmanu {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -101%);
  transition: 0.3s;
  z-index: -1;
  background-color: #116195;
}

#header .inner .site_link li .dmanu li {
  white-space: nowrap;
  height: auto;
  margin-top: 0;
  margin-right: 0;
}

#header .inner .site_link li .dmanu li a {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 20px;
  background-color: #116195;
  color: #fff;
  transition: 0.3s;
}

#header .inner .site_link li .dmanu li a::after {
  display: none;
}

#header .inner .site_link li .dmanu li a:hover {
  background-color: #fff;
  color: #116195;
}

#header .inner .site_link li:hover > a {
  color: #116195;
}

#header .inner .site_link li:hover > a::after {
  width: 100%;
}

#header .inner .other_link {
  order: 3;
  display: flex;
}

#header .inner .other_link li {
  font-size: 1.5rem;
}

#header .inner .other_link li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 0 25px;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s ease-in;
}

#header .inner .other_link li a.contact {
  background-color: #4893c3;
  color: #fff;
}

#header .inner .other_link li a.access {
  background-color: #116195;
  color: #fff;
}

#header .inner .other_link li a:hover {
  opacity: 0.7;
}

#header .inner .sp_only {
  display: none;
}

#header #sp_menu {
  display: none;
}

#header #menu_btn {
  display: none;
}

@media screen and (max-width: 1150px) {
  #header .inner {
    height: 70px;
  }
  #header .inner #header_logo {
    width: 140px;
  }
  #header .inner .site_link {
    padding-right: 10px;
  }
  #header .inner .site_link li {
    font-size: 1.4rem;
    margin-right: 15px;
  }
  #header .inner .other_link li {
    font-size: 1.4rem;
  }
  #header .inner .other_link li a {
    padding: 0 15px;
  }
}
@media screen and (max-width: 970px) {
  #header {
    background-color: #fff;
  }
  #header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    flex-wrap: wrap;
    padding: 15px 20px 0;
  }
  #header .inner #header_logo {
    width: 170px;
    order: 1;
    margin-left: 0;
  }
  #header .inner .site_link {
    order: 3;
    width: 100%;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0;
    padding-top: 15px;
    margin-top: 15px;
    padding-bottom: 0;
    border-top: 1px solid #ddd;
  }
  #header .inner .site_link li {
    font-size: 1.3rem;
    position: relative;
    margin-right: 18px;
    padding-bottom: 15px;
    height: auto;
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-right: 40px;
  }
  #header .inner .site_link li a {
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease-in;
    display: inline-flex;
    align-items: center;
  }
  #header .inner .site_link li a::before {
    margin-right: 6px;
    font-size: 25px;
    line-height: 1;
    color: #116195;
  }
  #header .inner .site_link li a::after {
    bottom: -15px;
  }
  #header .inner .site_link li a:hover {
    color: #116195;
  }
  #header .inner .site_link li a:hover::after {
    width: 100%;
  }
  #header .inner .site_link li a.home::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../img/icon1.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -5px;
    left: -24px;
  }
  #header .inner .site_link li a.company::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../img/icon2.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -5px;
    left: -20px;
  }
  #header .inner .site_link li a.business01::before {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/icon3.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -5px;
    left: -25px;
  }
  #header .inner .site_link li a.business02::before {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/icon4.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -5px;
    left: -25px;
  }
  #header .inner .site_link li a.business03::before {
    content: "\e80b";
    font-family: "fontello", serif;
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
  }
  #header .inner .site_link li a.business04::before {
    content: "\e80c";
    font-family: "fontello", serif;
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
  }
  #header .inner .site_link li a.contact::before {
    content: "\f108";
    font-family: "fontello", serif;
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
  }
  #header .inner .site_link li:last-child {
    margin-right: 0;
  }
  #header .inner .other_link {
    order: 2;
  }
  #header .inner .other_link li {
    font-size: 1.4rem;
    margin-left: 10px;
    font-weight: 700;
  }
  #header .inner .other_link li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 25px;
    border-radius: 15px;
  }
}
#footer {
  border-top: 1px solid #ACACAC;
  padding: 50px 20px 80px;
}

#footer .inner {
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #footer .inner {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
#footer .inner > div:nth-child(1) {
  width: 33%;
  max-width: 330px;
}

#footer .inner > div:nth-child(1) #footer_logo {
  width: 226px;
}

#footer .inner > div:nth-child(1) .company_name {
  margin-top: 40px;
  font-size: 2rem;
  color: #513c2b;
  font-weight: 600;
}

#footer .inner > div:nth-child(1) address {
  margin-top: 15px;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 1.8;
}

#footer .inner > div:nth-child(1) .map_btn {
  margin-top: 20px;
}

#footer .inner > div:nth-child(1) .map_btn a {
  display: inline-flex;
  background-color: #116195;
  color: #fff;
  padding: 8px 10px 8px 20px;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s ease-in;
}

#footer .inner > div:nth-child(1) .map_btn a::after {
  content: "\f105";
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  margin-left: 20px;
}

#footer .inner > div:nth-child(1) .map_btn a:hover {
  opacity: 0.7;
}

#footer .inner > div:nth-child(1) .tel_btn {
  display: none;
}

#footer .inner > div:nth-child(2) {
  width: 64%;
  max-width: 740px;
}

#footer .inner > div:nth-child(2) > ul {
  display: flex;
}

#footer .inner > div:nth-child(2) > ul > li {
  width: 33%;
  box-sizing: border-box;
  padding-left: 25px;
}

#footer .inner > div:nth-child(2) > ul > li > a {
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  font-size: 2rem;
  color: #513c2b;
  text-decoration: none;
  font-weight: 500;
}

#footer .inner > div:nth-child(2) > ul > li > a span {
  display: block;
  color: #116195;
  font-size: 1rem;
  padding-top: 1px;
}

#footer .inner > div:nth-child(2) > ul > li > ul {
  border-top: 1px solid #ccc;
  margin-top: 10px;
  padding-top: 20px;
}

#footer .inner > div:nth-child(2) > ul > li > ul li {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

#footer .inner > div:nth-child(2) > ul > li > ul li a {
  color: #513c2b;
}

#copyright {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4893c3;
  color: #fff;
  font-size: 1.2rem;
}

#pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
  z-index: 10;
  background-color: #116195;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  font-size: 25px;
}

#pagetop.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

@media screen and (max-width: 970px) {
  #footer {
    border-top: 1px solid #ACACAC;
  }
  #footer .inner {
    max-width: 1130px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 970px) and (max-width: 768px) {
  #footer .inner {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 970px) {
  #footer .inner > div:nth-child(1) {
    width: 33%;
    max-width: 300px;
  }
  #footer .inner > div:nth-child(1) #footer_logo {
    width: 170px;
  }
  #footer .inner > div:nth-child(1) .company_name {
    font-size: 1.5rem;
  }
  #footer .inner > div:nth-child(1) address {
    font-size: 1.3rem;
  }
  #footer .inner > div:nth-child(2) {
    width: 67%;
    max-width: 740px;
  }
}
.form_area table {
  margin: 30px 0 0;
  width: 100%;
  table-layout: fixed;
}

.form_area table th,
.form_area table td {
  border: 1px solid #ccc;
  padding: 20px;
  vertical-align: middle;
}

.form_area table th {
  background: #F1F1F1;
  text-align: left;
}

.form_area table em {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  background: #429955;
  color: #fff;
  font-size: 70%;
  font-style: normal;
}

.form_area table p {
  margin-top: 5px;
  font-size: 100%;
}

.form_area table td .flex {
  display: flex;
  align-items: center;
}

.form_area table span {
  display: inline-flex;
  align-items: center;
}

.form_area table span img {
  margin-right: 8px;
}

.form_area table td .note {
  font-size: 1.3rem;
  margin-top: 10px;
}

.form_area table .size_full input[type=text],
.form_area table .size_full textarea {
  width: 100%;
  border-radius: 4px;
  box-sizing: border-box;
}

.form_area table .size_half input {
  min-width: 230px;
}

.form_area input {
  margin-right: 10px;
}

.form_area label {
  display: inline-block;
  margin-right: 15px;
  padding: 3px 0;
}

.form_area label input {
  margin-right: 5px;
  font-family: "游ゴシック", YuGothic, "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.form_area input[type=tel],
.form_area input[type=text],
.form_area input[type=email],
.form_area textarea {
  padding: 2px 8px;
  background: #fff;
  color: #444;
  border: 0;
  border: solid 1px #ddd;
  line-height: 2;
  font-size: 1.6rem;
  font-family: "游ゴシック", YuGothic, "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
}

.form_area input.Active,
.form_area textarea.Active {
  padding: 3px 8px;
  background: #fff;
  color: #444;
  border: 0;
  border: solid 1px #ddd;
  line-height: 2;
}

.form_area textarea {
  height: 350px;
}

.form_area input[type=submit] {
  min-width: 180px;
  padding: 15px 20px;
  background: #4893c3;
  color: #fff;
  border: none;
  font-size: 110%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.6rem;
  border-radius: 3.4rem;
  font-family: "游ゴシック", YuGothic, "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.form_area input[type=submit]:hover {
  opacity: 0.6;
}

.form_area td.submit {
  border: none;
  text-align: center;
}

.form_area .flow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.form_area .flow::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #f0f0f0;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.form_area .flow li {
  margin: 0 5%;
  list-style-type: none;
  position: relative;
  z-index: 2;
}

.form_area .flow li span {
  display: flex;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  font-weight: 700;
  font-size: 1.7rem;
  background-color: #f0f0f0;
  align-items: center;
  justify-content: center;
}

.form_area .flow li.ac span {
  background-color: #4893c3;
  color: #fff;
}

.privacy_box {
  margin-top: 50px;
  max-width: 1040px;
  padding: 30px;
  background: #f0f0f0;
  text-align: center;
  box-sizing: border-box;
}

#thanks_box {
  margin-bottom: 200px;
  padding: 60px 30px;
  border: 1px solid #ccc;
  text-align: center;
}

#thanks_box p {
  line-height: 2em;
}

.errorBox {
  margin-top: 20px;
  background: #FFDADA;
  padding: 20px;
  width: 100%;
  max-width: 1040px;
  box-sizing: border-box;
}

.errorBox ul {
  list-style-type: disc;
  color: #CF000F;
  margin-left: 1.5em;
}

.errorBox ul li {
  line-height: 1.7;
}

.error th,
.error td {
  background: #FFDADA;
}

.cp_ipselect {
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.cp_ipselect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: "游ゴシック", YuGothic, "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.cp_ipselect select::-ms-expand {
  display: none;
}

.cp_ipselect.cp_sl02 {
  position: relative;
  border: 1px solid #bbbbbb;
  border-radius: 4px;
  background: #ffffff;
}

.cp_ipselect.cp_sl02::before {
  position: absolute;
  top: 0;
  right: 1.6em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
  bottom: 0;
  margin: auto;
}

.cp_ipselect.cp_sl02:after {
  position: absolute;
  top: 0;
  right: 4em;
  bottom: 0;
  width: 1px;
  content: "";
  border-left: 1px solid #bbbbbb;
}

.cp_ipselect.cp_sl02 select {
  padding: 10px 38px 10px 10px;
  font-size: 1.6rem;
}

.freeArea .inner {
  max-width: 1130px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .freeArea .inner {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
.freeArea > *:first-child {
  margin-top: 0 !important;
}

.freeArea h1 {
  margin-bottom: 20px;
  font-size: 3.5rem;
  line-height: 1.5;
}

.freeArea h2 {
  font-size: 2.2rem;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  font-weight: 700;
  margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #DCDCDC;
  position: relative;
}

.freeArea h2 span {
  font-size: 1.6rem;
  font-family: "游ゴシック", YuGothic, "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.freeArea h3 {
  margin-top: 30px;
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #033C59;
  text-align: left;
  display: flex;
  line-height: 1.5;
  align-items: center;
  margin-bottom: 0;
}

.freeArea h4 {
  margin: 25px 0 20px;
  color: #033C59;
  font-size: 1.6rem;
}

.freeArea p {
  margin-top: 15px;
  font-size: 1.6rem;
  line-height: 2;
}

.freeArea ul {
  margin-top: 25px;
}

.freeArea ul li {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.8;
  min-height: inherit !important;
  position: relative;
}

.freeArea ul li ul {
  list-style-type: disc;
}

.freeArea ul li ul li {
  list-style-type: disc;
  padding-left: 0;
  margin-left: 2rem;
}

.freeArea ul li ul li::before {
  display: none;
}

.freeArea ol {
  margin-left: 1.5rem;
  margin-top: 25px;
}

.freeArea ol li {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.freeArea ol li:first-child {
  margin-top: 0;
}

.freeArea b,
.freeArea strong {
  font-weight: 700;
}

.freeArea dfn,
.freeArea cite,
.freeArea em,
.freeArea i {
  font-style: italic;
}

.freeArea blockquote {
  color: #777;
  margin: 15px 0 0;
  padding: 15px 15px 15px 40px;
  position: relative;
  background: #f8f8f8;
  font-size: 85%;
}

.freeArea blockquote:before {
  color: #ddd;
  content: "“";
  font-family: Georgia, serif;
  font-size: 50px;
  left: 5px;
  line-height: 1;
  position: absolute;
  top: 5px;
}

.freeArea blockquote p {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.freeArea blockquote > p:last-child {
  margin-bottom: 0;
}

.freeArea blockquote cite,
.freeArea blockquote small {
  color: #333;
  font-family: "Noto Sans", sans-serif;
  font-size: 17px;
  line-height: 1.6471;
}

.freeArea blockquote em,
.freeArea blockquote i,
.freeArea blockquote cite {
  font-style: normal;
}

.freeArea blockquote strong,
.freeArea blockquote b {
  font-weight: 400;
}

.freeArea address {
  font-style: italic;
  margin: 0 0 28px;
}

.freeArea code,
.freeArea kbd,
.freeArea tt,
.freeArea var,
.freeArea samp,
.freeArea pre {
  font-family: Inconsolata, monospace;
}

.freeArea pre {
  background-color: #fcfcfc;
  border: 1px solid #eaeaea;
  font-size: 17px;
  line-height: 1.2353;
  margin-bottom: 28px;
  max-width: 100%;
  overflow: auto;
  padding: 14px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.freeArea abbr[title] {
  border-bottom: 1px dotted #eaeaea;
  cursor: help;
}

.freeArea mark,
.freeArea ins {
  background-color: #fff9c0;
  text-decoration: none;
}

.freeArea sup,
.freeArea sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.freeArea sup {
  bottom: 1ex;
}

.freeArea sub {
  top: 0.5ex;
}

.freeArea small {
  font-size: 75%;
}

.freeArea big {
  font-size: 125%;
}

.freeArea hr {
  background-color: #eaeaea;
  border: 0;
  height: 1px;
  margin-bottom: 28px;
}

.freeArea ul,
.freeArea ol {
  margin-left: 1.5em;
  padding: 0;
}

.freeArea ul {
  list-style: disc;
}

.freeArea ol {
  list-style: decimal;
}

.freeArea li > ul,
.freeArea li > ol {
  margin: 0 0 0 23px;
}

.freeArea blockquote > ul,
.freeArea blockquote > ol {
  margin-left: 28px;
}

.freeArea dl {
  margin: 0 0 28px;
}

.freeArea dt {
  font-weight: bold;
}

.freeArea dd {
  margin: 0 0 28px;
}

.freeArea img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.freeArea figure {
  margin: 0;
}

.freeArea del {
  opacity: 0.8;
}

.freeArea a {
  color: #333;
  text-decoration: underline;
}

.freeArea a:visited {
  color: #333;
}

.freeArea a:hover {
  color: #333;
}

.freeArea .alignleft {
  float: left;
  margin: 7px 28px 28px 0;
}

.freeArea .alignright {
  float: right;
  margin: 7px 0 28px 28px;
}

.freeArea .aligncenter {
  clear: both;
  display: block;
  margin: 7px auto;
}

.freeArea .wp-caption {
  background: transparent;
  border: none;
  color: #707070;
  font-family: "Noto Sans", sans-serif;
  margin-top: 25px;
  max-width: 100%;
  padding: 0;
  text-align: inherit;
}

.freeArea .wp-caption.alignleft {
  margin: 7px 28px 21px 0;
}

.freeArea .wp-caption.alignright {
  margin: 7px 0 21px 28px;
}

.freeArea .wp-caption.aligncenter {
  margin: 7px auto;
}

.freeArea .wp-caption .wp-caption-text,
.freeArea .wp-caption-dd {
  font-size: 14px;
  line-height: 1.5;
  padding: 7px 0;
  margin-top: 0;
  text-align: right;
}

.freeArea .gallery-item {
  display: inline-block;
  padding: 1.79104477%;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.freeArea .gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.freeArea .gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.freeArea .gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.freeArea .gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.freeArea .gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.freeArea .gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.freeArea .gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.freeArea .gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.freeArea .gallery .gallery-caption {
  color: #707070;
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  padding: 7px 0;
}

.freeArea .gallery-columns-6 .gallery-caption,
.freeArea .gallery-columns-7 .gallery-caption,
.freeArea .gallery-columns-8 .gallery-caption,
.freeArea .gallery-columns-9 .gallery-caption {
  display: none;
}

.freeArea .mce-content-body .wpview-wrap {
  margin-bottom: 32px;
}

.freeArea .mce-content-body .wp-audio-playlist {
  margin: 0;
}

.freeArea body.rtl {
  font-family: Arial, Tahoma, sans-serif;
}

.freeArea .rtl blockquote {
  border-left: none;
  border-right: 4px solid #707070;
  margin: 0 -21px 35px 0;
  padding-left: 0;
  padding-right: 17px;
}

.freeArea .rtl blockquote > blockquote {
  margin-left: auto;
  margin-right: 0;
}

.freeArea .rtl li > ul,
.freeArea .rtl li > ol {
  margin: 0 23px 0 0;
}

.freeArea .rtl table th,
.freeArea .rtl table caption {
  text-align: right;
}

.freeArea table {
  width: 100%;
  margin-top: 1.333vw;
  font-size: 1.6rem;
  border-collapse: collapse;
  box-sizing: border-box;
  table-layout: fixed;
}

.freeArea table th {
  padding: 10px 15px;
  border: 1px solid #707070;
  background: #EDF0F2;
  text-align: center;
  font-weight: normal;
  vertical-align: middle;
  font-weight: 700;
}

.freeArea table td {
  padding: 10px 15px;
  border: 1px solid #707070;
  background: #fff;
}

.freeArea pre {
  position: relative;
  background: #364549;
  color: #e3e3e3;
  margin: 25px 0 1.5em;
  padding: 1em;
  font-size: 95%;
  border: none;
}

.freeArea pre .htmltag,
.freeArea pre .csstag,
.freeArea pre .phptag,
.freeArea pre .javatag {
  position: absolute;
  top: 0;
  left: 0;
  background: #ffbd5b;
  color: #fff;
  padding: 0 5px;
}

.freeArea pre .csstag {
  background: #6bb6ff;
}

.freeArea pre .phptag {
  background: #f88080;
}

.freeArea pre .javatag {
  background: #90d581;
}

.freeArea pre .htmltag:before,
.freeArea pre .csstag:before,
.freeArea pre .phptag:before,
.freeArea pre .javatag:before {
  font-family: "Font Awesome 5 Free";
  content: "\f121";
  padding-right: 6px;
}

.freeArea .precopy {
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  background: #cbce64;
  color: #fff;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.freeArea .precopy:before {
  left: -100%;
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  content: "コピーしました";
}

.freeArea .precopy-text:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c5";
  padding-right: 6px;
}

.freeArea .precopy-active {
  background: #9c9c9c;
}

.freeArea .precopy-active:before {
  left: 0;
}

.freeArea .precopy-active .precopy-text {
  -webkit-transform: translateX(300%);
  -moz-transform: translateX(300%);
  -ms-transform: translateX(300%);
  transform: translateX(300%);
}

.freeArea .copy_tag {
  margin: 20px 0;
}

@media screen and (max-width: 768px) {
  #wrapper {
    padding-top: 60px;
  }
  #breadcrumb {
    max-width: 1130px;
    margin: 0 auto;
    padding: 10px 4% !important;
    background-color: #f5f5f5;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #breadcrumb {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  #conteiner {
    min-width: 340px;
  }
  .anchor_link {
    padding: 0 0 0;
    margin-top: 60px;
  }
  .anchor_link ul {
    max-width: 1130px;
    margin: 0 auto;
    padding: 10px 0 !important;
    border-top: 1px solid #ACACAC;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .anchor_link ul {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .anchor_link ul li {
    width: 50%;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 1.4rem;
    position: relative;
    font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
    font-weight: 500;
    line-height: 2;
    text-align: center;
  }
  .anchor_link ul li a {
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
    padding: 10px 0;
    display: inline-block;
  }
  .anchor_link ul li a::after {
    display: none;
  }
  .anchor_link ul li::after {
    content: "";
    width: 1px;
    height: 1.4rem;
    background-color: #ACACAC;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .anchor_link ul li:nth-child(odd)::after {
    display: block !important;
  }
  .anchor_link ul li:nth-child(even)::after {
    display: none;
  }
  .more_btn {
    display: flex;
    justify-content: center;
    margin: 40px 4%;
  }
  .more_btn a {
    display: inline-flex;
    width: 100%;
    box-sizing: border-box;
    height: 80px;
    justify-content: center;
    align-items: center;
    font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
    background-color: #116195;
    color: #fff;
    padding: 20px 50px;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
    border-radius: 4px;
    position: relative;
    text-decoration: none;
    transition: opacity 0.2s ease-in;
  }
  .more_btn a:hover {
    opacity: 0.6;
  }
  .more_btn a::after {
    content: "\f105";
    font-family: "fontello", serif;
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    position: absolute;
    right: 20px;
    text-indent: 0.2em;
    font-size: 15px;
  }
  #mainvisual {
    height: auto;
    background-color: #f5f5f5;
    padding: 0 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  #mainvisual .inner {
    max-width: 1130px;
    margin: 0 auto;
    padding: 80px 4% !important;
    position: relative;
    z-index: 3;
    display: flex;
    height: 100%;
    align-items: center;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #mainvisual .inner {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  #mainvisual .inner h1 {
    color: #fff;
    font-size: 2.5rem;
  }
  #mainvisual .inner p {
    color: #fff;
    font-size: 1.4rem;
  }
  #mainvisual .inner .img {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  #mainvisual .inner .img::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
  }
  #mainvisual .inner .img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .pager_numberList {
    margin-top: 30px;
    padding-bottom: 50px;
  }
  #header {
    background-color: #fff;
    z-index: 10;
  }
  #header .inner {
    height: 60px;
    background-color: #fff;
    padding: 0;
    z-index: 10;
  }
  #header .inner #header_logo {
    width: 115px;
    order: 1;
    margin-left: 4%;
  }
  #header .inner .site_link {
    display: block;
    position: absolute;
    order: 3;
    margin-left: auto;
    align-items: flex-start;
    padding-right: 0;
    border-top: none;
    padding-top: 0;
    background-color: #116195;
    top: 100%;
    margin-top: 0;
    transform: translateY(-101%);
    transition: 0.3s;
    z-index: -1;
  }
  #header .inner .site_link li {
    font-size: 1.5rem;
    position: relative;
    margin-right: 0;
    height: auto;
    display: block;
    align-items: flex-start;
    font-weight: 700;
    width: 100%;
    letter-spacing: -0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 0;
  }
  #header .inner .site_link li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    width: 100%;
    font-weight: 700;
    color: #fff;
    padding: 15px;
    transition: 0.3s;
  }
  #header .inner .site_link li a::before {
    font-size: 35px;
    margin-bottom: 3px;
    color: #fff;
  }
  #header .inner .site_link li a::after {
    height: 4px;
    display: none;
  }
  #header .inner .site_link li a:hover {
    background-color: #fff;
  }
  #header .inner .site_link li a:hover::before {
    color: #116195;
  }
  #header .inner .site_link li a.home::before {
    width: 0px;
    height: 0px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header .inner .site_link li a.contact::before {
    width: 35px;
    height: 35px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header .inner .site_link li a.nolink {
    color: #fff !important;
    pointer-events: none;
  }
  #header .inner .site_link li a.nolink:hover {
    color: #fff !important;
  }
  #header .inner .site_link li a.nolink:hover::before {
    color: #fff;
  }
  #header .inner .site_link li span.plus {
    position: absolute;
    right: 10px;
    top: 7px;
    margin: auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
  }
  #header .inner .site_link li span.plus::before {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../img/icon7.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
  }
  #header .inner .site_link li .dmanu {
    display: none !important;
  }
  #header .inner .site_link li.open span.plus::before {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../img/icon8.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
  }
  #header .inner .site_link li.open .dmanu {
    display: block !important;
    position: relative;
    left: 0%;
    top: 100%;
    transform: translate(0%, 0%);
    transition: 0.3s;
    z-index: 0;
    background-color: #116195;
  }
  #header .inner .site_link li.open .dmanu li {
    white-space: nowrap;
    height: auto;
    margin-top: 0;
    margin-right: 0;
  }
  #header .inner .site_link li.open .dmanu li a {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 20px 15px 55px;
    background-color: #116195;
    color: #fff;
    transition: 0.3s;
  }
  #header .inner .site_link li.open .dmanu li a::before {
    content: ">";
    font-family: "fontello", serif;
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    font-size: 15px;
  }
  #header .inner .site_link li.open .dmanu li a::after {
    display: none;
  }
  #header .inner .site_link li.open .dmanu li a:hover {
    background-color: #fff;
    color: #116195;
  }
  #header .inner .other_link {
    order: 2;
    display: flex;
    margin-right: 4%;
    margin-left: auto;
    display: none;
  }
  #header .inner .other_link li {
    margin-left: 5px;
  }
  #header .inner .other_link li a {
    font-size: 1rem;
    padding: 0 15px !important;
  }
  #header .inner .sp_only {
    display: block;
  }
  #header #sp_menu {
    transition: all 0.3s ease-in-out;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0 0;
    background-color: #fff;
    border-radius: 100%;
    letter-spacing: 2px;
    color: #116195;
    font-weight: 700;
    font-size: 12px;
    border-top: none;
    box-sizing: border-box;
    padding-bottom: 7px;
    order: 3;
  }
  #header #sp_menu span {
    display: none;
  }
  #header #sp_menu::before {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/icon5.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
  }
  .open #header #sp_menu::before {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/icon9.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
  }
  .open #header .site_link {
    transform: translateY(0%);
  }
  .open #header.short_type {
    transition: all 0.3s ease-in-out;
    transform: translateY(0%);
    box-shadow: 0 0px 2px 2px rgba(0, 0, 0, 0.15);
  }
  #footer {
    padding: 0 0 40px;
  }
  #footer .inner {
    display: flex;
    justify-content: center;
  }
  #footer .inner > div:nth-child(1) {
    width: 100%;
  }
  #footer .inner > div:nth-child(1) #footer_logo {
    width: 180px;
    margin: 0 auto;
  }
  #footer .inner > div:nth-child(1) .company_name {
    margin-top: 20px;
    font-size: 1.6rem;
    color: #513c2b;
    font-weight: 600;
    text-align: center;
  }
  #footer .inner > div:nth-child(1) address {
    margin-top: 10px;
    font-size: 1.3rem;
    font-style: normal;
    line-height: 1.8;
    text-align: center;
  }
  #footer .inner > div:nth-child(1) .map_btn {
    margin: 20px auto 0;
    text-align: center;
  }
  #footer .inner > div:nth-child(1) .map_btn a {
    display: inline-flex;
    background-color: #116195;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 8px 20px;
    width: 150px;
    opacity: 1;
    transition: opacity 0.2s ease-in;
  }
  #footer .inner > div:nth-child(1) .map_btn a::after {
    display: none;
  }
  #footer .inner > div:nth-child(1) .map_btn a:hover {
    opacity: 0.7;
  }
  #footer .inner > div:nth-child(1) .tel_btn {
    display: block;
    margin: 8px auto 0;
    text-align: center;
  }
  #footer .inner > div:nth-child(1) .tel_btn a {
    display: inline-flex;
    background-color: #116195;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 8px 20px;
    width: 150px;
    opacity: 1;
    transition: opacity 0.2s ease-in;
  }
  #footer .inner > div:nth-child(1) .tel_btn a::after {
    display: none;
  }
  #footer .inner > div:nth-child(1) .tel_btn a:hover {
    opacity: 0.7;
  }
  #footer .inner > div:nth-child(2) {
    display: none;
  }
  #copyright {
    height: 40px;
    font-size: 1rem;
  }
  #pagetop {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  #pagetop.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
  }
  .form_area table {
    margin: 5% 0 0;
    border-bottom: 1px solid #ccc;
  }
  .form_area table th,
  .form_area table td {
    border: 1px solid #ccc;
    padding: 3%;
    vertical-align: middle;
    display: block;
    font-size: 1.6rem;
    border-bottom: none;
  }
  .form_area .flow li span {
    width: 7rem;
    height: 7rem;
    font-size: 1.5rem;
    background-color: #f0f0f0;
    align-items: center;
    justify-content: center;
  }
  .freeArea > *:first-child {
    margin-top: 0 !important;
  }
  .freeArea h1 {
    margin-bottom: 4vw;
    font-size: 3rem;
    line-height: 1.5;
  }
  .freeArea h2 {
    margin-top: 8vw;
    padding: 2.6666666667vw 0;
  }
  .freeArea h3 {
    margin-top: 6.6666666667vw;
  }
  .freeArea h4 {
    margin: 6.6666666667vw 0 5.3333333333vw;
  }
  .freeArea p {
    margin-top: 2.6666666667vw;
  }
  .freeArea ol {
    margin-left: 2.8rem;
    margin-top: 4vw;
  }
  .freeArea ol li {
    margin-top: 2.1333333333vw;
  }
  .freeArea b,
  .freeArea strong {
    font-weight: 700;
  }
  .freeArea dfn,
  .freeArea cite,
  .freeArea em,
  .freeArea i {
    font-style: italic;
  }
  .freeArea blockquote {
    color: #777;
    margin: 2.6666666667vw 0 0;
    padding: 2.6666666667vw 2.6666666667vw 2.6666666667vw 6.6666666667vw;
    position: relative;
    background: #f8f8f8;
    font-size: 1.3rem;
  }
  .freeArea blockquote:before {
    color: #ddd;
    content: "“";
    font-family: Georgia, serif;
    font-size: 13.3333333333vw;
    left: 5px;
    line-height: 1;
    position: absolute;
    top: 5px;
  }
  .freeArea blockquote p {
    margin-bottom: 2.6666666667vw;
    font-size: 1.3rem;
  }
  .freeArea blockquote > p:last-child {
    margin-bottom: 0;
  }
  .freeArea blockquote cite,
  .freeArea blockquote small {
    color: #333;
    font-family: "Noto Sans", sans-serif;
    font-size: 3.2vw;
    line-height: 1.6471;
  }
  .freeArea blockquote em,
  .freeArea blockquote i,
  .freeArea blockquote cite {
    font-style: normal;
  }
  .freeArea blockquote strong,
  .freeArea blockquote b {
    font-weight: 400;
  }
  .freeArea address {
    font-style: italic;
    margin: 0 0 4vw;
  }
  .freeArea code,
  .freeArea kbd,
  .freeArea tt,
  .freeArea var,
  .freeArea samp,
  .freeArea pre {
    font-family: Inconsolata, monospace;
  }
  .freeArea pre {
    background-color: #fcfcfc;
    border: 1px solid #eaeaea;
    font-size: 3.4666666667vw;
    line-height: 1.2353;
    margin-bottom: 4vw;
    max-width: 100%;
    overflow: auto;
    padding: 14px;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  .freeArea abbr[title] {
    border-bottom: 1px dotted #eaeaea;
    cursor: help;
  }
  .freeArea mark,
  .freeArea ins {
    background-color: #fff9c0;
    text-decoration: none;
  }
  .freeArea sup,
  .freeArea sub {
    font-size: 75%;
    height: 0;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  .freeArea sup {
    bottom: 1ex;
  }
  .freeArea sub {
    top: 0.5ex;
  }
  .freeArea small {
    font-size: 75%;
  }
  .freeArea big {
    font-size: 125%;
  }
  .freeArea hr {
    background-color: #eaeaea;
    border: 0;
    height: 1px;
    margin-bottom: 4vw;
  }
  .freeArea ul,
  .freeArea ol {
    margin-left: 2.5em;
    padding: 0;
  }
  .freeArea ul {
    list-style: disc;
  }
  .freeArea ol {
    list-style: decimal;
  }
  .freeArea li > ul,
  .freeArea li > ol {
    margin: 0 0 0 2.6666666667vw;
  }
  .freeArea blockquote > ul,
  .freeArea blockquote > ol {
    margin-left: 5.3333333333vw;
  }
  .freeArea dl {
    margin: 0 0 5.3333333333vw;
  }
  .freeArea dt {
    font-weight: bold;
  }
  .freeArea dd {
    margin: 0 0 5.3333333333vw;
  }
  .freeArea img {
    border: 0;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
  }
  .freeArea figure {
    margin: 0;
  }
  .freeArea del {
    opacity: 0.8;
  }
  .freeArea a {
    color: #333;
    text-decoration: underline;
  }
  .freeArea a:visited {
    color: #333;
  }
  .freeArea a:hover {
    color: #333;
  }
  .freeArea .alignleft {
    float: left;
    margin: 7px 28px 28px 0;
  }
  .freeArea .alignright {
    float: right;
    margin: 7px 0 28px 28px;
  }
  .freeArea .aligncenter {
    clear: both;
    display: block;
    margin: 7px auto;
  }
  .freeArea .wp-caption {
    background: transparent;
    border: none;
    color: #707070;
    font-family: "Noto Sans", sans-serif;
    margin-top: 25px;
    max-width: 100%;
    padding: 0;
    text-align: inherit;
  }
  .freeArea .wp-caption.alignleft {
    margin: 7px 28px 21px 0;
  }
  .freeArea .wp-caption.alignright {
    margin: 7px 0 21px 28px;
  }
  .freeArea .wp-caption.aligncenter {
    margin: 7px auto;
  }
  .freeArea .wp-caption .wp-caption-text,
  .freeArea .wp-caption-dd {
    font-size: 14px;
    line-height: 1.5;
    padding: 7px 0;
    margin-top: 0;
    text-align: right;
  }
  .freeArea .gallery-item {
    display: inline-block;
    padding: 1.79104477%;
    text-align: center;
    vertical-align: top;
    width: 100%;
  }
  .freeArea .gallery-columns-2 .gallery-item {
    max-width: 50%;
  }
  .freeArea .gallery-columns-3 .gallery-item {
    max-width: 33.33%;
  }
  .freeArea .gallery-columns-4 .gallery-item {
    max-width: 25%;
  }
  .freeArea .gallery-columns-5 .gallery-item {
    max-width: 20%;
  }
  .freeArea .gallery-columns-6 .gallery-item {
    max-width: 16.66%;
  }
  .freeArea .gallery-columns-7 .gallery-item {
    max-width: 14.28%;
  }
  .freeArea .gallery-columns-8 .gallery-item {
    max-width: 12.5%;
  }
  .freeArea .gallery-columns-9 .gallery-item {
    max-width: 11.11%;
  }
  .freeArea .gallery .gallery-caption {
    color: #707070;
    display: block;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    padding: 7px 0;
  }
  .freeArea .gallery-columns-6 .gallery-caption,
  .freeArea .gallery-columns-7 .gallery-caption,
  .freeArea .gallery-columns-8 .gallery-caption,
  .freeArea .gallery-columns-9 .gallery-caption {
    display: none;
  }
  .freeArea .mce-content-body .wpview-wrap {
    margin-bottom: 32px;
  }
  .freeArea .mce-content-body .wp-audio-playlist {
    margin: 0;
  }
  .freeArea body.rtl {
    font-family: Arial, Tahoma, sans-serif;
  }
  .freeArea .rtl blockquote {
    border-left: none;
    border-right: 4px solid #707070;
    margin: 0 -21px 35px 0;
    padding-left: 0;
    padding-right: 17px;
  }
  .freeArea .rtl blockquote > blockquote {
    margin-left: auto;
    margin-right: 0;
  }
  .freeArea .rtl li > ul,
  .freeArea .rtl li > ol {
    margin: 0 23px 0 0;
  }
  .freeArea .rtl table th,
  .freeArea .rtl table caption {
    text-align: right;
  }
  .freeArea table {
    margin-top: 2.633vw;
    font-size: 1.4rem;
    border: 1px solid #707070;
    border-collapse: collapse;
    box-sizing: border-box;
    table-layout: fixed;
  }
  .freeArea table th {
    padding: 1.333vw;
    border: 1px solid #707070;
    background: #f0f0f0;
    vertical-align: middle;
  }
  .freeArea table td {
    padding: 1.333vw;
    border: 1px solid #707070;
  }
  .freeArea pre {
    position: relative;
    background: #364549;
    color: #e3e3e3;
    margin: 25px 0 1.5em;
    padding: 1em;
    font-size: 95%;
    border: none;
  }
  .freeArea pre .htmltag,
  .freeArea pre .csstag,
  .freeArea pre .phptag,
  .freeArea pre .javatag {
    position: absolute;
    top: 0;
    left: 0;
    background: #ffbd5b;
    color: #fff;
    padding: 0 5px;
  }
  .freeArea pre .csstag {
    background: #6bb6ff;
  }
  .freeArea pre .phptag {
    background: #f88080;
  }
  .freeArea pre .javatag {
    background: #90d581;
  }
  .freeArea pre .htmltag:before,
  .freeArea pre .csstag:before,
  .freeArea pre .phptag:before,
  .freeArea pre .javatag:before {
    font-family: "Font Awesome 5 Free";
    content: "\f121";
    padding-right: 6px;
  }
  .freeArea .precopy {
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    background: #cbce64;
    color: #fff;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
  }
  .freeArea .precopy:before {
    left: -100%;
    position: absolute;
    width: 100%;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    content: "コピーしました";
  }
  .freeArea .precopy-text:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0c5";
    padding-right: 6px;
  }
  .freeArea .precopy-active {
    background: #9c9c9c;
  }
  .freeArea .precopy-active:before {
    left: 0;
  }
  .freeArea .precopy-active .precopy-text {
    -webkit-transform: translateX(300%);
    -moz-transform: translateX(300%);
    -ms-transform: translateX(300%);
    transform: translateX(300%);
  }
  .freeArea .copy_tag {
    margin: 20px 0;
  }
}
.default_title {
  text-align: center;
  font-size: 3.3rem;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.default_title span:not(.ruby) {
  position: relative;
  display: inline-block;
  padding-bottom: 22px;
}

.default_title span:not(.ruby)::after {
  content: "";
  width: 125px;
  height: 4px;
  background-color: #4893c3;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .default_title {
    font-size: 2.7rem;
    text-align: center;
  }
  .default_title span:not(.ruby) {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
  }
  .default_title span:not(.ruby)::after {
    content: "";
    width: 100%;
    max-width: 115px;
    height: 4px;
    background-color: #4893c3;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
}
.bar_title {
  font-size: 3.3rem;
  padding-bottom: 15px;
  border-bottom: 8px solid #E1E1E1;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .bar_title {
    font-size: 2.7rem;
    padding-bottom: 10px;
    border-bottom: 5px solid #E1E1E1;
  }
}
.bar_title02 {
  font-size: 2.2rem;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  font-weight: 700;
  margin-top: 0px;
  padding-bottom: 10px;
  border-bottom: 4px solid #DCDCDC;
  position: relative;
}

.bar_title02::before {
  content: "";
  width: 200px;
  height: 4px;
  background-color: #4893c3;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.bar_title02 span {
  font-size: 1.6rem;
  font-family: "游ゴシック", YuGothic, "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

@media screen and (max-width: 768px) {
  .bar_title02 {
    font-size: 2.2rem;
    font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
    font-weight: 700;
    margin-top: 0px;
    padding-bottom: 10px;
    border-bottom: 4px solid #DCDCDC;
    position: relative;
  }
  .bar_title02::before {
    content: "";
    width: 200px;
    height: 4px;
    background-color: #4893c3;
    position: absolute;
    bottom: -4px;
    left: 0;
  }
  .bar_title02 span {
    font-size: 1.6rem;
    font-family: "游ゴシック", YuGothic, "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  }
}
.btn_links {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.btn_links li {
  margin-bottom: 20px;
  width: 48%;
  max-width: 580px;
  display: flex;
}

.btn_links li a {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 18px 78px 18px 18px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.btn_links li a::before {
  content: "";
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #707070;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 6px;
  z-index: 2;
}

.btn_links li a::after {
  content: "\f105";
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  color: #fff;
  background-color: #4893c3;
  width: 60px;
  height: 100%;
  border-radius: 0 6px 6px 0;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn_links li a:hover {
  background-color: #CE4C4C;
  color: #fff;
}

ul.disc {
  margin-left: 1.8em;
}

ul.disc li {
  list-style-type: disc;
}

ul.nodisc {
  margin-left: 0;
}

ul.nodisc li {
  list-style-type: none;
  padding-left: 0;
}

ul.nodisc li::before {
  display: none;
}

#second_product {
  background: url(../../product/img/second_product_bg.png) repeat left top;
  margin-top: 80px;
}

#second_product .inner {
  padding: 80px 0;
  max-width: 1130px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #second_product .inner {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
#second_product .inner ul {
  display: flex;
  width: calc(100% + 20px);
  margin-left: -20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

#second_product .inner ul li {
  margin-left: 20px;
  width: calc(33.333% - 20px);
  max-width: 390px;
  margin-bottom: 20px;
  background-color: #fff;
}

#second_product .inner ul li a {
  display: block;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

#second_product .inner ul li a .img {
  overflow: hidden;
}

#second_product .inner ul li a .img img {
  object-fit: contain;
  font-family: "object-fit: contain;";
  object-position: center top;
  opacity: 1;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 235px;
}

#second_product .inner ul li a:hover {
  color: #4893c3;
}

#second_product .inner ul li a:hover .img {
  overflow: hidden;
}

#second_product .inner ul li a:hover .img img {
  opacity: 0.5;
}

#second_product .inner ul li a .text {
  font-size: 1.6rem;
  padding: 0 25px;
  font-size: 1.6rem;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  font-weight: 700;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  height: 75px;
  align-items: center;
  justify-content: space-between;
}

#second_product .inner ul li a .text::after {
  content: "\f105";
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  color: #4893c3;
  flex-shrink: 0;
}

#field_list {
  padding: 80px 20px 100px;
}

#field_list .inner {
  max-width: 1130px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #field_list .inner {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
#field_list .inner h2 {
  font-size: 3.3rem;
  padding-bottom: 15px;
  border-bottom: 8px solid #E1E1E1;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  font-weight: 700;
  text-align: center;
}

#field_list .inner ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  width: calc(100% + 5px);
  margin-left: -5px;
}

#field_list .inner ul li {
  width: calc(33.3333% - 5px);
  margin-left: 5px;
  margin-bottom: 5px;
}

#field_list .inner ul li a {
  display: flex;
  width: 100%;
  height: 179px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

#field_list .inner ul li a span {
  color: #fff;
  position: relative;
  font-size: 2.5rem;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  font-weight: 700;
  z-index: 5;
  transition: all 0.3s ease;
}

#field_list .inner ul li a img {
  position: absolute;
  transform: scale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  transition: all 0.3s ease;
  top: 0;
  left: 0;
}

#field_list .inner ul li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(70, 70, 70, 0.45);
  z-index: 1;
  transition: all 0.3s ease;
}

#field_list .inner ul li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 4.5rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(70, 70, 70, 0.45);
  z-index: 1;
  transition: all 0.3s ease;
}

#field_list .inner ul li a:hover img {
  transform: scale(1.1);
}

#field_list .inner ul li a:hover::before {
  background-color: rgba(255, 255, 255, 0);
}

#field_list .inner ul li a:hover::after {
  width: 100%;
  background-color: rgba(197, 0, 10, 0.85);
}

#product_list {
  padding: 80px 20px 0;
}

#product_list .inner {
  max-width: 1130px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #product_list .inner {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
#product_list .inner h2 {
  font-size: 3.3rem;
  padding-bottom: 15px;
  border-bottom: 8px solid #E1E1E1;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  font-weight: 700;
  text-align: center;
}

#product_list .inner ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  width: calc(100% + 5px);
  margin-left: -5px;
}

#product_list .inner ul li {
  width: calc(33.3333% - 5px);
  margin-left: 5px;
  margin-bottom: 5px;
}

#product_list .inner ul li a {
  display: flex;
  width: 100%;
  height: 179px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

#product_list .inner ul li a span {
  color: #fff;
  position: relative;
  font-size: 2.5rem;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  font-weight: 700;
  z-index: 5;
  transition: all 0.3s ease;
}

#product_list .inner ul li a img {
  position: absolute;
  transform: scale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  transition: all 0.3s ease;
  top: 0;
  left: 0;
}

#product_list .inner ul li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(70, 70, 70, 0.45);
  z-index: 1;
  transition: all 0.3s ease;
}

#product_list .inner ul li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 4.5rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(70, 70, 70, 0.45);
  z-index: 1;
  transition: all 0.3s ease;
}

#product_list .inner ul li a:hover img {
  transform: scale(1.1);
}

#product_list .inner ul li a:hover::before {
  background-color: rgba(255, 255, 255, 0);
}

#product_list .inner ul li a:hover::after {
  width: 100%;
  background-color: rgba(197, 0, 10, 0.85);
}

.connection {
  margin-top: 80px;
}

.connection .inner {
  max-width: 1130px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .connection .inner {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
.connection .area {
  display: flex;
  width: calc(100% + 20px);
  margin-left: -20px;
  flex-wrap: wrap;
}

.connection .area > div {
  width: 33.3333%;
  padding-left: 20px;
  box-sizing: border-box;
  margin-top: 30px;
  padding-bottom: 20px;
}

.connection .area > div a {
  display: block;
  text-decoration: none;
}

.connection .area > div a:hover .img {
  opacity: 0.5;
}

.connection .area > div a:hover .text .name {
  color: #4893c3;
}

.connection .area > div .img {
  opacity: 1;
  transition: all 0.3s ease;
}

.connection .area > div .img img {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
}

.connection .area > div .text {
  margin-top: 10px;
}

.connection .area > div .text .label {
  display: flex;
  flex-wrap: wrap;
}

.connection .area > div .text .label li {
  background-color: #EBEBEB;
  padding: 2px 15px;
  font-size: 1.1rem;
  margin-right: 5px;
  margin-bottom: 5px;
}

.connection .area > div .text .name {
  margin-top: 5px;
  font-weight: 700;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .btn_links {
    margin-top: 8%;
  }
  .btn_links li {
    margin-bottom: 3%;
    width: 100%;
    max-width: inherit;
    display: flex;
  }
  #second_product {
    margin-top: 10%;
  }
  #second_product .inner {
    max-width: 1130px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #second_product .inner {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  #second_product .inner ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 5%;
    margin-left: 0;
  }
  #second_product .inner ul li {
    width: 48%;
    max-width: 390px;
    margin-bottom: 4%;
    background-color: #fff;
    margin-left: 0;
  }
  #second_product .inner ul li a .img {
    background-color: #fff;
  }
  #second_product .inner ul li a .img img {
    height: 29.5572916667vw;
  }
  #second_product .inner ul li a .text {
    padding: 0 5%;
    height: 14.4927536232vw;
    font-size: 1.4rem;
  }
  #product_list,
  #field_list {
    padding: 0;
    margin-top: 0;
  }
  #product_list .inner h2,
  #field_list .inner h2 {
    font-size: 2.7rem;
    padding-bottom: 10px;
    border-bottom: 5px solid #E1E1E1;
  }
  #product_list .inner ul,
  #field_list .inner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3%;
    width: 100%;
    margin-left: 0;
  }
  #product_list .inner ul li,
  #field_list .inner ul li {
    width: 49.8%;
    margin-left: 0;
    margin-bottom: 0.4%;
  }
  #product_list .inner ul li a,
  #field_list .inner ul li a {
    height: 12.077294686vw;
  }
  #product_list .inner ul li a span,
  #field_list .inner ul li a span {
    font-size: 1.5rem;
    font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  }
  .connection {
    margin-top: 0;
  }
  .connection .inner {
    max-width: 1130px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .connection .inner {
    width: 100%;
    padding: 50px 4% 0;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .connection .area {
    display: block;
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
  }
  .connection .area > div {
    width: 100%;
    padding-left: 0;
    box-sizing: border-box;
    margin-top: 4%;
    padding-bottom: 20px;
  }
  .connection .area > div .text {
    margin-top: 10px;
  }
  .connection .area > div .text .label {
    display: flex;
    flex-wrap: wrap;
  }
  .connection .area > div .text .label li {
    background-color: #EBEBEB;
    padding: 2px 15px;
    font-size: 1.1rem;
    margin-right: 5px;
    margin-bottom: 5px;
  }
  .connection .area > div .text .name {
    margin-top: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1.8rem;
  }
}
.photoLayout_right.w0 .photo,
.photoLayout_left.w0 .photo {
  width: 0px;
}

.photoLayout_right.w0 .photo > *:first-child,
.photoLayout_left.w0 .photo > *:first-child {
  margin-top: 0;
}

.photoLayout_right.w0 .photo img,
.photoLayout_left.w0 .photo img {
  width: 100%;
  height: auto;
}

.photoLayout_right.w0 .txt,
.photoLayout_left.w0 .txt {
  width: auto;
  width: calc(100% - 0px);
  box-sizing: border-box;
}

.photoLayout_right.w50 .photo,
.photoLayout_left.w50 .photo {
  width: 50px;
}

.photoLayout_right.w50 .photo > *:first-child,
.photoLayout_left.w50 .photo > *:first-child {
  margin-top: 0;
}

.photoLayout_right.w50 .photo img,
.photoLayout_left.w50 .photo img {
  width: 100%;
  height: auto;
}

.photoLayout_right.w50 .txt,
.photoLayout_left.w50 .txt {
  width: auto;
  width: calc(100% - 50px);
  box-sizing: border-box;
}

.photoLayout_right.w100 .photo,
.photoLayout_left.w100 .photo {
  width: 100px;
}

.photoLayout_right.w100 .photo > *:first-child,
.photoLayout_left.w100 .photo > *:first-child {
  margin-top: 0;
}

.photoLayout_right.w100 .photo img,
.photoLayout_left.w100 .photo img {
  width: 100%;
  height: auto;
}

.photoLayout_right.w100 .txt,
.photoLayout_left.w100 .txt {
  width: auto;
  width: calc(100% - 100px);
  box-sizing: border-box;
}

.photoLayout_right.w150 .photo,
.photoLayout_left.w150 .photo {
  width: 150px;
}

.photoLayout_right.w150 .photo > *:first-child,
.photoLayout_left.w150 .photo > *:first-child {
  margin-top: 0;
}

.photoLayout_right.w150 .photo img,
.photoLayout_left.w150 .photo img {
  width: 100%;
  height: auto;
}

.photoLayout_right.w150 .txt,
.photoLayout_left.w150 .txt {
  width: auto;
  width: calc(100% - 150px);
  box-sizing: border-box;
}

.photoLayout_right.w200 .photo,
.photoLayout_left.w200 .photo {
  width: 200px;
}

.photoLayout_right.w200 .photo > *:first-child,
.photoLayout_left.w200 .photo > *:first-child {
  margin-top: 0;
}

.photoLayout_right.w200 .photo img,
.photoLayout_left.w200 .photo img {
  width: 100%;
  height: auto;
}

.photoLayout_right.w200 .txt,
.photoLayout_left.w200 .txt {
  width: auto;
  width: calc(100% - 200px);
  box-sizing: border-box;
}

.photoLayout_right.w250 .photo,
.photoLayout_left.w250 .photo {
  width: 250px;
}

.photoLayout_right.w250 .photo > *:first-child,
.photoLayout_left.w250 .photo > *:first-child {
  margin-top: 0;
}

.photoLayout_right.w250 .photo img,
.photoLayout_left.w250 .photo img {
  width: 100%;
  height: auto;
}

.photoLayout_right.w250 .txt,
.photoLayout_left.w250 .txt {
  width: auto;
  width: calc(100% - 250px);
  box-sizing: border-box;
}

.photoLayout_right.w300 .photo,
.photoLayout_left.w300 .photo {
  width: 300px;
}

.photoLayout_right.w300 .photo > *:first-child,
.photoLayout_left.w300 .photo > *:first-child {
  margin-top: 0;
}

.photoLayout_right.w300 .photo img,
.photoLayout_left.w300 .photo img {
  width: 100%;
  height: auto;
}

.photoLayout_right.w300 .txt,
.photoLayout_left.w300 .txt {
  width: auto;
  width: calc(100% - 300px);
  box-sizing: border-box;
}

.photoLayout_right.w350 .photo,
.photoLayout_left.w350 .photo {
  width: 350px;
}

.photoLayout_right.w350 .photo > *:first-child,
.photoLayout_left.w350 .photo > *:first-child {
  margin-top: 0;
}

.photoLayout_right.w350 .photo img,
.photoLayout_left.w350 .photo img {
  width: 100%;
  height: auto;
}

.photoLayout_right.w350 .txt,
.photoLayout_left.w350 .txt {
  width: auto;
  width: calc(100% - 350px);
  box-sizing: border-box;
}

.photoLayout_right.w400 .photo,
.photoLayout_left.w400 .photo {
  width: 400px;
}

.photoLayout_right.w400 .photo > *:first-child,
.photoLayout_left.w400 .photo > *:first-child {
  margin-top: 0;
}

.photoLayout_right.w400 .photo img,
.photoLayout_left.w400 .photo img {
  width: 100%;
  height: auto;
}

.photoLayout_right.w400 .txt,
.photoLayout_left.w400 .txt {
  width: auto;
  width: calc(100% - 400px);
  box-sizing: border-box;
}

.photoLayout_right.w450 .photo,
.photoLayout_left.w450 .photo {
  width: 450px;
}

.photoLayout_right.w450 .photo > *:first-child,
.photoLayout_left.w450 .photo > *:first-child {
  margin-top: 0;
}

.photoLayout_right.w450 .photo img,
.photoLayout_left.w450 .photo img {
  width: 100%;
  height: auto;
}

.photoLayout_right.w450 .txt,
.photoLayout_left.w450 .txt {
  width: auto;
  width: calc(100% - 450px);
  box-sizing: border-box;
}

.photoLayout_right.w500 .photo,
.photoLayout_left.w500 .photo {
  width: 500px;
}

.photoLayout_right.w500 .photo > *:first-child,
.photoLayout_left.w500 .photo > *:first-child {
  margin-top: 0;
}

.photoLayout_right.w500 .photo img,
.photoLayout_left.w500 .photo img {
  width: 100%;
  height: auto;
}

.photoLayout_right.w500 .txt,
.photoLayout_left.w500 .txt {
  width: auto;
  width: calc(100% - 500px);
  box-sizing: border-box;
}

.photoLayout_left {
  display: flex;
  width: 100%;
  margin-top: 20px;
}

.photoLayout_left .photo {
  flex-basis: auto;
}

.photoLayout_left .txt {
  flex-basis: auto;
  box-sizing: border-box;
  padding-left: 40px;
}

.photoLayout_left .txt > *:first-child {
  margin-top: 0 !important;
}

.photoLayout_left.reverse .txt {
  padding-left: 0px;
  padding-right: 40px;
}

.photoLayout_right {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}

.photoLayout_right .photo {
  flex-basis: auto;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.7;
}

.photoLayout_right .txt {
  flex-basis: auto;
  box-sizing: border-box;
  padding-right: 40px;
}

.photoLayout_right .txt > *:first-child {
  margin-top: 0 !important;
}

.photoLayout_right.reverse .txt {
  padding-left: 0px;
  padding-right: 40px;
}

.photoLayout_left.reverse,
.photoLayout_right.reverse {
  display: flex;
  width: 100%;
  margin-top: 20px;
  flex-direction: row-reverse;
}

.photoLayout_left.reverse .photo,
.photoLayout_right.reverse .photo {
  flex-basis: auto;
}

.photoLayout_left.reverse .txt,
.photoLayout_right.reverse .txt {
  flex-basis: auto;
  box-sizing: border-box;
  margin: 0;
}

.photoLayout_left.reverse .txt > *:first-child,
.photoLayout_right.reverse .txt > *:first-child {
  margin-top: 0 !important;
}

.photoLayout_left.reverse .txt {
  padding-left: 0px;
  padding-right: 50px;
}

.photoLayout_right.reverse .txt {
  padding-left: 50px;
  padding-right: 0;
}

.inline_imgs p {
  display: inline-block;
  margin-right: 10px;
}

.line_box {
  margin-top: 30px;
  padding: 25px;
  border: 1px solid #4893c3;
}

#modal-content {
  width: 80%;
  margin: 0;
  padding: 0;
  background: #fff;
  position: fixed;
  display: none;
  z-index: 99999;
}

#modal-content .inner {
  position: relative;
}

#modal-content .inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

#modal-content .inner #player {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#modal-overlay {
  z-index: 9999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

.pic_border {
  border: 1px solid #ccc !important;
}

.two_column {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
  flex-wrap: wrap;
}

.two_column > div,
.two_column > li {
  width: 49%;
}

.three_column {
  display: flex;
  width: calc(100% + 20px);
  margin-left: -20px;
  flex-wrap: wrap;
}

.three_column > div,
.three_column > li {
  width: calc(33.333% - 20px);
  margin-left: 20px;
}

.four_column {
  display: flex;
  width: calc(100% + 20px);
  margin-left: -20px;
  flex-wrap: wrap;
}

.four_column > div,
.four_column > li {
  width: calc(25% - 20px);
  margin-left: 20px;
}

.five_column {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  width: calc(100% + 20px);
}

.five_column > div,
.five_column > li {
  width: calc(20% - 20px);
  margin-left: 20px;
  margin-bottom: 20px;
}

.six_column {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  width: calc(100% + 20px);
}

.six_column > div,
.six_column > li {
  width: calc(16.666% - 20px);
  margin-left: 20px;
  margin-bottom: 20px;
}

.img + .caption {
  margin-top: 5px;
  font-size: 1.3rem;
}

.text_box {
  margin-top: 25px;
  display: flex;
}

.text_box.left {
  justify-content: space-between;
}

.text_box.left .img {
  flex-shrink: 0;
}

.text_box.left .text {
  padding-right: 30px;
}

.text_box.right {
  justify-content: space-between;
  flex-direction: row-reverse;
}

.text_box.right .img {
  flex-shrink: 0;
}

.text_box.right .text {
  padding-right: 30px;
}

.b_box {
  border: 1px solid #aaa;
  border-radius: 6px;
  padding: 25px;
  box-sizing: border-box;
  margin-top: 20px;
}

.b_box > *:first-child {
  margin-top: 0 !important;
}

.b_box .text > *:first-child {
  margin-top: 0 !important;
}

.b_box02 {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 25px;
  box-sizing: border-box;
  margin-top: 20px;
}

.b_box02 > *:first-child {
  margin-top: 0 !important;
}

.b_box02 .text > *:first-child {
  margin-top: 0 !important;
}

.ml_flex {
  display: flex;
  display: -ms-flexbox;
}

.ml_flex.cn {
  justify-content: center;
  text-align: center;
}

.ml_flex.cn > div,
.ml_flex.cn > p {
  margin: 2%;
}

.ml_flex.sb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.common_box {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
}

.common_box > *:first-child {
  margin-top: 0 !important;
}

.common_box_skin {
  background: #f1f1f1;
}

@media screen and (max-width: 768px) {
  .two_column {
    display: block;
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
  }
  .two_column > div,
  .two_column > li {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  .three_column {
    display: block;
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
  }
  .three_column > div,
  .three_column > li {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  .four_column {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .four_column > div,
  .four_column > li {
    width: 49%;
    margin-left: 0;
    margin-top: 10px;
  }
  .five_column {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .five_column > div,
  .five_column > li {
    width: 49%;
    margin-left: 0;
    margin-top: 10px;
  }
  .six_column {
    display: flex;
    width: calc(100% + 10px);
    margin-left: -10px;
    flex-wrap: wrap;
  }
  .six_column > div,
  .six_column > li {
    width: calc(33.333% - 10px);
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .photoLayout_left,
  .photoLayout_right {
    width: 100%;
    margin-top: 5%;
    display: block;
  }
  .photoLayout_left .photo img,
  .photoLayout_right .photo img {
    display: inline-block;
    max-width: 100%;
  }
  .photoLayout_left .txt,
  .photoLayout_right .txt {
    flex-basis: auto;
    box-sizing: border-box;
    margin: 5% 0 0 !important;
    padding: 0;
    width: 100% !important;
  }
  .photoLayout_left .txt > *:first-child,
  .photoLayout_right .txt > *:first-child {
    margin-top: 0 !important;
  }
  .photoLayout_left .txt + .photo,
  .photoLayout_right .txt + .photo {
    margin-top: 5%;
  }
  .photoLayout_left.reverse .txt,
  .photoLayout_right.reverse .txt {
    padding-left: 0;
    padding-right: 0;
  }
  .photoLayout_left.reverse,
  .photoLayout_right.reverse {
    display: block;
    width: 100%;
    margin-top: 5%;
    flex-direction: row-reverse;
  }
  .inline_imgs p {
    display: block;
    margin-right: 0;
    text-align: center;
  }
}
table.default {
  margin-top: 20px;
  border: 1px solid #ccc;
}

table.default th,
table.default td {
  padding: 18px;
  border: 1px solid #ccc;
  font-size: 1.6rem;
}

table.default th {
  background: #f5f5f5;
}

.table_content {
  overflow-x: scroll;
  white-space: nowrap;
  table-layout: auto !important;
}

.table_content th,
.table_content td {
  padding: 5px !important;
  font-size: 1.4rem !important;
}

.table_content > tbody > tr:first-of-type {
  background-color: lightgrey;
}

.table_content > tbody > tr > td {
  padding: 4px !important;
  text-align: center !important;
  vertical-align: middle !important;
  height: fit-content;
}

.table_content > tbody > tr > td > img {
  width: 100%;
  max-width: 100px;
  min-width: 80px;
}

.pdfDelete > a[href$=".pdf"]:after {
  content: none !important;
}

td > a[href$=".pdf"]:after {
  content: "\f1c1";
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  color: #4893c3;
  margin-left: 5px;
}

.table_form {
  width: 100%;
}

.table_form tr:first-child th,
.table_form tr:first-child td {
  padding-top: 0;
}

.table_form tr:last-child th,
.table_form tr:last-child td {
  border-bottom: none;
}

.table_form th,
.table_form td {
  border-bottom: 1px dotted #ccc;
  padding: 20px;
  vertical-align: middle;
}

.table_form em {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  background: #429955;
  color: #fff;
  font-size: 70%;
  font-style: normal;
}

.table_form p {
  margin-top: 5px;
  font-size: 100%;
}

.table_form input[type=tel],
.table_form input[type=text],
.table_form input[type=email],
.table_form textarea {
  padding: 0 8px;
  background: #fff;
  color: #444;
  border: 0;
  border: solid 1px #ddd;
  line-height: 2;
  font-size: 1.6rem;
  font-family: "游ゴシック", YuGothic, "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.table_form input[type=tel].input-width-s,
.table_form input[type=text].input-width-s,
.table_form input[type=email].input-width-s,
.table_form textarea.input-width-s {
  width: 200px;
}

.table_form input[type=tel] {
  width: auto;
}

.table_form input.zip {
  width: 5.8em;
}

input[type=reset],
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=reset]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=reset]::focus,
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

select {
  padding: 5px 8px;
  border-radius: 3px;
  background: #fff;
  color: #444;
  border: 0;
  border: solid 1px #ddd;
  line-height: 2;
  font-size: 1.6rem;
  font-family: "游ゴシック", YuGothic, "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  box-sizing: border-box;
}

select:not(.num) {
  width: 100%;
}

select:focus {
  outline: 0;
  border-color: #ca82f8;
}

.table_form input.Active,
.table_form textarea.Active {
  padding: 3px 8px;
  background: #fff;
  color: #444;
  border: 0;
  border: solid 1px #ddd;
  line-height: 2;
}

.table_form textarea {
  height: 200px;
}

.table_form td .flex {
  display: flex;
  align-items: center;
}

.table_form td .flex input {
  margin-right: 10px;
}

.table_form td .flex span {
  display: inline-flex;
  align-items: center;
}

.table_form td .flex span img {
  margin-right: 8px;
}

.table_form td .note {
  font-size: 1.3rem;
  margin-top: 10px;
}

label {
  display: inline-block;
  margin-right: 15px;
  padding: 3px 0;
}

label input {
  margin-right: 5px;
  font-family: "游ゴシック", YuGothic, "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.table_form input[type=submit] {
  min-width: 180px;
  padding: 15px 20px;
  background: #333;
  color: #fff;
  border: none;
  font-size: 110%;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.table_form input[type=submit]:hover {
  background-color: #429955;
}

.table_form td.submit {
  border: none;
  text-align: center;
}

.table_form th,
.table_form td {
  padding: 20px 15px;
}

.table_form th {
  text-align: left;
}

.table_form .size_full input[type=text],
.table_form .size_full textarea {
  width: 100%;
  border-radius: 4px;
  box-sizing: border-box;
}

.table_form .size_half input {
  min-width: 230px;
}

@media screen and (max-width: 768px) {
  table.default {
    margin-top: 5%;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
  }
  table.default th,
  table.default td {
    padding: 1%;
    border: 1px solid #ccc;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  table.default th {
    background: #f5f5f5;
  }
  table.gaiyou_tbl {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    margin-top: 8%;
  }
  table.gaiyou_tbl th,
  table.gaiyou_tbl td {
    display: block;
    text-align: left;
    padding: 5px;
  }
  table.gaiyou_tbl th {
    background: #f1f1f1;
    border: none;
    width: 100% !important;
  }
  table.gaiyou_tbl td {
    padding-bottom: 20px;
    border: none;
  }
  table.gaiyou_tbl .month_td {
    padding-bottom: 0;
    font-weight: bold;
    margin-bottom: -3px;
    width: auto !important;
    text-align: left !important;
  }
  table.gaiyou_tbl .month_td::after {
    content: "月";
  }
}
.cap {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
  text-align: center;
}

.underline {
  text-decoration: underline;
}

.c_red {
  color: #f00;
}

.pdf_link:before {
  content: "\f1c1";
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  color: #D14244;
  text-decoration: none;
  margin-right: 5px;
  margin-left: 0;
}

.word_link:before {
  content: "\f1c2";
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  color: #344290;
  text-decoration: none;
  margin-right: 5px;
  margin-left: 0;
}

.excel_link:before {
  content: "\f1c3";
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  color: #4C7B3B;
  text-decoration: none;
  margin-right: 5px;
  margin-left: 0;
}

.link_btn {
  display: inline-block;
}

.link_btn a {
  display: block;
  color: #4893c3;
  position: relative;
  padding: 8px 12px 8px 24px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none !important;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.link_btn a:before {
  content: "\e802";
  content: "\f105";
  font-family: "fontello", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  color: #4893c3;
  position: absolute;
  left: 7px;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  -webkit-transition: 300ms;
  transition: 300ms;
}

@media screen and (max-width: 768px) {
  .sp_c {
    text-align: center;
  }
  .tel_link {
    text-decoration: underline;
  }
}
#local {
  background-color: #F0F0EF;
  padding: 80px 0 100px;
  text-align: center;
  margin-top: 80px;
}

#local h2 {
  text-align: center;
  font-size: 2.8rem;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  text-align: center;
}

#local h2 span {
  position: relative;
  padding: 0 25px;
}

#local h2 span::before {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: translateX(-100%);
  background-color: #222;
}

#local h2 span::after {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #222;
}

#local ul {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#local ul li {
  padding: 0 0 0 10px;
  font-size: 1.8rem;
  font-weight: 700;
}

#local ul li::after {
  content: "|";
  padding-left: 10px;
}

#local ul li:last-child::after {
  display: none;
}

#local ul li a {
  text-decoration: none;
}

#local ul li a:hover {
  color: #4893c3;
}

#local ul li.current_page_item a {
  position: relative;
}

#local ul li.current_page_item a::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #4893c3;
  position: absolute;
  left: 0;
  bottom: -5px;
}

@media screen and (max-width: 768px) {
  #local {
    background-color: #F0F0EF;
    padding: 0;
    text-align: left;
    margin-top: 8%;
  }
  #local h2 {
    font-size: 2rem;
    background: #333;
    color: #fff;
    padding: 2% 4%;
    text-align: left;
  }
  #local h2 span {
    position: relative;
    padding: 0;
  }
  #local h2 span::before {
    display: none;
  }
  #local h2 span::after {
    display: none;
  }
  #local ul {
    margin-top: 0;
    padding: 4%;
    display: block;
  }
  #local ul li {
    padding: 3% 0;
    border-bottom: 1px dashed #aaa;
    font-size: 1.6rem;
    font-weight: 700;
  }
  #local ul li::after {
    display: none;
  }
  #local ul li:last-child {
    border-bottom: none;
  }
  #local ul li:last-child::after {
    display: none;
  }
  #local ul li a {
    text-decoration: none;
  }
  #local ul li a:hover {
    color: #4893c3;
  }
  #local ul li.current_page_item a {
    color: #4893c3;
  }
  #local ul li.current_page_item a::after {
    display: none;
  }
}
#header a {
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
}

#sp_menu {
  margin-right: 10px;
}

/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「 　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
