@charset "UTF-8";
/*-------------base-------------*/
/*Webフォント読み込み*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/*使用Webフォント*/
/*使用カラー*/
/*フォントサイズ*/
/*サイト全体のフォント指定*/
html {
  font-size: 10px;
}

body {
  font-family: "Arial", "Noto Sans JP", serif, "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #485760;
}
body br.pc {
  display: block;
}
@media screen and (max-width: 830px) {
  body br.pc {
    display: none;
  }
}
body br.sp {
  display: none;
}
@media screen and (max-width: 830px) {
  body br.sp {
    display: block;
  }
}

/*-------------mixin-------------*/
/*-------------base-------------*/
/*-------------ブレイクポイント-------------*/
/*-------------本文-------------*/
/*-------------フェードアップ-------------*/
/*-------------フェードイン-------------*/
/*-------------フェードアップ左-------------*/
/*-------------フェードアップ右-------------*/
/*-------------回転アニメージョン-------------*/
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*-------------左側から流れるアニメーション-------------*/
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*-------------ズームイン-------------*/
@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*-------------ホバー透過-------------*/
/*-------------画像設定-------------*/
/*-------------擬似要素-------------*/
/*-------------flex space-between-------------*/
/*-------------ボタン-------------*/
/*-------------ボタン(TOP)-------------*/
/*-------------パンくずリスト-------------*/
/*-------------マーカーテキスト-------------*/
/*-------------フォーム入力欄-------------*/
/*-------------フォームテキスト-------------*/
/*-------------チェックボックス-------------*/
/*-------------NEWSリスト-------------*/
/*-------------ページャー-------------*/
/*-------------英語見出し-------------*/
/*-------------丸アイコン-------------*/
/*-------------ニュース、コラムパーツ-------------*/
/*-------------コンテンツ幅-------------*/
/*-------------表-------------*/
/*-------------page-------------*/
/*-------------base-------------*/
/*-------------mixin-------------*/
/*-------------メインビジュアル-------------*/
.top-main-section {
  margin: 80px 0 0 0;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .top-main-section {
    margin: 60px 0 0 0;
  }
}
.top-main-section::after {
  z-index: 1;
  content: "";
  display: inline-block;
  position: relative;
  height: 130px;
  width: 100%;
  background: #0D6EB9;
  position: absolute;
  left: 0;
  bottom: 0;
}
.top-main-section__img {
  padding: 0 80px 0 0;
  position: relative;
  z-index: 2;
  aspect-ratio: 2/1;
}
@media screen and (max-width: 768px) {
  .top-main-section__img {
    padding: 0 42px 0 0;
    aspect-ratio: 2/1.5;
  }
}
.top-main-section__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 8rem 0 0;
  border: solid 5px #0D6EB9;
  border-left: none;
}
@media screen and (max-width: 768px) {
  .top-main-section__img img {
    border-radius: 0 4rem 0 0;
    border: solid 3px #0D6EB9;
    border-left: none;
  }
}
.top-main-section__img img.top-main-section__img-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .top-main-section__img img.top-main-section__img-pc {
    display: none;
  }
}
.top-main-section__img img.top-main-section__img-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-main-section__img img.top-main-section__img-sp {
    display: block;
  }
}
.top-main-section .scroll-txt {
  position: absolute;
  right: 20px;
  bottom: 0;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Open Sans", serif;
  writing-mode: vertical-lr;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-main-section .scroll-txt {
    right: 10px;
  }
}
.top-main-section .scroll-txt::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-arrow-scroll.svg);
  background-size: 7px;
  width: 7px;
  height: 70px;
  margin: 0 0 10px 0;
}

