@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Homemade+Apple&display=swap);
.t-color1 {
  color: #0A3973;
}

.t-color2 {
  color: #469DCA;
}

/* テンプレファイル */
/* 一括指定、すべてのページに適用するスタイルなどはここに記述 */
/* containerの指定などは全サイト共通にするのでこのファイルを使いまわす。 */
body {
  overflow-x: hidden !important;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  position: relative;
}

::-webkit-scrollbar {
  display: none;
  width: 0;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just make scrollbar invisible */
}

.scroll-lock {
  overflow-y: hidden;
}

body .slick-next {
  display: none;
}

/* reCAPTHA関係 */
.grecaptcha-badge {
  visibility: hidden;
}

#reCaptcha {
  font-size: 12px;
  text-align: center;
  margin: 12px 0;
  text-align: left;
}

#reCaptcha > a {
  color: #0A3973;
}

body {
  font-weight: 500;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ ProN", "メイリオ", "MS UI Gothic", Sans;
  color: #011938;
  background-color: #fff;
  line-height: 2em;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

.container-wrap {
  position: relative;
  width: 100%;
}

.container {
  position: relative;
  margin: auto;
  width: calc(100% - 40px);
}

@media screen and (min-width: 576px) {
  body {
    font-size: 15px;
    line-height: 2em;
  }
  body h1 {
    font-size: 24px;
  }
  body h2 {
    font-size: 20px;
  }
  body h3 {
    font-size: 18px;
  }
  body h4 {
    font-size: 18px;
  }

  .container {
    width: calc(100% - 40px);
    padding: 64px 0px;
  }

  .container.block {
    width: calc(100% - 40px);
    padding: 64px 64px;
  }
}
@media screen and (min-width: 768px) {
  body h1 {
    font-size: 30px;
  }
  body h2 {
    font-size: 24px;
  }
  body h3 {
    font-size: 20px;
  }
  body h4 {
    font-size: 18px;
  }

  .container {
    width: calc(100% - 60px);
  }
}
@media screen and (min-width: 1280px) {
  .container {
    max-width: 1200px;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  body {
    font-size: 15px;
    line-height: 1.8em;
  }
  body h1 {
    font-size: 24px;
  }
  body h2 {
    font-size: 20px;
  }
  body h3 {
    font-size: 18px;
  }
  body h4 {
    font-size: 16px;
  }

  .container {
    padding: 64px 20px;
  }
}
/* Loading背景画面設定　*/
#splash {
  position: relative;
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  text-align: center;
  color: #fff;
}
#splash .logo {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 150px);
  margin: auto;
  width: 300px;
  z-index: 99999;
  transition: 1s;
}
#splash .logo.logoanime {
  transform: scale(1.2), translateY(-100px);
}

/* Loading画像中央配置　*/
#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99999;
  transform: translate(-50%, -50%);
  color: #011938;
  width: 100%;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg {
  height: 2px;
}

/*割れる画面のアニメーション*/
.loader_cover {
  width: 100%;
  height: 50%;
  background-color: #fff;
  transition: all 0.8s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transform: scaleY(1);
}

/*上の画面*/
.loader_cover-up {
  transform-origin: center top;
}

/*下の画面*/
.loader_cover-down {
  position: absolute;
  bottom: 0;
  transform-origin: center bottom;
}

/*クラス名がついたらY軸方向に0*/
.loader_cover-up.coveranime,
.loader_cover-down.coveranime {
  transform: scaleY(0);
}

