@charset "utf-8";
/*
Author: あそびラボ
Version: 1.1
*/
/*=======================================================
　基本設定
=======================================================*/
@font-face {
  font-family: "noto-sans-jp";
  src: url(./fonts/Noto_Sans_JP/NotoSansJP-Regular.woff) format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "noto-sans-jp";
  src: url(./fonts/Noto_Sans_JP/NotoSansJp-Medium.woff) format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "noto-sans-jp";
  src: url(./fonts/Noto_Sans_JP/NotoSansJP-Bold.woff) format("woff");
  font-weight: 700;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-style: normal;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  line-break: strict;
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*,
*:focus,
a:focus {
  outline: none;
}
body,
.ly-head,
.ly-main,
.ly-foot {
  min-width: 1140px;
}
body {
  background: #fff;
  font-family: "noto-sans-jp", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  -webkit-text-size-adjust: 100%;
  color: #222;
}
article,
aside,
figcaption,
figure,
picture,
footer,
main,
header,
nav,
section {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
ul,
ol {
  list-style: none;
}
p,
li,
dt,
dd,
th,
td {
  -ms-line-break: strict;
  line-break: strict;
  word-break: break-word;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}
picture {
  line-height: 0;
}
input,
button,
select,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  outline: none;
}
input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #fff inset;
}
input[type="checkbox"] {
  display: none;
}
input[type="radio"] {
  display: none;
}
button,
textarea {
  font-family: inherit;
  font-size: 100%;
}
/* PC SP */
.pc {
  display: revert;
}
.sp {
  display: none;
}
@media only screen and (min-device-width: 1025px) {
  /* PCのみホバー効果 */
  a:hover,
  .hp-hover:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  label:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 750px) {
  body,
  .ly-head,
  .ly-main,
  .ly-foot {
    min-width: 750px;
    max-width: 750px;
    width: 100%;
  }
  body {
    font-size: 28px;
    line-height: 1.5;
  }
  .sp {
    display: revert;
  }
  .pc {
    display: none;
  }
}
/*=============================
　共通レイアウト
==============================*/
/* 全体のWrapper */
.ly-allWrapper {
  overflow: hidden;
  max-width: 2000px;
  margin: 0 auto;
}
/* inner */
.ly-head-inner,
.ly-foot-inner,
.ly-cont,
.ly-cont-inner {
  width: 1140px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
/* 2カラム */
.ly-cont--col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 44px;
}
.ly-cont-main {
  width: 700px;
}
.ly-cont-side {
  width: 280px;
}
/* bl-media */
.bl-mediaList {
  display: flex;
  flex-wrap: wrap;
}
.bl-media {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
}
.bl-media-imgWrapper {
  flex: 0 1 496px;
  height: 280px;
}
.bl-media-imgWrapper img {
  width: 554px;
}
.bl-media-mapWrapper iframe {
  width: 100%;
  height: 100%;
}
.bl-media-body {
  flex: 1;
}
.bl-media-ttl {
  font-size: 32px;
  position: relative;
  margin-bottom: 32px;
}
.bl-media-ttl::after {
  position: absolute;
  content: "";
  background: url(./images/common/media-Ttl-line.svg) top center/cover no-repeat;
  width: 554px;
  height: 5px;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.bl-media-txt {
  line-height: 1.6;
}
.bl-media-txt + .bl-media-txt {
  margin-top: 16px;
}
.bl-media-txt + a {
  margin-top: 40px;
}
.bl-media-txt + .el-att {
  margin-top: 12px;
}
/* bl-card */
.bl-cardUnit {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.bl-card {
  width: 340px;
}
.bl-card > img {
  margin-bottom: 16px;
}
.bl-cardTtl {
  font-size: 26px;
  text-align: center;
  position: relative;
  margin-bottom: 32px;
  letter-spacing: 1.56px;
}
.bl-cardTxt {
  letter-spacing: 0.68px;
}
@media screen and (max-width: 750px) {
  /* inner */
  .ly-cont,
  .ly-cont-inner {
    width: 690px;
  }
  /* 2カラム */
  .ly-cont--col {
    gap: 80px;
  }
  .ly-cont-main,
  .ly-cont-side {
    width: 100%;
  }
  .bl-media {
    justify-content: center;
    gap: 56px;
  }
  .bl-media-body {
    flex: 100%;
    display: flex;
    flex-direction: column;
  }
  .bl-media-ttl {
    text-align: center;
    border-width: 2px;
    margin-bottom: 72px;
  }
  .bl-media-ttl::after {
    background: url(./images/common/media-Ttl-line-sp.svg) top center/cover no-repeat;
    width: 690px;
    bottom: -23px;
  }
  .bl-media-imgWrapper {
    flex: none;
    width: 100%;
    height: auto;
  }
  .bl-media-imgWrapper img {
    width: 100%;
  }
  .bl-media-txt {
    line-height: 1.4645;
  }
  .bl-media-txt + .bl-media-txt {
    margin-top: 42px;
  }
  .bl-media-txt + .el-att {
    margin-top: 16px;
  }
  /* bl-card */
  .bl-cardUnit {
    gap: 80px;
  }
  .bl-card {
    width: 100%;
  }
  .bl-card > img {
    margin-bottom: 32px;
  }
  .bl-cardTtl {
    font-size: 40px;
    margin-bottom: 56px;
    letter-spacing: 2.4px;
  }
  .bl-cardTxt {
    letter-spacing: 1.12px;
  }
}
/*=============================
　下層MV - パンくず
==============================*/
/* MV */
.bl-lower-mv {
  margin-top: 134px;
  height: 160px;
  background: transparent linear-gradient(90deg, #d0e6ff 0%, #f5ffe5 100%) 0% 0% no-repeat padding-box;
  padding-top: 44px;
  position: relative;
}
.bl-lower-mv-ttl {
  display: flex;
  justify-content: center;
  text-align: center;
  position: relative;
}
.bl-lower-mv-ttl span {
  font-size: 28px;
  padding-top: 8px;
  position: relative;
}
.bl-lower-mv-ttl span::after {
  position: absolute;
  content: "";
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background: #93cf30;
}
/* パンくず */
.bl-breadcrumbs-inner {
  width: 1140px;
  margin: 0 auto;
  padding-top: 15px;
  display: flex;
  align-items: center;
}
.bl-breadcrumbs-inner.more {
  width: 1024px;
}
.bl-breadcrumbs-inner > li {
  font-size: 14px;
  line-height: 1;
}
.bl-breadcrumbs-inner > li:first-of-type ~ li::before {
  content: ">";
  margin: 0 7px;
}
.bl-breadcrumbs-inner .home {
  display: flex;
}
@media screen and (max-width: 750px) {
  /* MV */
  .bl-lower-mv {
    height: 180px;
    margin-top: 136px;
    padding-top: 50px;
  }
  .bl-lower-mv-ttl span {
    font-size: 36px;
    padding-top: 1px;
  }
  .bl-lower-mv-ttl span::after {
    bottom: 1px;
    width: 84px;
    height: 6px;
  }
  /* パンくず */
  .bl-breadcrumbs-inner,
  .bl-breadcrumbs-inner.more {
    width: 690px;
    padding-top: 24px;
  }
  .bl-breadcrumbs-inner > li {
    font-size: 22px;
    height: 32px;
  }
  .bl-breadcrumbs-inner > li:first-of-type ~ li::before {
    margin: 0 8px;
  }
}
/*=============================
　共通パーツ
==============================*/
/* 各sectionメイン見出し */
.el-sec-mainTtl {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 32px;
  letter-spacing: 1.92px;
  font-weight: bold;
  margin-bottom: 40px;
}
/* bl-bulletList */
.bl-bulletList > li {
  padding-left: 1em;
  position: relative;
}
.bl-bulletList > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.bl-bulletList.bl-bulletList--square > li {
  padding-left: calc(1em + 8px);
}
.bl-bulletList.bl-bulletList--square > li::before {
  content: "■";
}
/* bl-rhombusList */
.bl-rhombusList > li {
  padding-left: calc(1em + 8px);
  position: relative;
}
.bl-rhombusList > li:not(:first-of-type) {
  margin-top: 8px;
}
.bl-rhombusList > li::before {
  content: "◇";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
/* bl-numList */
.bl-numList {
  counter-reset: num;
}
.bl-numList > li {
  text-indent: 0.2em;
  padding-left: 1.2em;
  position: relative;
}
.bl-numList > li:before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.bl-numList--kakko {
  counter-reset: num;
}
.bl-numList--kakko > li {
  text-indent: -2.7em;
  padding-left: 2.7em;
}
.bl-numList--kakko > li:before {
  counter-increment: num;
  content: "（" counter(num) "）";
}
.bl-numList.bl-numList--circle > li:first-of-type::before {
  content: "①";
}
.bl-numList.bl-numList--circle > li:nth-of-type(2)::before {
  content: "②";
}
.bl-numList.bl-numList--circle > li:nth-of-type(3)::before {
  content: "③";
}
.bl-numList.bl-numList--circle > li:nth-of-type(4)::before {
  content: "④";
}
.bl-numList.bl-numList--circle > li:nth-of-type(5)::before {
  content: "⑤";
}
.bl-numList.bl-numList--circle > li:nth-of-type(6)::before {
  content: "⑥";
}
.bl-numList.bl-numList--circle > li:nth-of-type(7)::before {
  content: "⑦";
}
.bl-numList.bl-numList--circle > li:nth-of-type(8)::before {
  content: "⑧";
}
.bl-numList.bl-numList--circle > li:nth-of-type(9)::before {
  content: "⑨";
}
.bl-numList.bl-numList--circle > li:nth-of-type(10)::before {
  content: "⑩";
}
.bl-numList.bl-numList--circle > li:nth-of-type(11)::before {
  content: "⑪";
}
.bl-numList.bl-numList--circle > li:nth-of-type(12)::before {
  content: "⑫";
}
.bl-numList.bl-numList--circle > li:nth-of-type(13)::before {
  content: "⑬";
}
.bl-numList.bl-numList--circle > li:nth-of-type(14)::before {
  content: "⑭";
}
.bl-numList.bl-numList--circle > li:nth-of-type(15)::before {
  content: "⑮";
}

.bl-btnList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  position: relative;
}
/* el-btn */
.el-btn {
  display: flex;
  background-color: #0E847D;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  width: 320px;
  height: 56px;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0;
  margin: 0 auto;
  padding-bottom: 3px;
}
.el-btn::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}
.el-btn--red {
  background-color: #C30D23;
}
.el-btn--blue {
  background-color: #3884C6;
}
/* el-label */
.el-label {
  padding-top: 3px;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ※ */
.el-att {
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}
.el-att::before {
  content: "※";
  position: static;
  top: 0;
  left: 0;
}
span.el-att {
  display: block;
}
.el-shadow--blue,
.el-shadow--yellowGreen {
  position: relative;
}
.el-shadow--blue::after {
  background: #0181c0;
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 8px;
  top: 8px;
  left: -8px;
}
.el-shadow--yellowGreen::after {
  background: #93cf30;
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 8px;
  top: 8px;
  left: -8px;
}
@media screen and (max-width: 750px) {
  /* 各sectionメイン見出し */
  .el-sec-mainTtl {
    align-items: center;
    font-size: 42px;
    letter-spacing: 2.52px;
    margin-bottom: 56px;
  }
  .el-shadow::after {
    top: 16px;
    left: -16px;
  }
  .bl-btnList {
    gap: 40px;
  }
  /* el-btn */
  /* el-label */
  .el-btn {
    font-size: 32px;
    height: 88px;
    padding-bottom: 5px;
    width: 400px;
    height: 83px;
  }
  .el-btn-white {
    border-width: 3px;
  }
  .el-btn::after {
    border-width: 12.5px 0 12.5px 20px;
    right: 32px;
  }
  .el-label {
    padding-top: 0;
  }
  .el-att {
    font-size: 24px;
  }
  .bl-rhombusList > li:not(:first-of-type) {
    margin-top: 16px;
  }
}
/*=============================
　ヘルプタグ
==============================*/
/* ユニット */
.hp-unit {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* 明朝体 */
.hp-mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: bold;
}
/* bold */
.hp-bold {
  font-weight: bold !important;
}
/* italic */
.hp-italic {
  transform: skewX(-10deg);
}
/* 打ち消し線 */
.hp-strikethrough {
  padding: 3px 0 0 8px;
  background-image: linear-gradient(#222, #222);
  background-position: 0 50%;
  background-size: 100% 1px;
  background-repeat: repeat-x;
  letter-spacing: 0;
}
/* opacity1 */
.hp-opacity1 {
  opacity: 1 !important;
}
/* 電話リンク */
.hp-tel {
  pointer-events: none;
}
/* アクセントカラー */
.hp-color--red {
  color: #C30D23;
}
.hp-color--blue {
  color: #7BD1FF;
}
.hp-color--green {
  color: #7BFFCC;
}
.hp-color--yellow {
  color: #F9ED3B;
}
/* 影付き角丸白ボックス */
.hp-shadowRadiusWhiteBox {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 750px) {
  /* ユニット */
  .hp-unit {
    display: block;
  }
  /* 電話リンク */
  .hp-tel {
    pointer-events: auto;
  }
}
/*=============================
　header
==============================*/
.ly-head {
  width: 100%;
  height: 88px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  flex-flow: nowrap;
  justify-content: center;
  box-shadow: 0px 0px 10px #00000029;
  white-space:nowrap
}
/* ロゴ */
.bl-head-logo {
  margin-right: 37px;
  display: flex;
  align-items: center;
}
.bl-head-logo img {
  width: 184px;
}
/* ナビ */
.bl-gloNav {
  display: flex;
  align-items: center;
  z-index: 100;
}
.bl-gloNav-inner {
  display: flex;
  align-items: center;
}
.bl-gloNav-inner > li {
  font-weight: bold;
}
.bl-gloNav-inner > li + li {
  margin-left: 16px;
}
.bl-gloNav-inner .bl-navBtn-waseda,
.bl-gloNav-inner .bl-navBtn-hiyoshi {
  margin-right: 16px;
}
.bl-gloNav-inner .bl-navBtn-hiyoshi,
.bl-gloNav-inner .bl-navBtn-contact {
  margin-left: 0;
}
.bl-gloNav-inner .bl-navBtn-waseda > a {
  border: 2px solid #4BB7E8;
  border-radius: 2px;
  color: #4AB7E8;
  padding: 5px 12px 8px;
}
.bl-gloNav-inner .bl-navBtn-hiyoshi > a {
  border: 2px solid #3DDEAB;
  border-radius: 2px;
  color: #3DDEAB;
  padding: 5px 12px 8px;
}
.bl-gloNav-inner .bl-navBtn-contact > a {
  border-radius: 2px;
  color: #FFFFFF;
  background-color: #0E847D;
  padding: 15px 36px 16px;
}
/* スマホ用非表示 */
.bl-burger {
  display: none;
}
/* Mac,iPad Safari */
@media only screen and (min-device-width: 768px) {
  /* ロゴ */
  .bl-head-logo {
    margin-right: 32px;
  }
  /* ナビ */
  .bl-gloNav-inner > li + li {
    margin-left: 16px;
  }
  .bl-gloNav-inner .bl-navBtn-waseda,
  .bl-gloNav-inner .bl-navBtn-hiyoshi {
    margin-right: 12px;
  }
}
@media screen and (max-width: 750px) {
  .ly-head {
    height: 136px;
    top: 0;
    padding: 30px;
    align-items: center;
  }
  /* ロゴ */
  .bl-head-logo {
    margin-right: 42px;
  }
  .bl-head-logo img {
    width: 308px;
  }
  /* ボタン */
  .bl-btn-contact {
    display: block;
    background-color: #0E847D;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: Bold;
    margin-right: 16px;
    padding: 27px 17px 31px 18px;
    width: 220px;
    height: 104px;
    text-align: center;
  }
  /* ハンバーガーボタン */
  .bl-burger {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  .bl-burger-inner {
    display: block;
    width: 104px;
    height: 104px;
    background: #3884C6;
    position: relative;
  }
  .bl-burger-bar {
    width: 74px;
    height: 4px;
    background: #FFFFFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .bl-burger-bar:first-child {
    top: 17px;
    transition: transform 0.3s ease;
  }
  .bl-burger-bar:nth-child(2) {
    top: 35px;
    transition: opacity 0.3s ease;
  }
  .bl-burger-bar:nth-child(3) {
    bottom: 47px;
    transition: transform 0.3s ease;
  }
  .bl-burger.is-active .bl-burger-bar:first-child {
    transform: rotate(-46deg) translate(-58%, -10px);
    transition: transform 0.3s ease;
    top: 13px;
  }
  .bl-burger.is-active .bl-burger-bar:nth-child(2) {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .bl-burger.is-active .bl-burger-bar:nth-child(3) {
    transform: rotate(45deg) translate(-55%, 15px);
    transition: transform 0.3s ease;
    bottom: 46px;
  }
  .bl-burger-txt {
    font-size: 24px;
    color: #FFFFFF;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 5px;
  }
  .bl-head.is-active {
    background: transparent;
  }
  .bl-head.is-active .bl-head-logo {
    opacity: 0;
  }
  .bl-head .bl-conts:first-of-type {
    display: none;
  }
  /* ナビ */
  .bl-gloNav {
    width: 100%;
    height: 100%;
    background: url(./images/common/nav-bg-sp.png) top center / cover no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    margin-top: 0;
  }
  .bl-gloNav.is-active {
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
  }
  .bl-gloNav-inner {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    overflow: scroll;
    margin-top: 0;
    text-align: center;
    gap: 64px;
  }
  .bl-gloNav-inner > li {
    width: 100%;
    height: auto;
  }
  .bl-gloNav-inner > li + li {
    margin-left: 0;
  }
  .bl-gloNav-inner > li > a {
    font-size: 32px;
  }
  .bl-gloNav-inner .bl-navBtn-waseda > a {
    border: none;
    text-decoration: underline;
    text-underline-offset: 8px;
    color: #4AB7E8;
    padding: 0;
  }
  .bl-gloNav-inner .bl-navBtn-hiyoshi > a {
    border: none;
    text-decoration: underline;
    text-underline-offset: 8px;
    color: #3DDEAB;
    padding: 0;
  }
  .bl-gloNav-inner .bl-navBtn-contact > a {
    color: #222222;
    background-color: transparent;
    padding: 0;
  }
  /* 閉じるボタン */
  .bl-gloNav-btn {
    margin: 20px auto 0;
    width: 234px;
    height: 80px;
    font-size: 34px;
    background: #3884C6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    padding-bottom: 3px;
  }
  .bl-gloNav-btn::before {
    content: "";
    background: url(./images/common/batu.svg) top center / contain no-repeat;
    width: 24px;
    height: 24px;
    margin: 0 16px -5px 0;
  }
  .bl-scrollHeader .ly-head-inner {
    width: 100%;
    padding: 16px 0;
  }
}
/*=============================
　footer
=============================*/
.ly-foot {
  background: #FFFFFF;
  padding: 32px 0 0;
}
.ly-foot-inner {
  padding-bottom: 40px;
}
.bl-foot {
  display: flex;
  flex-wrap: nowrap;
  gap: 113px;
}
/* ロゴ */
.bl-foot-logo {
  width: 198px;
}
/* ナビ */
.bl-foot-gloNavArea {
  display: flex;
  flex-flow: column;
  margin-top: 15px;
}
.bl-foot-gloNav {
  margin-bottom: 32px;
}
.bl-foot-gloNav,
.bl-foot-gloNav-service {
  flex: 1;
}
.bl-gloNavTxt {
  margin-bottom: 8px;
}
.bl-foot-gloNav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 35px;
}
.bl-foot-gloNav-inner > li > a {
  font-size: 15px;
  letter-spacing: 0.6px;
  position: relative;
  display: flex;
  align-items: center;
}
.bl-foot-gloNav-inner > li > a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent #0E847D;
  margin: 0 5px 0 0;
}
/* コピーライト */
.bl-foot-copyright {
  width: 100%;
  height: 31px;
  background-color: #0E847D;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.bl-foot-copyright small {
  color: #fff;
  font-size: 12px;
}
/* ページトップボタン */
.bl-pageTop {
  width: 1140px;
  height: 0;
  margin: 0 auto;
  text-align: right;
  position: relative;
}
.bl-pageTop span {
  width: 66px;
  height: 66px;
  z-index: 900;
}
.bl-pageTop img {
  opacity: 0;
}
.bl-pageTop .fade img {
  transition: all 0.5s ease-in-out;
}
.bl-pageTop .in img {
  opacity: 1;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  /* ページトップボタン */
  .bl-pageTop {
    width: 100%;
  }
  .bl-pageTop span {
    right: 0;
  }
}
@media screen and (max-width: 750px) {
  .ly-main {
    min-height: calc(100vh - 732px);
    /* pxはfooterの高さ */
  }
  /* footer */
  .ly-foot {
    padding: 76px 0 0;
  }
  .bl-foot {
    gap: 84px;
    flex-flow: column;
  }
  .ly-foot-inner {
    width: 100%;
    height: auto;
    padding: 0;
  }
  .bl-foot-leftArea {
    width: 100%;
  }
  /* ロゴ */
  .bl-foot-logo {
    width: 396px;
    margin: 0 auto;
  }
  /* ナビ */
  .bl-foot-gloNav,
  .bl-foot-gloNav-service {
    width: 100%;
    padding: 0 45px 0;
  }
  .bl-foot-gloNav-service {
    padding: 24px 45px 96px;
    background-color: #E8F9F4;
  }
  .bl-gloNavTxt {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .bl-foot-gloNav-inner {
    gap: 16px 56px;
  }
  .bl-foot-gloNav-inner > li > a {
    font-size: 28px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .bl-foot-gloNav-inner > li > a::before {
    border-width: 10px 0 10px 18px;
  }
  /* コピーライト */
  .bl-foot-copyright {
    height: 48px;
  }
  .bl-foot-copyright small {
    font-size: 16px;
  }
  /* ページトップボタン */
  .bl-pageTop {
    width: 750px;
  }
  .bl-pageTop span {
    width: 117px;
    height: 117px;
    border-radius: 117px;
    right: 25px;
    bottom: 25px;
  }
}
/*=============================
CTA
==============================*/
.bl-cta {
  padding: 32px 0;
  background: url(./images/common/cta-bg.jpg) top center/cover no-repeat;
  height: 288px;
}
.bl-cta .ly-cont-inner {
  padding-top: 32px;
  background: rgba(255,255,255,0.9);
  width: 530px;
  outline: 1px solid rgba(34,34,34,0.9);
  outline-offset: -8px;
  text-align: center;
}
.bl-ctaTxt:first-of-type {
  color: #FFFFFF;
  background-color: #0E847D;
  display: inline-block;
  padding: 0 5px;
  margin-bottom: 8px;
}
.bl-ctaTxt:nth-of-type(2) {
  font-size: 26px;
  margin-bottom: 24px;
}
.bl-cta .el-btn {
  font-size: 22px;
  width: 376px;
  height: 56px;
}
@media screen and (max-width: 750px) {
  .bl-cta {
    padding: 80px 0;
    background: url(./images/common/cta-bg-sp.jpg) top center/cover no-repeat;
    height: 442px;
  }
  .bl-cta .ly-cont-inner {
    padding-top: 40px;
  }
  .bl-ctaTxt:first-of-type {
    font-size: 28px;
    padding: 3px 8px 4px;
    margin-bottom: 24px;
  }
  .bl-ctaTxt:nth-of-type(2) {
    font-size: 28px;
  }
  .bl-cta .el-btn {
    font-size: 32px;
    height: 70px;
  }
}