/*-------------すべての動物が幸せに暮らせる社会を-------------*/
.top-about-section {
  background: #0D6EB9;
  position: relative;
}
.top-about-section-inner {
  width: 100%;
  overflow: hidden;
  padding: 40px 0 100px 0;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner {
    padding: 20px 0 80px 0;
  }
}
.top-about-section-inner .en-txt {
  white-space: nowrap;
  font-family: "Open Sans", serif;
  font-size: 14.2rem;
  line-height: 1;
  font-weight: 400;
  color: #1574BD;
  margin: 0;
  animation: scroll-left 10s infinite linear 0.5s both;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .en-txt {
    font-size: 4.8rem;
  }
}
.top-about-section-inner .top-about-section__cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 0 0;
}
@media screen and (max-width: 1100px) {
  .top-about-section-inner .top-about-section__cont {
    flex-flow: column;
    max-width: 540px;
    margin: 0 auto;
    width: auto;
    padding: 40px 20px 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont {
    padding: 20px 20px 0 20px;
  }
}
.top-about-section-inner .top-about-section__cont-img {
  aspect-ratio: 2/1.7;
  opacity: 0;
  transition: all 2000ms;
  width: 50%;
}
.top-about-section-inner .top-about-section__cont-img.is-animated {
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .top-about-section-inner .top-about-section__cont-img {
    width: 100%;
  }
}
.top-about-section-inner .top-about-section__cont-img img {
  border-radius: 0 0 8rem 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-img img {
    border-radius: 0 0 4rem 0;
  }
}
.top-about-section-inner .top-about-section__cont-txt {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  width: 43.93%;
  padding: 0 80px 0 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-txt {
    transform: translate(0, 40px);
  }
}
.top-about-section-inner .top-about-section__cont-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 1100px) {
  .top-about-section-inner .top-about-section__cont-txt {
    width: 100%;
    padding: 60px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-txt {
    padding: 30px 0 0 0;
  }
}
.top-about-section-inner .top-about-section__cont-txt h2 {
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 60px 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-txt h2 {
    font-size: 2.2rem;
    margin: 0 0 20px 0;
  }
}
.top-about-section-inner .top-about-section__cont-txt p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  margin: 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-txt p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.top-about-section-inner .top-about-section__cont-txt p:last-child {
  margin: 0;
}
.top-about-section-inner .top-about-section__cont-txt p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.top-about-section-inner .top-about-section__cont-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-about-section-inner .top-about-section__cont-txt p > a:hover {
    opacity: 1;
  }
}
.top-about-section-inner .top-about-section__cont-txt p span {
  color: #0D6EB9;
  font-weight: 500;
}
.top-about-section-inner .top-about-section__cont-txt .btn-top {
  margin: 80px 0 0 auto;
  max-width: 180px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-txt .btn-top {
    margin: 30px 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-txt .btn-top {
    max-width: 140px;
  }
}
.top-about-section-inner .top-about-section__cont-txt .btn-top a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0 78px 28px 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.top-about-section-inner .top-about-section__cont-txt .btn-top a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-about-section-inner .top-about-section__cont-txt .btn-top a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-txt .btn-top a {
    padding: 0 42px 13px 0;
  }
}
.top-about-section-inner .top-about-section__cont-txt .btn-top a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #fff;
  background-size: 133px;
  width: 133px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 18.5px;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-txt .btn-top a::after {
    bottom: 10.5px;
    background-size: 109px;
    width: 109px;
  }
}
.top-about-section-inner .top-about-section__cont-txt .btn-top a::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-r-w.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-txt .btn-top a::before {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
}
.top-about-section-inner .top-about-section__cont-txt .btn-top a span {
  display: inline-block;
  font-size: 2rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-txt .btn-top a span {
    font-size: 1.6rem;
  }
}
.top-about-section-inner .top-about-section__cont-txt .btn-top-magazine a::after {
  background: #E78401;
  background-size: 134px;
  width: 134px;
}
.top-about-section-inner .top-about-section__cont-txt .btn-top-magazine a::before {
  background: url(../../images/icon-btn-window-o.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-txt .btn-top-magazine a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-about-section-inner .top-about-section__cont-txt .btn-top-magazine a span {
  color: #E78401;
}
.top-about-section-inner .top-about-section__cont-txt .btn-top-business a::after {
  background: #0D94E2;
  background-size: 134px;
  width: 134px;
}
.top-about-section-inner .top-about-section__cont-txt .btn-top-business a::before {
  background: url(../../images/icon-btn-window-b.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-txt .btn-top-business a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-about-section-inner .top-about-section__cont-txt .btn-top-business a span {
  color: #0D94E2;
}
.top-about-section-inner .top-about-section__cont-txt .btn-top-app a::after {
  background: #009544;
  background-size: 134px;
  width: 134px;
}
.top-about-section-inner .top-about-section__cont-txt .btn-top-app a::before {
  background: url(../../images/icon-btn-window-g.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-txt .btn-top-app a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-about-section-inner .top-about-section__cont-txt .btn-top-app a span {
  color: #009544;
}
.top-about-section-inner .top-about-section__cont-txt .btn-top-blue a::after {
  background: #0D6EB9;
}
.top-about-section-inner .top-about-section__cont-txt .btn-top-blue a::before {
  background: url(../../images/icon-btn-r.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-about-section-inner .top-about-section__cont-txt .btn-top-blue a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-about-section-inner .top-about-section__cont-txt .btn-top-blue a span {
  color: #0D6EB9;
}
.top-about-section__animal {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .top-about-section__animal {
    max-width: 60px;
    width: 100%;
    left: 20px;
    transform: none;
    bottom: -20px;
  }
}
.top-about-section__animal img {
  display: block;
  opacity: 0;
  transition: all 2000ms;
}
.top-about-section__animal img.is-animated {
  opacity: 1;
}

/*-------------サービス紹介-------------*/
.top-service-section {
  position: relative;
  padding: 120px 0 0 0;
}
@media screen and (max-width: 768px) {
  .top-service-section {
    padding: 60px 0 0 0;
  }
}
.top-service-section__heading {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0 0 80px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-service-section__heading {
    transform: translate(0, 40px);
  }
}
.top-service-section__heading.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-service-section__heading {
    margin: 0 0 30px 0;
  }
}
.top-service-section__heading .en-txt {
  text-align: center;
  font-size: 6.7rem;
  font-weight: 500;
  font-family: "Open Sans", serif;
  line-height: 1;
  color: #0D6EB9;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  .top-service-section__heading .en-txt {
    font-size: 4.2rem;
  }
}
.top-service-section__heading h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  color: #0D6EB9;
}
.top-service-section__heading--white .en-txt {
  color: #fff;
}
.top-service-section__heading--white h2 {
  color: #fff;
}
.top-service-section__cont {
  position: relative;
  overflow: hidden;
}
.top-service-section__cont::after {
  content: "";
  display: inline-block;
  position: relative;
  height: 180px;
  width: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont::after {
    content: none;
  }
}
.top-service-section__cont:nth-of-type(2n) .top-service-section__cont-inner .top-service-section__cont-img {
  order: 2;
}
.top-service-section__cont:nth-of-type(2n) .top-service-section__cont-inner .top-service-section__cont-txt {
  order: 1;
}
.top-service-section__cont:nth-of-type(2n) .top-service-section__cont-inner .top-service-section__cont-font {
  left: auto;
  right: -40px;
}
.top-service-section__cont-inner {
  padding: 90px 20px 100px 20px;
  margin: 0 0 180px 0;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner {
    padding: 60px 20px;
    margin: 0 0 60px 0;
  }
}
.top-service-section__cont-inner--magazine {
  background: #FBEAD6;
}
.top-service-section__cont-inner--business {
  background: #D7EDFB;
}
.top-service-section__cont-inner--app {
  background: #D6EDE0;
}
.top-service-section__cont-inner .top-service-section__cont-flex {
  max-width: 960px;
  margin: 0 auto;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex {
    max-width: 400px;
    margin: 0 auto;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img {
  width: 32.61%;
  border-radius: 2rem;
  position: relative;
  opacity: 0;
  z-index: 2;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img.is-animated {
  animation: zoomIn 1200ms cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img {
    width: 100%;
    margin: 0 auto;
    border: 1rem;
    order: 2;
  }
}
@media screen and (max-width: 540px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img {
    max-width: 180px;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img img {
    border-radius: 1.5rem;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img--magazine {
  border: solid 10px #E78401;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img--magazine {
    border: solid 5px #E78401;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img--business {
  border: solid 10px #0D94E2;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img--business {
    border: solid 5px #0D94E2;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img--app {
  border: solid 10px #009544;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img--app {
    border: solid 5px #009544;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img .top-service-section__cont-label {
  position: absolute;
  left: -50px;
  top: -100px;
  z-index: -1;
  border-radius: 50%;
  width: 118px;
  height: 118px;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img .top-service-section__cont-label {
    width: 70px;
    height: 70px;
    top: -55px;
    left: -30px;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img .top-service-section__cont-label--magazine {
  background: #E78401;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img .top-service-section__cont-label--business {
  background: #0D94E2;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img .top-service-section__cont-label--app {
  background: #009544;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img .top-service-section__cont-label-inner {
  display: inline-block;
  position: relative;
  width: 100%;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img .top-service-section__cont-label-inner .top-service-section__cont-label-txt {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img .top-service-section__cont-label-inner .top-service-section__cont-label-txt {
    top: 3px;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img .top-service-section__cont-label-inner .top-service-section__cont-label-txt .service-txt {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  font-family: "Open Sans", serif;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img .top-service-section__cont-label-inner .top-service-section__cont-label-txt .service-txt {
    font-size: 1rem;
    margin: 0;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img .top-service-section__cont-label-inner .top-service-section__cont-label-txt .number-txt {
  margin: 0;
  font-size: 5.5rem;
  font-family: "Open Sans", serif;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-img .top-service-section__cont-label-inner .top-service-section__cont-label-txt .number-txt {
    font-size: 2.9rem;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt {
  width: 54.17%;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt {
    transform: translate(0, 40px);
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt {
    width: 100%;
    order: 1;
    margin: 0 0 60px 0;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt h2 {
  margin: 0 0 60px 0;
  max-width: 290px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt h2 {
    margin: 0 auto 30px auto;
    max-width: 250px;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt h2 img {
  width: 100%;
  display: block;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt p:last-child {
  margin: 0;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt p > a:hover {
    opacity: 1;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt p span {
  color: #0D6EB9;
  font-weight: 500;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top {
  margin: 80px 0 0 auto;
  max-width: 180px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top {
    margin: 30px 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top {
    max-width: 140px;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0 78px 28px 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top a {
    padding: 0 42px 13px 0;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #fff;
  background-size: 133px;
  width: 133px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 18.5px;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top a::after {
    bottom: 10.5px;
    background-size: 109px;
    width: 109px;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top a::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-r-w.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top a::before {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top a span {
  display: inline-block;
  font-size: 2rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top a span {
    font-size: 1.6rem;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-magazine a::after {
  background: #E78401;
  background-size: 134px;
  width: 134px;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-magazine a::before {
  background: url(../../images/icon-btn-window-o.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-magazine a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-magazine a span {
  color: #E78401;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-business a::after {
  background: #0D94E2;
  background-size: 134px;
  width: 134px;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-business a::before {
  background: url(../../images/icon-btn-window-b.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-business a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-business a span {
  color: #0D94E2;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-app a::after {
  background: #009544;
  background-size: 134px;
  width: 134px;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-app a::before {
  background: url(../../images/icon-btn-window-g.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-app a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-app a span {
  color: #009544;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-blue a::after {
  background: #0D6EB9;
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-blue a::before {
  background: url(../../images/icon-btn-r.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-blue a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-service-section__cont-inner .top-service-section__cont-flex .top-service-section__cont-txt .btn-top-blue a span {
  color: #0D6EB9;
}
.top-service-section__cont-inner .top-service-section__cont-font {
  position: absolute;
  bottom: -120px;
  left: -40px;
}
@media screen and (max-width: 768px) {
  .top-service-section__cont-inner .top-service-section__cont-font {
    max-width: 200px;
    width: 100%;
    bottom: -30px;
  }
}
.top-service-section__cont-inner .top-service-section__cont-font img {
  display: block;
  width: 100%;
  animation: 8s linear infinite rotation;
}

/*-------------コラム-------------*/
.top-column-section {
  margin: 120px 0 0 0;
  padding: 20px 0 200px 0;
  background: #0D6EB9;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-column-section {
    margin: 60px 0 0 0;
    padding: 20px 0 80px 0;
  }
}
.top-column-section__animal {
  position: absolute;
  right: 20%;
  top: -135px;
}
@media screen and (max-width: 768px) {
  .top-column-section__animal {
    top: -110px;
    max-width: 160px;
  }
}
.top-column-section__animal img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: all 2000ms;
}
.top-column-section__animal img.is-animated {
  opacity: 1;
}
.top-column-section__slide {
  padding: 0;
  margin: 0 0 120px 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .top-column-section__slide {
    margin: 0 0 60px 0;
  }
}
.top-column-section__slide li img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-column-section-inner {
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
.top-column-section-inner .top-column-section__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 80px 0;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__heading {
    flex-flow: column;
    align-items: flex-start;
    margin: 0 0 40px 0;
  }
}
.top-column-section-inner .top-column-section__heading-en {
  margin: 0 0 80px 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__heading-en {
    margin: 0 0 30px 0;
  }
}
.top-column-section-inner .top-column-section__heading-en .en-txt {
  text-align: center;
  font-size: 6.7rem;
  font-weight: 500;
  font-family: "Open Sans", serif;
  line-height: 1;
  color: #0D6EB9;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__heading-en .en-txt {
    font-size: 4.2rem;
  }
}
.top-column-section-inner .top-column-section__heading-en h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  color: #0D6EB9;
}
.top-column-section-inner .top-column-section__heading-en--white .en-txt {
  color: #fff;
}
.top-column-section-inner .top-column-section__heading-en--white h2 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__heading-en {
    transform: translate(0, 40px);
  }
}
.top-column-section-inner .top-column-section__heading-en.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top-column-section-inner .top-column-section__heading-en .en-txt {
  text-align: left;
}
.top-column-section-inner .top-column-section__heading-en h2 {
  text-align: left;
}
.top-column-section-inner .top-column-section__heading .btn-top {
  max-width: 180px;
  width: 100%;
  opacity: 0;
  transition: all 2000ms;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__heading .btn-top {
    max-width: 140px;
  }
}
.top-column-section-inner .top-column-section__heading .btn-top a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0 78px 28px 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.top-column-section-inner .top-column-section__heading .btn-top a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-column-section-inner .top-column-section__heading .btn-top a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__heading .btn-top a {
    padding: 0 42px 13px 0;
  }
}
.top-column-section-inner .top-column-section__heading .btn-top a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #fff;
  background-size: 133px;
  width: 133px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 18.5px;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__heading .btn-top a::after {
    bottom: 10.5px;
    background-size: 109px;
    width: 109px;
  }
}
.top-column-section-inner .top-column-section__heading .btn-top a::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-r-w.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__heading .btn-top a::before {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
}
.top-column-section-inner .top-column-section__heading .btn-top a span {
  display: inline-block;
  font-size: 2rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__heading .btn-top a span {
    font-size: 1.6rem;
  }
}
.top-column-section-inner .top-column-section__heading .btn-top-magazine a::after {
  background: #E78401;
  background-size: 134px;
  width: 134px;
}
.top-column-section-inner .top-column-section__heading .btn-top-magazine a::before {
  background: url(../../images/icon-btn-window-o.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__heading .btn-top-magazine a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-column-section-inner .top-column-section__heading .btn-top-magazine a span {
  color: #E78401;
}
.top-column-section-inner .top-column-section__heading .btn-top-business a::after {
  background: #0D94E2;
  background-size: 134px;
  width: 134px;
}
.top-column-section-inner .top-column-section__heading .btn-top-business a::before {
  background: url(../../images/icon-btn-window-b.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__heading .btn-top-business a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-column-section-inner .top-column-section__heading .btn-top-business a span {
  color: #0D94E2;
}
.top-column-section-inner .top-column-section__heading .btn-top-app a::after {
  background: #009544;
  background-size: 134px;
  width: 134px;
}
.top-column-section-inner .top-column-section__heading .btn-top-app a::before {
  background: url(../../images/icon-btn-window-g.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__heading .btn-top-app a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-column-section-inner .top-column-section__heading .btn-top-app a span {
  color: #009544;
}
.top-column-section-inner .top-column-section__heading .btn-top-blue a::after {
  background: #0D6EB9;
}
.top-column-section-inner .top-column-section__heading .btn-top-blue a::before {
  background: url(../../images/icon-btn-r.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__heading .btn-top-blue a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-column-section-inner .top-column-section__heading .btn-top-blue a span {
  color: #0D6EB9;
}
.top-column-section-inner .top-column-section__heading .btn-top.is-animated {
  opacity: 1;
}
.top-column-section-inner .top-column-section__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__list {
    max-width: 400px;
    margin: 0 auto;
    width: auto;
  }
}
.top-column-section-inner .top-column-section__list li {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__list li {
    transform: translate(0, 40px);
  }
}
.top-column-section-inner .top-column-section__list li.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__list li {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .top-column-section-inner .top-column-section__list li:last-child {
    margin: 0;
  }
}
.top-column-section-inner .top-column-section__list li:nth-of-type(2) {
  transition-delay: 150ms;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__list li:nth-of-type(2) {
    transition-delay: 0ms;
  }
}
.top-column-section-inner .top-column-section__list li:nth-of-type(3) {
  transition-delay: 300ms;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__list li:nth-of-type(3) {
    transition-delay: 0ms;
  }
}
.top-column-section-inner .top-column-section__list li a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.top-column-section-inner .top-column-section__list li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-column-section-inner .top-column-section__list li a:hover {
    opacity: 1;
  }
}
.top-column-section-inner .top-column-section__list li a .top-column-section__thumbnail {
  aspect-ratio: 2/1.7;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__list li a .top-column-section__thumbnail {
    aspect-ratio: 2/1.5;
  }
}
.top-column-section-inner .top-column-section__list li a .top-column-section__thumbnail .top-column-section-inner__time-txt {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 2rem 0 2rem 0;
  background: #0D6EB9;
  padding: 5px 15px;
  margin: 0;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__list li a .top-column-section__thumbnail .top-column-section-inner__time-txt {
    padding: 2px 5px;
    font-size: 1.2rem;
    border-radius: 0.8rem 0 0.8rem 0;
  }
}
.top-column-section-inner .top-column-section__list li a .top-column-section__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
.top-column-section-inner .top-column-section__list li a .top-column-section__title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin: 20px 0 0 0;
  padding: 0 50px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-column-section-inner .top-column-section__list li a .top-column-section__title {
    font-size: 1.5rem;
    padding: 0 40px 0 0;
  }
}
.top-column-section-inner .top-column-section__list li a .top-column-section__title::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-arrow-r-w.svg);
  background-size: 30px;
  width: 30px;
  height: 7px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*-------------お知らせ-------------*/
.top-news-section {
  padding: 120px 20px;
  background: #F5F7F9;
}
@media screen and (max-width: 768px) {
  .top-news-section {
    padding: 60px 20px;
  }
}
.top-news-section-inner {
  max-width: 830px;
  margin: 0 auto;
  width: auto;
}
.top-news-section-inner .top-news-section__heading {
  margin: 0 0 80px 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__heading {
    margin: 0 0 30px 0;
  }
}
.top-news-section-inner .top-news-section__heading .en-txt {
  text-align: center;
  font-size: 6.7rem;
  font-weight: 500;
  font-family: "Open Sans", serif;
  line-height: 1;
  color: #0D6EB9;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__heading .en-txt {
    font-size: 4.2rem;
  }
}
.top-news-section-inner .top-news-section__heading h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  color: #0D6EB9;
}
.top-news-section-inner .top-news-section__heading--white .en-txt {
  color: #fff;
}
.top-news-section-inner .top-news-section__heading--white h2 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__heading {
    transform: translate(0, 40px);
  }
}
.top-news-section-inner .top-news-section__heading.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top-news-section-inner .top-news-section__list {
  padding: 0;
  margin: 0 0 80px 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__list {
    margin: 0 0 40px 0;
  }
}
.top-news-section-inner .top-news-section__list li {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__list li {
    transform: translate(0, 40px);
  }
}
.top-news-section-inner .top-news-section__list li.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top-news-section-inner .top-news-section__list li:last-child a {
  border-bottom: solid 1px #0D6EB9;
}
.top-news-section-inner .top-news-section__list li a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  border-top: solid 1px #0D6EB9;
}
.top-news-section-inner .top-news-section__list li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-news-section-inner .top-news-section__list li a:hover {
    opacity: 1;
  }
}
.top-news-section-inner .top-news-section__list li a .top-news-section__time-txt {
  font-size: 1.6rem;
  font-family: "Open Sans", serif;
  font-weight: 500;
  line-height: 1;
  color: #0D6EB9;
  padding: 40px 30px;
  margin: 0 30px 0 0;
  border-right: dotted 1px #0D6EB9;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__list li a .top-news-section__time-txt {
    padding: 20px 15px;
    margin: 0 15px 0 0;
  }
}
.top-news-section-inner .top-news-section__list li a .top-news-section__title {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  font-weight: 500;
  padding: 40px 60px 40px 0;
  margin: 0;
  position: relative;
  color: #0D6EB9;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__list li a .top-news-section__title {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.top-news-section-inner .top-news-section__list li a .top-news-section__title:last-child {
  margin: 0;
}
.top-news-section-inner .top-news-section__list li a .top-news-section__title > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.top-news-section-inner .top-news-section__list li a .top-news-section__title > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-news-section-inner .top-news-section__list li a .top-news-section__title > a:hover {
    opacity: 1;
  }
}
.top-news-section-inner .top-news-section__list li a .top-news-section__title span {
  color: #0D6EB9;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .top-news-section__list li a .top-news-section__title {
    padding: 20px 30px 20px 0;
  }
}
.top-news-section-inner .top-news-section__list li a .top-news-section__title::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-arrow-r.svg);
  background-size: 30px;
  width: 30px;
  height: 7px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top-news-section-inner .btn-top {
  max-width: 180px;
  width: 100%;
  opacity: 0;
  transition: all 2000ms;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .btn-top {
    max-width: 140px;
  }
}
.top-news-section-inner .btn-top a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0 78px 28px 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.top-news-section-inner .btn-top a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-news-section-inner .btn-top a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .btn-top a {
    padding: 0 42px 13px 0;
  }
}
.top-news-section-inner .btn-top a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #fff;
  background-size: 133px;
  width: 133px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 18.5px;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .btn-top a::after {
    bottom: 10.5px;
    background-size: 109px;
    width: 109px;
  }
}
.top-news-section-inner .btn-top a::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-r-w.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .btn-top a::before {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
}
.top-news-section-inner .btn-top a span {
  display: inline-block;
  font-size: 2rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .btn-top a span {
    font-size: 1.6rem;
  }
}
.top-news-section-inner .btn-top-magazine a::after {
  background: #E78401;
  background-size: 134px;
  width: 134px;
}
.top-news-section-inner .btn-top-magazine a::before {
  background: url(../../images/icon-btn-window-o.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .btn-top-magazine a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-news-section-inner .btn-top-magazine a span {
  color: #E78401;
}
.top-news-section-inner .btn-top-business a::after {
  background: #0D94E2;
  background-size: 134px;
  width: 134px;
}
.top-news-section-inner .btn-top-business a::before {
  background: url(../../images/icon-btn-window-b.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .btn-top-business a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-news-section-inner .btn-top-business a span {
  color: #0D94E2;
}
.top-news-section-inner .btn-top-app a::after {
  background: #009544;
  background-size: 134px;
  width: 134px;
}
.top-news-section-inner .btn-top-app a::before {
  background: url(../../images/icon-btn-window-g.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .btn-top-app a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-news-section-inner .btn-top-app a span {
  color: #009544;
}
.top-news-section-inner .btn-top-blue a::after {
  background: #0D6EB9;
}
.top-news-section-inner .btn-top-blue a::before {
  background: url(../../images/icon-btn-r.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-news-section-inner .btn-top-blue a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-news-section-inner .btn-top-blue a span {
  color: #0D6EB9;
}
.top-news-section-inner .btn-top.is-animated {
  opacity: 1;
}

/*-------------採用情報-------------*/
.top-recruit-section {
  padding: 120px 0 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-recruit-section {
    padding: 60px 0 0 0;
  }
}
.top-recruit-section__animal {
  position: absolute;
  left: 0;
  top: 160px;
}
@media screen and (max-width: 768px) {
  .top-recruit-section__animal {
    top: 40px;
    max-width: 70px;
  }
}
.top-recruit-section__animal img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: all 2000ms;
}
.top-recruit-section__animal img.is-animated {
  opacity: 1;
}
.top-recruit-section-inner {
  max-width: 830px;
  margin: 0 auto;
  width: auto;
  padding: 0 20px;
}
.top-recruit-section-inner .top-recruit-section__heading {
  margin: 0 0 80px 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner .top-recruit-section__heading {
    margin: 0 0 30px 0;
  }
}
.top-recruit-section-inner .top-recruit-section__heading .en-txt {
  text-align: center;
  font-size: 6.7rem;
  font-weight: 500;
  font-family: "Open Sans", serif;
  line-height: 1;
  color: #0D6EB9;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner .top-recruit-section__heading .en-txt {
    font-size: 4.2rem;
  }
}
.top-recruit-section-inner .top-recruit-section__heading h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  color: #0D6EB9;
}
.top-recruit-section-inner .top-recruit-section__heading--white .en-txt {
  color: #fff;
}
.top-recruit-section-inner .top-recruit-section__heading--white h2 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner .top-recruit-section__heading {
    transform: translate(0, 40px);
  }
}
.top-recruit-section-inner .top-recruit-section__heading.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top-recruit-section-inner > p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0 0 80px 0;
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner > p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.top-recruit-section-inner > p:last-child {
  margin: 0;
}
.top-recruit-section-inner > p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.top-recruit-section-inner > p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-recruit-section-inner > p > a:hover {
    opacity: 1;
  }
}
.top-recruit-section-inner > p span {
  color: #0D6EB9;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner > p {
    transform: translate(0, 40px);
  }
}
.top-recruit-section-inner > p.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner > p {
    margin: 0 0 40px 0;
  }
}
.top-recruit-section-inner .btn-top {
  margin: 0 0 0 auto;
  max-width: 180px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner .btn-top {
    max-width: 140px;
  }
}
.top-recruit-section-inner .btn-top a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0 78px 28px 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.top-recruit-section-inner .btn-top a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top-recruit-section-inner .btn-top a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner .btn-top a {
    padding: 0 42px 13px 0;
  }
}
.top-recruit-section-inner .btn-top a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #fff;
  background-size: 133px;
  width: 133px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 18.5px;
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner .btn-top a::after {
    bottom: 10.5px;
    background-size: 109px;
    width: 109px;
  }
}
.top-recruit-section-inner .btn-top a::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-r-w.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner .btn-top a::before {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
}
.top-recruit-section-inner .btn-top a span {
  display: inline-block;
  font-size: 2rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner .btn-top a span {
    font-size: 1.6rem;
  }
}
.top-recruit-section-inner .btn-top-magazine a::after {
  background: #E78401;
  background-size: 134px;
  width: 134px;
}
.top-recruit-section-inner .btn-top-magazine a::before {
  background: url(../../images/icon-btn-window-o.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner .btn-top-magazine a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-recruit-section-inner .btn-top-magazine a span {
  color: #E78401;
}
.top-recruit-section-inner .btn-top-business a::after {
  background: #0D94E2;
  background-size: 134px;
  width: 134px;
}
.top-recruit-section-inner .btn-top-business a::before {
  background: url(../../images/icon-btn-window-b.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner .btn-top-business a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-recruit-section-inner .btn-top-business a span {
  color: #0D94E2;
}
.top-recruit-section-inner .btn-top-app a::after {
  background: #009544;
  background-size: 134px;
  width: 134px;
}
.top-recruit-section-inner .btn-top-app a::before {
  background: url(../../images/icon-btn-window-g.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner .btn-top-app a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-recruit-section-inner .btn-top-app a span {
  color: #009544;
}
.top-recruit-section-inner .btn-top-blue a::after {
  background: #0D6EB9;
}
.top-recruit-section-inner .btn-top-blue a::before {
  background: url(../../images/icon-btn-r.svg);
  background-size: 48px;
}
@media screen and (max-width: 768px) {
  .top-recruit-section-inner .btn-top-blue a::before {
    background-size: 32px;
    width: 32px;
  }
}
.top-recruit-section-inner .btn-top-blue a span {
  color: #0D6EB9;
}
.top-recruit-section__img {
  height: 475px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-recruit-section__img {
    height: auto;
    aspect-ratio: 2/1.2;
  }
}
.top-recruit-section__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-------------base-------------*/
/*-------------mixin-------------*/
/*-------------下層ページ見出し-------------*/
.lower-heading {
  margin: 80px 0 0 0;
}
@media screen and (max-width: 1100px) {
  .lower-heading {
    margin: 60px 0 0 0;
  }
}
.lower-heading-inner {
  overflow: hidden;
}
.lower-heading-inner__cont {
  padding: 80px 80px 60px 80px;
  background: #0D6EB9;
}
@media screen and (max-width: 1100px) {
  .lower-heading-inner__cont {
    padding: 40px 40px 30px 40px;
  }
}
@media screen and (max-width: 768px) {
  .lower-heading-inner__cont {
    padding: 30px 20px 30px 20px;
  }
}
.lower-heading-inner__cont .lower-heading-inner__txt {
  position: relative;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 1100px) {
  .lower-heading-inner__cont .lower-heading-inner__txt {
    margin: 0 0 20px 0;
  }
}
.lower-heading-inner__cont .lower-heading-inner__txt .en-txt {
  margin: 0;
  font-size: 14.2rem;
  font-weight: 400;
  line-height: 1;
  color: #1574BD;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .lower-heading-inner__cont .lower-heading-inner__txt .en-txt {
    font-size: 7rem;
  }
}
.lower-heading-inner__cont .lower-heading-inner__txt h1 {
  font-size: 5.2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  margin: -60px 0 0 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .lower-heading-inner__cont .lower-heading-inner__txt h1 {
    font-size: 3.2rem;
    margin: -30px 0 0 0;
  }
}
.lower-heading-inner__cont .lower-heading-inner__txt h1 span {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .lower-heading-inner__cont .lower-heading-inner__txt h1 span {
    transform: translate(0, 40px);
  }
}
.lower-heading-inner__cont .lower-heading-inner__txt h1 span.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.lower-heading-inner__cont .bread-menu {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .lower-heading-inner__cont .bread-menu {
    transform: translate(0, 40px);
  }
}
.lower-heading-inner__cont .bread-menu.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.lower-heading-inner__cont .bread-menu span {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
}
.lower-heading-inner__cont .bread-menu span:nth-of-type(2n) {
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .lower-heading-inner__cont .bread-menu span:nth-of-type(2n) {
    margin: 0 5px;
  }
}
.lower-heading-inner__cont .bread-menu span:nth-of-type(2n)::before {
  content: "";
  display: inline-block;
  background: url(../../images/icon-arrow-bread.svg);
  background-size: 18px;
  width: 18px;
  height: 6px;
  position: relative;
  top: -2px;
}
.lower-heading-inner__cont .bread-menu span a {
  color: #fff;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.lower-heading-inner__cont .bread-menu span a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .lower-heading-inner__cont .bread-menu span a:hover {
    opacity: 1;
  }
}
.lower-heading-inner__img {
  position: relative;
}
.lower-heading-inner__img::after {
  content: "";
  display: inline-block;
  position: relative;
  position: absolute;
  left: 0;
  top: -1px;
  background: #0D6EB9;
  width: 100%;
  z-index: -1;
  aspect-ratio: 6/1;
}
.lower-heading-inner__img .lower-heading-inner__animal {
  position: absolute;
}
.lower-heading-inner__img .lower-heading-inner__animal--news {
  right: 54px;
  top: -60px;
}
@media screen and (max-width: 768px) {
  .lower-heading-inner__img .lower-heading-inner__animal--news {
    max-width: 100px;
    right: 20px;
    top: -40px;
  }
}
.lower-heading-inner__img .lower-heading-inner__animal--column {
  right: 54px;
  top: -105px;
}
@media screen and (max-width: 768px) {
  .lower-heading-inner__img .lower-heading-inner__animal--column {
    max-width: 100px;
    right: 20px;
    top: -68px;
  }
}
.lower-heading-inner__img .lower-heading-inner__animal--contact {
  right: -1px;
  top: -160px;
}
@media screen and (max-width: 768px) {
  .lower-heading-inner__img .lower-heading-inner__animal--contact {
    max-width: 50px;
    top: -130px;
  }
}
.lower-heading-inner__img .lower-heading-inner__animal--about {
  right: 66px;
  top: -85px;
}
@media screen and (max-width: 768px) {
  .lower-heading-inner__img .lower-heading-inner__animal--about {
    max-width: 90px;
    right: 20px;
    top: -70px;
  }
}
.lower-heading-inner__img .lower-heading-inner__animal--recruit {
  right: 66px;
  top: -125px;
}
@media screen and (max-width: 768px) {
  .lower-heading-inner__img .lower-heading-inner__animal--recruit {
    max-width: 80px;
    right: 20px;
    top: -118px;
  }
}
.lower-heading-inner__img .lower-heading-inner__animal--service {
  right: 0;
  top: -300px;
}
@media screen and (max-width: 768px) {
  .lower-heading-inner__img .lower-heading-inner__animal--service {
    max-width: 80px;
    top: -140px;
  }
}
.lower-heading-inner__img .lower-heading-inner__animal img {
  display: block;
  width: 100%;
  opacity: 0;
  transition: all 2000ms;
}
.lower-heading-inner__img .lower-heading-inner__animal img.is-animated {
  opacity: 1;
}
.lower-heading-inner__img .lower-heading-inner__img-wrap {
  padding: 0 0 0 80px;
  aspect-ratio: 4/1.25;
}
@media screen and (max-width: 1100px) {
  .lower-heading-inner__img .lower-heading-inner__img-wrap {
    padding: 0 0 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .lower-heading-inner__img .lower-heading-inner__img-wrap {
    padding: 0 0 0 20px;
  }
}
.lower-heading-inner__img .lower-heading-inner__img-wrap img {
  border-radius: 8rem 0 0 0;
  border: solid 5px #fff;
  border-right: none;
  border-bottom: none;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1100px) {
  .lower-heading-inner__img .lower-heading-inner__img-wrap img {
    border-radius: 4rem 0 0 0;
    border: solid 3px #fff;
    border-right: none;
    border-bottom: none;
  }
}

/*-------------ニュース-------------*/
.news-section {
  padding: 120px 20px 40px 20px;
}
@media screen and (max-width: 768px) {
  .news-section {
    padding: 60px 20px 40px 20px;
  }
}
.news-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
.news-section-inner__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-section-inner__list::after {
  content: "";
  display: block;
  height: auto;
  width: 30.5%;
}
.news-section-inner__list li {
  width: 30.5%;
  margin: 0 0 80px 0;
}
@media screen and (max-width: 768px) {
  .news-section-inner__list li {
    width: 47%;
    margin: 0 0 20px 0;
  }
}
.news-section-inner__list li a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.news-section-inner__list li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .news-section-inner__list li a:hover {
    opacity: 1;
  }
}
.news-section-inner__list li a .news-section-inner__thumbnail, .news-section-inner__list li a .column-section-inner__thumbnail {
  position: relative;
  aspect-ratio: 2/1.12;
}
@media screen and (max-width: 768px) {
  .news-section-inner__list li a .news-section-inner__thumbnail, .news-section-inner__list li a .column-section-inner__thumbnail {
    aspect-ratio: 2/1.5;
  }
}
.news-section-inner__list li a .news-section-inner__thumbnail .news-section-inner__time-txt, .news-section-inner__list li a .news-section-inner__thumbnail .column-section-inner__time-txt, .news-section-inner__list li a .column-section-inner__thumbnail .news-section-inner__time-txt, .news-section-inner__list li a .column-section-inner__thumbnail .column-section-inner__time-txt {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 5px 15px;
  background: #fff;
  border-radius: 1.5rem 0 1.5rem 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  color: #0D6EB9;
}
@media screen and (max-width: 768px) {
  .news-section-inner__list li a .news-section-inner__thumbnail .news-section-inner__time-txt, .news-section-inner__list li a .news-section-inner__thumbnail .column-section-inner__time-txt, .news-section-inner__list li a .column-section-inner__thumbnail .news-section-inner__time-txt, .news-section-inner__list li a .column-section-inner__thumbnail .column-section-inner__time-txt {
    padding: 2px 5px;
    font-size: 1.2rem;
    border-radius: 0.8rem 0 0.8rem 0;
  }
}
.news-section-inner__list li a .news-section-inner__thumbnail img, .news-section-inner__list li a .column-section-inner__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  .news-section-inner__list li a .news-section-inner__thumbnail img, .news-section-inner__list li a .column-section-inner__thumbnail img {
    border-radius: 0.8rem;
  }
}
.news-section-inner__list li a .news-section-inner__title, .news-section-inner__list li a .column-section-inner__title {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  font-weight: 500;
  color: #0D6EB9;
}
@media screen and (max-width: 768px) {
  .news-section-inner__list li a .news-section-inner__title, .news-section-inner__list li a .column-section-inner__title {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.news-section-inner__list li a .news-section-inner__title:last-child, .news-section-inner__list li a .column-section-inner__title:last-child {
  margin: 0;
}
.news-section-inner__list li a .news-section-inner__title > a, .news-section-inner__list li a .column-section-inner__title > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.news-section-inner__list li a .news-section-inner__title > a:hover, .news-section-inner__list li a .column-section-inner__title > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .news-section-inner__list li a .news-section-inner__title > a:hover, .news-section-inner__list li a .column-section-inner__title > a:hover {
    opacity: 1;
  }
}
.news-section-inner__list li a .news-section-inner__title span, .news-section-inner__list li a .column-section-inner__title span {
  color: #0D6EB9;
  font-weight: 500;
}
.news-section-inner__list li a .news-section-inner__title:last-child, .news-section-inner__list li a .column-section-inner__title:last-child {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  .news-section-inner__list li a .news-section-inner__title:last-child, .news-section-inner__list li a .column-section-inner__title:last-child {
    margin: 15px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .news-section-inner__list li a .news-section-inner__title, .news-section-inner__list li a .column-section-inner__title {
    font-size: 1.4rem;
  }
}
.news-section-inner .m-pagenation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 80px 0;
}
.news-section-inner .m-pagenation .m-pagenation__prev {
  margin: 0 5px 0 0;
}
.news-section-inner .m-pagenation .m-pagenation__prev a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0 0 28px 78px;
  position: relative;
}
.news-section-inner .m-pagenation .m-pagenation__prev a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .news-section-inner .m-pagenation .m-pagenation__prev a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .news-section-inner .m-pagenation .m-pagenation__prev a {
    padding: 0 0 13px 42px;
  }
}
.news-section-inner .m-pagenation .m-pagenation__prev a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #0D6EB9;
  background-size: 74px;
  width: 74px;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 18.5px;
}
@media screen and (max-width: 768px) {
  .news-section-inner .m-pagenation .m-pagenation__prev a::after {
    background-size: 45px;
    width: 45px;
    bottom: 10.5px;
  }
}
.news-section-inner .m-pagenation .m-pagenation__prev a::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-l.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .news-section-inner .m-pagenation .m-pagenation__prev a::before {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
}
.news-section-inner .m-pagenation .m-pagenation__prev a span {
  display: inline-block;
  font-size: 2rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #0D6EB9;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .news-section-inner .m-pagenation .m-pagenation__prev a span {
    font-size: 1.6rem;
  }
}
.news-section-inner .m-pagenation .m-pagenation__body {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.news-section-inner .m-pagenation .m-pagenation__body li {
  list-style: none;
  margin: 0 5px;
}
@media screen and (max-width: 768px) {
  .news-section-inner .m-pagenation .m-pagenation__body li {
    margin: 0 2.5px;
  }
}
.news-section-inner .m-pagenation .m-pagenation__body li a {
  display: block;
  text-decoration: none;
  color: #0D6EB9;
  border: solid 1px #fff;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.3s;
  width: 50px;
  height: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-section-inner .m-pagenation .m-pagenation__body li a {
    width: 32px;
    height: 32px;
  }
}
.news-section-inner .m-pagenation .m-pagenation__body li a span {
  display: inline-block;
  font-size: 1.8rem;
  font-family: "Open Sans", serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .news-section-inner .m-pagenation .m-pagenation__body li a span {
    font-size: 1.6rem;
  }
}
.news-section-inner .m-pagenation .m-pagenation__body li a:hover {
  border: solid 1px #0D6EB9;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .news-section-inner .m-pagenation .m-pagenation__body li a:hover {
    border: solid 1px #fff;
  }
}
.news-section-inner .m-pagenation .m-pagenation__body li.current {
  display: block;
  text-decoration: none;
  color: #0D6EB9;
  border: solid 1px #0D6EB9;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.3s;
  width: 50px;
  height: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-section-inner .m-pagenation .m-pagenation__body li.current {
    width: 32px;
    height: 32px;
  }
}
.news-section-inner .m-pagenation .m-pagenation__body li.current span {
  display: inline-block;
  font-size: 1.8rem;
  font-family: "Open Sans", serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .news-section-inner .m-pagenation .m-pagenation__body li.current span {
    font-size: 1.6rem;
  }
}
.news-section-inner .m-pagenation .m-pagenation__next {
  margin: 0 0 0 5px;
}
.news-section-inner .m-pagenation .m-pagenation__next a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0 78px 28px 0;
  position: relative;
}
.news-section-inner .m-pagenation .m-pagenation__next a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .news-section-inner .m-pagenation .m-pagenation__next a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .news-section-inner .m-pagenation .m-pagenation__next a {
    padding: 0 42px 13px 0;
  }
}
.news-section-inner .m-pagenation .m-pagenation__next a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #0D6EB9;
  background-size: 74px;
  width: 74px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 18.5px;
}
@media screen and (max-width: 768px) {
  .news-section-inner .m-pagenation .m-pagenation__next a::after {
    background-size: 45px;
    width: 45px;
    bottom: 10.5px;
  }
}
.news-section-inner .m-pagenation .m-pagenation__next a::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-r.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .news-section-inner .m-pagenation .m-pagenation__next a::before {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
}
.news-section-inner .m-pagenation .m-pagenation__next a span {
  display: inline-block;
  font-size: 2rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #0D6EB9;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .news-section-inner .m-pagenation .m-pagenation__next a span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .news-section-inner .m-pagenation {
    margin: 20px 0;
  }
}

/*-------------コラム-------------*/
.column-section {
  padding: 120px 20px 40px 20px;
}
@media screen and (max-width: 768px) {
  .column-section {
    padding: 60px 20px 40px 20px;
  }
}
.column-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
.column-section-inner__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.column-section-inner__list::after {
  content: "";
  display: block;
  height: auto;
  width: 30.5%;
}
.column-section-inner__list li {
  width: 30.5%;
  margin: 0 0 80px 0;
}
@media screen and (max-width: 768px) {
  .column-section-inner__list li {
    width: 47%;
    margin: 0 0 20px 0;
  }
}
.column-section-inner__list li a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.column-section-inner__list li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .column-section-inner__list li a:hover {
    opacity: 1;
  }
}
.column-section-inner__list li a .news-section-inner__thumbnail, .column-section-inner__list li a .column-section-inner__thumbnail {
  position: relative;
  aspect-ratio: 2/1.12;
}
@media screen and (max-width: 768px) {
  .column-section-inner__list li a .news-section-inner__thumbnail, .column-section-inner__list li a .column-section-inner__thumbnail {
    aspect-ratio: 2/1.5;
  }
}
.column-section-inner__list li a .news-section-inner__thumbnail .news-section-inner__time-txt, .column-section-inner__list li a .news-section-inner__thumbnail .column-section-inner__time-txt, .column-section-inner__list li a .column-section-inner__thumbnail .news-section-inner__time-txt, .column-section-inner__list li a .column-section-inner__thumbnail .column-section-inner__time-txt {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 5px 15px;
  background: #fff;
  border-radius: 1.5rem 0 1.5rem 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  color: #0D6EB9;
}
@media screen and (max-width: 768px) {
  .column-section-inner__list li a .news-section-inner__thumbnail .news-section-inner__time-txt, .column-section-inner__list li a .news-section-inner__thumbnail .column-section-inner__time-txt, .column-section-inner__list li a .column-section-inner__thumbnail .news-section-inner__time-txt, .column-section-inner__list li a .column-section-inner__thumbnail .column-section-inner__time-txt {
    padding: 2px 5px;
    font-size: 1.2rem;
    border-radius: 0.8rem 0 0.8rem 0;
  }
}
.column-section-inner__list li a .news-section-inner__thumbnail img, .column-section-inner__list li a .column-section-inner__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  .column-section-inner__list li a .news-section-inner__thumbnail img, .column-section-inner__list li a .column-section-inner__thumbnail img {
    border-radius: 0.8rem;
  }
}
.column-section-inner__list li a .news-section-inner__title, .column-section-inner__list li a .column-section-inner__title {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  font-weight: 500;
  color: #0D6EB9;
}
@media screen and (max-width: 768px) {
  .column-section-inner__list li a .news-section-inner__title, .column-section-inner__list li a .column-section-inner__title {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.column-section-inner__list li a .news-section-inner__title:last-child, .column-section-inner__list li a .column-section-inner__title:last-child {
  margin: 0;
}
.column-section-inner__list li a .news-section-inner__title > a, .column-section-inner__list li a .column-section-inner__title > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.column-section-inner__list li a .news-section-inner__title > a:hover, .column-section-inner__list li a .column-section-inner__title > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .column-section-inner__list li a .news-section-inner__title > a:hover, .column-section-inner__list li a .column-section-inner__title > a:hover {
    opacity: 1;
  }
}
.column-section-inner__list li a .news-section-inner__title span, .column-section-inner__list li a .column-section-inner__title span {
  color: #0D6EB9;
  font-weight: 500;
}
.column-section-inner__list li a .news-section-inner__title:last-child, .column-section-inner__list li a .column-section-inner__title:last-child {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  .column-section-inner__list li a .news-section-inner__title:last-child, .column-section-inner__list li a .column-section-inner__title:last-child {
    margin: 15px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .column-section-inner__list li a .news-section-inner__title, .column-section-inner__list li a .column-section-inner__title {
    font-size: 1.4rem;
  }
}
.column-section-inner .m-pagenation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 80px 0;
}
.column-section-inner .m-pagenation .m-pagenation__prev {
  margin: 0 5px 0 0;
}
.column-section-inner .m-pagenation .m-pagenation__prev a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0 0 28px 78px;
  position: relative;
}
.column-section-inner .m-pagenation .m-pagenation__prev a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .column-section-inner .m-pagenation .m-pagenation__prev a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .column-section-inner .m-pagenation .m-pagenation__prev a {
    padding: 0 0 13px 42px;
  }
}
.column-section-inner .m-pagenation .m-pagenation__prev a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #0D6EB9;
  background-size: 74px;
  width: 74px;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 18.5px;
}
@media screen and (max-width: 768px) {
  .column-section-inner .m-pagenation .m-pagenation__prev a::after {
    background-size: 45px;
    width: 45px;
    bottom: 10.5px;
  }
}
.column-section-inner .m-pagenation .m-pagenation__prev a::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-l.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .column-section-inner .m-pagenation .m-pagenation__prev a::before {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
}
.column-section-inner .m-pagenation .m-pagenation__prev a span {
  display: inline-block;
  font-size: 2rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #0D6EB9;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .column-section-inner .m-pagenation .m-pagenation__prev a span {
    font-size: 1.6rem;
  }
}
.column-section-inner .m-pagenation .m-pagenation__body {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.column-section-inner .m-pagenation .m-pagenation__body li {
  list-style: none;
  margin: 0 5px;
}
@media screen and (max-width: 768px) {
  .column-section-inner .m-pagenation .m-pagenation__body li {
    margin: 0 2.5px;
  }
}
.column-section-inner .m-pagenation .m-pagenation__body li a {
  display: block;
  text-decoration: none;
  color: #0D6EB9;
  border: solid 1px #fff;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.3s;
  width: 50px;
  height: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .column-section-inner .m-pagenation .m-pagenation__body li a {
    width: 32px;
    height: 32px;
  }
}
.column-section-inner .m-pagenation .m-pagenation__body li a span {
  display: inline-block;
  font-size: 1.8rem;
  font-family: "Open Sans", serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .column-section-inner .m-pagenation .m-pagenation__body li a span {
    font-size: 1.6rem;
  }
}
.column-section-inner .m-pagenation .m-pagenation__body li a:hover {
  border: solid 1px #0D6EB9;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .column-section-inner .m-pagenation .m-pagenation__body li a:hover {
    border: solid 1px #fff;
  }
}
.column-section-inner .m-pagenation .m-pagenation__body li.current {
  display: block;
  text-decoration: none;
  color: #0D6EB9;
  border: solid 1px #0D6EB9;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.3s;
  width: 50px;
  height: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .column-section-inner .m-pagenation .m-pagenation__body li.current {
    width: 32px;
    height: 32px;
  }
}
.column-section-inner .m-pagenation .m-pagenation__body li.current span {
  display: inline-block;
  font-size: 1.8rem;
  font-family: "Open Sans", serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .column-section-inner .m-pagenation .m-pagenation__body li.current span {
    font-size: 1.6rem;
  }
}
.column-section-inner .m-pagenation .m-pagenation__next {
  margin: 0 0 0 5px;
}
.column-section-inner .m-pagenation .m-pagenation__next a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0 78px 28px 0;
  position: relative;
}
.column-section-inner .m-pagenation .m-pagenation__next a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .column-section-inner .m-pagenation .m-pagenation__next a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .column-section-inner .m-pagenation .m-pagenation__next a {
    padding: 0 42px 13px 0;
  }
}
.column-section-inner .m-pagenation .m-pagenation__next a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #0D6EB9;
  background-size: 74px;
  width: 74px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 18.5px;
}
@media screen and (max-width: 768px) {
  .column-section-inner .m-pagenation .m-pagenation__next a::after {
    background-size: 45px;
    width: 45px;
    bottom: 10.5px;
  }
}
.column-section-inner .m-pagenation .m-pagenation__next a::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-r.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .column-section-inner .m-pagenation .m-pagenation__next a::before {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
}
.column-section-inner .m-pagenation .m-pagenation__next a span {
  display: inline-block;
  font-size: 2rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #0D6EB9;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .column-section-inner .m-pagenation .m-pagenation__next a span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .column-section-inner .m-pagenation {
    margin: 20px 0;
  }
}

/*-------------ニュース、コラム詳細ページ-------------*/
.single-bread-menu {
  background: #0D6EB9;
  margin: 80px 0 0 0;
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .single-bread-menu {
    margin: 60px 0 0 0;
  }
}
.single-bread-menu .bread-menu {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .single-bread-menu .bread-menu {
    transform: translate(0, 40px);
  }
}
.single-bread-menu .bread-menu.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.single-bread-menu .bread-menu span {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
}
.single-bread-menu .bread-menu span:nth-of-type(2n) {
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .single-bread-menu .bread-menu span:nth-of-type(2n) {
    margin: 0 5px;
  }
}
.single-bread-menu .bread-menu span:nth-of-type(2n)::before {
  content: "";
  display: inline-block;
  background: url(../../images/icon-arrow-bread.svg);
  background-size: 18px;
  width: 18px;
  height: 6px;
  position: relative;
  top: -2px;
}
.single-bread-menu .bread-menu span a {
  color: #fff;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.single-bread-menu .bread-menu span a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .single-bread-menu .bread-menu span a:hover {
    opacity: 1;
  }
}

.single-section {
  padding: 100px 20px 120px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .single-section {
    padding: 60px 20px;
  }
}
.single-section-inner {
  max-width: 830px;
  margin: 0 auto;
  width: auto;
}
.single-section-inner__heading {
  font-size: 3.2rem;
  font-weight: 500;
  color: #0D6EB9;
  line-height: 1.6;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .single-section-inner__heading {
    font-size: 2.6rem;
    margin: 0 0 30px 0;
  }
}
.single-section-inner__info {
  display: flex;
  align-items: center;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .single-section-inner__info {
    margin: 0 0 30px 0;
  }
}
.single-section-inner__info .time-txt {
  font-size: 1.5rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  color: #0D6EB9;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 768px) {
  .single-section-inner__info .time-txt {
    font-size: 1.2rem;
    margin: 0 10px 0 0;
  }
}
.single-section-inner__info > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.single-section-inner__info > ul > li {
  padding: 5px 15px;
  background: #fff;
  border: solid 1px #0D6EB9;
  border-radius: 2rem;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #0D6EB9;
}
@media screen and (max-width: 768px) {
  .single-section-inner__info > ul > li {
    padding: 2px 10px;
    font-size: 1.5rem;
  }
}
.single-section-inner__thumbnail {
  margin: 0 0 60px 0;
  aspect-ratio: 2/1.13;
}
@media screen and (max-width: 768px) {
  .single-section-inner__thumbnail {
    margin: 0 0 30px 0;
  }
}
.single-section-inner__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  .single-section-inner__thumbnail img {
    border-radius: 0.8rem;
  }
}
.single-section-inner__txt > h2 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 120px 0 60px 0;
  color: #0D6EB9;
  padding: 0 0 0 30px;
  border-left: solid 2px #0D6EB9;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > h2 {
    font-size: 2.2rem;
    margin: 60px 0 30px 0;
    padding: 0 0 0 15px;
  }
}
.single-section-inner__txt > h3 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 80px 0 30px 0;
  color: #0D6EB9;
  padding: 0 0 0 50px;
  position: relative;
}
.single-section-inner__txt > h3::before {
  content: "";
  display: inline-block;
  position: relative;
  background: #0D6EB9;
  width: 20px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 14px;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > h3::before {
    width: 15px;
    top: 12px;
  }
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > h3 {
    font-size: 2rem;
    margin: 40px 0 20px 0;
    padding: 0 0 0 30px;
  }
}
.single-section-inner__txt > h4 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 60px 0 30px 0;
  color: #DD8989;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > h4 {
    font-size: 1.6rem;
    margin: 30px 0 20px 0;
  }
}
.single-section-inner__txt > h5 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > h5 {
    font-size: 1.5rem;
    margin: 20px 0;
  }
}
.single-section-inner__txt > p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.single-section-inner__txt > p:last-child {
  margin: 0;
}
.single-section-inner__txt > p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.single-section-inner__txt > p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .single-section-inner__txt > p > a:hover {
    opacity: 1;
  }
}
.single-section-inner__txt > p span {
  color: #0D6EB9;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > p {
    margin: 20px 0;
  }
}
.single-section-inner__txt > figure {
  margin: 80px 0;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > figure {
    margin: 40px 0;
  }
}
.single-section-inner__txt > figure img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > figure img {
    border-radius: 0.8rem;
  }
}
.single-section-inner__txt > figure figcaption {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 20px 0 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > figure figcaption {
    font-size: 1.5rem;
    margin: 10px 0 0 0;
  }
}
.single-section-inner__txt > ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > ul {
    margin: 20px 0;
  }
}
.single-section-inner__txt > ul li {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 10px 0;
  padding: 0 0 0 20px;
  position: relative;
}
.single-section-inner__txt > ul li > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
}
.single-section-inner__txt > ul li > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .single-section-inner__txt > ul li > a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > ul li {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.single-section-inner__txt > ul li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  background: #D1E5F2;
  background-size: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > ul li::before {
    top: 10px;
  }
}
.single-section-inner__txt > ul li:last-child {
  margin: 0;
}
.single-section-inner__txt > ol {
  margin: 30px 0;
  padding: 0 0 0 25px;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > ol {
    margin: 20px 0;
  }
}
.single-section-inner__txt > ol li {
  margin: 0 0 10px 0;
  position: relative;
  font-size: 1.8rem;
  color: #0D6EB9;
  font-weight: 400;
  line-height: 2;
}
.single-section-inner__txt > ol li > a {
  display: block;
  transition: all 0.3s;
}
.single-section-inner__txt > ol li > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .single-section-inner__txt > ol li > a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > ol li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.single-section-inner__txt > ol li:last-child {
  margin: 0;
}
.single-section-inner__txt > blockquote {
  margin: 40px 0;
  background: #F5F7F9;
  padding: 40px 30px;
  box-sizing: border-box;
  position: relative;
}
.single-section-inner__txt > blockquote::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-colon.svg);
  background-size: 14px;
  width: 14px;
  height: 12.13px;
  position: absolute;
  left: 10px;
  top: -5px;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > blockquote {
    margin: 20px 0;
    padding: 30px 20px;
  }
}
.single-section-inner__txt > blockquote p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > blockquote p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.single-section-inner__txt > blockquote p:last-child {
  margin: 0;
}
.single-section-inner__txt > blockquote p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.single-section-inner__txt > blockquote p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .single-section-inner__txt > blockquote p > a:hover {
    opacity: 1;
  }
}
.single-section-inner__txt > blockquote p span {
  color: #0D6EB9;
  font-weight: 500;
}
.single-section-inner__txt > blockquote cite {
  margin: 20px 0 0 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  display: block;
}
@media screen and (max-width: 768px) {
  .single-section-inner__txt > blockquote cite {
    font-size: 1.3rem;
  }
}
.single-section-inner__back {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 100px 0 0 0;
}
@media screen and (max-width: 768px) {
  .single-section-inner__back {
    margin: 40px 0 0 0;
  }
}
.single-section-inner__back .single-section-inner__prev-btn {
  margin: 0 5px 0 0;
}
@media screen and (max-width: 768px) {
  .single-section-inner__back .single-section-inner__prev-btn {
    margin: 0 20px 0 0;
  }
}
.single-section-inner__back .single-section-inner__prev-btn a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0 0 0 78px;
  position: relative;
}
.single-section-inner__back .single-section-inner__prev-btn a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .single-section-inner__back .single-section-inner__prev-btn a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .single-section-inner__back .single-section-inner__prev-btn a {
    padding: 0 0 0 42px;
  }
}
.single-section-inner__back .single-section-inner__prev-btn a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #0D6EB9;
  background-size: 74px;
  width: 74px;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: -9.5px;
}
@media screen and (max-width: 768px) {
  .single-section-inner__back .single-section-inner__prev-btn a::after {
    background-size: 45px;
    width: 45px;
    bottom: -2.5px;
  }
}
.single-section-inner__back .single-section-inner__prev-btn a::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-l.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .single-section-inner__back .single-section-inner__prev-btn a::before {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
}
.single-section-inner__back .single-section-inner__prev-btn a span {
  display: inline-block;
  font-size: 2rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #0D6EB9;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .single-section-inner__back .single-section-inner__prev-btn a span {
    font-size: 1.6rem;
  }
}
.single-section-inner__back-btn {
  max-width: 230px;
  width: 100%;
}
.single-section-inner__back-btn a {
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 25px 20px;
  box-sizing: border-box;
  border-radius: 10rem;
  background: #fff;
  border: solid 1px #0D6EB9;
  color: #0D6EB9;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Open Sans", serif;
  line-height: 1.4;
  text-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.single-section-inner__back-btn a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .single-section-inner__back-btn a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .single-section-inner__back-btn a {
    padding: 15px 10px;
    font-size: 1.6rem;
  }
}
.single-section-inner__back .single-section-inner__next-btn {
  margin: 0 0 0 5px;
}
@media screen and (max-width: 768px) {
  .single-section-inner__back .single-section-inner__next-btn {
    margin: 0 0 0 20px;
  }
}
.single-section-inner__back .single-section-inner__next-btn a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0 78px 0 0;
  position: relative;
}
.single-section-inner__back .single-section-inner__next-btn a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .single-section-inner__back .single-section-inner__next-btn a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .single-section-inner__back .single-section-inner__next-btn a {
    padding: 0 42px 0 0;
  }
}
.single-section-inner__back .single-section-inner__next-btn a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #0D6EB9;
  background-size: 74px;
  width: 74px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -9.5px;
}
@media screen and (max-width: 768px) {
  .single-section-inner__back .single-section-inner__next-btn a::after {
    background-size: 45px;
    width: 45px;
    bottom: -2.5px;
  }
}
.single-section-inner__back .single-section-inner__next-btn a::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-r.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .single-section-inner__back .single-section-inner__next-btn a::before {
    background-size: 32px;
    width: 32px;
    height: 32px;
  }
}
.single-section-inner__back .single-section-inner__next-btn a span {
  display: inline-block;
  font-size: 2rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #0D6EB9;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .single-section-inner__back .single-section-inner__next-btn a span {
    font-size: 1.6rem;
  }
}