@media only screen and (min-width: 576px) {
  .fadeIn {
    opacity: 0;
    transform: translate(0, 50%);
    transition: 1.8s ease;
  }

  .fadeIn.is-show {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.fadeBottom {
  opacity: 0;
  transform: translate(0, -50%);
  transition: 1.5s ease;
}

.fadeBottom.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeLeft {
  opacity: 0;
  transition: 1.5s ease;
  transform: translate(-20px, 0);
}
@media only screen and (min-width: 1280px) {
  .fadeLeft {
    transform: translate(-50%, 0);
  }
}
@media only screen and (min-width: 992px) {
  .fadeLeft {
    transform: translate(-20%, 0);
  }
}

.fadeLeft.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeRight {
  opacity: 0;
  transition: 1.5s ease;
  transform: translate(20px, 0);
}
@media only screen and (min-width: 1280px) {
  .fadeRight {
    transform: translate(50%, 0);
  }
}
@media only screen and (min-width: 992px) {
  .fadeRight {
    transform: translate(20%, 0);
  }
}

.fadeRight.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/****************** レスポンシブ　非表示 ************************/
@media screen and (min-width: 769px) {
  .sp-hidden {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc-hidden {
    display: none !important;
  }
}
/****************** タイトル ************************/
.heading + a,
.heading02 + a {
  margin-top: 40px;
}
.heading + p,
.heading02 + p {
  font-weight: bold;
  font-size: 20px;
  color: #0A3973;
  line-height: 2em;
  margin-top: 30px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .heading + p,
.heading02 + p {
    font-size: 18px;
  }
}
.heading + p + p,
.heading02 + p + p {
  margin-top: 30px;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .heading + p + p,
.heading02 + p + p {
    text-align: left;
  }
  .heading + p + p br,
.heading02 + p + p br {
    display: none;
  }
}

.heading {
  font-weight: bold;
  text-align: center;
}
.heading .heading-small {
  font-size: 24px;
  color: #0A3973;
  line-height: 1.2em;
  font-weight: bold;
}
.heading .heading-title {
  font-size: 13px;
  color: #469DCA;
  font-weight: 700;
}

.heading02 {
  font-weight: bold;
  text-align: center;
  display: flex;
}
.heading02 .heading-small {
  font-size: 24px;
  color: #0A3973;
  line-height: 1.2em;
  font-weight: bold;
}
.heading02 .heading-title {
  font-size: 13px;
  color: #469DCA;
  font-weight: 700;
  margin-left: 10px;
  text-align: left;
}

.btn-round_arrow {
  position: relative;
  display: block;
  width: 250px;
  padding: 10px 0;
  margin: 30px auto 0;
  text-align: center;
  border-radius: 30px;
  background: #011938;
  color: #fff;
  font-size: 16px !important;
  line-height: 1.8em !important;
  box-shadow: 2px 2px 0 0 #0070AA;
}
.btn-round_arrow:hover {
  opacity: 1;
}
.btn-round_arrow::after, .btn-round_arrow::before {
  transition: 0.3s;
  position: absolute;
  display: block;
  right: 15px;
  content: "";
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 3px;
}
.btn-round_arrow::after {
  top: 18px;
  transform: rotate(45deg);
}
.btn-round_arrow::before {
  bottom: 18px;
  transform: rotate(-45deg);
}
.btn-round_arrow:hover::after, .btn-round_arrow:hover::before {
  right: 8px;
}

.btn-round_arrow_02 {
  position: relative;
  display: block;
  width: 250px;
  padding: 10px 0;
  margin: 30px auto 0;
  text-align: center;
  border-radius: 30px;
  background: #0A3973;
  color: #469DCA;
  font-size: 16px !important;
  line-height: 1.8em !important;
}
.btn-round_arrow_02:hover {
  opacity: 1;
}
.btn-round_arrow_02::after, .btn-round_arrow_02::before {
  transition: 0.3s;
  position: absolute;
  display: block;
  right: 15px;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #469DCA;
  border-radius: 3px;
}
.btn-round_arrow_02::after {
  top: 24px;
  transform: rotate(45deg);
}
.btn-round_arrow_02::before {
  transform: rotate(0deg);
  bottom: 17px;
  right: 17px;
  width: 30px;
}
.btn-round_arrow_02:hover::after {
  right: 10px;
}
.btn-round_arrow_02:hover::before {
  right: 12px;
}

.btn-round_arrow_03 {
  position: relative;
  display: block;
  max-width: 250px;
  width: 100%;
  padding: 10px 0;
  margin: 30px auto 0;
  text-align: center;
  border-radius: 30px;
  background: #0A3973;
  color: #fff;
  font-size: 16px !important;
  line-height: 1.8em !important;
}
.btn-round_arrow_03:hover {
  opacity: 1;
}
.btn-round_arrow_03::after {
  transition: 0.3s;
  position: absolute;
  display: block;
  content: "";
  height: 15px;
  width: 17px;
  background-image: url("../img/btn-arrow-right.svg");
  background-repeat: no-repeat;
  right: 19px;
  top: 18px;
}
.btn-round_arrow_03:hover::after {
  right: 10px;
}

.btn-round_arrow_03-b {
  position: relative;
  display: block;
  max-width: 250px;
  width: 100%;
  padding: 10px 0;
  margin: 30px auto 0;
  text-align: center;
  border-radius: 10px;
  background: linear-gradient(90deg, #469DCA 0%, #0070AA 100%);
  color: #fff;
  transition: all 0.3s;
  font-size: 16px !important;
  line-height: 1.8em !important;
}
.btn-round_arrow_03-b:before, .btn-round_arrow_03-b:after {
  position: absolute;
  display: block;
  content: "";
  height: 3px;
  width: 10px;
  background: #fff;
  background-image: none;
  right: 19px;
  border-radius: 3px;
  transition: all 0.3s;
}
.btn-round_arrow_03-b:before {
  transform: rotate(45deg);
  top: 20px;
}
.btn-round_arrow_03-b:after {
  transform: rotate(-45deg);
  top: 26px;
}
.btn-round_arrow_03-b:hover:after, .btn-round_arrow_03-b:hover:before {
  right: 10px;
}
.btn-round_arrow_03-b:hover {
  transform: scale(1.05);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: block;
  padding: 10px 0;
  width: 200px;
  margin: auto;
  text-align: center;
  /*アニメーションの指定*/
  transition: ease 0.2s;
  border-radius: 30px;
  background-color: #011938;
  color: #fff;
}

.btn_02 {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: block;
  padding: 6px 0;
  width: 180px;
  margin: auto;
  text-align: center;
  /*アニメーションの指定*/
  transition: ease 0.2s;
  border-radius: 30px;
  color: #0A3973;
  border: 2px solid #0A3973;
  transition: all 0.3s;
}
.btn_02:hover {
  background: #0A3973;
  color: #fff;
  transform: scale(1.1);
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
}

.btn:hover span {
  color: #fff;
}

/*== 背景が流れる（下から上） */
.bgbottom:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #011938;
  /*背景色*/
  width: 100%;
  height: 0;
  /*アニメーション*/
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

/*hoverした際の形状*/
.bgbottom:hover:before {
  height: 100%;
  background-color: #011938;
}

@media screen and (min-width: 1280px) {
  .header-sp {
    display: none !important;
  }
}
@media screen and (max-width: 1279px) {
  .header-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1280px) {
  .header-fixed {
    display: none !important;
  }
}
.tel {
  width: 50%;
  color: #fff;
}
.tel .access {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.tel .access svg {
  fill: #fff;
}
.tel .access span {
  font-size: 15px;
  margin-left: 6px;
}
.tel p {
  text-align: center;
  line-height: 1.54em;
  font-size: 13px;
  letter-spacing: 0;
}
@media screen and (min-width: 1600px) {
  .tel p br {
    display: none;
  }
}

#header {
  position: relative;
  z-index: 999;
  width: 100%;
  transition: all 2s;
}
#header .logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 110px;
  z-index: 1000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  text-align: center;
  display: flex;
  align-items: center;
  margin-left: 64px;
}
@media screen and (max-width: 1460px) {
  #header .logo {
    margin-left: 40px;
  }
}
#header .logo img {
  width: 292px;
  height: auto;
}
#header .logo img + span {
  font-size: 13.5px;
  margin-left: 20px;
  letter-spacing: 0;
  line-height: 1.23em;
}
@media only screen and (max-width: 767px) {
  #header .logo img + span {
    display: none;
  }
}
@media only screen and (max-width: 1279px) {
  #header .logo {
    height: auto;
    width: 266px;
    margin-left: 20px;
  }
  #header .logo:after {
    content: "";
    width: 100%;
    background: url("../img/title-logo-text.svg");
    background-repeat: no-repeat;
    background-size: contain;
    height: 7px;
    display: block;
    color: #fff;
    margin-top: 5px;
  }
  #header .logo img {
    width: 100%;
  }
  #header .logo img + span {
    display: none;
  }
}
#header .header-pc {
  display: block;
  z-index: 500;
  background-color: #fff;
}
#header .header-pc .containerL {
  display: flex;
  align-items: center;
  height: 110px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  width: 30%;
  max-width: 449px;
}
@media only screen and (min-width: 1280px) {
  #header .header-pc .containerL {
    margin-right: 394px;
  }
}
@media screen and (max-width: 1460px) {
  #header .header-pc .containerL {
    margin-right: 282px;
  }
}
#header .header-pc .containerL nav {
  width: 502px;
  /*下の階層を持っているulの指定*/
  /*hoverしたら表示*/
  /*ナビゲーションaタグの形状*/
}
@media screen and (min-width: 1500px) {
  #header .header-pc .containerL nav {
    width: 602px;
  }
}
#header .header-pc .containerL nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header-pc .containerL nav ul .deco-line {
  width: 1px;
  height: 15px;
  background-color: #0A3973;
  display: inline-block;
}
#header .header-pc .containerL nav ul ul {
  display: block;
}
#header .header-pc .containerL nav ul li {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .header-pc .containerL nav ul li a {
  display: block;
  text-decoration: none;
  width: 100%;
  position: relative;
  font-weight: bold;
  text-align: left;
  font-size: 15px;
}
#header .header-pc .containerL nav ul li a:after {
  content: "";
  transition: all 0.3s;
  position: absolute;
}
#header .header-pc .containerL nav ul li a span {
  display: block;
  font-size: 18px;
}
@media screen and (min-width: 1500px) {
  #header .header-pc .containerL nav ul li a span {
    font-size: 20px;
  }
}
#header .header-pc .containerL nav ul li a:hover {
  color: #469DCA;
}
#header .header-pc .containerL nav ul li a:hover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #469DCA 0%, #0070AA 100%);
  left: 0;
  bottom: -40px;
}
#header .header-pc .containerL nav ul li.has-child::before {
  content: "";
  position: absolute;
  right: -10px;
  margin: auto;
  bottom: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #011938;
  border-right: 2px solid #011938;
  transform: rotate(135deg);
  transition: 0.3s;
}
#header .header-pc .containerL nav ul li.has-child:hover::before {
  border-top: 2px solid #0A3973;
  border-right: 2px solid #0A3973;
  bottom: 10px;
  transition: 0.3s;
}
#header .header-pc .containerL nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: -20px;
  top: 80px;
  z-index: 4;
  /*形状を指定*/
  background: #011938;
  width: 180px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
}
#header .header-pc .containerL nav li.has-child ul li {
  text-align: left;
  width: 100%;
}
#header .header-pc .containerL nav li.has-child ul li a {
  padding: 10px;
}
#header .header-pc .containerL nav li.has-child:hover > ul,
#header .header-pc .containerL nav li.has-child ul li:hover > ul,
#header .header-pc .containerL nav li.has-child:active > ul,
#header .header-pc .containerL nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
#header .header-pc .containerL nav li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}
#header .header-pc .containerL nav li.has-child ul li:last-child a {
  border-bottom: none;
}
#header .header-pc .containerL nav li.has-child ul li a:hover,
#header .header-pc .containerL nav li.has-child ul li a:active {
  background: #F2F6FC;
  color: #011938;
}
#header .header-pc .containerR {
  position: absolute;
  top: 0;
  right: 0;
  height: 110px;
  width: 330px;
  max-width: 330px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  letter-spacing: 0px;
  background: linear-gradient(90deg, #469DCA 0%, #0A3973 100%);
  color: #fff;
}
@media screen and (max-width: 1460px) {
  #header .header-pc .containerR {
    width: 262px;
  }
}
#header .header-pc .containerR:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: #fff;
}
#header .header-pc .containerR:after {
  right: 50%;
}
#header .header-sp {
  position: relative;
  z-index: 998;
  top: 0;
  height: 68px;
  background-color: #fff;
  box-shadow: 0 1px 10px rgba(187, 187, 187, 0.37);
  /*×に変化*/
}
#header .header-sp .telbtn,
#header .header-sp .mailbtn,
#header .header-sp .openbtn1 {
  position: absolute;
  width: 68px;
  height: 68px;
  cursor: pointer;
}
#header .header-sp .telbtn {
  top: 0;
  right: 100px;
  background-color: #F2F6FC;
  padding: 10px 0;
}
#header .header-sp .telbtn > img {
  display: block;
  width: 50%;
  margin: auto;
}
#header .header-sp .mailbtn {
  top: 0;
  right: 50px;
  background-color: #0A3973;
  padding: 14px 0;
}
#header .header-sp .mailbtn > img {
  display: block;
  width: 50%;
  margin: auto;
}
#header .header-sp .openbtn1 {
  z-index: 9999;
  top: 0;
  right: 0;
  background: #0A3973;
}
#header .header-sp .openbtn1 span {
  display: inline-block;
  position: absolute;
  right: 20px;
  height: 3px;
  background: #fff;
  width: 40%;
}
#header .header-sp .openbtn1 span:nth-of-type(1) {
  top: 21px;
}
#header .header-sp .openbtn1 span:nth-of-type(2) {
  top: 32px;
}
#header .header-sp .openbtn1 span:nth-of-type(3) {
  top: 43px;
}
#header .header-sp .openbtn1.active span {
  background-color: #fff;
}
#header .header-sp .openbtn1.active span:nth-of-type(1) {
  top: 25px;
  right: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
#header .header-sp .openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
#header .header-sp .openbtn1.active span:nth-of-type(3) {
  top: 37px;
  right: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
#header .header-sp #g-nav_sp {
  position: fixed;
  z-index: 999;
  right: -100vw;
  max-width: 375px;
  width: 100%;
  top: 68px;
  height: auto;
  color: #fff;
  background: #0A3973;
  transition: all 0.6s;
}
@media only screen and (max-width: 575px) {
  #header .header-sp #g-nav_sp {
    max-width: 100%;
  }
}
#header .header-sp #g-nav_sp > span {
  margin-left: 20px;
  font-size: 13px;
  display: block;
  line-height: 1.5em;
}
#header .header-sp #g-nav_sp p {
  font-weight: 700;
  padding: 14px 0 0 10px;
}
#header .header-sp #g-nav_sp > p {
  background: #F2F6FC;
}
#header .header-sp #g-nav_sp > ul {
  border-top: 1px solid #F2F6FC;
}
#header .header-sp #g-nav_sp > ul + .inner {
  color: #fff;
  text-align: center;
  margin: auto;
}
#header .header-sp #g-nav_sp > ul + .inner .innerL,
#header .header-sp #g-nav_sp > ul + .inner .innerR {
  display: flex;
  width: 100%;
  flex-direction: column;
  position: relative;
}
#header .header-sp #g-nav_sp > ul + .inner .innerL > .deco,
#header .header-sp #g-nav_sp > ul + .inner .innerR > .deco {
  margin-bottom: 20px;
  font-size: 24px;
}
#header .header-sp #g-nav_sp > ul + .inner .innerL > .deco + a,
#header .header-sp #g-nav_sp > ul + .inner .innerR > .deco + a {
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  #header .header-sp #g-nav_sp > ul + .inner .innerL > .deco + a,
#header .header-sp #g-nav_sp > ul + .inner .innerR > .deco + a {
    font-size: 40px;
  }
}
#header .header-sp #g-nav_sp > ul + .inner .innerL > .deco + a svg,
#header .header-sp #g-nav_sp > ul + .inner .innerR > .deco + a svg {
  margin-right: 10px;
}
#header .header-sp #g-nav_sp > ul + .inner .innerL > .deco + a + p,
#header .header-sp #g-nav_sp > ul + .inner .innerR > .deco + a + p {
  font-size: 13px;
  text-align: center;
  font-weight: normal;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #header .header-sp #g-nav_sp > ul + .inner .innerL,
