@charset "UTF-8";
/* Base Use Scss */
/*
レスポンシブ
*/
:root {
  /* FontFamily */
  --base-font-family: "Hiragino Sans", sans-serif;
  --noto-sans: "Noto Sans JP", sans-serif;
  --noto-serif: "Noto Serif JP", serif;
  --lato: "Lato", sans-serif;
  --hiragino: "Hiragino Sans", sans-serif;
  --mincho: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3",
    "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝",
    "MS PMincho", serif;
  --goshic: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic",
    "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --apple: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --hannari: "Hannari", serif;
  --helvetica: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  --anton: "Anton", sans-serif;
  /* Contents Width */
  --content-width-sm: 1000px;
  --content-width: 1200px;
  /* Base Beside */
  --base-beside: 15px;
}

/* Base Use Scss */
/* 
    Base Use Scss 
*/
/*** The new CSS reset - version 1.7.3 (last updated 7.8.2022) ***/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a,
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  cursor: pointer;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

picture {
  display: block;
  width: 100%;
}

/* Base Use Scss */
body {
  font-family: var(--base-font-family);
}

a {
  opacity: 1;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

/* Base Use Scss */
.ly_main {
  overflow: hidden;
  z-index: 0;
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
}

/* Base Use Scss */
/* 
  説明
  .ly_sec .ly_sec_innerで全体がコンテンツ幅で作成サれる
  .ly_sec.-proseで直下の要素は,.ly_sec_alignFullがついている要素以外コンテンツ幅になる
  .ly_sec_alignFullの下に.ly_sec_innerでも良い
*/
.ly_sec {
  position: relative;
}
.ly_sec.-prose > :not(.ly_sec_alignFull) {
  width: min(100% - var(--base-beside) * 2, var(--tablet-md));
  margin-inline: auto;
}

.ly_sec_inner {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content-width);
}
@media only screen and (max-width: 767.98px) {
  .ly_sec_inner {
    width: calc(100% - var(--base-beside) * 2);
  }
}
.ly_sec_inner.-side-padding {
  width: calc(100% - var(--base-beside) * 2);
}
.ly_sec_inner.-sm {
  max-width: var(--content-width-sm);
}
.ly_sec_inner.-column-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.ly_sec_alignFull.-column-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Base Use Scss */
.ly_footer {
  background-color: var(--base-color);
  padding-top: 50px;
  padding-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .ly_footer {
    padding-top: 40px;
    padding-bottom: 35px;
  }
}
.ly_footer_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - var(--base-beside) * 2);
  margin: 0 auto;
}

/* Base Use Scss */
/* 
★使い方★

【基本の形】
<div class="bl_colUnit">
  <div class="bl_col">
    {コンテンツ}
  </div>
</div>

【カラム数を付ける場合】
// 例として2カラム
<div class="bl_colUnit -col" style="--col:2">
<div class="bl_col">
  {コンテンツ}
</div>
</div>

【上下左右に余白をつける場合】
// 例として縦に20px横の間隔が30pxの２カラム
<div 
  class="bl_colUnit -col -col-v -colb" 
  style="--col:2;--col-v:20px;--col-b:30px"
>
  <div class="bl_col">
    {コンテンツ}
  </div>
</div>

レスポンシブの際は末尾にpcかspを付ける。
*/
:root {
  --col: 1;
  --col-pc: 1;
  --col-sp: 1;
  --col-v: 0;
  --col-v-pc: 0;
  --col-v-sp: 0;
  --col-b: 0;
  --col-b-pc: 0;
  --col-b-sp: 0;
  --col-w: 0;
  --col-w-pc: 0;
  --col-w-sp: 0;
}