/*-------------私たちについて-------------*/
.about-section__mission {
  padding: 80px 20px 0 20px;
  background: url(../../images/about-dog-bg.png), transparent;
  background-size: 405px, cover;
  background-position: top 350px right 0, center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-section__mission {
    padding: 60px 20px 0 20px;
    background-size: 200px, cover;
    background-position: top 20px right 0, center;
    background-repeat: no-repeat;
  }
}
.about-section__mission::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 100%;
  height: 120px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #0D6EB9;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about-section__mission::after {
    height: 60px;
  }
}
.about-section__mission-desc {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-section__mission-desc {
    max-width: 540px;
  }
}
.about-section__mission-desc .en-txt {
  position: absolute;
  left: -60px;
  top: 0;
  font-family: "Open Sans", serif;
  font-size: 14.2rem;
  line-height: 1;
  font-weight: 400;
  writing-mode: vertical-lr;
  color: #0D6EB9;
  opacity: 0.1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about-section__mission-desc .en-txt {
    font-size: 4.8rem;
    left: -10px;
  }
}
.about-section__mission-desc-txt {
  padding: 80px 0 120px 120px;
}
@media screen and (max-width: 768px) {
  .about-section__mission-desc-txt {
    padding: 40px 0 40px 60px;
  }
}
.about-section__mission-desc-txt h2 {
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 40px 0;
  color: #DD8989;
}
@media screen and (max-width: 768px) {
  .about-section__mission-desc-txt h2 {
    font-size: 2.4rem;
    margin: 0 0 30px 0;
  }
}
.about-section__mission-desc-txt p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about-section__mission-desc-txt p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.about-section__mission-desc-txt p:last-child {
  margin: 0;
}
.about-section__mission-desc-txt p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.about-section__mission-desc-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .about-section__mission-desc-txt p > a:hover {
    opacity: 1;
  }
}
.about-section__mission-desc-txt p span {
  color: #0D6EB9;
  font-weight: 500;
}
.about-section__mission-desc-img {
  aspect-ratio: 2/1.45;
  max-width: 730px;
  width: 100%;
}
.about-section__mission-desc-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .about-section__mission-desc-img img {
    border-radius: 0.8rem;
  }
}
.about-section__mission-about {
  max-width: 1200px;
  width: 100%;
  margin: 80px auto 0 auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .about-section__mission-about {
    margin: 60px auto 0 auto;
    max-width: 540px;
  }
}
.about-section__mission-about p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  width: 44.4%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about-section__mission-about p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.about-section__mission-about p:last-child {
  margin: 0;
}
.about-section__mission-about p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.about-section__mission-about p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .about-section__mission-about p > a:hover {
    opacity: 1;
  }
}
.about-section__mission-about p span {
  color: #0D6EB9;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .about-section__mission-about p {
    width: 100%;
    margin: 0 0 30px 0;
  }
}
.about-section__mission-about-img {
  aspect-ratio: 2/1.45;
  width: 52.25%;
}
@media screen and (max-width: 768px) {
  .about-section__mission-about-img {
    width: 100%;
  }
}
.about-section__mission-about-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .about-section__mission-about-img img {
    border-radius: 0.8rem;
  }
}
.about-section__company {
  padding: 160px 20px 0 20px;
  box-sizing: border-box;
  background: #0D6EB9;
}
@media screen and (max-width: 768px) {
  .about-section__company {
    padding: 60px 20px 0 20px;
  }
}
.about-section__company-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
  background: #fff;
  border-radius: 2rem;
  position: relative;
  padding: 140px 20px;
}
@media screen and (max-width: 768px) {
  .about-section__company-inner {
    padding: 60px 20px;
    border-radius: 1rem;
  }
}
.about-section__company-inner::before {
  content: "";
  display: inline-block;
  position: relative;
  position: absolute;
  background: #0D6EB9;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  left: 35px;
  top: 35px;
}
@media screen and (max-width: 768px) {
  .about-section__company-inner::before {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 768px) {
  .about-section__company-inner::before {
    left: 10px;
    top: 10px;
  }
}
.about-section__company-inner::after {
  content: "";
  display: inline-block;
  position: relative;
  position: absolute;
  background: #0D6EB9;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  right: 35px;
  top: 35px;
}
@media screen and (max-width: 768px) {
  .about-section__company-inner::after {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 768px) {
  .about-section__company-inner::after {
    right: 10px;
    top: 10px;
  }
}
.about-section__company-inner .about-section__company-heading {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 768px) {
  .about-section__company-inner .about-section__company-heading {
    margin: 0 0 30px 0;
  }
}
.about-section__company-inner .about-section__company-heading .en-txt {
  text-align: center;
  font-size: 6.7rem;
  font-weight: 500;
  font-family: "Open Sans", serif;
  line-height: 1;
  color: #0D6EB9;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  .about-section__company-inner .about-section__company-heading .en-txt {
    font-size: 4.2rem;
  }
}
.about-section__company-inner .about-section__company-heading h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  color: #0D6EB9;
}
.about-section__company-inner .about-section__company-heading--white .en-txt {
  color: #fff;
}
.about-section__company-inner .about-section__company-heading--white h2 {
  color: #fff;
}
.about-section__company-inner .about-section__company-table {
  max-width: 830px;
  margin: 0 auto;
  width: auto;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
}
.about-section__company-inner .about-section__company-table tbody tr {
  border-top: solid 1px #D5E1E8;
}
.about-section__company-inner .about-section__company-table tbody tr:last-child {
  border-bottom: solid 1px #D5E1E8;
}
.about-section__company-inner .about-section__company-table tbody tr td {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  vertical-align: top;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .about-section__company-inner .about-section__company-table tbody tr td {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.about-section__company-inner .about-section__company-table tbody tr td:last-child {
  margin: 0;
}
.about-section__company-inner .about-section__company-table tbody tr td > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.about-section__company-inner .about-section__company-table tbody tr td > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .about-section__company-inner .about-section__company-table tbody tr td > a:hover {
    opacity: 1;
  }
}
.about-section__company-inner .about-section__company-table tbody tr td span {
  color: #0D6EB9;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .about-section__company-inner .about-section__company-table tbody tr td {
    display: block;
    padding: 0 0 15px 0;
  }
}
.about-section__company-inner .about-section__company-table tbody tr td:first-child {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  padding: 30px 30px 30px 0;
  width: 20%;
  margin: 0;
  color: #0D6EB9;
}
@media screen and (max-width: 768px) {
  .about-section__company-inner .about-section__company-table tbody tr td:first-child {
    padding: 15px 0 5px 0;
    width: 100%;
  }
}
.about-section__company-inner .about-section__company-table::before {
  content: "";
  display: inline-block;
  position: relative;
  position: absolute;
  background: #0D6EB9;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  left: 35px;
  bottom: 35px;
}
@media screen and (max-width: 768px) {
  .about-section__company-inner .about-section__company-table::before {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 768px) {
  .about-section__company-inner .about-section__company-table::before {
    left: 10px;
    bottom: 10px;
  }
}
.about-section__company-inner .about-section__company-table::after {
  content: "";
  display: inline-block;
  position: relative;
  position: absolute;
  background: #0D6EB9;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  right: 35px;
  bottom: 35px;
}
@media screen and (max-width: 768px) {
  .about-section__company-inner .about-section__company-table::after {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 768px) {
  .about-section__company-inner .about-section__company-table::after {
    right: 10px;
    bottom: 10px;
  }
}

/*-------------採用情報-------------*/
.recruit-section__desc {
  padding: 80px 20px 0 20px;
}
@media screen and (max-width: 768px) {
  .recruit-section__desc {
    padding: 60px 20px 0 20px;
  }
}
.recruit-section__desc-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
.recruit-section__desc-inner p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .recruit-section__desc-inner p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.recruit-section__desc-inner p:last-child {
  margin: 0;
}
.recruit-section__desc-inner p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.recruit-section__desc-inner p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .recruit-section__desc-inner p > a:hover {
    opacity: 1;
  }
}
.recruit-section__desc-inner p span {
  color: #0D6EB9;
  font-weight: 500;
}
.recruit-section__message {
  padding: 120px 20px 0 20px;
}
@media screen and (max-width: 768px) {
  .recruit-section__message {
    padding: 60px 20px 0 20px;
  }
}
.recruit-section__message-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
.recruit-section__message-inner .recruit-sectio__message-heading {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 768px) {
  .recruit-section__message-inner .recruit-sectio__message-heading {
    margin: 0 0 30px 0;
  }
}
.recruit-section__message-inner .recruit-sectio__message-heading .en-txt {
  text-align: center;
  font-size: 6.7rem;
  font-weight: 500;
  font-family: "Open Sans", serif;
  line-height: 1;
  color: #0D6EB9;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  .recruit-section__message-inner .recruit-sectio__message-heading .en-txt {
    font-size: 4.2rem;
  }
}
.recruit-section__message-inner .recruit-sectio__message-heading h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  color: #0D6EB9;
}
.recruit-section__message-inner .recruit-sectio__message-heading--white .en-txt {
  color: #fff;
}
.recruit-section__message-inner .recruit-sectio__message-heading--white h2 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .recruit-section__message-inner .recruit-sectio__message-heading {
    margin: 0 0 20px 0;
  }
}
.recruit-section__message-inner .recruit-section__message-cont {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1100px) {
  .recruit-section__message-inner .recruit-section__message-cont {
    flex-flow: column;
    align-items: center;
  }
}
.recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt {
  margin: 200px 0 0 0;
  padding: 60px 0 60px 60px;
  box-sizing: border-box;
  border-radius: 2rem;
  max-width: 550px;
  width: 100%;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt {
    margin: 0;
    padding: 40px 20px 0 20px;
  }
}
@media screen and (max-width: 540px) {
  .recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt {
    max-width: 295px;
  }
}
.recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt::after {
  content: "";
  display: inline-block;
  position: relative;
  background: #fff;
  width: 60px;
  height: 100%;
  position: absolute;
  right: -60px;
  top: 0;
  border-radius: 0 2rem 2rem 0;
}
@media screen and (max-width: 1100px) {
  .recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt::after {
    width: 100%;
    height: 40px;
    top: auto;
    right: 0;
    bottom: -40px;
    border-radius: 0 0 2rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt {
    border-radius: 1rem;
  }
}
.recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt .recruit-section__message-name {
  margin: 0 0 30px 0;
}
@media screen and (max-width: 768px) {
  .recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt .recruit-section__message-name {
    margin: 0 0 20px 0;
  }
}
.recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt .recruit-section__message-name .skill-txt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 10px 0;
  color: #0D6EB9;
  padding: 0 0 0 25px;
  position: relative;
}
.recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt .recruit-section__message-name .skill-txt::before {
  content: "";
  display: inline-block;
  position: relative;
  background: #0D6EB9;
  width: 15px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 13px;
}
@media screen and (max-width: 768px) {
  .recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt .recruit-section__message-name .skill-txt::before {
    top: 11px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt .recruit-section__message-name .skill-txt {
    font-size: 1.6rem;
  }
}
.recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt .recruit-section__message-name h3 {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  color: #0D6EB9;
}
@media screen and (max-width: 768px) {
  .recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt .recruit-section__message-name h3 {
    font-size: 2.2rem;
  }
}
.recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt p:last-child {
  margin: 0;
}
.recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt p > a:hover {
    opacity: 1;
  }
}
.recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-txt p span {
  color: #0D6EB9;
  font-weight: 500;
}
.recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-img {
  max-width: 648px;
  width: 100%;
  aspect-ratio: 2/2.08;
}
.recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .recruit-section__message-inner .recruit-section__message-cont .recruit-section__message-img img {
    border-radius: 1rem;
  }
}
.recruit-section__member {
  margin: 120px 0 0 0;
  padding: 120px 20px 20px 20px;
  background: #F5F7F9;
}
@media screen and (max-width: 768px) {
  .recruit-section__member {
    margin: 60px 0 0 0;
    padding: 60px 20px;
  }
}
.recruit-section__member-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
.recruit-section__member-inner .recruit-section__member-heading {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 768px) {
  .recruit-section__member-inner .recruit-section__member-heading {
    margin: 0 0 30px 0;
  }
}
.recruit-section__member-inner .recruit-section__member-heading .en-txt {
  text-align: center;
  font-size: 6.7rem;
  font-weight: 500;
  font-family: "Open Sans", serif;
  line-height: 1;
  color: #0D6EB9;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  .recruit-section__member-inner .recruit-section__member-heading .en-txt {
    font-size: 4.2rem;
  }
}
.recruit-section__member-inner .recruit-section__member-heading h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  color: #0D6EB9;
}
.recruit-section__member-inner .recruit-section__member-heading--white .en-txt {
  color: #fff;
}
.recruit-section__member-inner .recruit-section__member-heading--white h2 {
  color: #fff;
}
.recruit-section__member-inner .recruit-section__member-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit-section__member-inner .recruit-section__member-list li {
  width: 47.5%;
  margin: 0 0 100px 0;
}
@media screen and (max-width: 768px) {
  .recruit-section__member-inner .recruit-section__member-list li {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .recruit-section__member-inner .recruit-section__member-list li:last-child {
    margin: 0;
  }
}
.recruit-section__member-inner .recruit-section__member-list li .recruit-section__member-thumbnail {
  aspect-ratio: 2/1.13;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  .recruit-section__member-inner .recruit-section__member-list li .recruit-section__member-thumbnail {
    margin: 0 0 20px 0;
  }
}
.recruit-section__member-inner .recruit-section__member-list li .recruit-section__member-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.6rem;
}
@media screen and (max-width: 768px) {
  .recruit-section__member-inner .recruit-section__member-list li .recruit-section__member-thumbnail img {
    border-radius: 0.8rem;
  }
}
.recruit-section__member-inner .recruit-section__member-list li h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 30px 0;
  color: #0D6EB9;
  padding: 0 0 0 25px;
  position: relative;
}
.recruit-section__member-inner .recruit-section__member-list li h3::before {
  content: "";
  display: inline-block;
  position: relative;
  background: #0D6EB9;
  width: 15px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 13px;
}
@media screen and (max-width: 768px) {
  .recruit-section__member-inner .recruit-section__member-list li h3::before {
    top: 11px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-section__member-inner .recruit-section__member-list li h3 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
  }
}
.recruit-section__member-inner .recruit-section__member-list li p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .recruit-section__member-inner .recruit-section__member-list li p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.recruit-section__member-inner .recruit-section__member-list li p:last-child {
  margin: 0;
}
.recruit-section__member-inner .recruit-section__member-list li p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.recruit-section__member-inner .recruit-section__member-list li p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .recruit-section__member-inner .recruit-section__member-list li p > a:hover {
    opacity: 1;
  }
}
.recruit-section__member-inner .recruit-section__member-list li p span {
  color: #0D6EB9;
  font-weight: 500;
}
.recruit-section__occupation {
  padding: 120px 20px;
}
@media screen and (max-width: 768px) {
  .recruit-section__occupation {
    padding: 60px 20px;
  }
}
.recruit-section__occupation-inner {
  max-width: 1000px;
  margin: 0 auto;
  width: auto;
}
.recruit-section__occupation-inner .recruit-section__occupation-heading {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 768px) {
  .recruit-section__occupation-inner .recruit-section__occupation-heading {
    margin: 0 0 30px 0;
  }
}
.recruit-section__occupation-inner .recruit-section__occupation-heading .en-txt {
  text-align: center;
  font-size: 6.7rem;
  font-weight: 500;
  font-family: "Open Sans", serif;
  line-height: 1;
  color: #0D6EB9;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  .recruit-section__occupation-inner .recruit-section__occupation-heading .en-txt {
    font-size: 4.2rem;
  }
}
.recruit-section__occupation-inner .recruit-section__occupation-heading h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  color: #0D6EB9;
}
.recruit-section__occupation-inner .recruit-section__occupation-heading--white .en-txt {
  color: #fff;
}
.recruit-section__occupation-inner .recruit-section__occupation-heading--white h2 {
  color: #fff;
}
.recruit-section__occupation-inner .recruit-section__occupation-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.recruit-section__occupation-inner .recruit-section__occupation-list li {
  margin: 0 0 30px 0;
}
@media screen and (max-width: 768px) {
  .recruit-section__occupation-inner .recruit-section__occupation-list li {
    margin: 0 0 20px 0;
  }
}
.recruit-section__occupation-inner .recruit-section__occupation-list li:last-child {
  margin: 0;
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-h {
  padding: 40px 60px;
  box-sizing: border-box;
  background: #F5F7F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-h {
    padding: 30px 20px;
  }
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-h h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 20px 0 0;
  color: #0D6EB9;
}
@media screen and (max-width: 768px) {
  .recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-h h3 {
    font-size: 1.6rem;
  }
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-h .batsu-menu {
  width: 41px;
  height: 41px;
}
@media screen and (max-width: 768px) {
  .recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-h .batsu-menu {
    width: 31px;
    height: 31px;
  }
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-h .batsu-menu::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-accordion-plus.svg);
  background-size: 41px;
  width: 41px;
  height: 41px;
}
@media screen and (max-width: 768px) {
  .recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-h .batsu-menu::before {
    background-size: 31px;
    width: 31px;
    height: 31px;
  }
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-h.is-active .batsu-menu::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-accordion-minus.svg);
  background-size: 41px;
  width: 41px;
  height: 41px;
}
@media screen and (max-width: 768px) {
  .recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-h.is-active .batsu-menu::before {
    background-size: 31px;
    width: 31px;
    height: 31px;
  }
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt {
  overflow: hidden;
  line-height: 0;
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0 60px;
  transition-duration: 0.7s;
  background: #fff;
  border: solid 2px #F5F7F9;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 830px) {
  .recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt {
    padding: 0 20px;
  }
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt.is-open {
  padding: 40px 60px;
  line-height: 1.5;
  height: auto;
  opacity: 1;
  transition-duration: 0.7s;
}
@media screen and (max-width: 830px) {
  .recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt.is-open {
    padding: 30px 20px;
  }
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt table tbody tr td {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  vertical-align: top;
  padding: 0 0 15px 0;
}
@media screen and (max-width: 768px) {
  .recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt table tbody tr td {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt table tbody tr td:last-child {
  margin: 0;
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt table tbody tr td > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt table tbody tr td > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt table tbody tr td > a:hover {
    opacity: 1;
  }
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt table tbody tr td span {
  color: #0D6EB9;
  font-weight: 500;
}
@media screen and (max-width: 830px) {
  .recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt table tbody tr td {
    display: block;
    padding: 0 0 15px 0;
  }
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt table tbody tr td:first-child {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  padding: 0 15px 15px 0;
  width: 20%;
  margin: 0;
  color: #0D6EB9;
}
@media screen and (max-width: 830px) {
  .recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt table tbody tr td:first-child {
    padding: 0 0 5px 0;
    width: 100%;
  }
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt table tbody tr:last-child td {
  padding: 0;
}
.recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt table tbody tr:last-child td:first-child {
  padding: 0 15px 0 0;
}
@media screen and (max-width: 830px) {
  .recruit-section__occupation-inner .recruit-section__occupation-list li .recruit-section__occupation-list-txt table tbody tr:last-child td:first-child {
    padding: 0 0 5px 0;
    width: 100%;
  }
}
.recruit-section__occupation-inner .btn-main {
  max-width: 330px;
  width: 100%;
  margin: 60px auto 0 auto;
}
.recruit-section__occupation-inner .btn-main a {
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 28px 20px;
  box-sizing: border-box;
  border-radius: 10rem;
  background: #fff;
  border: solid 1px #0D6EB9;
  box-shadow: 5px 5px 0px 2px #00548E;
  color: #0D6EB9;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.recruit-section__occupation-inner .btn-main a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .recruit-section__occupation-inner .btn-main a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .recruit-section__occupation-inner .btn-main a {
    padding: 22px 15px;
    font-size: 1.6rem;
    box-shadow: 3px 3px 0px 2px #00548E;
  }
}
.recruit-section__occupation-inner .btn-main a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-r.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
@media screen and (max-width: 768px) {
  .recruit-section__occupation-inner .btn-main {
    margin: 40px auto 0 auto;
  }
}

/*-------------サービス紹介-------------*/
.service-section__anchor {
  padding: 80px 20px 60px 20px;
}
@media screen and (max-width: 768px) {
  .service-section__anchor {
    padding: 60px 20px 45px 20px;
  }
}
.service-section__anchor-list {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.service-section__anchor-list li {
  margin: 0 30px 60px 30px;
  max-width: 310px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .service-section__anchor-list li {
    margin: 0 0 15px 0;
    max-width: 100%;
  }
}
.service-section__anchor-list li a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  width: 100%;
  padding: 0 35px 20px 0;
  border-bottom: solid #0D6EB9 1px;
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  color: #0D6EB9;
  box-sizing: border-box;
}
.service-section__anchor-list li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .service-section__anchor-list li a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .service-section__anchor-list li a {
    font-size: 1.6rem;
    padding: 0 25px 15px 0;
  }
}
.service-section__anchor-list li a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-anchor.svg);
  background-size: 30px;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .service-section__anchor-list li a::after {
    background-size: 20px;
    width: 20px;
    height: 20px;
    top: 2px;
  }
}
.service-section__cont {
  padding: 120px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .service-section__cont {
    padding: 60px 20px;
  }
}
.service-section__cont--magazine {
  background: #FBEAD6;
}
.service-section__cont--business {
  background: #D7EDFB;
}
.service-section__cont--app {
  background: #D6EDE0;
}
.service-section__cont:nth-of-type(2n) .service-section__cont-desc .service-section__cont-img {
  order: 2;
}
.service-section__cont:nth-of-type(2n) .service-section__cont-desc .service-section__cont-txt {
  order: 1;
}
.service-section__cont-desc {
  max-width: 960px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .service-section__cont-desc {
    max-width: 400px;
  }
}
.service-section__cont-desc .service-section__cont-img {
  width: 32.61%;
  border-radius: 2rem;
  opacity: 0;
}
.service-section__cont-desc .service-section__cont-img.is-animated {
  animation: zoomIn 1200ms cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@media screen and (max-width: 768px) {
  .service-section__cont-desc .service-section__cont-img {
    width: 100%;
    margin: 0 auto;
    border: 1rem;
    order: 2;
  }
}
@media screen and (max-width: 540px) {
  .service-section__cont-desc .service-section__cont-img {
    max-width: 180px;
  }
}
.service-section__cont-desc .service-section__cont-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .service-section__cont-desc .service-section__cont-img img {
    border-radius: 1.5rem;
  }
}
.service-section__cont-desc .service-section__cont-img--magazine {
  border: solid 10px #E78401;
}
@media screen and (max-width: 768px) {
  .service-section__cont-desc .service-section__cont-img--magazine {
    border: solid 5px #E78401;
  }
}
.service-section__cont-desc .service-section__cont-img--business {
  border: solid 10px #0D94E2;
}
@media screen and (max-width: 768px) {
  .service-section__cont-desc .service-section__cont-img--business {
    border: solid 5px #0D94E2;
  }
}
.service-section__cont-desc .service-section__cont-img--app {
  border: solid 10px #009544;
}
@media screen and (max-width: 768px) {
  .service-section__cont-desc .service-section__cont-img--app {
    border: solid 5px #009544;
  }
}
.service-section__cont-desc .service-section__cont-txt {
  width: 54.17%;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 768px) {
  .service-section__cont-desc .service-section__cont-txt {
    transform: translate(0, 40px);
  }
}
.service-section__cont-desc .service-section__cont-txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .service-section__cont-desc .service-section__cont-txt {
    width: 100%;
    order: 1;
    margin: 0 0 30px 0;
  }
}
.service-section__cont-desc .service-section__cont-txt h2 {
  margin: 0 0 60px 0;
  max-width: 290px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .service-section__cont-desc .service-section__cont-txt h2 {
    margin: 0 auto 30px auto;
    max-width: 250px;
  }
}
.service-section__cont-desc .service-section__cont-txt h2 img {
  width: 100%;
  display: block;
}
.service-section__cont-desc .service-section__cont-txt p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .service-section__cont-desc .service-section__cont-txt p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.service-section__cont-desc .service-section__cont-txt p:last-child {
  margin: 0;
}
.service-section__cont-desc .service-section__cont-txt p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.service-section__cont-desc .service-section__cont-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .service-section__cont-desc .service-section__cont-txt p > a:hover {
    opacity: 1;
  }
}
.service-section__cont-desc .service-section__cont-txt p span {
  color: #0D6EB9;
  font-weight: 500;
}
.service-section__cont-point {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin: 240px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .service-section__cont-point {
    margin: 100px auto 0 auto;
  }
}
.service-section__cont-point::before {
  content: "POINT";
  display: inline-block;
  font-size: 14.2rem;
  font-family: "Open Sans", serif;
  font-weight: 400;
  line-height: 1;
  z-index: -1;
  opacity: 0.15;
  position: absolute;
  left: 0;
  top: -110px;
}
@media screen and (max-width: 768px) {
  .service-section__cont-point::before {
    font-size: 7rem;
    top: -50px;
  }
}
.service-section__cont-point .service-section__cont-detail {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .service-section__cont-point .service-section__cont-detail {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .service-section__cont-point .service-section__cont-detail:last-child {
    margin: 0;
  }
}
.service-section__cont-point .service-section__cont-detail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-section__cont-point--magazine::before {
  color: #E78401;
}
.service-section__cont-point--business::before {
  color: #0D94E2;
}
.service-section__cont-point--app::before {
  color: #009544;
}
.service-section__cont-btn {
  max-width: 380px;
  width: 100%;
  margin: 100px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .service-section__cont-btn {
    margin: 30px auto 0 auto;
  }
}
.service-section__cont-btn a {
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 28px 20px;
  box-sizing: border-box;
  border-radius: 10rem;
  background: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.service-section__cont-btn a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .service-section__cont-btn a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .service-section__cont-btn a {
    padding: 22px 15px;
    font-size: 1.6rem;
  }
}
.service-section__cont-btn a::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.service-section__cont-btn--magazine a {
  border: solid 1px #E78401;
  box-shadow: 5px 5px 0px 2px #E78401;
  color: #E78401;
}
@media screen and (max-width: 768px) {
  .service-section__cont-btn--magazine a {
    box-shadow: 3px 3px 0px 2px #E78401;
  }
}
.service-section__cont-btn--magazine a::after {
  background: url(../../images/icon-btn-window-o.svg);
  background-size: 48px;
}
.service-section__cont-btn--business a {
  border: solid 1px #0D94E2;
  box-shadow: 5px 5px 0px 2px #0D94E2;
  color: #0D6EB9;
}
@media screen and (max-width: 768px) {
  .service-section__cont-btn--business a {
    box-shadow: 3px 3px 0px 2px #0D94E2;
  }
}
.service-section__cont-btn--business a::after {
  background: url(../../images/icon-btn-window-b.svg);
  background-size: 48px;
}
.service-section__cont-btn--app a {
  border: solid 1px #009544;
  box-shadow: 5px 5px 0px 2px #009544;
  color: #009544;
}
@media screen and (max-width: 768px) {
  .service-section__cont-btn--app a {
    box-shadow: 3px 3px 0px 2px #009544;
  }
}
.service-section__cont-btn--app a::after {
  background: url(../../images/icon-btn-window-g.svg);
  background-size: 48px;
}
.service-section__other {
  padding: 120px 20px 60px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .service-section__other {
    padding: 60px 20px;
  }
}
.service-section__other-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
.service-section__other-inner .service-section__other-desc {
  margin: 0 0 60px 0;
}
@media screen and (max-width: 768px) {
  .service-section__other-inner .service-section__other-desc {
    margin: 0 0 40px 0;
  }
}
.service-section__other-inner .service-section__other-desc p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  font-weight: 500;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-section__other-inner .service-section__other-desc p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.service-section__other-inner .service-section__other-desc p:last-child {
  margin: 0;
}
.service-section__other-inner .service-section__other-desc p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.service-section__other-inner .service-section__other-desc p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .service-section__other-inner .service-section__other-desc p > a:hover {
    opacity: 1;
  }
}
.service-section__other-inner .service-section__other-desc p span {
  color: #0D6EB9;
  font-weight: 500;
}
.service-section__other-inner .service-section__other-desc p span {
  color: #DD8989;
  background: linear-gradient(transparent 70%, #FCF3F4 70%);
}
@media screen and (max-width: 768px) {
  .service-section__other-inner .service-section__other-desc p {
    text-align: left;
  }
}
.service-section__other-inner .service-section__other-cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-section__other-inner .service-section__other-cont .service-section__other-item {
  width: 47.5%;
  padding: 60px 20px;
  margin: 0 0 60px 0;
  box-sizing: border-box;
  background: #F5F7F9;
}
@media screen and (max-width: 768px) {
  .service-section__other-inner .service-section__other-cont .service-section__other-item {
    width: 100%;
    padding: 40px 20px;
    margin: 0 0 40px 0;
  }
  .service-section__other-inner .service-section__other-cont .service-section__other-item:last-child {
    margin: 0;
  }
}
.service-section__other-inner .service-section__other-cont .service-section__other-item-inner {
  max-width: 450px;
  margin: 0 auto;
  width: auto;
}
.service-section__other-inner .service-section__other-cont .service-section__other-item-inner h3 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #DD8989;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .service-section__other-inner .service-section__other-cont .service-section__other-item-inner h3 {
    font-size: 2rem;
  }
}
.service-section__other-inner .service-section__other-cont .service-section__other-item-inner > ul {
  margin: 50px 0 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .service-section__other-inner .service-section__other-cont .service-section__other-item-inner > ul {
    margin: 20px 0 0 0;
  }
}
.service-section__other-inner .service-section__other-cont .service-section__other-item-inner > ul li {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 10px 0;
  padding: 0 0 0 20px;
  position: relative;
}
.service-section__other-inner .service-section__other-cont .service-section__other-item-inner > ul li > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
}
.service-section__other-inner .service-section__other-cont .service-section__other-item-inner > ul li > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .service-section__other-inner .service-section__other-cont .service-section__other-item-inner > ul li > a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .service-section__other-inner .service-section__other-cont .service-section__other-item-inner > ul li {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.service-section__other-inner .service-section__other-cont .service-section__other-item-inner > ul li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  background: #D1E5F2;
  background-size: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .service-section__other-inner .service-section__other-cont .service-section__other-item-inner > ul li::before {
    top: 10px;
  }
}
.service-section__other-inner .service-section__other-cont .service-section__other-item-inner > ul li:last-child {
  margin: 0;
}
.service-section__other-inner .service-section__other-cont .service-section__other-item-inner p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .service-section__other-inner .service-section__other-cont .service-section__other-item-inner p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.service-section__other-inner .service-section__other-cont .service-section__other-item-inner p:last-child {
  margin: 0;
}
.service-section__other-inner .service-section__other-cont .service-section__other-item-inner p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.service-section__other-inner .service-section__other-cont .service-section__other-item-inner p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .service-section__other-inner .service-section__other-cont .service-section__other-item-inner p > a:hover {
    opacity: 1;
  }
}
.service-section__other-inner .service-section__other-cont .service-section__other-item-inner p span {
  color: #0D6EB9;
  font-weight: 500;
}
.service-section__other-inner .service-section__other-cont .service-section__other-item-inner p:last-child {
  margin: 50px 0 0 0;
}
@media screen and (max-width: 768px) {
  .service-section__other-inner .service-section__other-cont .service-section__other-item-inner p:last-child {
    margin: 20px 0 0 0;
  }
}