#header .header-sp #g-nav_sp > ul + .inner .innerR {
    width: 100%;
  }
}
#header .header-sp #g-nav_sp > ul + .inner .innerL svg,
#header .header-sp #g-nav_sp > ul + .inner .innerR svg {
  transition: all 0.3s;
  fill: #fff;
}
#header .header-sp #g-nav_sp > ul + .inner .innerR {
  position: relative;
  padding-top: 30px;
  padding-bottom: 20px;
}
#header .header-sp #g-nav_sp > ul + .inner .innerR:after {
  content: " ";
  position: absolute;
  bottom: 0;
  background: #fff;
  width: 110px;
  height: 1px;
  z-index: -2;
  left: 50%;
  transform: translateX(-50%);
}
#header .header-sp #g-nav_sp > ul + .inner .innerR .deco {
  margin-bottom: 20px;
}
#header .header-sp #g-nav_sp > ul + .inner .innerR .deco + a {
  margin-bottom: 22px;
}
#header .header-sp #g-nav_sp > ul + .inner .innerR .deco + a svg {
  width: auto;
  height: 33px;
}
#header .header-sp #g-nav_sp > ul + .inner .innerR .deco + a:hover svg {
  transform: rotate(-20deg);
}
#header .header-sp #g-nav_sp > ul + .inner .innerL {
  padding-top: 20px;
  padding-bottom: 30px;
}
#header .header-sp #g-nav_sp > ul + .inner .innerL a {
  background: #fff;
  max-width: 319px;
  width: 100%;
  font-size: 18px !important;
  font-weight: bold;
  padding: 33px 0;
  height: 86px;
  border-radius: 60px;
  height: 60px;
  margin-bottom: 19px;
}
#header .header-sp #g-nav_sp > ul + .inner .innerL a span:first-of-type {
  color: #0A3973;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#header .header-sp #g-nav_sp > ul + .inner .innerL a span:last-of-type {
  right: 20px;
  width: 20px;
  height: 20px;
  background: #0A3973;
  position: absolute;
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
}
#header .header-sp #g-nav_sp > ul + .inner .innerL a span:last-of-type svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  transform: translate(-50%, -50%);
}
#header .header-sp #g-nav_sp > ul + .inner .innerL a:hover {
  transform: scale(1.05);
}
#header .header-sp #g-nav_sp > ul + .inner .innerL a svg {
  fill: #fff;
  width: 18px;
  height: auto;
  margin-right: 5px;
}
#header .header-sp #g-nav_sp > ul > li {
  border-bottom: 1px solid #F2F6FC;
}
#header .header-sp #g-nav_sp > ul > li > a {
  display: block;
  padding: 10px 10px;
  transition: all 0.3s;
}
#header .header-sp #g-nav_sp > ul > li > a svg {
  position: absolute;
  transition: all 0.3s;
  right: 0;
  top: 22px;
}
#header .header-sp #g-nav_sp > ul > li > a:hover svg {
  right: 10px;
}
#header .header-sp #g-nav_sp > ul > li .has-child {
  font-weight: 400;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
#header .header-sp #g-nav_sp > ul > li .has-child::before, #header .header-sp #g-nav_sp > ul > li .has-child::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  top: 23px;
  right: 15px;
  transition: 0.3s;
  background-color: #F2F6FC;
}
#header .header-sp #g-nav_sp > ul > li .has-child::before {
  transform: rotate(0deg);
}
#header .header-sp #g-nav_sp > ul > li .has-child::after {
  transform: rotate(90deg);
}
#header .header-sp #g-nav_sp > ul > li .has-child.close {
  background-color: rgba(255, 179, 56, 0.3490196078);
  transition: 0.3s;
}
#header .header-sp #g-nav_sp > ul > li .has-child.close::after {
  transform: rotate(0deg);
}
#header .header-sp #g-nav_sp > ul > li .child {
  display: none;
  background-color: rgba(255, 179, 56, 0.3490196078);
}
#header .header-sp #g-nav_sp > ul > li .child > li {
  transition: 0.3s;
  border-top: 1px solid rgba(255, 179, 56, 0.3490196078);
}
#header .header-sp #g-nav_sp > ul > li .child > li > a {
  padding: 10px 9px;
  display: block;
}
#header .header-sp #g-nav_sp.panelactive {
  top: 68px;
  right: 0px;
  bottom: 0;
}

.header-fixed {
  position: fixed;
  bottom: 0;
  z-index: 10000;
  width: 100vw;
  background: linear-gradient(90deg, #469DCA 0%, #0070AA 100%);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: hidden;
}
.header-fixed .inner {
  position: relative;
  z-index: 1;
  padding: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .header-fixed .inner {
    align-items: flex-end;
  }
}
.header-fixed .tel {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media only screen and (max-width: 575px) {
  .header-fixed .tel {
    padding: 15px 6px;
  }
}
.header-fixed .tel:nth-of-type(2) svg {
  margin-bottom: 3px;
}
.header-fixed .access {
  flex-direction: column;
}
.header-fixed .deco-line {
  min-width: 1px;
  background: #fff;
  align-self: stretch;
}

.background-dark {
  background-color: #fff !important;
}

#header.HeightMin {
  position: fixed;
  z-index: 999999;
  /*最前面へ*/
  -webkit-animation: DownAnime 1s;
          animation: DownAnime 1s;
  top: 0;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-200px);
  }
  to {
    opacity: 1;
    transform: translateY(-1px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-200px);
  }
  to {
    opacity: 1;
    transform: translateY(-1px);
  }
}
.p-dots {
  position: relative;
}
.p-dots:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #469DCA;
  position: absolute;
  display: inline-block;
  left: 50%;
  top: -3px;
  transform: translateX(-50%);
  transition: all 0.3s;
}

#mainvisual {
  padding-top: 0;
  position: relative;
  background: #F2F6FC;
  z-index: -1;
}
#mainvisual .container-wrap {
  display: flex;
  max-width: 1980px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1279px) {
  #mainvisual .container-wrap {
    flex-wrap: wrap;
  }
}
#mainvisual .container-wrap .image-box {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#mainvisual .container-wrap .image-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#mainvisual .container-wrap .image-box:after {
  content: "";
  display: block;
  padding-top: 99%;
}
#mainvisual .container-wrap .text-box {
  padding: 60px 30px;
  position: relative;
}
@media only screen and (max-width: 575px) {
  #mainvisual .container-wrap .text-box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#mainvisual .container-wrap .text-box img {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#mainvisual .container-wrap .text-box .main-title {
  background: #fff;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: auto;
  padding: 37px 30px 30px;
  border-radius: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
@media only screen and (max-width: 1279px) {
  #mainvisual .container-wrap .text-box .main-title {
    width: 100%;
    font-size: 20px;
    max-width: 557px;
    top: 0;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 575px) {
  #mainvisual .container-wrap .text-box .main-title {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#mainvisual .container-wrap .text-box .main-title:after {
  content: " ";
  position: absolute;
}
#mainvisual .container-wrap .text-box .main-title .big-title {
  color: #0A3973;
  font-size: 18px;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  line-height: 2.4em;
  opacity: 0;
  position: relative;
  top: 20px;
}
#mainvisual .container-wrap .text-box .main-title .big-title .bigger-font {
  font-size: 1.5em;
}
#mainvisual .container-wrap .text-box .main-title .big-title .bigger-font:first-of-type {
  margin-left: -10px;
  margin-right: -10px;
}
@media screen and (max-width: 370px) {
  #mainvisual .container-wrap .text-box .main-title .big-title .bigger-font:first-of-type {
    margin-left: -13px;
    margin-right: -13px;
  }
}
@media only screen and (max-width: 767px) {
  #mainvisual .container-wrap .text-box .main-title .big-title .bigger-font {
    font-size: 18px;
  }
}
#mainvisual .container-wrap .text-box .main-title .big-title .deco-line {
  border-bottom: 4px solid #469DCA;
  padding-bottom: 4px;
}
@media only screen and (max-width: 991px) {
  #mainvisual .container-wrap .text-box .main-title .big-title {
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 575px) {
  #mainvisual .container-wrap .text-box .main-title .big-title {
    font-size: 14px;
  }
}
#mainvisual .container-wrap .text-box .main-title .text {
  color: #011938;
  font-size: 14px;
  line-height: 2em;
  text-align: justify;
  margin-top: 20px;
  max-width: 433px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-weight: normal;
  position: relative;
  top: 50px;
  opacity: 0;
}
@media only screen and (max-width: 1279px) {
  #mainvisual .container-wrap .text-box .main-title .text {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  #mainvisual .container-wrap .text-box .main-title .text {
    margin-top: 15px;
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  #mainvisual .container-wrap .text-box .main-title .text {
    margin-top: 20px;
    line-height: 1.8em;
  }
}
@media only screen and (min-width: 1280px) {
  #mainvisual .container-wrap .image-box,
#mainvisual .container-wrap .text-box {
    width: 33.3333333333%;
  }
  #mainvisual .container-wrap .text-box {
    min-width: 548px;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1379px) {
  #mainvisual .container-wrap .image-box {
    width: calc((100% - 548px) / 2);
  }
}
@media only screen and (max-width: 1279px) {
  #mainvisual .container-wrap .text-box {
    width: 100%;
    order: 3;
  }
  #mainvisual .container-wrap .image-box {
    width: 50%;
  }
}
#mainvisual a {
  position: absolute;
  bottom: -80px;
  right: 0px;
}
@media screen and (max-width: 1280px) {
  #mainvisual a {
    bottom: -61px;
  }
}
@media only screen and (max-width: 767px) {
  #mainvisual a {
    bottom: auto;
    top: 111px;
  }
}
#mainvisual a:hover p svg {
  transform: translateX(10px);
}