.bl_colUnit {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.bl_colUnit.-col > .bl_col {
  width: calc(100% / var(--col, var(--col-w)));
  flex-basis: calc(100% / var(--col, var(--col-w)));
}
.bl_colUnit.-col > .bl_col.-col-basis {
  width: calc(var(--col-w) * 0.01 * 100%);
  flex-basis: calc(var(--col-w) * 0.01 * 100%);
}
@media only screen and (min-width: 768px) {
  .bl_colUnit.-col-pc > .bl_col {
    width: calc(100% / var(--col-pc));
    flex-basis: calc(100% / var(--col-pc));
  }
  .bl_colUnit.-col-pc > .bl_col.-col-basis {
    width: calc(var(--col-w-pc) * 0.01 * 100%);
    flex-basis: calc(var(--col-w-pc) * 0.01 * 100%);
  }
}
@media only screen and (max-width: 767.98px) {
  .bl_colUnit.-col-sp > .bl_col {
    width: calc(100% / var(--col-sp));
    flex-basis: calc(100% / var(--col-sp));
  }
  .bl_colUnit.-col-sp > .bl_col.-col-basis {
    width: calc(var(--col-w-sp) * 0.01 * 100%);
    flex-basis: calc(var(--col-w-sp) * 0.01 * 100%);
  }
}
.bl_colUnit.-col-v > .bl_col {
  margin-top: var(--col-v);
}
@media only screen and (min-width: 768px) {
  .bl_colUnit.-col-v-pc > .bl_col {
    margin-top: var(--col-v-pc);
  }
}
@media only screen and (max-width: 767.98px) {
  .bl_colUnit.-col-v-sp > .bl_col {
    margin-top: var(--col-v-sp);
  }
}
.bl_colUnit.-col-b {
  margin-left: calc(var(--col-b) / 2 * -1);
  margin-right: calc(var(--col-b) / 2 * -1);
}
.bl_colUnit.-col-b > .bl_col {
  padding-left: calc(var(--col-b) / 2);
  padding-right: calc(var(--col-b) / 2);
}
@media only screen and (min-width: 768px) {
  .bl_colUnit.-col-b-pc {
    margin-left: calc(var(--col-b-pc) / 2 * -1);
    margin-right: calc(var(--col-b-pc) / 2 * -1);
  }
  .bl_colUnit.-col-b-pc > .bl_col {
    padding-left: calc(var(--col-b-pc) / 2);
    padding-right: calc(var(--col-b-pc) / 2);
  }
}
@media only screen and (max-width: 767.98px) {
  .bl_colUnit.-col-b-sp {
    margin-left: calc(var(--col-b-sp) / 2 * -1);
    margin-right: calc(var(--col-b-sp) / 2 * -1);
  }
  .bl_colUnit.-col-b-sp > .bl_col {
    padding-left: calc(var(--col-b-sp) / 2);
    padding-right: calc(var(--col-b-sp) / 2);
  }
}

.bl_col {
  width: 100%;
}

/* Base Use Scss */
.bl_explanation {
  width: min(100% - var(--base-beside) * 2, 1180px);
  margin-inline: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  line-height: 2;
  font-size: 12px;
}
@media only screen and (min-width: 768px) {
  .bl_explanation {
    font-size: 16px;
    padding-top: 55px;
    padding-bottom: 60px;
  }
}
.bl_explanation_logo {
  margin-right: 3px;
  position: relative;
  width: 17px;
  top: -4px;
}
@media only screen and (min-width: 768px) {
  .bl_explanation_logo {
    top: -5px;
    width: 23px;
  }
}
.bl_explanation.-pw2023s-2303 {
  margin-top: -80px;
}
@media only screen and (min-width: 768px) {
  .bl_explanation.-pw2023s-2303 {
    margin-top: 0;
  }
}
.bl_explanation.-poster-story-01 {
  width: min(100% - var(--base-beside) * 2, 1200px);
}
@media only screen and (min-width: 768px) {
  .bl_explanation.-poster-story-01 {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) {
  .bl_explanation.-poster-story-01 .bl_explanation_logo {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .bl_explanation.-sns {
    display: flex;
    align-items: center;
  }
}
.bl_explanation_textBody {
  flex-grow: 1;
}
.bl_explanation_snsUnit {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
  justify-content: flex-end;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .bl_explanation_snsUnit {
    margin-top: 0;
    justify-content: flex-start;
    margin-left: 50px;
  }
}
.bl_explanation_snsLink {
  text-decoration: none;
  display: block;
  width: 30px;
  height: 30px;
}
@media only screen and (min-width: 768px) {
  .bl_explanation_snsLink {
    width: 60px;
    height: 60px;
  }
}

/* Base Use Scss */
:root {
  --float-btn-width: 80%;
  --float-btn-inner: 3% 0 2%;
  --float-text-color: #fff;
}
@media only screen and (min-width: 768px) {
  :root {
    --float-btn-width: 100%;
    --float-btn-inner: 32px 32px 32px 64px;
  }
}

.bl_floatBtn {
  background: var(--float-btn-back-color);
  color: var(--float-text-color);
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  transition: transform 0.2s linear 0.1s;
}
@media only screen and (min-width: 768px) {
  .bl_floatBtn {
    max-width: 290px;
    height: 184px;
    bottom: 10%;
    border-radius: var(--float-btn-radius);
  }
}
.bl_floatBtn_inner {
  position: relative;
  padding: var(--float-btn-inner);
}
@media only screen and (min-width: 768px) {
  .bl_floatBtn_inner {
    height: 100%;
  }
}
.bl_floatBtn_toggle {
  color: var(--float-text-color);
  display: none;
}
@media only screen and (min-width: 768px) {
  .bl_floatBtn_toggle {
    height: 184px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 1%;
    transform: translateY(-50%);
  }
}
.bl_floatBtn_toggle span {
  writing-mode: vertical-rl;
  font-family: var(--goshic);
  font-size: 12px;
  letter-spacing: 0.2em;
}
.bl_floatBtn_toggle img {
  height: 18px;
  margin-bottom: 10px;
}
.bl_floatBtn_menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bl_floatBtn_menu_btns {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .bl_floatBtn_menu_btns {
    flex-direction: column;
    gap: 10px;
  }
}
.bl_floatBtn_btn {
  width: var(--float-btn-width);
  display: block;
  margin: 0 2%;
}
@media only screen and (min-width: 768px) {
  .bl_floatBtn_btn {
    margin: 0;
  }
}
.bl_floatBtn_body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .bl_floatBtn_body {
    flex-direction: column;
  }
}
.bl_floatBtn_telTxt {
  display: none;
}
@media only screen and (min-width: 768px) {
  .bl_floatBtn_telTxt {
    display: block;
    font-size: 12px;
    line-height: 2em;
  }
}
.bl_floatBtn_tel {
  color: var(--float-text-color);
  font-size: 17px;
  margin-right: 2%;
}
@media only screen and (min-width: 768px) {
  .bl_floatBtn_tel {
    text-decoration: none;
    pointer-events: none;
    font-size: 24px;
  }
}
.bl_floatBtn_tel img {
  height: 17px;
  position: relative;
  width: inherit;
  top: -6px;
}
@media only screen and (min-width: 768px) {
  .bl_floatBtn_tel img {
    display: none;
  }
}
.bl_floatBtn_time {
  font-size: 10px;
}
@media only screen and (min-width: 768px) {
  .bl_floatBtn_time {
    line-height: 2em;
  }
}

/* Base Use Scss */
.el_label {
  background-color: var(--base-color);
  font-size: 9px;
  padding: 4px 5px;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .el_label {
    font-size: 12px;
    padding: 6px 7px;
  }
}

/* Base Use Scss */
@media only screen and (min-width: 768px) {
  .el_tel {
    pointer-events: none;
  }
}

.js_tab_cont {
  display: none;
}
.js_tab_cont.is_show {
  display: block;
}

/* Base Use Scss */
#js_floatBtn {
  transition: opacity 0.4s, transform 0.4s;
  z-index: -9999;
}
#js_floatBtn.is_active {
  z-index: 1000;
}
@media only screen and (min-width: 768px) {
  #js_floatBtn {
    transform: translateX(250px);
  }
}
#js_floatBtn.is_open {
  transform: translateX(0);
}
#js_floatBtn_toggle img {
  transform: rotate(0turn);
  transition: all 0.4s;
}
#js_floatBtn_toggle.is_check img {
  transform: rotate(0.13turn);
}

/* Base Use Scss */
:root {
  --m: 0;
  --mt: 0;
  --mb: 0;
  --ml: 0;
  --mr: 0;
  --m-pc: 0;
  --mt-pc: 0;
  --mb-pc: 0;
  --ml-pc: 0;
  --mr-pc: 0;
  --m-sp: 0;
  --mt-sp: 0;
  --mb-sp: 0;
  --ml-sp: 0;
  --mr-sp: 0;
  --p: 0;
  --pt: 0;
  --pb: 0;
  --pl: 0;
  --pr: 0;
  --p-pc: 0;
  --pt-pc: 0;
  --pb-pc: 0;
  --pl-pc: 0;
  --pr-pc: 0;
  --p-sp: 0;
  --pt-sp: 0;
  --pb-sp: 0;
  --pl-sp: 0;
  --pr-sp: 0;
  --stint-w:0
  --stint-w-pc:0
  --stint-w-sp:0 ;
}