/*-------------お問い合わせ-------------*/
.contact-section {
  padding: 80px 20px 120px 20px;
}
@media screen and (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }
}
.contact-section-inner {
  max-width: 830px;
  margin: 0 auto;
  width: auto;
}
.contact-section-inner__desc {
  margin: 0 0 120px 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__desc {
    margin: 0 0 40px 0;
  }
}
.contact-section-inner__desc p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  font-weight: 500;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__desc p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.contact-section-inner__desc p:last-child {
  margin: 0;
}
.contact-section-inner__desc p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.contact-section-inner__desc p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner__desc p > a:hover {
    opacity: 1;
  }
}
.contact-section-inner__desc p span {
  color: #0D6EB9;
  font-weight: 500;
}
.contact-section-inner__desc p span {
  color: #DD8989;
  background: linear-gradient(transparent 70%, #FCF3F4 70%);
}
.contact-section-inner__form table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
}
.contact-section-inner__form table tbody tr {
  border-top: solid 1px #D5E1E8;
}
.contact-section-inner__form table tbody tr:last-child {
  border-bottom: solid 1px #D5E1E8;
}
.contact-section-inner__form table tbody tr td {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  vertical-align: top;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form table tbody tr td {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.contact-section-inner__form table tbody tr td:last-child {
  margin: 0;
}
.contact-section-inner__form table tbody tr td > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.contact-section-inner__form table tbody tr td > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner__form table tbody tr td > a:hover {
    opacity: 1;
  }
}
.contact-section-inner__form table tbody tr td span {
  color: #0D6EB9;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form table tbody tr td {
    display: block;
    padding: 0 0 15px 0;
  }
}
.contact-section-inner__form table tbody tr td:first-child {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  padding: 30px 30px 30px 0;
  width: 20%;
  margin: 0;
  color: #0D6EB9;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form table tbody tr td:first-child {
    padding: 15px 0 5px 0;
    width: 100%;
  }
}
.contact-section-inner__form-thanks h3 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 30px 0;
  color: #0D6EB9;
  padding: 0 0 0 50px;
  position: relative;
}
.contact-section-inner__form-thanks h3::before {
  content: "";
  display: inline-block;
  position: relative;
  background: #0D6EB9;
  width: 20px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 14px;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-thanks h3::before {
    width: 15px;
    top: 12px;
  }
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-thanks h3 {
    font-size: 2rem;
    margin: 0 0 20px 0;
    padding: 0 0 0 30px;
  }
}
.contact-section-inner__form-thanks p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-thanks p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.contact-section-inner__form-thanks p:last-child {
  margin: 0;
}
.contact-section-inner__form-thanks p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.contact-section-inner__form-thanks p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner__form-thanks p > a:hover {
    opacity: 1;
  }
}
.contact-section-inner__form-thanks p span {
  color: #0D6EB9;
  font-weight: 500;
}
.contact-section-inner__form-item {
  display: flex;
  align-items: flex-start;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item {
    flex-flow: column;
    margin: 0 0 20px 0;
  }
}
.contact-section-inner__form-item > label {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 80px 0 0;
  color: #0D6EB9;
  display: flex;
  align-items: center;
  width: 243px;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item > label {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
  }
}
.contact-section-inner__form-item > label .required {
  position: relative;
  background: #0D6EB9;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0 15px 0 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item > label .required {
    width: 36px;
    height: 36px;
    margin: 0 10px 0 0;
  }
}
.contact-section-inner__form-item > label .required span {
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.contact-section-inner__form-item > label .any {
  position: relative;
  background: #fff;
  border: solid 1px #0D6EB9;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0 15px 0 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item > label .any {
    width: 36px;
    height: 36px;
    margin: 0 10px 0 0;
  }
}
.contact-section-inner__form-item > label .any span {
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  color: #0D6EB9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.contact-section-inner__form-item .contact-section-inner__form-cont {
  font-size: 1.6rem;
  width: 100%;
  font-weight: 400;
  line-height: 2;
  color: #485760;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-cont {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-cont input {
  box-sizing: border-box;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  border: none;
  padding: 11px 5px;
  font-size: 1.6rem;
  box-sizing: border-box;
  background: #F5F7F9;
  line-height: 1.6;
  -webkit-appearance: none;
  outline: none;
  width: 100%;
  color: #485760;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-cont input {
    font-size: 1.5rem;
    padding: 10px 5px;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-cont .wpcf7-not-valid-tip {
  margin: 10px 0 0 0;
  color: #DD8989;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-cont .wpcf7-not-valid-tip {
    font-size: 1.5rem;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap {
  display: block;
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control {
  display: block;
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
  display: block;
  margin: 0 0 15px 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
    margin: 0 0 10px 0;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item:last-child {
  margin: 0;
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label {
  display: inline-block;
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label input[type=checkbox] {
  display: none;
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: #485760;
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span {
  display: inline-block;
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  position: relative;
  padding: 0 0 0 30px;
  margin: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span:last-child {
  margin: 0;
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span > a:hover {
    opacity: 1;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span span {
  color: #0D6EB9;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span {
    margin: 0;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  left: 0;
  background: #fff;
  border: solid 1px #485760;
  border-radius: 0.4rem;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin: 0 15px 0 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span::before {
    font-size: 1.5rem;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span::after {
  content: "";
  display: block;
  background: url(../../images/icon-check.svg);
  background-size: 8px;
  width: 8px;
  height: 6.4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6px;
  z-index: 1;
}
.contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  color: #DD8989;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-check .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    margin: 5px 0 0 0;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-address {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  width: 100%;
  font-weight: 400;
  line-height: 2;
  color: #485760;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-address {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-address .wpcf7-form-control-wrap {
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 830px) {
  .contact-section-inner__form-item .contact-section-inner__form-address .wpcf7-form-control-wrap {
    max-width: 160px;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-address .wpcf7-form-control-wrap input {
  box-sizing: border-box;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  border: none;
  padding: 11px 5px;
  font-size: 1.6rem;
  box-sizing: border-box;
  background: #F5F7F9;
  line-height: 1.6;
  -webkit-appearance: none;
  outline: none;
  width: 100%;
  color: #485760;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-address .wpcf7-form-control-wrap input {
    font-size: 1.5rem;
    padding: 10px 5px;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-address button {
  border: none;
  cursor: pointer;
  display: block;
  text-align: center;
  padding: 14.5px 20px;
  box-sizing: border-box;
  background: #0D6EB9;
  text-decoration: none;
  max-width: 143px;
  width: 100%;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  transition: all 0.3s;
  margin: 0 0 0 10px;
  border-radius: 0.8rem;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.contact-section-inner__form-item .contact-section-inner__form-address button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner__form-item .contact-section-inner__form-address button:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 830px) {
  .contact-section-inner__form-item .contact-section-inner__form-address button {
    padding: 13.5px 20px;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    margin: 0 0 0 5px;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-flex {
  display: flex;
  align-items: center;
  flex: 1;
}
.contact-section-inner__form-item .contact-section-inner__form-flex-inner {
  margin: 0 20px 0 0;
  font-size: 1.6rem;
  width: 100%;
  font-weight: 400;
  line-height: 2;
  color: #485760;
  flex: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-flex-inner {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-flex-inner {
    margin: 0 10px 0 0;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-flex-inner span {
  display: inline-block;
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-flex-inner span {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-flex-inner span:last-child {
  margin: 0;
}
.contact-section-inner__form-item .contact-section-inner__form-flex-inner span > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.contact-section-inner__form-item .contact-section-inner__form-flex-inner span > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner__form-item .contact-section-inner__form-flex-inner span > a:hover {
    opacity: 1;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-flex-inner span span {
  color: #0D6EB9;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-flex-inner span {
    margin: 0 5px 0 0;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-flex-inner span.error {
  color: #DD8989;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 0 10px;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-flex-inner span.error {
    margin: 0 0 0 5px;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-flex-inner .wpcf7-form-control-wrap {
  margin: 0;
}
.contact-section-inner__form-item .contact-section-inner__form-flex-inner .wpcf7-form-control-wrap input {
  box-sizing: border-box;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  border: none;
  padding: 11px 5px;
  font-size: 1.6rem;
  box-sizing: border-box;
  background: #F5F7F9;
  line-height: 1.6;
  -webkit-appearance: none;
  outline: none;
  width: 100%;
  color: #485760;
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-flex-inner .wpcf7-form-control-wrap input {
    font-size: 1.5rem;
    padding: 10px 5px;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-flex-inner .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: block;
  margin: 10px 0 0 0;
  color: #DD8989;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
.contact-section-inner__form-item .contact-section-inner__form-textarea {
  font-size: 1.6rem;
  width: 100%;
  font-weight: 400;
  line-height: 2;
  color: #485760;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-textarea {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-textarea textarea {
  box-sizing: border-box;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  border: none;
  padding: 11px 5px;
  font-size: 1.6rem;
  box-sizing: border-box;
  background: #F5F7F9;
  line-height: 1.6;
  -webkit-appearance: none;
  outline: none;
  width: 100%;
  color: #485760;
  outline: none;
  height: 195px;
  resize: none;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-textarea textarea {
    font-size: 1.5rem;
    padding: 10px 5px;
  }
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-textarea textarea {
    height: 160px;
  }
}
.contact-section-inner__form-item .contact-section-inner__form-textarea .wpcf7-not-valid-tip {
  display: block;
  margin: 10px 0 0 0;
  color: #DD8989;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item .contact-section-inner__form-textarea .wpcf7-not-valid-tip {
    font-size: 1.5rem;
  }
}
.contact-section-inner__form-item-check {
  text-align: center;
  margin: 0 0 40px 0;
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap {
  display: block;
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control {
  display: block;
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
  display: block;
  margin: 0 0 15px 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
    margin: 0 0 10px 0;
  }
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item:last-child {
  margin: 0;
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label {
  display: inline-block;
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label input[type=checkbox] {
  display: none;
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: #485760;
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span {
  display: inline-block;
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  position: relative;
  padding: 0 0 0 30px;
  margin: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span:last-child {
  margin: 0;
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span > a:hover {
    opacity: 1;
  }
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span span {
  color: #0D6EB9;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span {
    margin: 0;
  }
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  left: 0;
  background: #fff;
  border: solid 1px #485760;
  border-radius: 0.4rem;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin: 0 15px 0 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span::before {
    font-size: 1.5rem;
  }
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item > label span::after {
  content: "";
  display: block;
  background: url(../../images/icon-check.svg);
  background-size: 8px;
  width: 8px;
  height: 6.4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6px;
  z-index: 1;
}
.contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  color: #DD8989;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item-check .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    margin: 5px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form-item-check {
    margin: 0 0 20px 0;
  }
}
.contact-section-inner__form .btn-form {
  margin: 40px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form .btn-form {
    margin: 20px auto 0 auto;
  }
}
.contact-section-inner__form .btn-form .wpcf7-spinner {
  display: none;
}
.contact-section-inner__form .btn-form span {
  display: block;
  max-width: 330px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.contact-section-inner__form .btn-form span input {
  cursor: pointer;
  border: none;
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 28px 20px;
  box-sizing: border-box;
  border-radius: 10rem;
  background: #fff;
  border: solid 1px #0D6EB9;
  box-shadow: 5px 5px 0px 2px #0D6EB9;
  color: #0D6EB9;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.contact-section-inner__form .btn-form span input:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner__form .btn-form span input:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form .btn-form span input {
    padding: 22px 15px;
    font-size: 1.6rem;
    box-shadow: 3px 3px 0px 2px #0D6EB9;
  }
}
.contact-section-inner__form .btn-form span::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-r.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.contact-section-inner__form .btn-form span input[type=submit] {
  -webkit-appearance: none;
  text-decoration: none;
}
.contact-section-inner__form .btn-back {
  margin: 20px auto 0 auto;
}
.contact-section-inner__form .btn-back .wpcf7-spinner {
  display: none;
}
.contact-section-inner__form .btn-back span {
  display: block;
  max-width: 330px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.contact-section-inner__form .btn-back span input {
  cursor: pointer;
  border: none;
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 28px 20px;
  box-sizing: border-box;
  border-radius: 10rem;
  background: #fff;
  border: solid 1px #0D6EB9;
  box-shadow: 5px 5px 0px 2px #0D6EB9;
  color: #0D6EB9;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.contact-section-inner__form .btn-back span input:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact-section-inner__form .btn-back span input:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .contact-section-inner__form .btn-back span input {
    padding: 22px 15px;
    font-size: 1.6rem;
    box-shadow: 3px 3px 0px 2px #0D6EB9;
  }
}
.contact-section-inner__form .btn-back span::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-l.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}
.contact-section-inner__form .btn-back span input[type=submit] {
  -webkit-appearance: none;
  text-decoration: none;
}
.contact-section-inner__form .wpcf7-response-output {
  margin: 20px auto 0 auto;
  padding: 0;
  border: none;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #DD8989;
}
@media screen and (max-width: 830px) {
  .contact-section-inner__form .wpcf7-response-output {
    font-size: 1.5rem;
  }
}

/*-------------ページが見つかりません-------------*/
.not-section {
  padding: 80px 20px 120px 20px;
}
@media screen and (max-width: 768px) {
  .not-section {
    padding: 60px 20px;
  }
}
.not-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
.not-section-inner p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  margin: 0 0 40px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .not-section-inner p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.not-section-inner p:last-child {
  margin: 0;
}
.not-section-inner p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.not-section-inner p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .not-section-inner p > a:hover {
    opacity: 1;
  }
}
.not-section-inner p span {
  color: #0D6EB9;
  font-weight: 500;
}
.not-section-inner .btn-main {
  max-width: 330px;
  width: 100%;
  margin: 0 auto;
}
.not-section-inner .btn-main a {
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 28px 20px;
  box-sizing: border-box;
  border-radius: 10rem;
  background: #fff;
  border: solid 1px #0D6EB9;
  box-shadow: 5px 5px 0px 2px #00548E;
  color: #0D6EB9;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.not-section-inner .btn-main a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .not-section-inner .btn-main a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .not-section-inner .btn-main a {
    padding: 22px 15px;
    font-size: 1.6rem;
    box-shadow: 3px 3px 0px 2px #00548E;
  }
}
.not-section-inner .btn-main a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-r.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

/*-------------固定ページ-------------*/
.page-section {
  padding: 80px 20px 120px 20px;
}
@media screen and (max-width: 768px) {
  .page-section {
    padding: 60px 20px;
  }
}
.page-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
.page-section-inner h4 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 40px 0 30px 0;
  color: #0D6EB9;
  padding: 0 0 0 50px;
  position: relative;
}
.page-section-inner h4::before {
  content: "";
  display: inline-block;
  position: relative;
  background: #0D6EB9;
  width: 20px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 14px;
}
@media screen and (max-width: 768px) {
  .page-section-inner h4::before {
    width: 15px;
    top: 12px;
  }
}
@media screen and (max-width: 768px) {
  .page-section-inner h4 {
    font-size: 2rem;
    margin: 20px 0 15px 0;
    padding: 0 0 0 30px;
  }
}
.page-section-inner p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  .page-section-inner p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.page-section-inner p:last-child {
  margin: 0;
}
.page-section-inner p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
.page-section-inner p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .page-section-inner p > a:hover {
    opacity: 1;
  }
}
.page-section-inner p span {
  color: #0D6EB9;
  font-weight: 500;
}
.page-section-inner p:first-child {
  margin: 0;
}
.page-section-inner p:last-child {
  margin: 0;
}

/*-------------module-------------*/
/*-------------base-------------*/
/*-------------mixin-------------*/
header #header-wrap {
  z-index: 999;
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
header #header-wrap.header-animation {
  transform: translateY(-100%);
}
header #header-wrap.header-fixed {
  transform: none;
}
header #header-wrap .header-wrap-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap-inner {
    padding: 10px 15px;
    flex-flow: column;
    align-items: flex-start;
  }
}
header #header-wrap .header-wrap-inner__h1-lg {
  margin: 0;
  position: absolute;
  top: -70px;
  left: -50px;
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap-inner__h1-lg {
    display: none;
  }
}
header #header-wrap .header-wrap-inner__h1-lg a {
  background: #0D6EB9;
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
header #header-wrap .header-wrap-inner__h1-lg a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap-inner__h1-lg a:hover {
    opacity: 1;
  }
}
header #header-wrap .header-wrap-inner__h1-lg a img {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 180px;
  width: 100%;
  display: block;
}
header #header-wrap .header-wrap-inner__h1-md, header #header-wrap .header-wrap-inner__h1-md-lower {
  margin: 0;
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap-inner__h1-md, header #header-wrap .header-wrap-inner__h1-md-lower {
    display: block;
  }
}
header #header-wrap .header-wrap-inner__h1-md a, header #header-wrap .header-wrap-inner__h1-md-lower a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
header #header-wrap .header-wrap-inner__h1-md a:hover, header #header-wrap .header-wrap-inner__h1-md-lower a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap-inner__h1-md a:hover, header #header-wrap .header-wrap-inner__h1-md-lower a:hover {
    opacity: 1;
  }
}
header #header-wrap .header-wrap-inner__h1-md a img, header #header-wrap .header-wrap-inner__h1-md-lower a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 176px;
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap-inner__h1-md a img, header #header-wrap .header-wrap-inner__h1-md-lower a img {
    max-width: 160px;
  }
}
header #header-wrap .header-wrap-inner__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  flex: 1;
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap-inner__nav {
    display: none;
    width: 100%;
    margin: 30px 0 0 0;
  }
}
header #header-wrap .header-wrap-inner__nav > .header-wrap-inner__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap-inner__nav > .header-wrap-inner__list {
    flex-flow: column;
    margin: 0 0 20px 0;
  }
}
header #header-wrap .header-wrap-inner__nav > .header-wrap-inner__list > li {
  margin: 0 40px 0 0;
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap-inner__nav > .header-wrap-inner__list > li {
    margin: 0 0 10px 0;
    width: 100%;
  }
}
header #header-wrap .header-wrap-inner__nav > .header-wrap-inner__list > li:last-child {
  margin: 0;
}
header #header-wrap .header-wrap-inner__nav > .header-wrap-inner__list > li > a {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #485760;
  text-align: center;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
header #header-wrap .header-wrap-inner__nav > .header-wrap-inner__list > li > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap-inner__nav > .header-wrap-inner__list > li > a:hover {
    opacity: 1;
  }
}
header #header-wrap .header-wrap-inner__nav > .header-wrap-inner__list > li > a span {
  font-family: "Open Sans", serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0D6EB9;
  margin: 0 0 5px 0;
  display: inline-block;
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap-inner__nav > .header-wrap-inner__list > li > a {
    border-bottom: solid 1px #0D6EB9;
    padding: 0 0 10px 0;
  }
}
header #header-wrap .header-wrap-inner__menu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 11;
  display: none;
}
@media screen and (max-width: 1100px) {
  header #header-wrap .header-wrap-inner__menu {
    display: block;
  }
}
header #header-wrap .header-wrap-inner__menu .header-wrap-inner__menu-icon {
  position: relative;
  cursor: pointer;
  height: 60px;
  width: 60px;
  box-sizing: border-box;
  background: #0D6EB9;
}
header #header-wrap .header-wrap-inner__menu .header-wrap-inner__menu-icon span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 20px;
  height: 1px;
  background: #fff;
  width: 34%;
}
header #header-wrap .header-wrap-inner__menu .header-wrap-inner__menu-icon span:nth-of-type(1) {
  top: 16px;
}
header #header-wrap .header-wrap-inner__menu .header-wrap-inner__menu-icon span:nth-of-type(2) {
  top: 22px;
}
header #header-wrap .header-wrap-inner__menu .header-wrap-inner__menu-icon span:nth-of-type(3) {
  top: 29px;
}
header #header-wrap .header-wrap-inner__menu .header-wrap-inner__menu-icon.menu-icon-close span:nth-of-type(1) {
  top: 23px;
  transform: rotate(-45deg);
}
header #header-wrap .header-wrap-inner__menu .header-wrap-inner__menu-icon.menu-icon-close span:nth-of-type(2) {
  top: 23px;
  transform: rotate(45deg);
}
header #header-wrap .header-wrap-inner__menu .header-wrap-inner__menu-icon.menu-icon-close span:nth-of-type(3) {
  top: 23px;
  transform: rotate(45deg);
}
header #header-wrap .header-wrap-inner__menu .header-wrap-inner__menu-icon p {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  font-family: "Open Sans", serif;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0;
}