#sub-mainvisual {
  background: rgba(33, 42, 55, 0.6588235294);
  padding-top: 0;
  position: relative;
}
#sub-mainvisual .container-wrap {
  background: #469DCA;
}
#sub-mainvisual .container-wrap > .image-box {
  overflow: hidden;
  top: 0;
  max-width: 1600px;
  width: 100%;
  height: 100%;
  position: absolute;
}
@media only screen and (min-width: 1280px) {
  #sub-mainvisual .container-wrap > .image-box {
    left: 50%;
    transform: translateX(-50%);
  }
}
#sub-mainvisual .container-wrap > .image-box img {
  position: relative;
  height: 100%;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}
#sub-mainvisual .container-wrap > .image-box:before, #sub-mainvisual .container-wrap > .image-box:after {
  content: "";
  width: 64px;
  height: 100%;
  position: absolute;
  display: inline-block;
  z-index: 1;
  top: 0;
}
#sub-mainvisual .container-wrap > .image-box:before {
  left: 0;
  background: linear-gradient(90deg, rgb(70, 157, 202) 0%, rgba(70, 157, 202, 0) 100%);
}
#sub-mainvisual .container-wrap > .image-box:after {
  right: 0;
  background: linear-gradient(270deg, rgb(70, 157, 202) 0%, rgba(70, 157, 202, 0) 100%);
}
#sub-mainvisual .container {
  height: 250px;
}
#sub-mainvisual .container .heading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#sub-mainvisual .container div,
#sub-mainvisual .container .heading-title {
  color: #fff;
}

#news_page .heading02,
#front_news_page .heading02 {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #news_page .heading02,
#front_news_page .heading02 {
    flex-direction: column;
  }
}
#news_page .heading02 span,
#front_news_page .heading02 span {
  color: #0070AA;
  margin-left: 20px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "游明朝体", "MS明朝", "MSP明朝", serif;
}
#news_page .heading02 .btn-round_arrow_03-b,
#front_news_page .heading02 .btn-round_arrow_03-b {
  background: #011938;
}
@media only screen and (min-width: 768px) {
  #news_page .heading02 .btn-round_arrow_03-b,
#front_news_page .heading02 .btn-round_arrow_03-b {
    margin: 0;
    margin-left: auto;
  }
}
#news_page .inner,
#front_news_page .inner {
  display: flex;
  flex-wrap: wrap;
}
#news_page .inner article,
#front_news_page .inner article {
  width: 100%;
}
#news_page .inner article:nth-of-type(n+2),
#front_news_page .inner article:nth-of-type(n+2) {
  margin-top: 30px;
}
#news_page .inner article:last-of-type a,
#front_news_page .inner article:last-of-type a {
  margin-bottom: 0;
}
#news_page .inner article a,
#front_news_page .inner article a {
  position: relative;
  display: flex;
  position: relative;
  transition: all 0.3s;
  left: 0;
}
#news_page .inner article:hover a:after,
#front_news_page .inner article:hover a:after {
  background-color: #011938;
  height: 2px;
}
#news_page .inner article:hover a:before,
#front_news_page .inner article:hover a:before {
  right: -10px;
}
#news_page .inner article .image-box,
#front_news_page .inner article .image-box {
  width: 90px;
  min-width: 90px;
  height: 90px;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
}
#news_page .inner article .image-box:after,
#front_news_page .inner article .image-box:after {
  content: "";
  display: block;
  padding-top: 100%;
}
#news_page .inner article .image-box img,
#front_news_page .inner article .image-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#news_page .inner article h3,
#front_news_page .inner article h3 {
  font-size: 15px;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ ProN", "メイリオ", "MS UI Gothic", Sans;
}

#front_news_page {
  padding-top: 0;
}
@media only screen and (min-width: 768px) {
  #front_news_page .container-wrap {
    background: linear-gradient(to right, #F8F8F8 10%, white 10%);
  }
}
@media only screen and (min-width: 1280px) {
  #front_news_page .container-wrap {
    background: linear-gradient(to right, #F8F8F8 calc((100% - 1200px) / 2), white calc((100% - 1200px) / 2));
  }
}
@media only screen and (min-width: 992px) {
  #front_news_page .category {
    display: flex;
    align-items: center;
  }
}
#front_news_page .category + p {
  font-size: 13px;
  margin-top: 20px;
}
#front_news_page h3 {
  margin-top: 20px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 20px;
}
@media only screen and (min-width: 992px) {
  #front_news_page h3 {
    margin-top: 0;
    margin-left: 20px;
  }
}
#front_news_page .container {
  padding: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #front_news_page .container {
    display: flex;
  }
}
#front_news_page .tag {
  color: #fff;
  padding: 1px 15px;
  margin-left: 20px;
  background: #469DCA;
  width: 100px;
  display: inline-block;
  text-align: center;
  font-size: 13px;
}
#front_news_page .estate {
  background: #0070AA;
}
#front_news_page:before {
  content: " ";
  width: 78px;
  height: 252px;
  background: url(../img/news-deco-title-01.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -75px;
  top: 0;
}
@media only screen and (max-width: 991px) {
  #front_news_page:before {
    width: 40px;
    height: 126px;
    left: -40px;
  }
}
#front_news_page .heading {
  background: #F8F8F8;
  text-align: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media only screen and (min-width: 768px) {
  #front_news_page .heading {
    width: 28%;
    padding-left: 34px;
    max-width: 344px;
    padding-right: 60px;
    text-align: left;
  }
}
@media only screen and (min-width: 1280px) {
  #front_news_page .heading {
    padding-top: 120px;
    padding-left: 0;
  }
}
#front_news_page .inner {
  margin: 120px 40px;
}
@media only screen and (max-width: 1279px) {
  #front_news_page .inner {
    margin: 64px 40px;
  }
}
@media only screen and (max-width: 575px) {
  #front_news_page .inner {
    margin-left: 20px;
    margin-right: 20px;
  }
}

#sevice_industry {
  background: #F2F6FC;
}
#sevice_industry .container-wrap .container .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
#sevice_industry .container-wrap .container .box {
  display: flex;
  align-items: center;
  width: 50%;
  max-width: 470px;
  border: 4px solid #0A3973;
  margin-bottom: 20px;
  background: #fff;
  padding-right: 20px;
}
@media only screen and (max-width: 991px) {
  #sevice_industry .container-wrap .container .box {
    width: 100%;
    max-width: 100%;
  }
}
#sevice_industry .container-wrap .container .box .image-box {
  min-width: 100px;
  height: 100px;
  background: #0A3973;
  position: relative;
}
#sevice_industry .container-wrap .container .box .image-box img {
  width: auto;
  height: 60%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sevice_industry .container-wrap .container .box:nth-of-type(2) .image-box img {
  height: 57%;
}
#sevice_industry .container-wrap .container .box:nth-of-type(3) .image-box img {
  height: 60%;
}
#sevice_industry .container-wrap .container .box .text-box {
  margin-left: 35px;
}
@media only screen and (max-width: 767px) {
  #sevice_industry .container-wrap .container .box .text-box {
    margin-left: 20px;
  }
}
#sevice_industry .container-wrap .container .box .text-box h3 {
  font-weight: 700;
}
#sevice_industry .container-wrap .container .box .text-box p {
  margin-top: 30px;
}
#sevice_industry .container-wrap .container article {
  padding-top: 44px;
}
#sevice_industry .container-wrap .container article h3 {
  font-weight: bold;
  text-align: center;
}
#sevice_industry .container-wrap .container article ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  position: relative;
}
#sevice_industry .container-wrap .container article ul li {
  background: #fff;
  margin: 20px 10px;
  padding: 5px 15px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #sevice_industry .container-wrap .container article ul li {
    margin: 10px;
  }
}
#sevice_industry .container-wrap .container article ul:after {
  content: "など";
  top: 50%;
}
@media only screen and (min-width: 1080px) {
  #sevice_industry .container-wrap .container article ul:after {
    position: absolute;
    top: auto;
    right: -35px;
    bottom: 26px;
  }
}