.hp_only_sp {
  display: none;
}
@media only screen and (max-width: 767.98px) {
  .hp_only_sp {
    display: block !important;
  }
}
.hp_only_sp_flex {
  display: none;
}
@media only screen and (max-width: 767.98px) {
  .hp_only_sp_flex {
    display: flex !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .hp_only_pc {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .hp_only_laptop-sm {
    display: none !important;
  }
}

.hp_font_notsans {
  font-family: var(--noto-sans);
}

.hp_m {
  margin: var(--m) !important;
}
@media only screen and (min-width: 768px) {
  .hp_m_pc {
    margin: var(--m-pc) !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .hp_m_sp {
    margin: var(--m-sp) !important;
  }
}
.hp_ml {
  margin-left: var(--ml) !important;
}
@media only screen and (min-width: 768px) {
  .hp_ml_pc {
    margin-left: var(--ml-pc) !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .hp_ml_sp {
    margin-left: var(--ml-sp) !important;
  }
}
.hp_mr {
  margin-right: var(--mr) !important;
}
@media only screen and (min-width: 768px) {
  .hp_mr_pc {
    margin-right: var(--mr-pc) !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .hp_mr_sp {
    margin-right: var(--mr-sp) !important;
  }
}
.hp_mt {
  margin-top: var(--mt) !important;
}
@media only screen and (min-width: 768px) {
  .hp_mt_pc {
    margin-top: var(--mt-pc) !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .hp_mt_sp {
    margin-top: var(--mt-sp) !important;
  }
}
.hp_mb {
  margin-bottom: var(--mb) !important;
}
@media only screen and (min-width: 768px) {
  .hp_mb_pc {
    margin-bottom: var(--mb-pc) !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .hp_mb_sp {
    margin-bottom: var(--mb-sp) !important;
  }
}

.hp_p {
  padding: var(--p) !important;
}
@media only screen and (min-width: 768px) {
  .hp_p_pc {
    padding: var(--p-pc) !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .hp_p_sp {
    padding: var(--p-sp) !important;
  }
}
.hp_pl {
  padding-left: var(--pl) !important;
}
@media only screen and (min-width: 768px) {
  .hp_pl_pc {
    padding-left: var(--pl-pc) !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .hp_pl_sp {
    padding-left: var(--pl-sp) !important;
  }
}
.hp_pr {
  padding-right: var(--pr) !important;
}
@media only screen and (min-width: 768px) {
  .hp_pr_pc {
    padding-right: var(--pr-pc) !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .hp_pr_sp {
    padding-right: var(--pr-sp) !important;
  }
}
.hp_pt {
  padding-top: var(--pt) !important;
}
@media only screen and (min-width: 768px) {
  .hp_pt_pc {
    padding-top: var(--pt-pc) !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .hp_pt_sp {
    padding-top: var(--pt-sp) !important;
  }
}
.hp_pb {
  padding-bottom: var(--pb) !important;
}
@media only screen and (min-width: 768px) {
  .hp_pb_pc {
    padding-bottom: var(--pb-pc) !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .hp_pb_sp {
    padding-bottom: var(--pb-sp) !important;
  }
}

.hp_stintW {
  width: 100%;
  max-width: var(--stint-w);
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .hp_stintW-pc {
    width: 100%;
    max-width: var(--stint-w-pc);
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 767.98px) {
  .hp_stintW-sp {
    width: 100%;
    max-width: var(--stint-w-sp);
    margin-left: auto;
    margin-right: auto;
  }
}

/**************************\
  Basic Modal Styles
\**************************/
.mm_modal {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  overflow-x: hidden;
  overflow-y: auto;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1001;
  transition: opacity 0.3s;
}
.mm_modal.is-open {
  opacity: 1;
  z-index: 1001;
}

.mm_modal_overlay {
  width: auto;
  margin: 1rem;
}

.mm_modal_container {
  margin: auto;
}

.mm_modal_header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mm_modal_title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.mm_modal_close {
  background: transparent;
  border: 0;
}

.mm_modal_content {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

/* Base Use Scss */
.bl_modal {
  max-width: 500px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .bl_modal.-responsive {
    max-width: 1000px;
  }
}
.bl_modal_head_closeBtn img {
  width: 45px;
  height: 47px;
}
.bl_modal_heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--mincho);
  color: #17416e;
  font-size: 28px;
  margin-bottom: 10px;
}
.bl_modal_heading img {
  margin-bottom: 5px;
}
.bl_modal_mainImg {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-inline: auto;
}
.bl_modal_cont {
  margin-top: 15px;
  border-radius: 4px;
  padding: 30px 15px;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .bl_modal.-responsive .bl_modal_cont {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}
.bl_modal_map {
  margin: 0px 50px;
  width: -webkit-fill-available;
}
.bl_modal_table {
  font-family: var(--apple);
}
.bl_modal_btn {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

/* Base Use Scss */
.bl_table {
  width: 100%;
}
.bl_table.-flex {
  display: flex;
}
.bl_table.-wrap {
  flex-wrap: wrap;
}
.bl_table_unit {
  border-left: 1px solid #e1e6e8;
  border-top: 1px solid #e1e6e8;
}
.bl_table .bl_table_unit:last-child {
  border-right: 1px solid #e1e6e8;
}
.bl_table_unit.-small {
  flex-basis: 92px;
  max-width: 92px;
}
.bl_table_unit.-narrow {
  flex-basis: 28%;
  max-width: 28%;
}
.bl_table_unit.-wide {
  flex-basis: 44%;
  max-width: 44%;
}
.bl_table_unit.-wide2 {
  flex-basis: 40%;
  max-width: 40%;
}
.bl_table_unit.-wide3 {
  flex-basis: 60%;
  max-width: 60%;
}
.bl_table_unit.-half {
  flex-basis: 50%;
  max-width: 50%;
}
.bl_table_unit.-full {
  flex-basis: 100%;
  max-width: 100%;
}
.bl_table_head {
  padding: 7px;
  border-bottom: 1px solid #e1e6e8;
  background-color: #f7f9fa;
  font-weight: bold;
  color: #212529;
  text-align: center;
}
.bl_table_bottom {
  text-align: center;
  padding: 7px;
  color: #212529;
}
.bl_table.-line3 .bl_table_head {
  border-bottom: none;
}
.bl_table.-line5 .bl_table_head {
  border-bottom: none;
}
.bl_table.-line5 .bl_table_bottom {
  text-align: left;
}
.bl_table.-line6 .bl_table_bottom {
  text-align: center;
  border-bottom: 1px solid #e1e6e8;
}

/* Base Use Scss */
/* これが無いとモーダルウィンドウ表示の際に余白が出る */
* {
  margin: 0;
  padding: 0;
}

/* モーダル全体(背景＋本体) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 9999;
}

/* モーダル背景 */
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* モーダル本体 */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow: scroll;
  /* はみ出た部分はスクロールさせる */
  height: 60%;
  /* これが無いと「overflow:scroll」が利かない */
  width: 90%;
  /* これが無いと「overflow:scroll」が利かない */
  background: white;
  padding: 15px;
  max-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (min-width: 767px) {
  .modal-content {
    height: 60%;
    /* これが無いと「overflow:scroll」が利かない */
    width: 60%;
    /* これが無いと「overflow:scroll」が利かない */
    padding: 40px 60px;
  }
}
/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.modal-content__btn {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  width: 100px;
  font-size: 16px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  margin: 10px;
  display: block;
  text-align: center;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.modal-content__btn:hover {
  text-decoration: none;
  opacity: 0.7;
}

.modal-content__btn__list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Base Use Scss */
.js_acc_trigger {
  cursor: pointer;
}
.js_acc_conts {
  display: none;
}

/* Pass */
@font-face {
  font-family: "Noto Sans JP";
  src: url("/pb-u29a-2407/font/NotoSansJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/pb-u29a-2407/font/NotoSansJP-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/pb-u29a-2407/font/NotoSansJP-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Lato", sans-serif;
  src: url("/pb-u29a-2407/font/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lato", sans-serif;
  src: url("/pb-u29a-2407/font/Lato-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Lato", sans-serif;
  src: url("/pb-u29a-2407/font/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
/*　 root */
:root {
  --base-font-family: var(--goshic), var(--noto-sans);
  --base-color: #0068b7;
  --back-color: #e9f5ff;
  --base-line-height: calc(56 / 32);
  --base-font-size: 16px;
  --float-btn-back-color: linear-gradient(
    to top right,
    rgba(26, 148, 187, 0.9),
    rgba(41, 69, 196, 0.9)
  );
  --float-btn-radius: 10px 0 0 10px;
}
@media only screen and (min-width: 768px) {
  :root {
    --base-font-size: 20px;
  }
}
@media only screen and (min-width: 768px) {
  :root {
    --float-btn-width: 210px;
    --float-btn-inner: 32px 32px 32px 79px;
  }
}

@media only screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}
@media only screen and (min-width: 768px), print {
  .u-hidden-pc {
    display: none !important;
  }
}
h1,
h2,
h3 {
  font-weight: 600;
}

.pg-home {
  max-width: 1920px;
  margin-inline: auto;
}

.l-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}
.l-wrapper_inner {
  padding-inline: 20px;
}
.l-wrapper_inner.-course {
  padding-inline: 0;
}
@media only screen and (min-width: 768px) {
  .l-wrapper_inner.-course {
    padding-inline: 20px;
  }
}
.l-wrapper-style {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}
.l-wrapper-style::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-image: url(/pb-u29a-2407/img/decoration_01_sp.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 125px;
  height: 73px;
}
@media only screen and (min-width: 768px) {
  .l-wrapper-style::before {
    background-image: url(/pb-u29a-2407/img/decoration_01.png);
    height: 180px;
    width: 300px;
  }
}
.l-wrapper-style::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background-image: url(/pb-u29a-2407/img/decoration_02_sp.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 125px;
  height: 73px;
}
@media only screen and (min-width: 768px) {
  .l-wrapper-style::after {
    background-image: url(/pb-u29a-2407/img/decoration_02.png);
    height: 180px;
    width: 300px;
  }
}
.l-wrapper-customize {
  position: relative;
  max-width: initial;
  background-color: #f7f7f7;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .l-wrapper-customize {
    padding-bottom: 150px;
  }
}
.l-wrapper-customize::before {
  position: absolute;
  content: "";
  top: -250px;
  left: 0;
  width: 100%;
  height: 250px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: #f7f7f7;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .l-wrapper-customize::before {
    top: -500px;
    height: 500px;
  }
}
@media only screen and (min-width: 768px) {
  .l-wrapper-recruit {
    margin: 20px;
    border: 2px solid #e8ebec;
  }
}
.l-wrapper-recruit_inner {
  padding-block: 45px 65px;
  padding-inline: 15px;
}
@media only screen and (min-width: 768px) {
  .l-wrapper-recruit_inner {
    padding-inline: 0;
    padding-block: 150px;
  }
}

.l-footer_logo {
  margin: 0 auto;
  width: 145px;
}
@media only screen and (min-width: 768px) {
  .l-footer_logo {
    width: 300px;
  }
}
.l-footer_copy {
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
  padding-block: 30px 100px;
  line-height: 2;
  font-family: var(--noto-sans);
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .l-footer_copy {
    padding-block: 60px 100px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .l-footer_copy span {
    display: block;
    margin-top: 10px;
  }
}

.m-cv_wrap {
  background-image: url(/pb-u29a-2407/img/blue_bg_01_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .m-cv_wrap {
    background-image: url(/pb-u29a-2407/img/blue_bg_01.png);
  }
}
.m-cv_wrap.-footer {
  background-image: url(/pb-u29a-2407/img/blue_bg_03.png);
  width: 100%;
}

.m-cv_btn_wrap {
  gap: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  padding: 50px 20px 40px 20px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .m-cv_btn_wrap {
    padding: 100px 20px;
    flex-direction: row;
    justify-content: center;
  }
}

.m-cv_btn {
  position: relative;
  width: 90%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #fff;
  text-decoration: none;
  background-color: #e60013;
  padding-block: 30px;
  font-weight: 600;
  box-shadow: 5px 5px 0px 0px rgba(0, 62, 110, 0.8);
  transition: all 0.3s;
}
@media only screen and (min-width: 768px) {
  .m-cv_btn {
    padding-block: 35px;
    width: 49%;
  }
}
.m-cv_btn:first-child::before {
  position: absolute;
  content: "";
  top: -20px;
  background-image: url(/pb-u29a-2407/img//cv_speechbubble_01.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 165px;
  height: 50px;
}
.m-cv_btn:last-child::before {
  position: absolute;
  content: "";
  top: -20px;
  background-image: url(/pb-u29a-2407/img//cv_speechbubble_02.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 137px;
  height: 50px;
}
.m-cv_btn span:nth-child(1) {
  font-size: 14px;
  font-size: 0.875rem;
  border: 1.5px solid #fff;
  padding: 1px 5px;
}
@media only screen and (min-width: 768px) {
  .m-cv_btn span:nth-child(1) {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.m-cv_btn span:nth-child(2) {
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (min-width: 768px) {
  .m-cv_btn span:nth-child(2) {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.m-cv_btn img {
  width: 30px;
}
.m-cv_btn:hover {
  box-shadow: initial;
  transform: translate(5px, 5px);
}
.m-cv_btn.-float {
  border-radius: 0 !important;
}

.m-price_box {
  border: 6px solid #e8ebec;
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
  .m-price_box {
    border: 10px solid #e8ebec;
    flex-direction: row;
  }
}
.m-price_box_wrap {
  position: relative;
  margin-top: 60px;
  margin-inline: 15px;
}
@media only screen and (min-width: 768px) {
  .m-price_box_wrap {
    max-width: 1200px;
    margin-top: 150px;
    padding-inline: 50px;
    margin-inline: auto;
  }
}
.m-price_box_left {
  position: relative;
  width: 100%;
  padding: 5px 10px 20px 10px;
}
@media only screen and (min-width: 768px) {
  .m-price_box_left {
    padding: 30px 30px 20px 30px;
    width: 55%;
    position: initial;
  }
}
.m-price_box_right {
  width: 100%;
  border-left: 0px;
}
@media only screen and (min-width: 768px) {
  .m-price_box_right {
    border-left: 10px solid #e8ebec;
    width: 45%;
  }
}
.m-price_box_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m-price_ttl {
  display: inline-block;
  padding: 15px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 600;
  background-color: var(--base-color);
}
@media only screen and (min-width: 768px) {
  .m-price_ttl {
    font-size: 24px;
    font-size: 1.5rem;
    padding: 15px 40px;
    position: absolute;
    left: -25px;
    top: -30px;
    width: auto;
  }
}
.m-price_roomdesc {
  font-size: 10px;
  font-size: 0.625rem;
  text-align: right;
  margin-bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .m-price_roomdesc {
    font-size: 14px;
    font-size: 0.875rem;
    text-align: initial;
  }
}
.m-price_before {
  font-size: 16px;
  font-size: 1rem;
  color: var(--base-color);
  font-style: italic;
  font-weight: 600;
  text-align: center;
}
.m-price_before span {
  font-size: 32px;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .m-price_before span {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .m-price_before {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.m-price_arrow {
  margin: 0 auto 10px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: var(--base-color);
  width: 13px;
  height: 11px;
}
.m-price_after {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #e60013;
  text-align: center;
  letter-spacing: 0.01em;
  font-style: italic;
  line-height: 1.2;
  padding-top: 10px;
}
@media only screen and (min-width: 768px) {
  .m-price_after {
    padding-top: 0;
    border-bottom: 5px solid #e60013;
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 0.1em;
  }
}
@media only screen and (min-width: 768px) {
  .m-price_after_box {
    padding: 20px;
    border: 1px solid #e60013;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
}
.m-price_after_desc {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e60013;
  background-color: #fae1e4;
  padding: 15px 10px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .m-price_after_desc {
    font-size: 16px;
    font-size: 1rem;
    text-align: initial;
  }
}
@media only screen and (min-width: 768px) {
  .m-price_after_desc::after {
    position: absolute;
    content: "";
    background-image: url(/pb-u29a-2407/img/price_arrow.png);
    top: calc(50% - 5px);
    right: -30px;
    background-size: contain;
    background-repeat: no-repeat;
    width: 34px;
    height: 30px;
  }
}
.m-price_after_arrow {
  width: 25px;
  vertical-align: baseline;
}
@media only screen and (min-width: 768px) {
  .m-price_after_arrow {
    display: none;
  }
}
.m-price_circle {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #000;
  font-weight: 600;
  background-color: #fff;
  top: -30px;
  left: 5px;
  display: flex;
  width: 60px;
  height: 60px;
  font-size: 12px;
  font-size: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .m-price_circle {
    right: 0%;
    left: initial;
    width: 85px;
    height: 85px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.m-price_note {
  padding-top: 20px;
  padding-inline: 10px;
  line-height: 1.75;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .m-price_note {
    text-align: center;
    font-size: 16px;
    font-size: 1rem;
  }
}

.m-desc_bg {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
  background-image: initial;
}
@media only screen and (min-width: 600px) {
  .m-desc_bg {
    background-image: url(/pb-u29a-2407/img/map.png);
    max-width: 1920px;
    margin: 0 auto;
  }
}
.m-desc_bg_sp {
  background-image: url(/pb-u29a-2407/img/map_sp.png);
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
}
@media only screen and (min-width: 600px) {
  .m-desc_bg_sp {
    max-width: 1920px;
    margin: 0 auto;
    background-image: initial;
  }
}
.m-desc_logo-wrap {
  padding-top: 90px;
  margin: 0 auto;
  width: 130px;
}
@media only screen and (min-width: 768px) {
  .m-desc_logo-wrap {
    padding-top: 220px;
    width: 280px;
  }
}
.m-desc_ttl {
  margin-block: 30px;
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  color: #828487;
}
@media only screen and (min-width: 768px) {
  .m-desc_ttl {
    letter-spacing: 0.1em;
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.m-desc_ttl.-style {
  margin-block: 0;
  padding-block: 110px 50px;
}
@media only screen and (min-width: 768px) {
  .m-desc_ttl.-style {
    margin-block: 30px;
    padding-block: 0;
  }
}
.m-desc_ttl span:not(:first-child) {
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 768px) {
  .m-desc_ttl span:not(:first-child) {
    letter-spacing: 0.3em;
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.m-desc_ttl.-step {
  padding-block: 30px;
  font-size: 30px;
  font-size: 1.875rem;
}
.m-desc_ttl.-step .-txt-blue {
  letter-spacing: 0.01em;
}
@media only screen and (min-width: 768px) {
  .m-desc_ttl.-step {
    font-size: 40px;
    font-size: 2.5rem;
    padding-block: 0;
  }
}
.m-desc_ttl .-txt-blue {
  color: var(--base-color);
}
.m-desc_ttl .-txt-red {
  color: #e60013;
}
.m-desc_ttl.-course span {
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 768px) {
  .m-desc_ttl.-course span {
    letter-spacing: 0.15em;
  }
}
.m-desc_ttl.-style span {
  letter-spacing: 0.1em;
}
.m-desc_txt {
  line-height: 2;
  padding-inline: 15px;
}
@media only screen and (min-width: 768px) {
  .m-desc_txt {
    text-align: center;
  }
}
.m-desc_txt.-pb10 {
  padding-bottom: 15%;
}
@media only screen and (min-width: 768px) {
  .m-desc_txt:nth-child(2) {
    padding-top: 0;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  .m-desc_txt.-step {
    padding-inline: 0;
  }
}
.m-desc_ship {
  position: relative;
  margin: 0 auto;
  max-width: 1920px;
  z-index: -1;
}

.m-tab {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .m-tab {
    gap: 15px;
  }
}
.m-tab_item {
  width: 33.3333333333%;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  font-size: 0.875rem;
  background-color: var(--base-color);
  color: #fff;
  padding: 10px;
  font-size: 10px;
  font-size: 0.625rem;
}
@media only screen and (min-width: 768px) {
  .m-tab_item {
    padding: 15px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.m-tab_item span {
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .m-tab_item span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.m-tab_item.is_active {
  position: relative;
  border-left: 3px solid #000;
  border-right: 3px solid #000;
  border-top: 3px solid #000;
  background-color: #f7f7f7;
  outline: 5px solid #ffffff;
  color: var(--base-color);
  outline-offset: -8px;
}
.m-tab_item.is_active::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background-color: #f7f7f7;
  bottom: -12px;
  left: 0;
  z-index: 0;
  border-inline: 5px solid #fff;
}
.m-tab_item.is_active::after {
  position: absolute;
  content: "";
  bottom: -35px;
  left: calc(50% - 20px);
  background-image: url(/pb-u29a-2407/img/tab_arrow.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 40px;
  height: 30px;
}
.m-tab_body {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  border-top: 3px solid #000;
  padding-bottom: 75px;
}
.m-tab_body::before {
  content: "";
  display: block;
  height: 3px;
  width: calc(100% + 40px);
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .m-tab_body {
    max-width: 1920px;
    margin-inline: auto;
    padding-bottom: 140px;
  }
}
.m-tab_body_inner {
  padding-inline: 0;
}
@media only screen and (min-width: 768px) {
  .m-tab_body_inner {
    padding-inline: 20px;
  }
}
.m-tab_body_item {
  max-width: 1200px;
  margin-top: 35px;
}
@media only screen and (min-width: 768px) {
  .m-tab_body_item {
    margin: 80px auto 0 auto;
  }
}
.m-tab_body_item_desc {
  padding-inline: 25px;
  padding-block: 15px 30px;
  font-weight: 600;
  color: var(--base-color);
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .m-tab_body_item_desc {
    font-size: 16px;
    font-size: 1rem;
    padding-inline: 40px;
    padding-block: 0;
    width: 50%;
  }
}
.m-tab_body_item_desc_wrap {
  position: relative;
  background-color: #e8ebec;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin-bottom: 25px;
  outline: 2px solid #fff;
  outline-offset: -8px;
}
@media only screen and (min-width: 768px) {
  .m-tab_body_item_desc_wrap {
    outline-offset: -12px;
    flex-direction: row;
    margin-bottom: 40px;
  }
}
.m-tab_body_item_desc_img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .m-tab_body_item_desc_img {
    width: 50%;
  }
}
.m-tab_body_item_bottom_wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  padding-inline: 15px;
}
@media only screen and (min-width: 768px) {
  .m-tab_body_item_bottom_wrap {
    flex-direction: row;
    padding-inline: 0;
  }
}
.m-tab_body_item_bottom_left {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .m-tab_body_item_bottom_left {
    width: 40%;
  }
}
.m-tab_body_item_bottom_left_ttl {
  padding-bottom: 12px;
  border-bottom: dashed 1px var(--base-color);
}
.m-tab_body_item_bottom_left_ttl img {
  width: 40px;
  vertical-align: initial;
}
@media only screen and (min-width: 768px) {
  .m-tab_body_item_bottom_left_ttl img {
    vertical-align: bottom;
    width: 50px;
  }
}
.m-tab_body_item_bottom_left_ttl span {
  margin-left: 10px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--base-color);
}
.m-tab_body_item_bottom_left_list li {
  padding-top: 10px;
}
.m-tab_body_item_bottom_right {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media only screen and (min-width: 768px) {
  .m-tab_body_item_bottom_right {
    gap: 20px;
    width: 60%;
  }
}
.m-tab_body_item_bottom_right_img {
  position: relative;
  width: calc(33.3333333333% - 7px);
}
@media only screen and (min-width: 768px) {
  .m-tab_body_item_bottom_right_img {
    width: calc(33.3333333333% - 14px);
  }
}
.m-tab_body_item_bottom_right_img_caption {
  position: absolute;
  left: -5px;
  background-color: var(--base-color);
  font-size: 9px;
  font-size: 0.5625rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 2px 4px;
}
@media only screen and (min-width: 768px) {
  .m-tab_body_item_bottom_right_img_caption {
    bottom: 10px;
    padding: 5px 10px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.m-tab_body_item_bottom_right_img_caption.-first {
  bottom: 25px;
}
.m-tab_body_item_bottom_right_img_caption.-second {
  bottom: 5px;
}

.m-info {
  background-image: url(/pb-u29a-2407/img/blue_bg_02_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: 45px;
  padding-inline: 20px;
}
@media only screen and (min-width: 768px) {
  .m-info {
    background-image: url(/pb-u29a-2407/img/blue_bg_02.png);
    padding-block: 100px;
  }
}
.m-info_wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 0 15px;
  border: 8px solid #e8ebec;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .m-info_wrap {
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
  }
}
.m-info_desc_wrap {
  width: 100%;
  padding: 25px 20px;
}
@media only screen and (min-width: 768px) {
  .m-info_desc_wrap {
    padding: 35px;
    width: 80%;
  }
}
@media only screen and (max-width: 767.98px) {
  .m-info_desc_wrap.-right h2 {
    margin-inline: auto 15%;
  }
}
.m-info_desc_wrap h2 {
  font-size: 22px;
  font-size: 1.375rem;
  color: #e60013;
  margin-bottom: 20px;
  margin-inline: 22% auto;
  line-height: 1.5;
}
.m-info_desc_wrap h2 span {
  color: var(--base-color);
}
@media only screen and (min-width: 768px) {
  .m-info_desc_wrap h2 {
    font-size: 28px;
    font-size: 1.75rem;
    margin-inline: 0;
    margin-bottom: 15px;
  }
}
.m-info_desc_wrap p {
  font-weight: 600;
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .m-info_desc_wrap p {
    font-size: 16px;
    font-size: 1rem;
  }
}
.m-info_desc_wrap p span {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .m-info_desc_wrap p span {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.m-info_img_wrap {
  position: absolute;
  left: -20px;
  top: -30px;
  width: 20%;
  min-width: 80px;
  box-shadow: -3px 3px 0px 0px #e60013;
}
@media only screen and (min-width: 768px) {
  .m-info_img_wrap {
    left: -30px;
    min-width: 200px;
    box-shadow: -10px 10px 0px 0px #e60013;
  }
}
@media only screen and (max-width: 767.98px) {
  .m-info_img_wrap.-right {
    left: initial;
    right: -20px;
  }
}

.m-step {
  background-color: #f7f7f7;
  padding-top: 40px;
}
@media only screen and (min-width: 768px) {
  .m-step {
    padding-top: 80px;
    padding-inline: 20px;
    max-width: 1920px;
    margin-inline: auto;
  }
}
.m-step.-top {
  position: relative;
  padding-top: 90px;
  padding-inline: 15px;
}
@media only screen and (min-width: 768px) {
  .m-step.-top {
    padding-inline: 0;
    padding-top: 230px;
  }
}
.m-step.-top::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  clip-path: polygon(50% 50%, 0 0, 100% 0);
}
@media only screen and (min-width: 768px) {
  .m-step.-top::before {
    height: 300px;
  }
}
.m-step_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #d8dade;
}
@media only screen and (min-width: 768px) {
  .m-step_inner {
    border-bottom: 2px solid #d8dade;
    padding-bottom: 80px;
  }
}
.m-step_inner.-border-none {
  border: 0px;
}
.m-step_number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: lato;
  font-weight: 600;
  font-style: italic;
  width: 65px;
  height: 65px;
  margin: 0 auto;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  font-size: 1.875rem;
  background-image: repeating-linear-gradient(-45deg, #e60013 0 10px, #eb3342 10px 20px);
}
@media only screen and (min-width: 768px) {
  .m-step_number {
    width: 90px;
    height: 90px;
    font-size: 44px;
    font-size: 2.75rem;
  }
}
.m-step_service_wrap {
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 30px;
}
.m-step_service_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 15px;
}
@media only screen and (min-width: 768px) {
  .m-step_service_inner {
    gap: 3.5%;
    align-items: baseline;
    flex-wrap: nowrap;
    padding-inline: 20px;
  }
}
.m-step_service_item {
  width: calc(50% - 7.5px);
  border: 8px solid #e8ebec;
  background-color: #fff;
  padding-block: 40px 35px;
  height: 165px;
}
@media only screen and (min-width: 768px) {
  .m-step_service_item {
    padding-block: 40px 35px;
    height: auto;
    width: calc(25% - 20px);
  }
}
.m-step_service_item_img {
  margin: 0 auto;
  width: 50px;
  padding-bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .m-step_service_item_img {
    padding-bottom: 0;
    width: 30%;
  }
}
.m-step_service_item_img.-w25 {
  width: 40px;
}
@media only screen and (min-width: 768px) {
  .m-step_service_item_img.-w25 {
    width: 25%;
  }
}
.m-step_service_item:nth-child(1) {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .m-step_service_item:nth-child(1) {
    margin-top: 40px;
    align-self: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  .m-step_service_item:nth-child(3) {
    margin-top: 40px;
    align-self: flex-end;
  }
}
@media only screen and (max-width: 767.98px) {
  .m-step_service_item:nth-child(4) {
    position: relative;
    bottom: 30px;
  }
}
.m-step_service_info {
  color: var(--base-color);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  font-style: italic;
}
@media only screen and (min-width: 768px) {
  .m-step_service_info {
    font-size: 16px;
    font-size: 1rem;
  }
}
.m-step_service_info span {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
}
@media only screen and (min-width: 768px) {
  .m-step_service_info span {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.m-step_note {
  padding-top: 100px;
  line-height: 1.75;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .m-step_note {
    padding-top: 40px;
    text-align: center;
  }
}
.m-step_img {
  max-width: 900px;
  margin-top: 30px;
  margin-inline: auto;
  border: 8px solid #e8ebec;
}
.m-step_price_wrap {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .m-step_price_wrap {
    display: flex;
    justify-content: space-between;
  }
}
.m-step_price_img {
  width: 100%;
  border: 6px solid #e8ebec;
  border-bottom: 0px;
}
@media only screen and (min-width: 768px) {
  .m-step_price_img {
    width: 65%;
  }
}
@media only screen and (min-width: 768px) {
  .m-step_price_img.-right {
    width: 100%;
  }
  .m-step_price_img.-right figcaption {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.m-step_price_img figcaption {
  background-color: #e8ebec;
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
  padding-block: 5px;
}
@media only screen and (min-width: 768px) {
  .m-step_price_img figcaption {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.m-step_price_left {
  width: 100%;
}
.m-step_price_left_ttl {
  background-color: var(--base-color);
  padding-block: 20px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .m-step_price_left_ttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.m-step_price_bottom {
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .m-step_price_bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
  }
}
.m-step_price_bottom_before {
  color: var(--base-color);
  font-style: italic;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  .m-step_price_bottom_before {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.m-step_price_bottom_before.-right {
  font-size: 12px;
  font-size: 0.75rem;
  color: #4098e3;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .m-step_price_bottom_before.-right {
    font-size: 16px;
    font-size: 1rem;
  }
}
.m-step_price_bottom_before.-right span {
  font-size: 20px;
  font-size: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .m-step_price_bottom_before.-right span {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.m-step_price_bottom_before span {
  font-size: 32px;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .m-step_price_bottom_before span {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.m-step_price_bottom_arrow {
  margin: 0 auto 10px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: var(--base-color);
  width: 13px;
  height: 11px;
}
.m-step_price_bottom_arrow.-right {
  background-color: #4098e3;
}
.m-step_price_bottom_after {
  font-weight: 600;
  color: #e60013;
  text-align: center;
  letter-spacing: 0.1em;
  font-style: italic;
  line-height: 1.2;
  margin-top: 15px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .m-step_price_bottom_after {
    border-bottom: 5px solid #e60013;
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.m-step_price_bottom_after.-right {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  border-bottom: 0px;
}
@media only screen and (min-width: 768px) {
  .m-step_price_bottom_after.-right {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.m-step_price_bottom_after.-right div {
  display: inline-block;
}
.m-step_price_bottom_after.-right span {
  font-size: 22px;
  font-size: 1.375rem;
}
@media only screen and (min-width: 768px) {
  .m-step_price_bottom_after.-right span {
    font-size: 32px;
    font-size: 2rem;
  }
}
.m-step_price_bottom_after.-right span span {
  font-size: 12px;
  font-size: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .m-step_price_bottom_after.-right span span {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.m-step_price_bottom_after.-right img {
  max-width: 30px;
}
.m-step_price_bottom_after.-right .-border {
  border-bottom: 5px solid #e60013;
}
@media only screen and (max-width: 767.98px) {
  .m-step_price_bottom_after.-right .-border_sp {
    border-bottom: 3px solid #e60013;
  }
}
.m-step_price_bottom_after div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.m-step_price_bottom_after div img {
  max-width: 30px;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  .m-step_price_bottom_after div img {
    max-width: 40px;
    vertical-align: bottom;
  }
}
.m-step_price_bottom_after_wrap {
  border: 1px solid #e60013;
  padding: 15px 10px;
}
@media only screen and (min-width: 768px) {
  .m-step_price_bottom_after_wrap {
    padding: 40px 20px;
  }
}
.m-step_price_bottom_after_wrap.-right {
  border: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .m-step_price_bottom_after_wrap.-right {
    border: 1px solid #e60013;
    padding: 20px;
  }
}
.m-step_price_bottom_after_txt {
  color: #e60013;
  background-color: #fae1e4;
  font-weight: 600;
  text-align: center;
  padding: 10px 15px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .m-step_price_bottom_after_txt {
    padding: 10px 20px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.m-step_price_bottom_after_txt.-right {
  padding: 5px;
  font-size: 10px;
  font-size: 0.625rem;
}
@media only screen and (min-width: 768px) {
  .m-step_price_bottom_after_txt.-right {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.m-step_price_bottom_txt {
  flex-grow: 1;
}
.m-step_price_right {
  width: 100%;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .m-step_price_right {
    width: 26%;
    margin-top: 0;
  }
}
.m-step_price_right_ttl {
  background-color: #4098e3;
  padding-block: 5px;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  .m-step_price_right_sp {
    display: flex;
    gap: 10px;
  }
  .m-step_price_right_sp figure {
    width: 37%;
    align-self: flex-start;
  }
  .m-step_price_right_sp figcaption {
    font-size: 9px;
    font-size: 0.5625rem;
  }
  .m-step_price_right_sp .m-step_price_conts {
    width: 63%;
  }
}
.m-step_info {
  font-size: 14px;
  font-size: 0.875rem;
  color: #222222;
  line-height: 1.75;
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .m-step_info {
    padding-bottom: 20px;
  }
}
.m-step_info img {
  width: 20px;
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 5px;
}
.m-step_info:nth-child(2) {
  padding-top: 10px;
  padding-bottom: 0;
  color: #000;
  border-top: 2px solid #d8dade;
}
@media only screen and (min-width: 768px) {
  .m-step_info:nth-child(2) {
    text-indent: -9em;
    padding-left: 9em;
    padding-top: 20px;
  }
}

.m-time {
  padding-inline: 30px 15px;
  max-width: 1200px;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .m-time {
    padding-inline: 20px;
  }
}
.m-time_inner {
  max-width: 1200px;
}
.m-time_item {
  width: 100%;
  position: relative;
  background-color: #f7f7f7;
  padding: 30px 45px 30px 20px;
}
@media only screen and (min-width: 768px) {
  .m-time_item {
    padding: 50px 70px 50px 50px;
    width: calc(50% - 20px);
  }
}
.m-time_item_wrap {
  margin-top: 60px;
}
@media only screen and (min-width: 768px) {
  .m-time_item_wrap {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0 40px;
  }
}
.m-time_item:nth-child(even) {
  margin-top: 40px;
}
@media only screen and (max-width: 767.98px) {
  .m-time_item:nth-child(3) {
    margin-top: 40px;
  }
}
.m-time_item::before {
  position: absolute;
  content: "";
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid #000;
}
.m-time_item::after {
  position: absolute;
  content: "";
  background-size: 100%;
  background-repeat: no-repeat;
  height: 561px;
  width: 23px;
  top: 15px;
  right: 5px;
}
.m-time_item:nth-child(1)::after {
  background-image: url(/pb-u29a-2407/img/timetext_01.png);
}
.m-time_item:nth-child(2)::after {
  background-image: url(/pb-u29a-2407/img/timetext_02.png);
}
.m-time_item:nth-child(3)::after {
  background-image: url(/pb-u29a-2407/img/timetext_03.png);
}
.m-time_item:nth-child(4)::after {
  background-image: url(/pb-u29a-2407/img/timetext_04.png);
}
.m-time_item h3 {
  color: var(--base-color);
  font-size: 18px;
  font-size: 1.125rem;
  padding-block: 20px 15px;
}
@media only screen and (min-width: 768px) {
  .m-time_item h3 {
    font-size: 24px;
    font-size: 1.5rem;
    padding-block: 30px 25px;
  }
}
.m-time_item p {
  color: #222222;
  line-height: 2;
  letter-spacing: 0.105em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .m-time_item p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.m-charm {
  padding-inline: 20px;
  margin-top: 40px;
  max-width: 1200px;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .m-charm {
    margin-top: 60px;
  }
}
.m-charm_inner {
  max-width: 1200px;
}
.m-charm_wrap {
  display: flex;
  justify-content: flex-end;
}
.m-charm_wrap:nth-child(2) {
  margin-top: 30px;
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) {
  .m-charm_wrap:nth-child(2) {
    margin-top: 70px;
  }
}
.m-charm_item {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .m-charm_item {
    width: 80%;
    flex-wrap: nowrap;
  }
}
.m-charm_item.-row-reverse {
  flex-direction: row-reverse !important;
}
.m-charm_item.-row-reverse::before {
  left: -15px;
}

.m-customize_item {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .m-customize_item {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .m-customize_item img {
    width: 90%;
  }
}
.m-customize_item:nth-child(odd) {
  text-align: right;
}
.m-customize_item:first-child {
  margin-top: 40px;
}

.m-recruit_img {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  border: 8px solid #e8ebec;
}
@media only screen and (min-width: 768px) {
  .m-recruit_img {
    width: 70%;
  }
}
.m-recruit_desc {
  margin-top: 30px;
  line-height: 2;
}
@media only screen and (min-width: 768px) {
  .m-recruit_desc {
    text-align: center;
    margin-top: 40px;
  }
}
.m-recruit_btn {
  display: block;
  position: relative;
  padding: 15px 25px;
  color: #fff;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  text-decoration: none;
  background-color: var(--base-color);
  box-shadow: #cccccc 5px 5px 0px 0px;
  transition: all 0.3s ease 0s;
}
@media only screen and (min-width: 768px) {
  .m-recruit_btn {
    display: inline-block;
    width: auto;
    padding: 20px 75px 20px 50px;
  }
}
.m-recruit_btn:hover {
  box-shadow: initial;
  transform: translate(5px, 5px);
}
.m-recruit_btn::after {
  position: absolute;
  content: "";
  top: calc(50% - 15px);
  right: 20px;
  background-image: url(/pb-u29a-2407/img/cv_arrow.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 32px;
  height: 30px;
}
@media only screen and (min-width: 768px) {
  .m-recruit_btn::after {
    right: 40px;
  }
}
.m-recruit_btn_wrap {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .m-recruit_btn_wrap {
    text-align: center;
  }
}

.-border-bottom {
  border-bottom: 5px solid #e60013;
  padding-bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .-border-bottom {
    border-bottom: 0;
  }
}
.-border-bottom.-small {
  border-bottom: 3px solid #e60013;
  padding-bottom: 3px;
}

.-txt-big {
  font-size: 32px;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .-txt-big {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.-itaric {
  font-style: italic;
}

@media only screen and (max-width: 767.98px) {
  .-d-contens {
    display: contents !important;
  }
}

@media only screen and (min-width: 768px) {
  .bl_floatBtn_inner {
    padding-inline: 60px 20px;
  }
}

.-d-inline-block {
  display: inline-block;
}

@media only screen and (max-width: 767.98px) {
  .bl_floatBtn_menu {
    padding-block: 15px;
  }
}

.bl_floatBtn_menu_btns {
  width: 100%;
}

.bl_floatBtn_menu_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #fff;
  background-color: #e60013;
  padding: 15px 10px;
  width: calc(50% - 5px);
}
@media only screen and (min-width: 768px) {
  .bl_floatBtn_menu_btn {
    padding: 10px 15px;
    width: auto;
  }
}
.bl_floatBtn_menu_btn span {
  font-weight: 600;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media only screen and (min-width: 768px) {
  .bl_floatBtn_menu_btn span {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.bl_floatBtn_menu_btn span:nth-child(1) {
  line-height: 1;
  border: 1px solid #fff;
  padding: 3px;
  font-size: 10px;
  font-size: 0.625rem;
}
@media only screen and (min-width: 768px) {
  .bl_floatBtn_menu_btn span:nth-child(1) {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.bl_floatBtn_menu_btn img {
  width: 8px;
}

.o-hero img {
  width: 100%;
}