/*-------------base-------------*/
/*-------------mixin-------------*/
footer .footer-contact {
  background: #0D6EB9;
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  footer .footer-contact {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-contact {
    padding: 60px 20px;
  }
}
footer .footer-contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  footer .footer-contact-inner {
    flex-flow: column;
    align-items: flex-start;
  }
}
footer .footer-contact-inner__cont {
  margin: 0 40px 0 0;
}
@media screen and (max-width: 768px) {
  footer .footer-contact-inner__cont {
    margin: 0 0 30px 0;
  }
}
footer .footer-contact-inner__cont .footer-contact-inner__heading {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 768px) {
  footer .footer-contact-inner__cont .footer-contact-inner__heading {
    margin: 0 0 30px 0;
  }
}
footer .footer-contact-inner__cont .footer-contact-inner__heading .en-txt {
  font-size: 6.8rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  footer .footer-contact-inner__cont .footer-contact-inner__heading .en-txt {
    font-size: 4.8rem;
  }
}
footer .footer-contact-inner__cont .footer-contact-inner__heading h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  color: #fff;
}
footer .footer-contact-inner__cont .footer-contact-inner__cont-txt p {
  font-size: 1.6rem;
  color: #485760;
  font-weight: 400;
  line-height: 2;
  margin: 0 0 20px 0;
  margin: 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .footer-contact-inner__cont .footer-contact-inner__cont-txt p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
footer .footer-contact-inner__cont .footer-contact-inner__cont-txt p:last-child {
  margin: 0;
}
footer .footer-contact-inner__cont .footer-contact-inner__cont-txt p > a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  color: #0D6EB9;
  text-decoration: underline;
}
footer .footer-contact-inner__cont .footer-contact-inner__cont-txt p > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  footer .footer-contact-inner__cont .footer-contact-inner__cont-txt p > a:hover {
    opacity: 1;
  }
}
footer .footer-contact-inner__cont .footer-contact-inner__cont-txt p span {
  color: #0D6EB9;
  font-weight: 500;
}
footer .footer-contact-inner__btn {
  max-width: 330px;
  width: 100%;
}
footer .footer-contact-inner__btn a {
  width: 100%;
  text-decoration: none;
  display: block;
  padding: 28px 20px;
  box-sizing: border-box;
  border-radius: 10rem;
  background: #fff;
  border: solid 1px #0D6EB9;
  box-shadow: 5px 5px 0px 2px #00548E;
  color: #0D6EB9;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
footer .footer-contact-inner__btn a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  footer .footer-contact-inner__btn a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-contact-inner__btn a {
    padding: 22px 15px;
    font-size: 1.6rem;
    box-shadow: 3px 3px 0px 2px #00548E;
  }
}
footer .footer-contact-inner__btn a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-r.svg);
  background-size: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