.temp {
  padding-top: 0;
}
.temp .container-wrap {
  background: #F8F8F8;
}
@media only screen and (min-width: 576px) {
  .temp .container-wrap .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .temp .container-wrap .container {
    padding: 120px 0;
  }
}
@media only screen and (max-width: 767px) {
  .temp .container-wrap .container {
    width: 100%;
  }
}
.temp .container-wrap .container .heading02 {
  margin-bottom: 40px;
}
.temp .container-wrap .container a {
  transition: all 0.3s;
}
.temp .container-wrap .container a article {
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .temp .container-wrap .container a article {
    width: 100%;
  }
}
.temp .container-wrap .container article {
  padding: 30px 30px 0;
  background: #fff;
}
.temp .container-wrap .container article .image-box {
  width: 100%;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.temp .container-wrap .container article .image-box span {
  position: absolute;
  top: 20px;
  z-index: 1;
  color: #fff;
  background: #0070AA;
  padding: 6px 24px;
  line-height: 1.5em;
  font-size: 13px;
}
.temp .container-wrap .container article .image-box span.spanA {
  background: #469DCA;
}
.temp .container-wrap .container article .image-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.temp .container-wrap .container article .image-box:after {
  content: "";
  display: block;
  padding-top: 73.3%;
}
.temp .container-wrap .container article .text-box {
  font-weight: 700;
  color: #011938;
  font-size: 15px;
  padding: 25px 0px 0px;
  letter-spacing: 0;
  text-align: center;
  min-height: 110px;
}
.temp .container-wrap .container article .text-box .title {
  display: block;
}
.temp .container-wrap .slick-list-wrap {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .temp .container-wrap .slick-current article {
    border-radius: 10px;
  }
}
@media only screen and (min-width: 576px) {
  .temp .container-wrap .slick-current article {
    border-radius: 10px 0 0 10px;
  }
  .temp .container-wrap .slick-current + .slick-active article {
    position: relative;
  }
  .temp .container-wrap .slick-current + .slick-active article:before, .temp .container-wrap .slick-current + .slick-active article:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background: #F2F6FC;
    top: 0;
    bottom: 0;
  }
  .temp .container-wrap .slick-current + .slick-active article:before {
    left: 0;
  }
  .temp .container-wrap .slick-current + .slick-active article:after {
    right: 0;
  }
  .temp .container-wrap .slick-current + .slick-active + .slick-active article {
    border-radius: 0 10px 10px 0;
  }
}
@media only screen and (max-width: 575px) {
  .temp .container-wrap .slick-slide {
    height: 80%;
  }
  .temp .container-wrap .slick-slide.slick-current {
    height: 100%;
  }
}
.temp .container-wrap .slick-prev,
.temp .container-wrap .slick-next {
  z-index: 1;
  background: #469DCA;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.temp .container-wrap .slick-prev:before,
.temp .container-wrap .slick-next:before {
  content: " " !important;
  width: 39px;
  height: 38px;
  opacity: 1;
  background: url(../img/slick-arrow-left.png);
  background-repeat: no-repeat;
  background-size: 7px 11px;
  background-position: center;
  display: block;
}
.temp .container-wrap .slick-prev {
  left: -20px;
}
.temp .container-wrap .slick-next {
  right: -20px;
}
.temp .container-wrap .slick-next:before {
  transform: rotate(180deg);
  transform-origin: center center;
}

#service_work .container-wrap {
  background: #F8F8F8;
}

#temp-multiple-items-02 .slick-track {
  margin-left: 0 !important;
}
#temp-multiple-items-02 article {
  padding-bottom: 30px;
}
#temp-multiple-items-02 article .text-box {
  padding: 0;
  margin-top: 30px;
  font-weight: normal;
  text-align: left;
}
#temp-multiple-items-02 article .text-box .title {
  font-weight: bold;
  text-align: center;
}

#service-temp .container-wrap {
  background: linear-gradient(90deg, #469DCA 0%, #0070AA 100%);
}
#service-temp .container-wrap .heading h2,
#service-temp .container-wrap .heading div {
  color: #fff;
}

.image-box-wrap .image-box,
.blockE .inner .image-box,
#about .image-box {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.image-box-wrap .image-box img,
.blockE .inner .image-box img,
#about .image-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.image-box-wrap .image-box:after,
.blockE .inner .image-box:after,
#about .image-box:after {
  content: "";
  display: block;
  padding-top: 50%;
}

.blockE .inner .text-box {
  padding: 64px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .blockE .inner .text-box {
    padding: 30px 20px;
  }
}
.blockE .inner .text-box > h3 {
  font-weight: bold;
}
.blockE .inner .text-box > h3 + p {
  margin-top: 30px;
  letter-spacing: 0px;
  text-align: justify;
}
@media only screen and (min-width: 768px) {
  .blockE .inner .text-box .heading {
    text-align: left;
  }
}
.blockE .inner .text-box .heading + h3 {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .blockE .inner .text-box .heading + h3 {
    text-align: left;
  }
}
.blockE .inner .text-box a {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .blockE .inner .text-box a {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .section01 .heading + p {
    text-align: left;
  }
  .section01 .heading + p br {
    display: none;
  }
}
.section01 .container-wrap {
  background: #F2F6FC;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media only screen and (min-width: 1280px) {
  .section01 .container-wrap {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.section01 .container {
  background: #fff;
}
@media only screen and (max-width: 575px) {
  .section01 .container {
    width: calc(100% - 40px);
  }
}
@media only screen and (min-width: 768px) {
  .section01 .blockE {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .section01 .inner {
    width: calc((100% - 40px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  .section01 .inner {
    margin-top: 40px;
  }
}
.section01 .inner a {
  border-radius: 10px;
  overflow: hidden;
  display: block;
  margin-bottom: 30px;
}
.section01 .inner a:hover .image-box img {
  transform: scale(1.1);
}
.section01 .inner .image-box:after {
  padding-top: 37.6%;
}
.section01 .inner .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background: #0A3973;
  padding: 30px 27px;
}
@media only screen and (max-width: 1279px) {
  .section01 .inner .title {
    flex-direction: column;
  }
}
.section01 .inner .title span {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.section01 .inner .title span svg {
  margin-left: 10px;
}
.section01 .inner:last-of-type .title {
  background: #0070AA;
}

@media only screen and (max-width: 767px) {
  #section01 .heading + p + P span {
    display: block;
  }
}

#section01-service .container {
  background: #F2F6FC;
  padding: 0;
}
#section01-service .title {
  align-items: flex-start;
  position: relative;
}
#section01-service .title h3 {
  margin-left: 0;
}
#section01-service .title span {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#section01-service .title span svg {
  margin-left: 0;
}
#section01-service .image-box:after {
  padding-top: 32.9%;
}
#section01-service .inner a {
  margin-bottom: 0;
}

#section02 .heading div {
  line-height: 1.5em;
}
#section02 .heading .heading-small {
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #section02 .heading + p + p span {
    display: block;
  }
}
#section02 .container-wrap:last-of-type {
  background: #F2F6FC;
}
#section02 .container-wrap .container {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1280px) {
  #section02 .container-wrap .container {
    padding-top: 120px;
  }
}
#section02 .container-wrap .blockE {
  display: flex;
}
@media only screen and (max-width: 1279px) {
  #section02 .container-wrap .blockE {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1280px) {
  #section02 .container-wrap .blockE {
    align-items: flex-start;
  }
}
#section02 .container-wrap .blockE .inner {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  width: 100%;
}
#section02 .container-wrap .blockE .inner .image-box img {
  transition: all 0.3s;
}
#section02 .container-wrap .blockE .inner .image-box:after {
  padding-top: 66%;
}
#section02 .container-wrap .blockE .inner:hover .image-box img {
  transform: scale(1.1);
}
@media only screen and (min-width: 1280px) {
  #section02 .container-wrap .blockE .inner:nth-of-type(2n) {
    margin-top: 64px;
  }
}
@media only screen and (max-width: 1279px) {
  #section02 .container-wrap .blockE .inner {
    width: calc((100% - 40px) / 2);
  }
  #section02 .container-wrap .blockE .inner:nth-of-type(n+3) {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #section02 .container-wrap .blockE .inner {
    width: 100%;
  }
  #section02 .container-wrap .blockE .inner:nth-of-type(n+2) {
    margin-top: 40px;
  }
}
#section02 .container-wrap .blockE .inner .text-box {
  padding: 30px;
}
#section02 .container-wrap .blockE .inner .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#section02 .container-wrap .blockE .inner .title .heading div {
  font-size: 20px;
}
#section02 .container-wrap .blockE .inner .title .heading .heading-title {
  font-size: 13px;
}
@media only screen and (max-width: 1279px) {
  #section02 .container-wrap .blockE .inner .title .heading .heading-title {
    text-align: left;
  }
}
#section02 .container-wrap .blockE .inner .title span {
  width: 20px;
  height: 20px;
  background: #469DCA;
  position: relative;
  border-radius: 100%;
}
#section02 .container-wrap .blockE .inner .title span svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#section02 .container-wrap .blockE .inner .title + p {
  text-align: left;
  margin-top: 20px;
}

