@charset "utf-8";
/*
Author: あそびラボ
Version: 1.3
*/
/*=======================================================
　基本設定
=======================================================*/
@font-face {
  font-family: "noto-sans-jp";
  src: url(./fonts/Noto_Sans_JP/NotoSansJP-Regular.woff) format("woff");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "noto-sans-jp";
  src: url(./fonts/Noto_Sans_JP/NotoSansJP-Bold.woff) format("woff");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "noto-serif-jp";
  src: url(./fonts/Noto_Serif_JP/NotoSerifJP-Regular.woff) format("woff");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "noto-serif-jp";
  src: url(./fonts/Noto_Serif_JP/NotoSerifJP-Bold.woff) format("woff");
  font-weight: bold;
  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: 1024px;
}
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: initial;
}
.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: initial;
  }
  .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: 1020px;
  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_media_list {
  display: flex;
  flex-wrap: wrap;
}
.bl_media {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
}
.bl_media.el_reverse {
  flex-direction: row-reverse;
}
.bl_media_imgWrapper {
  flex: 0 1 496px;
}
.bl_media_body {
  flex: 1;
}
.bl_media_txt + .bl_media_txt {
  margin-top: 25px;
}
/* bl_card */
.bl_cardUnit {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.bl_card {
  width: 320px;
  position: relative;
}
/* bl_btnList */
.bl_btnList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
@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_imgWrapper {
    flex: 0 1 690px;
  }
  .bl_media_txt + .bl_media_txt {
    margin-top: 42px;
  }
}
/*=============================
　下層MV - パンくず
==============================*/
/* MV */
.bl_lower_mv {
  height: 180px;
  background: #2da6de;
  position: relative;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.bl_lower_mv_ttlWrapper {
  display: inline-block;
  position: relative;
}
.bl_lower_mv_ttlWrapper::before,
.bl_lower_mv_ttlWrapper::after {
  position: absolute;
  content: "";
  height: 166px;
  bottom: -46px;
}
/* .bl_lower_mv_ttlWrapper::before {
  width: 172px;
  left: -236px;
  background: url("./images/common/lower_mv_osada.png") top center / cover no-repeat;
}
.bl_lower_mv_ttlWrapper::after {
  width: 162px;
  right: -218px;
  background: url("./images/common/lower_mv_matsuo.png") top center / contain no-repeat;
} */
.bl_lower_mv::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url("./images/common/lower_mv_bg.svg") top center/cover no-repeat;
  top: 0;
  left: 0;
}
.bl_lower_mv_ttl {
  color: #fff;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 700;
  padding: 16px 0 34px;
  text-align: center;
  position: relative;
  line-height: 1;
}
.bl_lower_mv_ttl::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 16px;
}
.bl_lower_mv_ttl .single_word {
  position: relative;
  z-index: auto;
  background: #2e2e2e;
  width: 38px;
  height: 38px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding-bottom: 4px;
  display: inline-flex;
}
.bl_lower_mv_ttl .single_word:not(:first-of-type) {
  margin-left: 4px;
}
/* パンくず */
.bl_breadcrumbs_inner {
  width: 1024px;
  margin: 0 auto;
  padding-top: 8px;
  display: flex;
  align-items: center;
}
.bl_breadcrumbs_inner > li {
  font-size: 13px;
}
.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: 240px;
  }
  .bl_lower_mv::before,
  .bl_lower_mv::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    background: url("./images/common/lower_mv_bg_sp.svg") top center/cover no-repeat;
    top: 0;
  }
  .bl_lower_mv::before {
    left: 0;
    transform: scale(-1, 1);
  }
  .bl_lower_mv::after {
    right: 0;
  }
  .bl_lower_mv_ttlWrapper {
    display: block;
    z-index: 2;
    width: 100%;
  }
  .bl_lower_mv_ttlWrapper::before,
  .bl_lower_mv_ttlWrapper::after {
    height: 220px;
    bottom: -64px;
  }
  .bl_lower_mv_ttlWrapper::before {
    width: 216px;
    left: 0;
  }
  .bl_lower_mv_ttlWrapper::after {
    width: 201px;
    right: 23px;
  }
  .bl_lower_mv_ttl {
    font-size: 36px;
    padding: 24px 0 48px;
  }
  .bl_lower_mv_ttl::after {
    height: 24px;
  }
  .bl_lower_mv_ttl .single_word {
    width: 40px;
    height: 40px;
  }
  .bl_lower_mv_ttl .single_word:not(:first-of-type) {
    margin-left: 6px;
  }
  .bl_lower_mv_ttl #lowerMvTtl_nextBr {
    margin-top: 8px;
    margin-left: 0;
  }
  /* パンくず */
  .bl_breadcrumbs_inner {
    width: 690px;
    padding-top: 24px;
  }
  .bl_breadcrumbs_inner > li {
    font-size: 22px;
  }
  .bl_breadcrumbs_inner > li:first-of-type ~ li::before {
    margin: 0 10px;
  }
  .bl_breadcrumbs_inner .home {
    width: 28px;
  }
}
/*=============================
　共通パーツ
==============================*/
/* 各sectionメイン見出し */
.el_sec_mainTtl {
  text-align: center;
}
/* 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_numList */
.bl_numList {
  counter-reset: num;
}
.bl_numList > li {
  padding-left: 1.2em;
  position: relative;
}
.bl_numList > li:before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.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: "⑨";
}
/* el_btn */
.el_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 2px;
}
/* el_label */
.el_label {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
}
/* ※ */
.el_att {
  font-size: 14px;
  padding-left: 1em;
  position: relative;
}
.el_att::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.el_att01,
.el_att02,
.el_att03 {
  padding-left: 2em;
}
.el_att01::before {
  content: "※1";
}
.el_att02::before {
  content: "※2";
}
.el_att03::before {
  content: "※3";
}
span.el_att {
  display: block;
}
.el_link {
  text-decoration: underline;
  color: #0000ff;
}
.el_txt {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .el_att {
    font-size: 24px;
  }
}
/*=============================
　ヘルプタグ
==============================*/
/* ユニット */
.hp_unit {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* 明朝体 */
.hp_mincho {
  font-family: "noto-serif-jp", "游明朝体", "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__blue {
  color: #2da6de;
}
.hp_color__yellow {
  color: #ffca37;
}
/* 影付き角丸白ボックス */
.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_main {
  padding-top: 132px;
}
.ly_head {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
}
.bl_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 0;
}
/* ロゴ */
.bl_head_logo {
  width: 224px;
}
.bl_head_logo > a {
  display: block;
}
/* ヘッダー右側エリア */
.bl_head_rightList {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bl_head_rightItem .bl_item_def {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.bl_head_rightItem .bl_item_dttl {
  background: #2da6de;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 0 0 2px 1px;
  width: 60px;
  height: 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: calc(22 / 16);
}
.bl_head_rightItem .bl_item_ditem > img {
  margin-bottom: 8px;
}
.bl_head_rightItem .bl_def_def {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bl_head_rightItem .bl_def_dttl {
  background: #ffca37;
  color: #2e2e2e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 4px 1px;
  line-height: 1.5;
}
.bl_head_rightItem .bl_def_ditem {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #222;
}
/* ボタンエリア */
.bl_head_btnList {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bl_head_btn {
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding-bottom: 3px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
#head_btn_salons {
  background: #2e2e2e;
  color: #fff;
  width: 120px;
}
#head_btn_reservations {
  background: #ffca37;
  color: #2e2e2e;
  border: 2px solid #2e2e2e;
  width: 244px;
  padding-left: 1px;
}
/* ナビ */
.bl_gloNav {
  width: 100%;
  z-index: 100;
  padding: 8px 0;
  background: #2e2e2e;
}
.bl_gloNav_inner {
  width: 1020px;
  margin: 0 auto;
  height: 32px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.bl_gloNav_inner > li {
  height: 100%;
  position: relative;
}
.bl_gloNav_inner > li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 32px;
  background: #fff;
  top: 50%;
  right: -0.5px;
  transform: translateY(-50%);
}
.bl_gloNav_inner > li:nth-of-type(9):after {
  display: none;
}
.bl_gloNav_inner > li > a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 31px 2px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.bl_gloNav_inner > li:first-of-type > a {
  padding-left: 0;
}
.bl_gloNav_inner .bl_gloNav_dropDown > span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0 31px 2px;
}
.bl_gloNav_inner > li:nth-of-type(9) > span {
    padding: 0 0 2px 31px;
}
.bl_childNav {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
}
.bl_childNav_item:not(:first-of-type) {
  border-top: 1px solid #2e2e2e;
}
.bl_childNav_item > a {
  font-size: 15px;
  font-weight: 700;
  color: #2e2e2e;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  background: #ffca37;
  transition: opacity 0.3s ease;
  padding-bottom: 3px;
}
.bl_gloNav_inner > li:nth-of-type(3) .bl_childNav_item > a {
  width: 181px;
}
.bl_gloNav_inner > li:nth-of-type(9) .bl_childNav_item > a {
  width: 128px;
}
/* スマホ用非表示 */
.bl_burger {
  display: none;
}
.ly_head.is_reverse {
  background: none;
}
.ly_head.is_reverse .bl_head_rightItem .bl_item_dttl {
  background: #fff;
  color: #2da6de;
}
.ly_head.is_reverse .bl_head_rightItem .bl_def_ditem {
  color: #ffffff;
}
@media screen and (min-width: 751px) {
  .ly_head.is_reverse .bl_gloNav {
    background: none;
  }
}
@media screen and (max-width: 750px) {
  .ly_main {
    padding-top: 120px;
  }
  .ly_head::after {
    content: "";
    background: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    box-shadow: 0 0 16px rgb(0 0 0 / 32%);
  }
  .ly_head_inner {
    width: 100%;
    z-index: 110;
    padding: 0;
  }
  /* ヘッダー右側エリア */
  .bl_head_rightList.pc {
    display: none;
  }
  .bl_head_infoList {
    display: flex;
  }
  #header_info_salon {
    background: #333;
  }
  #header_info_salon::before {
    position: absolute;
    content: "";
    background: url(./images/common/header_home_sp.svg) top center / contain no-repeat;
    width: 112px;
    height: 96px;
    top: 50%;
    left: 17px;
    transform: translateY(-50%);
    z-index: 1;
  }
  #header_info_salon > a {
    width: 147px;
    height: 120px;
    font-size: 28px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 30px;
    display: block;
    line-height: 1.3215;
  }
  #header_info_tel > a,
  #header_info_reserve > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-bottom: 3px;
    border: 3px solid #2e2e2e;
  }
  #header_info_tel > a::before,
  #header_info_reserve > a::before {
    content: "";
  }
  #header_info_tel > a {
    background: #2da6de;
    width: 240px;
  }
  #header_info_tel > a::before {
    background: url(./images/common/icon_head_phone.svg) top center / contain no-repeat;
    width: 40px;
    height: 64px;
    margin-right: 16px;
  }
  #header_info_reserve > a {
    background: #ffca37;
    color: #222222;
    border-left: none;
    width: 243px;
    text-align: center;
  }
  /* ハンバーガーボタン */
  .bl_burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bl_burger_inner {
    display: block;
    width: 120px;
    height: 120px;
    border: 3px solid #2e2e2e;
    border-left: none;
    background: #fff;
    position: relative;
  }
  .bl_burger_bar {
    width: 84px;
    height: 4px;
    background: #2e2e2e;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .bl_burger_bar:first-child {
    top: 19px;
    transition: transform 0.3s ease;
  }
  .bl_burger_bar:nth-child(2) {
    top: 39px;
    transition: opacity 0.3s ease;
  }
  .bl_burger_bar:nth-child(3) {
    bottom: 51px;
    transition: transform 0.3s ease;
  }
  .bl_burger.is_active .bl_burger_bar:first-child {
    transform: rotate(-45deg) translate(-51%, -15px);
    transition: transform 0.3s ease;
  }
  .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(-50%, 13px);
    transition: transform 0.3s ease;
  }
  .bl_burger_txt {
    display: flex;
    width: 80px;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
  }
  /* ナビ */
  .bl_gloNav {
    width: 100%;
    height: 100%;
    background: #2da6de;
    position: fixed;
    top: 120px;
    left: 0;
    z-index: 90;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 0 0 56px;
  }
  .bl_gloNav.is_active {
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
  }
  .bl_gloNav_inner {
    width: 100%;
    height: calc(100% - 120px);
    flex-direction: column;
    justify-content: start;
    overflow: scroll;
  }
  .bl_gloNav_inner > li {
    width: 100%;
    height: auto;
    border-left: none;
    border-right: none;
  }
  .bl_gloNav_inner > li > a {
    padding: 28px 0 29px 70px;
    font-size: 32px;
    color: #fff;
    border-bottom: 3px solid #2e2e2e;
    justify-content: start;
  }
  .bl_gloNav_inner > li:first-of-type > a {
    padding-left: 70px;
  }
  .bl_gloNav_inner > li > a::after {
    position: absolute;
    content: "";
    width: 64px;
    height: 64px;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: url("./images/common/btn_arrow.svg") top center / contain no-repeat;
  }
  .bl_gloNav_inner .bl_gloNav_dropDown > span {
    padding: 28px 0 29px 70px;
    font-size: 32px;
    color: #fff;
    border-bottom: 3px solid #2e2e2e;
    display: block;
    height: 104px;
  }
  .bl_gloNav_inner .bl_gloNav_dropDown > span::after {
    position: absolute;
    content: "";
    width: 64px;
    height: 64px;
    top: 20px;
    right: 30px;
    background: url("./images/common/btn_arrow.svg") top center / contain no-repeat;
  }
  .bl_gloNav_inner > li:nth-of-type(9) > span {
    padding: 28px 0 29px 70px;
}
  .bl_gloNav_inner > li::after {
    display: none;
  }
  .bl_childNav {
    position: static;
    width: 100%;
  }
  .bl_childNav_item {
    width: 100%;
    height: 104px;
  }
  .bl_childNav_item:not(:first-of-type) {
    border-top: none;
    border: none;
  }
  .bl_childNav_item > a {
    font-size: 30px;
    height: 100%;
    padding-left: 70px;
    justify-content: start;
    border-bottom: 3px solid #2e2e2e;
    position: relative;
  }
  .bl_gloNav_inner > li:nth-of-type(3) .bl_childNav_item > a,
  .bl_gloNav_inner > li:nth-of-type(9) .bl_childNav_item > a {
    width: 100%;
  }
  .bl_childNav_item > a::after {
    position: absolute;
    content: "";
    width: 64px;
    height: 64px;
    top: 20px;
    right: 30px;
    background: url("./images/common/btn_arrow.svg") top center / contain no-repeat;
  }
  .bl_childNav_item.sp {
    display: flex;
  }
  #header_gloNav_logo {
    width: 338px;
    margin-top: 60px;
  }
}
/*=============================
　footer
=============================*/
.ly_main {
  min-height: calc(100vh - 886px);
}
.ly_foot {
  background: #333333;
}
.ly_foot_inner {
  padding-top: 48px;
}
.bl_foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
}
.bl_foot_bnrList {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.bl_foot_bnr {
  width: 274px;
}
.bl_footUnit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 910px;
  color: #fff;
}
/* ナビ */
.bl_foot_gloNav:nth-of-type(2) {
  position: relative;
}
.bl_foot_gloNav:nth-of-type(2)::before,
.bl_foot_gloNav:nth-of-type(2)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 635px;
  background: #646464;
  top: 0;
}
.bl_foot_gloNav:nth-of-type(2)::before {
  left: -72px;
}
.bl_foot_gloNav:nth-of-type(2)::after {
  right: -72px;
}
.bl_foot_gloNav_inner > li {
  position: relative;
  letter-spacing: 0.68px;
}
.bl_foot_gloNav_inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 16px;
}
.bl_foot_gloNav_inner > li > a.el_arrow::after {
  content: " ▶︎";
}
.bl_footUnit .bl_ctaList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bl_footUnit .bl_ctaItem > dt span {
  font-size: 14px;
}
.bl_footUnit .bl_ctaItem > dd > a {
  font-size: 24px;
  font-weight: bold;
  display: block;
  line-height: 1.3;
  margin: 3px 0;
}
.bl_footUnit .bl_ctaItem > dd span {
  display: block;
  font-size: 14px;
}
.bl_foot_btm {
  margin-bottom: 24px;
}
.bl_foot_logo {
  width: 224px;
  margin-bottom: 8px;
}
.bl_foot_btm {
  display: flex;
  align-items: center;
  gap: 64px;
}
.bl_foot_btm .bl_snsUnit {
  display: flex;
  gap: 16px;
}
.bl_foot_btm .bl_snsUnit > li > a {
  display: block;
  width: 40px;
}
.bl_accession {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.0343em;
}
.bl_accession::before {
  content: "";
  margin-right: 16px;
  width: 80px;
  height: 64px;
  background: url(./images/common/img_jcse.svg) top center / contain no-repeat;
}
/* モーダル */
#popup {
  display: none;
}
.popup-open {
  cursor: pointer;
  color: #2da6de;
}
.popup-overlay {
  display: none;
}
#popup:checked ~ .popup-overlay {
  display: block;
  z-index: 99999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.popup-window {
  width: 690px;
  height: 615px;
  padding: 56px;
  background-color: #ffffff;
  border-radius: 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup-text {
  margin: 0;
}
.popup-text:not(:last-of-type) {
  margin-bottom: 1em;
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
}
.popup-window .bl_ctaList {
  display: flex;
  flex-direction: column;
  gap: 44px;
  text-align: center;
}
.popup-window .bl_ctaItem > dt span {
  font-size: 24px;
  font-weight: normal;
}
.popup-window .bl_ctaItem > dd > a {
  font-size: 40px;
  font-weight: bold;
  display: block;
  line-height: 1.3;
  margin: 3px 0;
}
.popup-window .bl_ctaItem > dd span {
  display: block;
  font-size: 24px;
  font-weight: normal;
}
/* コピーライト */
.bl_foot_copyright {
  width: 100%;
  height: 32px;
  background: #333333;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.bl_foot_copyright small {
  color: #fff;
  font-size: 12px;
  font-family: Verdana;
}
/* ページトップボタン */
.bl_pagetop {
  width: 1024px;
  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: 30px;
  }
}
@media screen and (max-width: 750px) {
  .ly_main {
    min-height: calc(100vh - 1516px);
  }
  /* footer */
  .bl_foot {
    gap: 0;
  }
  .ly_foot_inner {
    width: 100%;
    width: 690px;
    height: auto;
    padding: 48px 0 24px;
  }
  .bl_foot_bnrList {
    margin-bottom: 48px;
  }
  .bl_foot_bnr {
    width: 333px;
  }
  #footer_bnr_tel {
    width: 333px;
    background: #fff;
    font-weight: bold;
    padding: 16px 0 19px 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  #footer_bnr_tel::before {
    content: "";
    position: absolute;
    background: url(images/common/icon_phone__blue.svg) top center / contain no-repeat;
    width: 30px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
  }
  .bl_footUnit {
    justify-content: space-between;
    gap: 0;
    margin-bottom: 40px;
  }
  /* ナビ */
  .bl_foot_gloNav {
    padding: 0;
    width: 248px;
  }
  .bl_foot_gloNav:nth-of-type(2) {
    width: 356px;
    padding: 0;
  }
  .bl_foot_gloNav:nth-of-type(2)::before,
  .bl_foot_gloNav:nth-of-type(2)::after {
    content: none;
  }
  .bl_foot_gloNav_inner {
    gap: 24px 0;
    width: auto;
  }
  .bl_foot_gloNav_inner a {
    font-size: 26px;
  }
  .bl_foot_gloNav_inner > li > a::before {
    border-width: 9px 0 9px 16px;
  }
  .bl_footUnit .bl_ctaList {
    display: none;
  }
  .bl_foot_btm {
    flex-direction: column;
    align-items: center;
    margin: 0;
    gap: 56px;
  }
  .bl_foot_logo {
    width: 338px;
    margin-bottom: 8px;
    order: 2;
  }
  .bl_snsUnit {
    order: 3;
  }
  .bl_foot_btm .bl_snsUnit {
    gap: 32px;
  }
  .bl_foot_btm .bl_snsUnit > li > a {
    width: 56px;
  }
  .bl_accession {
    font-size: 18px;
    letter-spacing: 0.04em;
    order: 1;
  }
  .bl_accession::before {
    margin-right: 20px;
    width: 90px;
    height: 72px;
  }
  /* コピーライト */
  .bl_foot_copyright {
    height: 53px;
  }
  .bl_foot_copyright small {
    font-size: 20px;
  }
  /* ページトップボタン */
  .bl_pagetop {
    width: 750px;
  }
  .bl_pagetop span {
    width: 104px;
    height: 104px;
    border-radius: 104px;
    right: 30px;
    bottom: 30px;
  }
}
/*=============================
新着
==============================*/
.bl_vertPosts {
  border-bottom: 1px solid #bfbfbf;
}
.bl_vertPosts > a {
  padding-bottom: 16px;
  color: #222;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.bl_vertPosts:not(:first-of-type) > a {
  padding-top: 16px;
}
.bl_vertPosts_header {
  flex: 0 1 280px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.bl_vertPosts_date {
  font-size: 14px;
  letter-spacing: 0;
}
.el_catLabel {
  min-width: 100px;
  max-width: 144px;
  min-height: 28px;
  font-size: 16px;
  background: #ccc;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 0 8px 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.el_catLabel.all {
  background: #ccc;
}
.el_catLabel.information {
  background: #ffca37;
}
.el_catLabel.media {
  background: #2da6de;
  color: #fff;
}
.el_catLabel.column,
.el_catLabel.clm,
.el_catLabel.article{
  background: #2e2e2e;
  color: #fff;
}
.bl_vertPosts_ttl {
  flex: 1;
  font-size: 17px;
  font-weight: normal;
}
@media screen and (max-width: 750px) {
  .bl_vertPosts > a {
    gap: 16px;
    padding-bottom: 24px;
  }
  .bl_vertPosts:not(:first-of-type) > a {
    padding-top: 24px;
  }
  .bl_vertPosts_header {
    flex: 100%;
  }
  .bl_vertPosts_date {
    font-size: 22px;
  }
  .el_catLabel {
    min-width: 128px;
    max-width: 480px;
    min-height: 42px;
    font-size: 22px;
    padding: 0 16px 3px;
  }
  .bl_vertPosts_ttl {
    font-size: 28px;
  }
}
/*=============================
aside
==============================*/
.bl_aside {
  padding-bottom: 25px;
  border: 1px solid #333;
}
.bl_aside_ttl {
  height: 50px;
  color: #fff;
  background: #2e2e2e;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
}
.bl_aside_postList {
  margin-bottom: 20px;
}
.bl_aside_postList > li {
  border-bottom: 1px solid #c6c6c6;
}
.bl_aside_postList > li > a {
  padding: 16px 25px;
  font-size: 16px;
  display: block;
}
.bl_aside_btn {
  padding: 0 16px 3px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  background: #2da6de;
  color: #fff;
  width: 150px;
  height: 42px;
  margin: 0 auto;
}
.bl_aside_btn::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  bottom: 6px;
  right: 6px;
  background: url("./images/common/btn_triangle__white.svg") top center / contain no-repeat;
}
@media screen and (max-width: 750px) {
  /* aside */
  .bl_aside {
    padding-bottom: 40px;
  }
  .bl_aside_ttl {
    height: 76px;
    margin-bottom: 15px;
    font-size: 28px;
  }
  .bl_aside_postList {
    margin-bottom: 35px;
  }
  .bl_aside_postList > li > a {
    padding: 24px 30px;
    font-size: 26px;
  }
  .bl_aside_btn {
    padding: 0 24px 4px;
    border-radius: 3px;
    width: 340px;
    height: 70px;
  }
  .bl_aside_btn::after {
    width: 18px;
    height: 18px;
    bottom: 9px;
    right: 9px;
  }
}
/*=============================
ページナビ
==============================*/
/* wp-pagenavi */
.wp-pagenavi {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.wp-pagenavi > * {
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  min-width: 30px;
  height: 32px;
  padding: 0 5px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.wp-pagenavi a {
  background: #d4d4d4;
}
.wp-pagenavi .current {
  background: #2da6de;
  color: #fff;
}
.wp-pagenavi .extend {
  color: #545454;
  font-size: 16px;
}
/* 詳細ページの前へ 次へ */
.bl_pager {
  position: relative;
  height: 42px;
}
.bl_pager_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bl_pager_link > a {
  width: 170px;
  height: 40px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1px;
}
.bl_pager_prev > a::before,
.bl_pager_next > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-style: solid;
  position: absolute;
  top: 1px;
  left: 17px;
  bottom: 0;
}
.bl_pager_prev > a {
  padding-right: 10px;
  border: 1px solid #808080;
  color: #808080;
}
.bl_pager_prev > a::before {
  left: initial;
  right: 17px;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent #808080;
}
.bl_pager_next > a {
  padding-left: 10px;
  background: #2da6de;
}
.bl_pager_next > a::after {
  border-width: 5px 9px 5px 0;
  border-color: transparent #fff transparent transparent;
}
@media screen and (max-width: 750px) {
  /* wp-pagenavi */
  .wp-pagenavi {
    margin-top: 50px;
  }
  .wp-pagenavi > * {
    font-size: 28px;
    min-width: 40px;
    height: 48px;
    padding-bottom: 2px;
  }
  .wp-pagenavi .extend {
    display: none;
  }
  /* 前へ 次へ */
  .bl_pager {
    height: 60px;
    margin-top: 60px;
  }
  .bl_pager_link > a {
    width: 230px;
    height: 60px;
    font-size: 26px;
    padding-bottom: 4px;
  }
  .bl_pager_prev > a {
    padding-right: 20px;
  }
  .bl_pager_prev > a::before {
    border-width: 7.5px 0 7.5px 11px;
  }
  .bl_pager_next > a {
    padding-left: 20px;
  }
  .bl_pager_next > a::after {
    border-width: 7.5px 0 7.5px 11px;
    border-width: 7.5px 11px 7.5px 0;
  }
}
/*=======================================================
cta
=======================================================*/
.bl_cta {
  background: url("./images/common/cta_bg.png") top center/cover no-repeat;
  padding: 74px 0 62px;
}
.bl_cta .ly_cont_inner::before,
.bl_cta .ly_cont_inner::after {
  position: absolute;
  content: "";
  bottom: -62px;
  height: 258px;
}
/* .bl_cta .ly_cont_inner::before {
  background: url("./images/common/cta_osada.png") top center/contain no-repeat;
  left: -60px;
  width: 246px;
}
.bl_cta .ly_cont_inner::after {
  background: url("./images/common/cta_matsuo.png") top center/contain no-repeat;
  right: -30px;
  width: 218px;
} */
.bl_cta .el_sec_mainTtl {
  width: 598px;
  margin: 0 auto 32px;
}
.bl_cta .el_sec_mainTtl.is_scroll{
  animation: scaling_animation 2s forwards;
}
.bl_cta_btn {
  border-radius: 38px;
  box-shadow: 0px 3px 0px #000000;
  padding: 0 0 3px 44px;
  width: 492px;
  height: 76px;
}
.bl_cta_btn::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 20px;
  background: url("./images/common/icon_cta_mail.svg") top center/contain no-repeat;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .bl_cta {
    background: url("./images/common/cta_bg_sp.jpg") top center/cover no-repeat;
    padding: 96px 0;
  }
  /* .bl_cta .ly_cont_inner::before,
  .bl_cta .ly_cont_inner::after {
    bottom: -296px;
    height: 262px;
  }
  .bl_cta .ly_cont_inner::before {
    background: url("./images/common/cta_osada_sp.png") top center/contain no-repeat;
    left: 24px;
    width: 321px;
  }
  .bl_cta .ly_cont_inner::after {
    background: url("./images/common/cta_matsuo_sp.png") top center/contain no-repeat;
    right: 66px;
    width: 250px;
  } */
  .bl_cta .el_sec_mainTtl {
    width: 689px;
    margin: 0 auto 72px;
  }
  .bl_cta_btn {
    border-radius: 48px;
    box-shadow: 0px 4px 0px #000000;
    padding: 0 0 4px 57px;
    width: 689px;
    height: 96px;
  }
  .bl_cta_btn::before {
    width: 38px;
    height: 28px;
    left: 95px;
    margin-top: 1px;
  }
}
/*=======================================================
FAQ
=======================================================*/
.bl_faqList {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.bl_faqList > div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}
.bl_faqList > div > dt {
  padding: 4px 68px 9px;
  background: #2da6de;
  position: relative;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  width: 100%;
  cursor: pointer;
}
.bl_faqList > div > dt::before,
.bl_faqList > div > dt::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.bl_faqList > div > dt::before {
  content: "";
  width: 36px;
  height: 36px;
  background: url(./images/faq/icon_q.svg) top center/contain no-repeat;
  left: 16px;
}
.bl_faqList > div > dt::after {
  content: "▼";
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #fff;
  color: #2da6de;
  right: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 2px 2px;
  font-size: 18px;
}
.bl_faqList > div > dt.open::after {
  content: "▲";
}
.bl_faqList > div > dd {
  display: none;
}
.bl_faqList > div > dd a {
  text-decoration: underline;
  color: #0000ff;
}
@media screen and (max-width: 750px) {
  .bl_faqList {
    gap: 40px;
  }
  .bl_faqList > div {
    gap: 24px;
  }
  .bl_faqList > div > dt {
    padding: 7px 96px 11px;
    font-size: 32px;
  }
  .bl_faqList > div > dt::before {
    width: 48px;
    height: 48px;
    left: 24px;
  }
  .bl_faqList > div > dt::after {
    width: 48px;
    height: 48px;
    right: 24px;
    font-size: 20px;
  }
}
/*=======================================================
interview
=======================================================*/
.bl_interview.archive {
  padding: 40px 0 64px;
}
.bl_interview_ttl {
  padding: 7px 32px 9px;
  margin-bottom: 24px;
  background: #2da6de;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
.bl_interview .bl_cardUnit {
  justify-content: space-between;
  gap: 0;
}
.bl_interview .bl_card {
  width: 244px;
  padding: 16px 0 24px;
  border: 2px solid #2da6de;
}
.bl_interview .bl_card:nth-of-type(4n + 1) {
  animation-delay: 0.25s;
}
.bl_interview .bl_card:nth-of-type(4n + 2) {
  animation-delay: 0.5s;
}
.bl_interview .bl_card:nth-of-type(4n + 3) {
  animation-delay: 0.75s;
}
.bl_interview .bl_card:nth-of-type(4n + 4) {
  animation-delay: 1s;
}
.bl_interview .bl_card_imgWrapper {
  margin-bottom: 11px;
  padding: 0 16px;
}
.bl_interview .bl_card_imgWrapper img {
  height: 120px;
  object-fit: cover;
}
.bl_interview .bl_card_ttl {
  margin-bottom: 11px;
  font-size: 14px;
  font-weight: 700;
  color: #2da6de;
  letter-spacing: 0.04em;
  text-align: center;
}
.bl_interview .bl_card_txt {
  padding: 0 16px;
  margin-bottom: 17px;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.bl_interview .el_btn {
  padding: 0 16px 3px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  background: #2da6de;
  color: #fff;
  width: 212px;
  height: 48px;
  margin: 0 auto;
}
.bl_interview .el_btn::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  bottom: 8px;
  right: 8px;
  background: url("./images/common/btn_triangle__white.svg") top center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .bl_interview .el_gradation_ttl {
    margin-bottom: 32px;
  }
  .bl_interview .bl_cardUnit {
    gap: 24px;
  }
  .bl_interview .bl_card {
    width: calc((100% - 24px) / 2);
  }
  .bl_interview .bl_card_imgWrapper {
    margin-bottom: 16px;
  }
  .bl_interview .bl_card_imgWrapper img {
    height: 180px;
  }
  .bl_interview .bl_card_ttl {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .bl_interview .bl_card_txt {
    margin-bottom: 24px;
    font-size: 24px;
  }
  .bl_interview .el_btn {
    width: 260px;
    height: 56px;
    padding: 0 16px 4px;
    font-size: 24px;
  }
}
/*=======================================================
AFTER
=======================================================*/
.bl_after {
  padding: 0 0 64px;
}
.bl_after_conts {
  background: url(./images/common/after_bg.jpg) top center/cover no-repeat;
  padding: 26px 44px 0 354px;
  height: 216px;
  margin-bottom: 8px;
  position: relative;
}
.bl_after_conts::after {
  position: absolute;
  content: "";
  background: url(./images/common/after_img01.png) top center/contain no-repeat;
  width: 294px;
  height: 242px;
  bottom: 0;
  left: 16px;
}
.bl_after_ttl {
  font-size: 40px;
  color: #ffca37;
  position: relative;
  margin-bottom: 24px;
  line-height: 1.5;
}
.bl_after_ttl span {
  position: relative;
}
.bl_after_ttl span::after {
  position: absolute;
  content: "※";
  font-size: 17px;
  top: 4px;
  right: -8px;
  color: #fff;
}
.bl_after_txt {
  color: #fff;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 750px) {
  .bl_after {
    padding: 0 0 80px;
  }
  .bl_after .el_att {
    font-size: 20px;
  }
  .bl_after_conts {
    background: url(./images/common/after_bg_sp.jpg) top center/cover no-repeat;
    padding: 64px 0 0;
    margin-bottom: 16px;
    height: 798px;
  }
  .bl_after_conts::after {
    width: 486px;
    height: 398px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .bl_after_ttl {
    font-size: 44px;
    margin-bottom: 32px;
    text-align: center;
  }
  .bl_after_ttl span::after {
    top: 0;
    right: -8px;
  }
  .bl_after_txt {
    text-align: center;
  }
}
/*=======================================================
アニメーション
=======================================================*/
.fadeIn {
  opacity: 0;
}
.fadeIn.is_scroll {
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
/*=======================================================
keyframes
=======================================================*/
@keyframes scaling_animation {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.8, 0.8);
  }
  50% {
    transform: scale(1, 1);
  }
  75% {
    transform: scale(0.8, 0.8);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes bg_extend {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*=======================================================
共通
=======================================================*/
.txt_bg.el_black {
  background: #2e2e2e;
  color: #fff;
  padding: 0 8px 4px;
}
.el_sec_mainTtl.el_bg__blue {
  color: #fff;
  background: #2da6de;
  position: relative;
}
.el_sec_mainTtl.el_bg__blue::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url("./images/common/ttl_bg__blue.svg") top center/cover no-repeat;
  top: 0;
  left: 0;
}
.el_sec_mainTtl.el_bg__black {
  color: #fff;
  background: #2e2e2e;
  position: relative;
}
.el_sec_mainTtl.el_bg__black::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url("./images/common/ttl_bg__black.svg") top center/cover no-repeat;
  top: 0;
  left: 0;
}
.el_sec_mainTtl.el_bg__yellow {
  background: #fdd254;
  position: relative;
}
.el_sec_mainTtl.el_bg__yellow::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url("./images/common/ttl_bg__yellow.svg") top center/cover no-repeat;
  top: 0;
  left: 0;
}
.el_sec_mainTtl.el_english span {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
  position: relative;
  padding: 91px 0 24px;
}
.el_sec_mainTtl.el_english span::after {
  position: absolute;
  content: "";
  height: 46px;
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
}
.el_sec_mainTtl span {
  position: relative;
  z-index: 2;
}
.el_btn__blue {
  border-radius: 24px;
  background: #2da6de;
  color: #fff;
  border: 2px solid #222222;
  box-shadow: 0px 3px 0px #2e2e2e;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0 11px 4px 0;
  width: 244px;
  height: 48px;
}
.el_btn__blue::after {
  position: absolute;
  content: "";
  background: url("./images/common/btn_arrow.svg") top center/contain no-repeat;
  width: 32px;
  height: 32px;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
.el_btn__yellow {
  background: #ffca37;
  border: 2px solid #2e2e2e;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 24px;
}
.nolink {
  pointer-events: none;
}
iframe{
  border: none;
}
@media screen and (max-width: 750px) {
  .txt_bg.el_black {
    background: #2e2e2e;
    color: #fff;
    padding: 0 8px 4px;
  }
  .el_sec_mainTtl.el_bg__blue::before,
  .el_sec_mainTtl.el_bg__blue::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    background: url("./images/common/ttl_bg__blue_sp.svg") top center/cover no-repeat;
    top: 0;
  }
  .el_sec_mainTtl.el_bg__blue::before {
    left: 0;
    transform: scale(-1, 1);
  }
  .el_sec_mainTtl.el_bg__blue::after {
    right: 0;
  }
  .el_sec_mainTtl.el_bg__yellow {
    padding: 7px 16px 10px;
  }
  .el_sec_mainTtl.el_bg__black::before,
  .el_sec_mainTtl.el_bg__black::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    background: url("./images/common/ttl_bg__black_sp.svg") top center/cover no-repeat;
    top: 0;
  }
  .el_sec_mainTtl.el_bg__black::before {
    left: 0;
    transform: scale(-1, 1);
  }
  .el_sec_mainTtl.el_bg__black::after {
    right: 0;
  }
  .el_sec_mainTtl.el_english span {
    font-size: 28px;
    padding: 116px 0 24px;
  }
  .el_sec_mainTtl.el_english span::after {
    height: 72px;
    top: 28px;
  }
  .el_btn__blue {
    border-radius: 36px;
    border-width: 3px;
    font-size: 28px;
    padding: 0 56px 4px 0;
    width: 368px;
    height: 72px;
  }
  .el_btn__blue::after {
    width: 48px;
    height: 48px;
    right: 24px;
  }
  .el_btn__yellow {
    border-width: 3px;
    font-size: 32px;
  }
}