footer .footer-contact__bg-font {
  position: absolute;
  z-index: 1;
  top: -30px;
  right: -30px;
}
@media screen and (max-width: 1100px) {
  footer .footer-contact__bg-font {
    max-width: 200px;
    top: -40px;
    right: -40px;
  }
}
footer .footer-contact__bg-font img {
  display: block;
  width: 100%;
  animation: 8s linear infinite rotation;
}
footer .footer-info {
  background: #fff;
  position: relative;
  border-radius: 8rem 8rem 0 0;
}
footer .footer-info::after {
  content: "";
  display: inline-block;
  position: relative;
  position: absolute;
  left: 0;
  top: -1px;
  background: #0D6EB9;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  footer .footer-info {
    border-radius: 4rem 4rem 0 0;
  }
}
footer .footer-info-wrap {
  overflow: hidden;
  padding: 70px 20px 20px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .footer-info-wrap {
    padding: 40px 20px 20px 20px;
  }
}
footer .footer-info-wrap-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: auto;
}
footer .footer-info-wrap-inner__logo {
  margin: 0 auto 70px auto;
  max-width: 140px;
}
@media screen and (max-width: 768px) {
  footer .footer-info-wrap-inner__logo {
    max-width: 100px;
    margin: 0 auto 40px auto;
  }
}
footer .footer-info-wrap-inner__logo a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
footer .footer-info-wrap-inner__logo a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  footer .footer-info-wrap-inner__logo a:hover {
    opacity: 1;
  }
}
footer .footer-info-wrap-inner__logo a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__list {
  padding: 0;
  margin: 0 0 30px 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__list {
    flex-flow: column;
    margin: 0 0 40px 0;
  }
}
footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__list > li {
  margin: 0 20px 20px 20px;
}
@media screen and (max-width: 768px) {
  footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__list > li {
    margin: 0 0 10px 0;
    width: 100%;
  }
  footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__list > li:last-child {
    margin: 0;
  }
}
footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__list > li > a {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #485760;
  text-align: center;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__list > li > a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__list > li > a:hover {
    opacity: 1;
  }
}
footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__list > li > a span {
  font-family: "Open Sans", serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0D6EB9;
  margin: 0 0 5px 0;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__list > li > a {
    border-bottom: solid 1px #0D6EB9;
    padding: 0 0 10px 0;
  }
}
footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__window {
  list-style: none;
  display: flex;
  justify-content: space-between;
  max-width: 870px;
  margin: 0 auto 70px auto;
  padding: 0;
}
@media screen and (max-width: 1100px) {
  footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__window {
    flex-flow: column;
  }
}
footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__window .footer-info-wrap-inner__item {
  width: 31.8%;
}
@media screen and (max-width: 1100px) {
  footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__window .footer-info-wrap-inner__item {
    width: 100%;
    margin: 0 0 15px 0;
  }
  footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__window .footer-info-wrap-inner__item:last-child {
    margin: 0;
  }
}
footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__window .footer-info-wrap-inner__item a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  padding: 25px 30px;
  box-sizing: border-box;
  border-radius: 1.6rem;
  border: solid 1px #0D6EB9;
  height: 100%;
  position: relative;
}
footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__window .footer-info-wrap-inner__item a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__window .footer-info-wrap-inner__item a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__window .footer-info-wrap-inner__item a {
    border-radius: 2rem;
    padding: 20px;
  }
}
footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__window .footer-info-wrap-inner__item a img {
  display: block;
  max-width: 170px;
  width: 100%;
}
footer .footer-info-wrap-inner__nav .footer-info-wrap-inner__window .footer-info-wrap-inner__item a::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-btn-window-b-1.svg);
  background-size: 30px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