#whyus {
  position: relative;
}
#whyus:after {
  content: "";
  position: absolute;
  width: 100%;
  right: 0;
  top: 0;
  height: 400px;
  background: linear-gradient(90deg, #469DCA 0%, #0070AA 100%);
  z-index: -1;
}
#whyus:before {
  content: "";
  position: absolute;
  width: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  background: #F2F6FC;
  z-index: -2;
}
#whyus .container:last-of-type {
  margin-top: -64px;
}
#whyus .blockE {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#whyus .blockE a {
  width: 48%;
  margin-bottom: 40px;
  background: #fff;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 575px) {
  #whyus .blockE a {
    width: 100%;
  }
}
#whyus .blockE a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border: 42px solid transparent;
  border-right-color: #0A3973;
  border-bottom: 0;
}
#whyus .blockE a:before {
  content: "";
  width: 7px;
  height: 11px;
  background: url("../img/btn-arrow-right-3.svg");
  background-repeat: no-repeat;
  position: absolute;
  right: 9px;
  bottom: 7px;
  z-index: 1;
}
#whyus .blockE a:hover {
  box-shadow: rgba(0, 0, 0, 0.6) 5px 5px;
  transition: all 0.3s;
}
#whyus .blockE a:hover .image-box img {
  transform: scale(1.1);
}
#whyus .blockE a .inner .text-box {
  padding: 40px;
}
@media only screen and (max-width: 767px) {
  #whyus .blockE a .inner {
    width: 100%;
  }
}

#about {
  padding-top: 0;
}
#about .container-wrap .image-box {
  width: 50%;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  #about .container-wrap .image-box {
    width: 100%;
  }
}
#about .container-wrap .image-box:after {
  padding-top: 593px;
}
@media only screen and (min-width: 1280px) {
  #about .container-wrap .image-box:after {
    padding-top: 74%;
  }
}
@media only screen and (max-width: 991px) {
  #about .container-wrap .image-box:after {
    padding-top: 678px;
  }
}
@media only screen and (max-width: 767px) {
  #about .container-wrap .image-box:after {
    padding-top: 74%;
  }
}
#about .container-wrap:after {
  padding-top: 74%;
}
#about .container-wrap .blockE {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  #about .container-wrap .blockE {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
#about .container-wrap .blockE .inner {
  width: 46%;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  #about .container-wrap .blockE .inner {
    width: 100%;
  }
}
#about .container-wrap .blockE .inner .text-box {
  padding: 0;
}

#service .container-wrap:nth-of-type(2) {
  background: #F2F6FC;
}
#service .container-wrap:nth-of-type(2) .slick-dots li button:before {
  content: " " !important;
  height: 5px !important;
  background: #011938;
  border-radius: 5px;
}
#service .container-wrap:nth-of-type(2) .slick-dots li.slick-active button:before {
  background: #0A3973;
}
#service .container-wrap:nth-of-type(2) .slick-dots {
  bottom: 0px !important;
  position: relative !important;
  margin: 20px 0 0 !important;
}
#service .container-wrap:nth-of-type(2) .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
#service .container-wrap:nth-of-type(2) .blockE .inner {
  display: flex;
  margin-bottom: 40px;
}
#service .container-wrap:nth-of-type(2) .blockE .inner:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  #service .container-wrap:nth-of-type(2) .blockE .inner {
    display: block;
    margin-bottom: 0;
  }
}
#service .container-wrap:nth-of-type(2) .blockE .inner .image-box {
  min-width: 460px;
}
@media only screen and (max-width: 991px) {
  #service .container-wrap:nth-of-type(2) .blockE .inner .image-box {
    min-width: auto;
  }
}
#service .container-wrap:nth-of-type(2) .blockE .inner .image-box:after {
  padding-top: 88%;
}
#service .container-wrap:nth-of-type(2) .blockE .inner .text-box {
  padding: 0;
  width: 100%;
  text-align: left;
  background: #fff;
}
#service .container-wrap:nth-of-type(2) .blockE .inner .text-box .title {
  background: #011938;
  color: #fff;
  position: relative;
  padding: 40px;
}
@media only screen and (max-width: 991px) {
  #service .container-wrap:nth-of-type(2) .blockE .inner .text-box .title {
    padding: 30px;
  }
}
#service .container-wrap:nth-of-type(2) .blockE .inner .text-box .title h3 {
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  #service .container-wrap:nth-of-type(2) .blockE .inner .text-box .title h3 {
    font-size: 20px;
  }
}
#service .container-wrap:nth-of-type(2) .blockE .inner .text-box .title h3 span {
  background: #0A3973;
  padding: 0 5px;
}
#service .container-wrap:nth-of-type(2) .blockE .inner .text-box .title h3 + P {
  margin-top: 30px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "游明朝体", "MS明朝", "MSP明朝", serif;
  font-weight: bold;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  #service .container-wrap:nth-of-type(2) .blockE .inner .text-box .title h3 + P {
    font-size: 18px;
  }
}
#service .container-wrap:nth-of-type(2) .blockE .inner .text-box .title img {
  width: 30%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
}
#service .container-wrap:nth-of-type(2) .blockE .inner .text-box .title + p {
  padding: 40px;
}
@media only screen and (max-width: 991px) {
  #service .container-wrap:nth-of-type(2) .blockE .inner .text-box .title + p {
    padding: 30px;
  }
}
#service .container-wrap:nth-of-type(2) .blockE .inner:first-of-type .text-box .title img, #service .container-wrap:nth-of-type(2) .blockE .inner:last-of-type .text-box .title img {
  transform: translateY(28%);
}

#service_flow ol {
  list-style: none;
  counter-reset: my-awesome-counter;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  #service_flow ol {
    justify-content: space-around;
  }
}
@media only screen and (max-width: 767px) {
  #service_flow ol {
    justify-content: center;
  }
}
#service_flow ol .inner {
  counter-increment: my-awesome-counter;
  position: relative;
  max-width: 293px;
  margin-top: 64px;
}
@media only screen and (max-width: 767px) {
  #service_flow ol .inner {
    max-width: 100%;
  }
}
#service_flow ol .inner .image-box {
  z-index: -1;
}
#service_flow ol .inner .image-box:after {
  padding-top: 68%;
}
#service_flow ol .inner h3 {
  background: #0A3973;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 42px;
  transform: translateY(-50%);
  margin: 0 auto;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0;
}
#service_flow ol .inner:before, #service_flow ol .inner:after {
  left: 20px;
  top: 0;
  display: block;
  color: #0A3973;
  font-weight: bold;
  z-index: 1;
}
#service_flow ol .inner:before {
  content: counter(my-awesome-counter) " ";
  font-size: 60px;
  position: relative;
}
#service_flow ol .inner:after {
  content: "STEP";
  font-size: 18px;
  position: absolute;
  transform: rotate(-90deg);
  left: -20px;
  top: 0;
}

.message-section {
  background: #F2F6FC;
  padding-bottom: 64px;
}
@media only screen and (min-width: 1280px) {
  .message-section {
    padding-bottom: 120px;
  }
}
.message-section .container {
  background: #fff;
}
.message-section .heading {
  text-align: left;
}
.message-section .blockE .inner {
  margin-top: 40px;
}
@media only screen and (min-width: 992px) {
  .message-section .blockE .inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  .message-section .blockE .inner .text-box,
.message-section .blockE .inner .image-box {
    width: calc((100% - 40px) / 2);
  }
}
.message-section .blockE .inner .image-box {
  border-radius: 10px;
}
.message-section .blockE .inner .image-box img {
  height: 50%;
}
.message-section .blockE .inner .image-box img:last-of-type {
  top: auto;
  bottom: 0;
}
.message-section .blockE .inner .image-box:after {
  padding-top: 96.9%;
}
.message-section .blockE .inner .text-box {
  text-align: left;
  padding: 0;
}
@media only screen and (min-width: 992px) {
  .message-section .blockE .inner .text-box {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .message-section .blockE .inner .text-box {
    margin-top: 40px;
  }
}
.message-section .blockE .inner .text-box p strong {
  font-size: 20px;
  line-height: 2em;
  color: #0A3973;
}
.message-section .blockE .inner .text-box p + p {
  margin-top: 20px;
}
.message-section .blockE .inner .text-box p + p + p {
  font-weight: bold;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "游明朝体", "MS明朝", "MSP明朝", serif;
}
.message-section .blockE .inner .text-box p + p + p span {
  font-size: 1.33em;
}

#message,
#one_time_fee_business_model,
#our_mission,
#company,
#access {
  padding-top: 64px;
  background: #F2F6FC;
}
@media only screen and (min-width: 1280px) {
  #message,
#one_time_fee_business_model,
#our_mission,
#company,
#access {
    padding-top: 120px;
  }
}
#message .container,
#one_time_fee_business_model .container,
#our_mission .container,
#company .container,
#access .container {
  background: #fff;
}

#message .blockE p {
  margin-bottom: 15px;
}
#message .blockE .font-deco {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "游明朝体", "MS明朝", "MSP明朝", serif;
  font-size: 18px;
  text-align: right;
}
#message .blockE .inner {
  margin-top: 40px;
}
@media only screen and (min-width: 992px) {
  #message .blockE .inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  #message .blockE .inner .image-box {
    min-width: 350px;
  }
}
#message .blockE .inner .image-box {
  border-radius: 10px;
}
#message .blockE .inner .image-box:after {
  padding-top: 65%;
}
#message .blockE .inner .text-box {
  text-align: left;
  padding: 0;
}
@media only screen and (min-width: 992px) {
  #message .blockE .inner .text-box {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 991px) {
  #message .blockE .inner .text-box {
    margin-top: 40px;
  }
}

.form {
  display: flex;
  align-items: center;
  position: relative;
}
.form dt,
.form dd {
  padding: 20px 20px;
}
.form dt {
  min-width: 125px;
  text-align: center;
  color: #0A3973;
}
.form dt:after {
  content: "";
  border-bottom: 2px solid #0A3973;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 125px;
}
.form dd {
  border-bottom: 2px solid #DDDDDD;
  flex-grow: 1;
  text-align: left;
}
.form dd span {
  font-size: 13px;
}
.form svg {
  vertical-align: sub;
}

#company .inner {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (min-width: 992px) {
  #company .inner {
    flex-direction: row-reverse;
  }
}
#company .inner .image-box,
#company .inner .text-box {
  width: calc((100% - 40px) / 2);
}
@media only screen and (max-width: 991px) {
  #company .inner .image-box,
#company .inner .text-box {
    width: 100%;
  }
}
#company .inner .text-box {
  letter-spacing: 0;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  #company .inner .text-box {
    padding-top: 20px;
  }
}
#company .inner .image-box {
  border-radius: 10px;
}
#company .inner .image-box img {
  height: 50%;
}
#company .inner .image-box img:last-of-type {
  top: auto;
  bottom: 0;
}
#company .inner .image-box:after {
  padding-top: 96.9%;
}
#company .inner .form:first-of-type dt,
#company .inner .form:first-of-type dd {
  padding-top: 0;
}
@media only screen and (min-width: 430px) {
  #company .inner .form .word-wrap-outer .word-wrap {
    display: flex;
    width: 100%;
    max-width: 184.5px;
  }
  #company .inner .form .word-wrap-outer .word-wrap:first-of-type div:last-of-type {
    margin-left: 15px;
  }
  #company .inner .form .word-wrap-outer .word-wrap:last-of-type {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 429px) {
  #company .inner .form .word-wrap-outer .word-wrap:first-of-type {
    margin-bottom: 20px;
  }
}

#history {
  background: #F2F6FC;
}
#history .container {
  background: #fff;
  padding-top: 0;
}
#history .text-box {
  padding: 0;
}
#history .form dt {
  min-width: 155px;
  padding-left: 10px;
  padding-right: 10px;
}
#history .form dt:after {
  width: 155px;
}

#our_mission {
  background: #F2F6FC;
}
#our_mission .container {
  background: #fff;
}
#our_mission .deco-font {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "游明朝体", "MS明朝", "MSP明朝", serif;
  color: #0A3973;
}
@media only screen and (max-width: 575px) {
  #our_mission .deco-font {
    font-size: 16px;
  }
}
#our_mission article {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "游明朝体", "MS明朝", "MSP明朝", serif;
  color: #0A3973;
}
#our_mission article img {
  width: 157px;
  height: auto;
  margin: 64px auto 10px;
}
@media only screen and (max-width: 575px) {
  #our_mission article img {
    width: 150px;
  }
}
#our_mission article img + h3 {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 34px;
}
@media only screen and (max-width: 575px) {
  #our_mission article img + h3 {
    font-size: 26px;
  }
}
#our_mission article .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
@media only screen and (min-width: 576px) {
  #our_mission article .inner {
    width: calc(100% + 40px);
    left: -20px;
  }
}
#our_mission article .inner section {
  background: #F2F6FC;
  width: 100%;
  padding: 30px;
  font-weight: bold;
  font-size: 20px;
  border-radius: 10px;
  margin-top: 30px;
  max-width: 248px;
  margin: 30px 15px 0;
}
@media only screen and (max-width: 575px) {
  #our_mission article .inner section {
    font-size: 16px;
  }
}
#our_mission article .inner section h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media only screen and (max-width: 575px) {
  #our_mission article .inner section h4 {
    font-size: 20px;
  }
}

#access {
  padding-bottom: 64px;
}
@media only screen and (min-width: 1280px) {
  #access {
    padding-bottom: 120px;
  }
}
#access .blockE {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#access .blockE .inner {
  width: 100%;
}
#access .map {
  height: 500px;
}
@media only screen and (max-width: 991px) {
  #access .map {
    height: 370px;
  }
}
@media only screen and (max-width: 767px) {
  #access .map {
    height: 540px;
  }
}
@media only screen and (max-width: 575px) {
  #access .map {
    height: 90vw;
  }
}
#access .map iframe {
  height: 100%;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #access .text-box {
    padding: 40px 0;
  }
}

#privacy_policy {
  background: #F2F6FC;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 1279px) {
  #privacy_policy {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
#privacy_policy .container {
  background: #fff;
}
@media only screen and (max-width: 575px) {
  #privacy_policy .container {
    width: calc(100% - 40px);
  }
}
#privacy_policy h2,
#privacy_policy h3,
#privacy_policy h4,
#privacy_policy strong {
  color: #011938;
}
#privacy_policy h2 {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 64px;
}
#privacy_policy h3 {
  font-weight: bold;
}
#privacy_policy article {
  margin-bottom: 64px;
}
#privacy_policy article h4 {
  margin-top: 40px;
  font-weight: bold;
}
#privacy_policy article p {
  margin-top: 30px;
}
#privacy_policy article section {
  padding-top: 0;
}
#privacy_policy ol {
  margin-top: 30px;
  list-style: none;
  padding-left: 20px;
  counter-reset: my-awesome-counter;
  justify-content: space-between;
}
#privacy_policy ol li {
  counter-increment: my-awesome-counter;
}
#privacy_policy ol li:before {
  content: counter(my-awesome-counter) " ";
  width: 1em;
  margin-left: -20px;
  padding-right: 10px;
}

#footer .container-wrap:nth-of-type(1) .inner {
  color: #fff;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#footer .container-wrap:nth-of-type(1) .inner .innerL,
#footer .container-wrap:nth-of-type(1) .inner .innerR {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  #footer .container-wrap:nth-of-type(1) .inner .innerL,
#footer .container-wrap:nth-of-type(1) .inner .innerR {
    width: 50%;
  }
}
#footer .container-wrap:nth-of-type(1) .inner .innerL h3,
#footer .container-wrap:nth-of-type(1) .inner .innerR h3 {
  font-size: 24px;
}
#footer .container-wrap:nth-of-type(1) .inner .innerL:after,
#footer .container-wrap:nth-of-type(1) .inner .innerR:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
#footer .container-wrap:nth-of-type(1) .inner .innerL .bg-img,
#footer .container-wrap:nth-of-type(1) .inner .innerR .bg-img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 20%;
}
#footer .container-wrap:nth-of-type(1) .inner .innerL > .deco,
#footer .container-wrap:nth-of-type(1) .inner .innerR > .deco {
  margin-bottom: 30px;
  font-size: 24px;
}
#footer .container-wrap:nth-of-type(1) .inner .innerL > .deco + a,
#footer .container-wrap:nth-of-type(1) .inner .innerR > .deco + a {
  font-size: 40px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  #footer .container-wrap:nth-of-type(1) .inner .innerL > .deco + a,
#footer .container-wrap:nth-of-type(1) .inner .innerR > .deco + a {
    font-size: 40px;
  }
}
#footer .container-wrap:nth-of-type(1) .inner .innerL > .deco + a + p,
#footer .container-wrap:nth-of-type(1) .inner .innerR > .deco + a + p {
  font-size: 13px;
  margin: 0 auto;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #footer .container-wrap:nth-of-type(1) .inner .innerL,
#footer .container-wrap:nth-of-type(1) .inner .innerR {
    width: 100%;
  }
}
#footer .container-wrap:nth-of-type(1) .inner .innerL svg,
#footer .container-wrap:nth-of-type(1) .inner .innerR svg {
  transition: all 0.3s;
  fill: #fff;
}
#footer .container-wrap:nth-of-type(1) .inner .innerR {
  position: relative;
}
#footer .container-wrap:nth-of-type(1) .inner .innerR:after {
  background: #0070AA;
}
#footer .container-wrap:nth-of-type(1) .inner .innerR .deco {
  margin-bottom: 44px;
}
#footer .container-wrap:nth-of-type(1) .inner .innerR .deco + a {
  margin-bottom: 46px;
}
#footer .container-wrap:nth-of-type(1) .inner .innerR .deco + a svg {
  width: auto;
  height: 33px;
}
#footer .container-wrap:nth-of-type(1) .inner .innerR .deco + a:hover svg {
  transform: rotate(-20deg);
}
#footer .container-wrap:nth-of-type(1) .inner .innerL {
  position: relative;
}
#footer .container-wrap:nth-of-type(1) .inner .innerL:after {
  background: #469DCA;
}
#footer .container-wrap:nth-of-type(1) .inner .innerL a {
  background: #fff;
  max-width: 319px;
  width: 100%;
  font-size: 18px !important;
  font-weight: bold;
  padding: 33px 0;
  height: 86px;
  border-radius: 60px;
  height: 86px;
  margin-bottom: 30px;
}
#footer .container-wrap:nth-of-type(1) .inner .innerL a span:first-of-type {
  color: #469DCA;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#footer .container-wrap:nth-of-type(1) .inner .innerL a span:last-of-type {
  right: 20px;
  width: 20px;
  height: 20px;
  background: #469DCA;
  position: absolute;
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
}
#footer .container-wrap:nth-of-type(1) .inner .innerL a span:last-of-type svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  transform: translate(-50%, -50%);
}
#footer .container-wrap:nth-of-type(1) .inner .innerL a:hover {
  transform: scale(1.05);
}
#footer .container-wrap:nth-of-type(1) .inner .innerL a svg {
  fill: #fff;
  width: 18px;
  height: auto;
  margin-right: 5px;
}
#footer .container-wrap:last-of-type {
  background: #0A3973;
  color: #fff;
}
@media only screen and (max-width: 1279px) {
  #footer .container-wrap:last-of-type .container {
    padding-bottom: 152px;
  }
}
#footer .container-wrap:last-of-type .footer-logo {
  margin: 0 auto 30px;
  text-align: center;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1279px) {
  #footer .container-wrap:last-of-type .footer-logo {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  #footer .container-wrap:last-of-type .footer-logo {
    flex-direction: column;
  }
}
#footer .container-wrap:last-of-type .footer-logo img {
  max-width: 291px;
  height: auto;
  width: 100%;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  #footer .container-wrap:last-of-type .footer-logo img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#footer .container-wrap:last-of-type .footer-logo img + p {
  line-height: 1.5em;
  font-size: 13px;
}
#footer .container-wrap:last-of-type .inner {
  display: flex;
  align-items: flex-end;
  margin: 0 auto;
  justify-content: space-between;
  letter-spacing: 0;
}
@media only screen and (max-width: 1279px) {
  #footer .container-wrap:last-of-type .inner {
    flex-direction: column;
    align-items: center;
  }
}
#footer .container-wrap:last-of-type .inner div:last-of-type {
  font-size: 13px;
}
@media only screen and (max-width: 1279px) {
  #footer .container-wrap:last-of-type .inner div:last-of-type {
    margin-top: 30px;
  }
}