footer .footer-info-wrap-inner__copy-txt {
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
  font-family: "Open Sans", serif;
  line-height: 1;
}
footer .footer-info-wrap__pagetop {
  position: absolute;
  right: -40px;
  bottom: -30px;
}
@media screen and (max-width: 1100px) {
  footer .footer-info-wrap__pagetop {
    right: -20px;
    bottom: -10px;
  }
}
footer .footer-info-wrap__pagetop a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  background: #0D6EB9;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  position: relative;
}
footer .footer-info-wrap__pagetop a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  footer .footer-info-wrap__pagetop a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1100px) {
  footer .footer-info-wrap__pagetop a {
    width: 100px;
    height: 100px;
  }
}
footer .footer-info-wrap__pagetop a span {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Open Sans", serif;
  color: #fff;
  line-height: 1;
  writing-mode: vertical-lr;
  position: absolute;
  top: 30px;
  right: 80px;
}
@media screen and (max-width: 1100px) {
  footer .footer-info-wrap__pagetop a span {
    top: 20px;
    right: 40px;
  }
}
footer .footer-info-wrap__pagetop a span::after {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../../images/icon-arrow-top.svg);
  background-size: 8px;
  width: 8px;
  height: 63px;
  position: absolute;
  top: 35px;
  left: 3px;
}/*# sourceMappingURL=style.css.map */