#back-to-top span {
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  margin: 10px;
  font-weight: bold;
  margin-bottom: 0px;
  transition: all 0.3s;
  display: flex;
  color: #469DCA;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}
@media only screen and (max-width: 575px) {
  #back-to-top span {
    margin: 10px 0 0;
  }
}
#back-to-top:before {
  position: relative;
  display: block;
  content: "";
  height: 80px;
  width: 4px;
  background: #469DCA;
  background-repeat: no-repeat;
  margin: auto;
}

#header {
  z-index: 11111;
}
#header .header-pc .containerR nav ul li a {
  color: #0A3973;
}
#header .header-pc .containerR nav ul li a:hover {
  color: #0070AA;
}
#header .header-sp {
  box-shadow: none;
}
#header .header-sp .openbtn1.active {
  width: 68px;
}
#header .header-sp .openbtn1.active span {
  width: 50% !important;
}
#header .header-sp .openbtn1.active span:nth-of-type(1) {
  top: 23px;
}
#header .header-sp .openbtn1.active span:nth-of-type(3) {
  top: 35px;
}
#header .header-sp #g-nav_sp {
  overflow-y: scroll;
  padding: 30px 0;
}
#header .header-sp #g-nav_sp > ul {
  border-top: 0;
}
#header .header-sp #g-nav_sp > ul > li {
  margin-left: 20px;
  margin-right: 20px;
  border-bottom: 1px solid #fff;
}
#header .header-sp #g-nav_sp > ul > li a {
  padding: 17px 0;
  position: relative;
  font-size: 15px;
  line-height: 1em;
  font-weight: bold;
}
#header .header-sp #g-nav_sp > ul > li a span {
  font-size: 13px;
  margin-left: 10px;
  font-weight: normal;
}

#news_single .btns .previous:before {
  left: 19px;
  top: 26px;
}
#news_single .btns .previous:hover:before {
  left: 10px;
}
#news_single .btns .previous:after {
  transform: rotate(-45deg);
  top: 20px;
}
#news_single .btns .post-btn {
  background: #011938;
}
#news_single .btns .post-btn:last-child {
  background: #0A3973;
}
#news_single .btns .post-btn:last-child:after {
  transform: rotate(-52deg);
  right: 24px;
  left: auto;
  top: 22px;
}
#news_single .btns .post-btn:last-child:before {
  transform: rotate(45deg);
  top: 22px;
}
#news_single .btns .post-btn:last-child:hover:after {
  top: 16px;
}
#news_single .btns .post-btn:last-child:hover:before {
  top: 16px;
  right: 19px;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-round_arrow_03-b {
  border-radius: 0;
}

@media screen and (max-width: 380px) {
  #contact form table .th-title {
    display: inline-block;
    width: 100%;
  }
}
.example-require {
  margin-top: 64px;
  margin-bottom: 20px;
}

.example-require,
.required:before {
  background: #469DCA;
}

#contact {
  background: #F2F6FC;
  padding-top: 64px;
  padding-bottom: 64px;
  /*# response-output */
  /*# response-output */
}
@media only screen and (min-width: 1280px) {
  #contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
#contact .container {
  background: #fff;
}
@media only screen and (max-width: 991px) {
  #contact .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#contact .innerR {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 64px;
  position: relative;
  margin: auto;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  #contact .innerR {
    width: 50%;
  }
}
#contact .innerR h3 {
  font-size: 24px;
}
#contact .innerR a {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 46px;
  color: #0A3973;
}
@media only screen and (max-width: 575px) {
  #contact .innerR a {
    font-size: 30px;
  }
}
#contact .innerR a svg {
  width: auto;
  height: 33px;
  transition: all 0.3s;
  fill: #0A3973;
}
@media only screen and (max-width: 575px) {
  #contact .innerR a svg {
    height: 22px;
  }
}
#contact .innerR a:hover svg {
  transform: rotate(-20deg);
}
#contact .innerR a + p {
  font-size: 13px;
  margin: 20px auto 0;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #contact .innerR {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  #contact .innerR {
    width: 50%;
  }
}
#contact .heading + .inner {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  #contact .heading + .inner > p {
    text-align: left;
  }
}
#contact .btn {
  max-width: 319px;
  width: 100%;
  height: 68px;
  background: #0A3973;
  border-radius: 35px;
}
#contact .btn span {
  right: 20px;
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
}
#contact .btn span svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  transform: translate(-50%, -50%);
  fill: #0A3973;
}
#contact .wpcf7-spinner {
  position: relative;
  bottom: -50px;
}
#contact .wpcf7-submit {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  font-size: 15px;
  font-weight: bold;
}
#contact #reCaptcha {
  margin: 0;
  padding: 12px 0 64px;
  border-top: 1px solid #DBDBDB;
}
#contact ul {
  list-style: none;
  padding-left: 20px;
  margin-top: 40px;
  margin-bottom: 80px;
}
#contact ul li {
  font-size: 13px;
  line-height: 3em;
}
#contact ul li::before {
  content: "•";
  color: #011938;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
#contact .wpcf7 form.invalid .wpcf7-response-output,
#contact .wpcf7 form.unaccepted .wpcf7-response-output,
#contact .wpcf7 form.payment-required .wpcf7-response-output {
  border: none !important;
  color: #fff !important;
  background: #469DCA;
  border-radius: 10px;
}
@media only screen and (max-width: 575px) {
  #contact .wpcf7 form.invalid .wpcf7-response-output,
#contact .wpcf7 form.unaccepted .wpcf7-response-output,
#contact .wpcf7 form.payment-required .wpcf7-response-output {
    text-align: left;
  }
}
#contact .wpcf7-not-valid-tip {
  color: #469DCA !important;
}
#contact .wpcf7 form.sent .wpcf7-response-output {
  border: none !important;
  background: #F2F6FC !important;
}
@media only screen and (max-width: 575px) {
  #contact .wpcf7 form.sent .wpcf7-response-output {
    text-align: left;
  }
}
#contact .wpcf7-radio .wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:after {
  background: #0A3973;
}

#news_page .container .inner .pager span.pages,
#news_page .container .inner .pager span.current {
  background: linear-gradient(215deg, #469DCA 0%, #0070AA 100%);
  border-radius: 0;
}

#news_single .btns {
  background: #F4F4F4;
}

#news_page span.pages {
  display: none !important;
}

#news_page .container .inner .pager span.pages,
#news_page .container .inner .pager a.larger,
#news_page .container .inner .pager a.smaller {
  background: #F2F6FC;
  color: black;
  border-radius: 0;
}

#news_page .pager .nextpostslink,
#news_page .pager .previouspostslink {
  color: #469DCA;
}

#news_page .container .inner dl a dt {
  padding-left: 40px;
}

#reCaptcha > a {
  color: #0A3973;
}

footer .slick-prev,
footer .slick-next {
  z-index: 1;
}
footer .slick-prev:before,
footer .slick-next:before {
  content: " " !important;
  width: 14px;
  height: 11px;
  opacity: 1;
  background: url(../img/slick-arrow-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  display: block;
}
footer .slick-prev:before {
  left: 20px;
}
footer .slick-next:before {
  right: 16px;
  transform: rotate(180deg);
  transform-origin: center center;
}

.text-wrap {
  display: flex !important;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .text-wrap .wpcf7-form-control-wrap {
    max-width: 200px;
  }
}
.text-wrap .label {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  margin-left: 10px;
}

@media only screen and (max-width: 991px) {
  .flex .select-wrap:nth-of-type(2) {
    margin-top: 10px;
  }
}
#contact input[type=file]::-webkit-file-upload-button:after {
  content: "ファイルを選択";
  color: #fff;
  background-color: #212A37;
  font-size: 18px;
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  width: 145px;
  height: 48px;
  transform: translate(-50%, -50%);
  z-index: 5;
}
#contact input[type=file]::file-selector-button:after {
  content: "ファイルを選択";
  color: #fff;
  background-color: #212A37;
  font-size: 18px;
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  width: 145px;
  height: 48px;
  transform: translate(-50%, -50%);
  z-index: 5;
}

@media only screen and (min-width: 961px) {
  .flex .text-wrap:first-of-type {
    width: 36.47%;
  }
  .flex .text-wrap:nth-of-type(2), .flex .text-wrap:last-of-type {
    width: 25.4%;
  }
}

.radio-dispear {
  display: none !important;
}/*# sourceMappingURL=style.css.map */