@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;
}

/* Base Use Scss */
/**
 * Swiper 11.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 19, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/* Pass */
/*　 root */
:root {
  --base-font-family: var(--goshic);
  --base-color: #1883e3;
  --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;
    --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;
  }
}
.l-wrapper {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .l-wrapper {
    width: 100%;
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px), print {
  .l-wrapper {
    min-width: 1030px;
    max-width: 1920px;
    margin-inline: auto;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1280px), print {
  .l-unit__box {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 1279px), print {
  .l-unit__box {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 767px) {
  .l-unit__box.has-padding-sp {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.l-footer__main {
  position: relative;
  background-color: #e2e5e7;
}

@media only screen and (max-width: 767px) {
  .l-footer__main:before {
    height: 5px;
    background-size: 30px 5px;
  }
}
.l-footer__content {
  padding: 40px 0 60px;
}

.l-footer__content img {
  vertical-align: sub;
}

.l-footer__text {
  line-height: 2em;
}

.l-footer__text + .l-footer__text {
  margin-top: 20px;
}

.l-footer__logo {
  padding: 50px 0 60px;
  text-align: center;
}

.l-footer__copy {
  padding: 20px;
  background-color: #032449;
  color: #fff;
  text-align: center;
}

.o-hero__main {
  position: relative;
}

.o-hero__performance {
  position: absolute;
  bottom: 0;
  left: 0;
}

.o-hero__logo {
  position: absolute;
  top: 6.6%;
  left: 0;
  right: 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .o-hero__logo {
    top: 11%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
  }
}

.o-hero__logo img {
  display: block;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .o-hero__logo img {
    width: 84%;
  }
}

.o-hero__title {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .o-hero__title {
    top: 17%;
  }
}

.o-hero__title img {
  display: block;
  width: 66%;
  height: auto;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .o-hero__title img {
    width: 67%;
  }
}

.o-hero__title__sub {
  position: absolute;
  bottom: -8%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}

.o-hero__title__sub02 {
  position: absolute;
  bottom: 11%;
  left: 0;
  right: 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .o-hero__title__sub02 {
    position: absolute;
    bottom: 36%;
    left: 0;
    right: 0;
    text-align: center;
  }
}

.o-hero__title__sub02 img {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .o-hero__title__sub02 img {
    width: 70%;
  }
}

.o-hero__title__sub img {
  display: block;
  width: 40%;
  height: auto;
  margin: auto;
}

.bigcv_btnarea a:hover {
  filter: brightness(120%);
  transition: all 0.5s ease 0s;
}

.o-hero__cvbg {
  position: absolute;
  bottom: 0;
  background-color: #1e8abc;
  mix-blend-mode: multiply;
  width: 100%;
  height: 200px;
}

.o-hero__cv {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
}

.o-hero__cv .o-hero__cv_btnbox {
  display: flex;
  width: 920px;
  height: 200px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.o-hero__cv .o-hero__cv_btnbox a {
  width: 410px;
  box-shadow: 10px 10px 0px 0px rgba(3, 36, 73, 0.7);
  transition: all 0.3s ease;
}

.o-hero__cv .o-hero__cv_btnbox a:nth-child(2) {
  margin-right: 10px;
}

.o-hero__cv .o-hero__cv_btnbox a:hover {
  margin: 10px 0 0 0;
  box-shadow: none;
}

@media only screen and (max-width: 767px) {
  .o-hero__cvbg {
    position: absolute;
    bottom: 0;
    background-color: #1e8abc;
    mix-blend-mode: multiply;
    width: 100%;
    height: 58vw;
  }
  .o-hero__cv {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 58vw;
  }
  .o-hero__cv .o-hero__cv_btnbox {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 5vw 0;
    align-items: center;
    justify-content: space-between;
  }
  .o-hero__cv .o-hero__cv_btnbox a {
    display: block;
    width: 90%;
    margin: 0 auto 10px;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  .o-hero__cv .o-hero__cv_btnbox a:nth-child(2) {
    margin-right: auto;
  }
  .o-hero__cv .o-hero__cv_btnbox a:hover {
    margin: 0 auto 10px;
    box-shadow: none;
  }
}
.cont_encount {
  width: 100%;
  padding: 140px 0 90px;
}

.cont_encount .encount_message {
  width: 1100px;
  display: flex;
  align-items: center;
  margin: 0 auto 80px;
}

.cont_encount .encount_message h2 {
  width: 550px;
  position: relative;
  padding-right: 40px;
}

.cont_encount .encount_message p {
  width: 550px;
  font-size: 16px;
  line-height: 2.4em;
  letter-spacing: 0.1em;
}

.cont_encount .encount_box {
  width: 100%;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .cont_encount {
    width: 100%;
    padding: 80px 0 90px;
  }
  .cont_encount .encount_message {
    width: 100%;
    display: block;
    align-items: center;
    margin: 0 auto 40px;
  }
  .cont_encount .encount_message h2 {
    width: 80%;
    position: relative;
    padding-right: 0;
    margin: 0 auto 40px;
  }
  .cont_encount .encount_message p {
    width: 90%;
    font-size: 14px;
    line-height: 2.4em;
    letter-spacing: 0.1em;
    margin: 0 auto;
  }
  .cont_encount .encount_box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cont_newconv {
  width: 100%;
  max-width: 1920px;
  padding: 20px 0;
  background: rgb(0, 178, 226);
  background: linear-gradient(70deg, rgba(0, 178, 226, 0.9) 0%, rgba(25, 55, 240, 0.9) 100%);
}

.cont_newconv__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1150px;
  margin-inline: auto;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .cont_newconv__inner {
    gap: 15px;
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .cont_newconv__left {
    padding: 0 15px;
  }
}

.cont_newconv__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.cont_newconv__a__title {
  width: 85%;
}
@media only screen and (max-width: 767px) {
  .cont_newconv__a__title {
    width: 86%;
  }
}

.cont_newconv a {
  display: block;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  max-width: 330px;
}
.cont_newconv a:hover {
  filter: brightness(120%);
}
@media only screen and (max-width: 767px) {
  .cont_newconv a {
    width: 100%;
    width: 82vw;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.5s ease 0s;
  }
}

@media only screen and (max-width: 767px) {
  .cont_newconv {
    width: 100%;
    padding: 5vw 0;
    display: block;
  }
  .cont_newconv a:hover {
    filter: brightness(120%);
  }
}
.bigcv {
  width: 100%;
  background-image: url("/pw2207-w-02/img/bigcv/img_bigcv_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.bigcv .bigcv_box {
  width: 920px;
  margin: 0 auto;
}

.bigcv .bigcv_box .bigcv_btnarea {
  width: 500px;
  height: 100px;
  margin: 80px auto;
  align-items: center;
  justify-content: space-between;
}

.bigcv .bigcv_box .bigcv_btnarea img {
  width: 500px;
}

/* .bigcv .bigcv_box .bigcv_btnarea a {
	width: 410px;
	box-shadow: 10px 10px 0px 0px rgba(3, 36, 73, .7);
	transition: all .3s ease;
} */
.bigcv .bigcv_box .bigcv_btnarea a:nth-child(2) {
  margin-right: 10px;
}

.bigcv .bigcv_box .bigcv_btnarea a:hover {
  margin: 10px 0 0 0;
  box-shadow: none;
}

.bigcv .bigcv_box a.bigcv_tel {
  display: flex;
  width: 660px;
  height: 60px;
  background-color: rgba(3, 36, 73, 0.8);
  border-radius: 30px;
  margin: 0 auto;
  pointer-events: none;
}

.bigcv .bigcv_box .bigcv_tel {
  display: flex;
  width: 660px;
  height: 60px;
  background-color: rgba(3, 36, 73, 0.8);
  border-radius: 30px;
  margin: 0 auto;
}

.bigcv .bigcv_box .bigcv_tel .bigcv_teltext {
  display: flex;
  color: #ffffff;
  margin: 0 auto;
  font-size: 16px;
  align-items: center;
}

.bigcv .bigcv_box .bigcv_tel .bigcv_teltext .bigcv_number {
  font-size: 28px;
  margin: 0 10px;
}

.bigcv .bigcv_box .bigcv_tel .bigcv_teltext .bigcv_time {
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .bigcv {
    width: 100%;
    background-image: url("/pw2207-w-02/img/bigcv/img_bigcv_bg_sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
  }
  .bigcv .bigcv_box {
    width: 100%;
    margin: 0 auto;
  }
  .bigcv .bigcv_box h2 {
    width: 90%;
    margin: 0 auto;
  }
  .bigcv .bigcv_box .bigcv_btnarea {
    display: block;
    width: 90%;
    height: auto;
    margin: 40px auto;
    align-items: center;
    justify-content: space-between;
  }
  .bigcv .bigcv_box .bigcv_btnarea a {
    width: 100%;
    box-shadow: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    display: block;
  }
  .bigcv .bigcv_box .bigcv_btnarea a:nth-child(2) {
    margin-right: 0;
  }
  .bigcv .bigcv_box .bigcv_btnarea a:hover {
    margin-bottom: 10px;
    box-shadow: none;
  }
  .bigcv .bigcv_box a.bigcv_tel {
    display: flex;
    width: 90%;
    height: auto;
    background-color: rgba(3, 36, 73, 0.8);
    border-radius: 30px;
    padding: 2% 3% 3%;
    margin: 0 auto;
    pointer-events: inherit;
  }
  .bigcv .bigcv_box .bigcv_tel {
    display: flex;
    width: 90%;
    height: auto;
    background-color: rgba(3, 36, 73, 0.8);
    border-radius: 30px;
    margin: 0 auto;
  }
  .bigcv .bigcv_box .bigcv_tel .bigcv_teltext {
    display: block;
    color: #ffffff;
    margin: 0 auto;
    font-size: 10px;
    align-items: center;
  }
  .bigcv .bigcv_box .bigcv_tel .bigcv_teltext .bigcv_number {
    font-size: 16px;
    margin: 0 10px;
  }
  .bigcv .bigcv_box .bigcv_tel .bigcv_teltext .bigcv_time {
    font-size: 10px;
  }
}
.bigcv_teltext-img {
  height: 30px;
}

.cont_charm {
  width: 100%;
  margin: 120px auto 0;
}

.cont_charm h2 {
  width: 600px;
  margin: 0 auto 40px;
}

.cont_charm .charm_box {
  width: 100%;
  margin: 0 auto 40px;
}

@media only screen and (max-width: 767px) {
  .cont_charm {
    width: 100%;
    margin: 80px auto 0;
  }
  .cont_charm h2 {
    width: 90%;
    margin: 0 auto 40px;
  }
  .cont_charm .charm_box {
    width: 100%;
    margin: 0 auto 40px;
  }
  .cont_charm .charm_box h3 {
    width: 100%;
    margin: 0 auto;
  }
  .cont_charm .charm_box .charm_line {
    width: 100%;
    display: flex;
  }
  .cont_charm .charm_box .acd-check {
    display: none;
  }
  .cont_charm .charm_box .acd-label {
    background: #f9efe0;
    color: #fff;
    display: block;
    margin-bottom: 0;
    padding: 20px;
    height: 10%;
    position: relative;
  }
  .cont_charm .charm_box .acd-label .charm_acd_01a {
    width: 80%;
    vertical-align: middle;
  }
  .cont_charm .charm_box .acd-label .charm_acd_01b {
    width: 75%;
    vertical-align: middle;
  }
  .cont_charm .charm_box .acd-label .charm_acd_02a {
    width: 60%;
    vertical-align: middle;
  }
  .cont_charm .charm_box .acd-label .charm_acd_02b {
    width: 80%;
    vertical-align: middle;
  }
  .cont_charm .charm_box .acd-label .charm_acd_03a {
    width: 60%;
    vertical-align: middle;
  }
  .cont_charm .charm_box .acd-label .charm_acd_03b {
    width: 80%;
    vertical-align: middle;
  }
  .cont_charm .charm_box .acd-label .selectback {
    position: absolute;
    right: 8px;
    top: 13px;
    width: 36px;
  }
  .cont_charm .charm_box .acd-label.label03 .selectback {
    position: absolute;
    right: 8px;
    top: 25px;
    width: 36px;
  }
  .cont_charm .charm_box .acd-label:after {
    box-sizing: border-box;
    content: "\f067";
    display: block;
    font-family: "Font Awesome 5 Free";
    height: 10%;
    padding: 20px 20px;
    position: absolute;
    right: 0;
    top: 0;
    color: #032449;
  }
  .cont_charm .charm_box .acd-label.label03:after {
    box-sizing: border-box;
    content: "\f067";
    display: block;
    font-family: "Font Awesome 5 Free";
    height: 10%;
    padding: 32px 20px;
    position: absolute;
    right: 0;
    top: 0;
    color: #032449;
  }
  .cont_charm .charm_box .acd-content {
    display: block;
    height: 0;
    opacity: 0;
    padding: 0;
    transition: 0.5s;
    visibility: hidden;
  }
  .cont_charm .charm_box .acd-check:checked + .acd-label:after {
    content: "\f068";
  }
  .cont_charm .charm_box .acd-check:checked + .acd-label + .acd-content {
    height: auto;
    opacity: 1;
    padding: 0;
    visibility: visible;
  }
}
.cont_value {
  width: 100%;
  margin: 0 auto 150px;
  position: relative;
}

.cont_value .value_bg {
  position: absolute;
  width: 95%;
  height: 82%;
  z-index: -1;
  right: 0;
  top: 5%;
  background-color: #f2f8fb;
}

.cont_value .value_box {
  display: flex;
  align-items: center;
}

.cont_value .value_box > img {
  width: 45%;
}

.cont_value .value_box .value_text {
  width: 55%;
  padding: 5%;
}

.cont_value .value_box .value_text img {
  width: 470px;
  margin: 80px 0 40px;
}

.cont_value .value_box .value_text p {
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.1em;
}

.cont_value .value_price {
  width: 70%;
  margin: 60px auto;
}

.cont_value .value_bnr {
  width: 90%;
  margin: 0 auto;
}

.cont_value .value_info {
  width: 90%;
  font-size: 14px;
  margin: 40px auto;
}

@media only screen and (max-width: 767px) {
  .cont_value {
    width: 100%;
    margin: 0 auto 80px;
    position: relative;
  }
  .cont_value .value_bg {
    position: absolute;
    width: 95%;
    height: 82%;
    z-index: -1;
    right: 0;
    top: 3%;
    background-color: #f2f8fb;
  }
  .cont_value .value_box {
    display: block;
    align-items: center;
    position: relative;
  }
  .cont_value .value_box > img {
    width: 45%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .cont_value .value_box .value_text {
    width: 100%;
    padding: 50% 5% 0 10%;
  }
  .cont_value .value_box .value_text img {
    width: 40%;
    margin: 60px 0 40px 53%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .cont_value .value_box .value_text p {
    font-size: 14px;
    line-height: 2em;
    letter-spacing: 0.1em;
    text-align: justify;
  }
  .cont_value .value_price {
    width: 80%;
    margin: 40px auto;
  }
  .cont_value .value_bnr {
    width: 90%;
    margin: 0 auto;
  }
  .cont_value .value_info {
    width: 90%;
    font-size: 12px;
    margin: 40px auto;
    text-align: justify;
  }
}
.cont_performance {
  width: 100%;
  margin: 0 auto;
}

.cont_experience {
  width: 100%;
  margin: 120px auto;
  position: relative;
}

.cont_experience .experience_bg {
  position: absolute;
  width: 60%;
  height: 84%;
  z-index: -1;
  left: 0;
  top: 20%;
  background-color: #f2f8fb;
}

.cont_experience .experience_title {
  width: 100%;
}

.cont_experience .experience_title .experience_title_en {
  width: 800px;
  position: absolute;
  right: 0;
}

.cont_experience .experience_title .experience_title_ja {
  width: 400px;
  position: relative;
  left: 5%;
  padding: 6% 0;
}

.cont_experience .experience_box01 {
  width: 75%;
  margin: 0 8% 40px 17%;
}

.cont_experience .experience_box02 {
  width: 75%;
  margin: 0 17% 40px 8%;
}

.cont_experience .experience_box03 {
  width: 75%;
  margin: 0 8% 40px 17%;
}

@media only screen and (max-width: 767px) {
  .cont_experience {
    width: 100%;
    margin: 80px auto;
    position: relative;
  }
  .cont_experience .experience_bg {
    position: absolute;
    width: 60%;
    height: 93%;
    z-index: -1;
    left: 0;
    top: 10%;
    background-color: #f2f8fb;
  }
  .cont_experience .experience_title {
    width: 100%;
  }
  .cont_experience .experience_title .experience_title_en {
    width: 90%;
    position: absolute;
    right: 0;
  }
  .cont_experience .experience_title .experience_title_ja {
    width: 66%;
    position: relative;
    left: 5%;
    padding: 12% 0;
  }
  .cont_experience .experience_box01 {
    width: 90%;
    margin: 0 auto 40px;
  }
  .cont_experience .experience_box02 {
    width: 90%;
    margin: 0 auto 40px;
  }
  .cont_experience .experience_box03 {
    width: 90%;
    margin: 0 auto 40px;
  }
}
.cont_flow {
  width: 100%;
  margin: 120px auto 0;
  position: relative;
}

.cont_flow .flow_title {
  width: 100%;
}

.cont_flow .flow_title .flow_title_en {
  width: 900px;
  position: absolute;
  right: 0;
}

.cont_flow .flow_title .flow_title_ja {
  width: 540px;
  position: relative;
  left: 5%;
  padding: 6% 0 0;
}

.cont_flow .flow_text {
  text-align: right;
  padding: 1% 5% 3% 0;
  font-size: 16px;
  line-height: 2em;
}

.cont_flow .flow_box {
  width: 100%;
  position: relative;
}

.cont_flow .flow_box img {
  width: 100%;
}

.cont_flow .flow_box:after {
  position: absolute;
  content: "";
  bottom: -25px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 40px;
  height: 22px;
  z-index: 1;
  background-image: url("/pw2207-w-02/img/flow/img_flow_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.cont_flow .flow_boxlast {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .cont_flow {
    width: 100%;
    margin: 120px auto 0;
    position: relative;
  }
  .cont_flow .flow_title {
    width: 100%;
  }
  .cont_flow .flow_title .flow_title_en {
    width: 95%;
    position: absolute;
    right: 0;
  }
  .cont_flow .flow_title .flow_title_ja {
    width: 80%;
    position: relative;
    left: 5%;
    padding: 12% 0 6%;
  }
  .cont_flow .flow_text {
    text-align: left;
    padding: 1% 2.5% 5%;
    font-size: 14px;
    line-height: 2em;
  }
  .cont_flow .flow_box {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .cont_flow .flow_box .flow_step {
    width: 10%;
    top: 10px;
    left: 10px;
    z-index: 1;
    position: absolute;
  }
  .cont_flow .flow_box:after {
    position: absolute;
    content: "";
    bottom: -18px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 30px;
    height: 17px;
    z-index: 1;
    background-image: url("/pw2207-w-02/img/flow/img_flow_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .cont_flow .flow_boxlast {
    width: 100%;
  }
  .cont_flow .flow_box h3 {
    width: 100%;
    margin: 0 auto;
  }
  .cont_flow .flow_box .flow_line {
    width: 100%;
    display: flex;
  }
  .cont_flow .flow_box .acd-check {
    display: none;
  }
  .cont_flow .flow_box .acd-label {
    background: #edf0f2;
    color: #fff;
    display: block;
    margin-bottom: 0;
    padding: 40px 0;
    height: 10%;
    position: relative;
  }
  .cont_flow .flow_box .acd-label.labelwhite {
    background: #ffffff;
  }
  .cont_flow .flow_box .acd-label .flow_acd_01 {
    width: 60%;
    vertical-align: middle;
    display: block;
    margin: 0 auto;
  }
  .cont_flow .flow_box .acd-label .flow_acd_02 {
    width: 60%;
    vertical-align: middle;
    display: block;
    margin: 0 auto;
  }
  .cont_flow .flow_box .acd-label .flow_acd_03 {
    width: 40%;
    vertical-align: middle;
    display: block;
    margin: 0 auto;
  }
  .cont_flow .flow_box .acd-label .flow_acd_04 {
    width: 40%;
    vertical-align: middle;
    display: block;
    margin: 0 auto;
  }
  .cont_flow .flow_box .acd-label .selectback {
    position: absolute;
    right: 8px;
    top: 14.2vw;
    width: 36px;
  }
  .cont_flow .flow_box .acd-label:after {
    box-sizing: border-box;
    content: "\f067";
    display: block;
    font-family: "Font Awesome 5 Free";
    height: 10%;
    padding: 16vw 20px;
    position: absolute;
    right: 0;
    top: 0;
    color: #032449;
  }
  .cont_flow .flow_box .acd-label.label03:after {
    box-sizing: border-box;
    content: "\f067";
    display: block;
    font-family: "Font Awesome 5 Free";
    height: 10%;
    padding: 32px 20px;
    position: absolute;
    right: 0;
    top: 0;
    color: #032449;
  }
  .cont_flow .flow_box .acd-content {
    display: block;
    height: 0;
    opacity: 0;
    padding: 0;
    transition: 0.5s;
    visibility: hidden;
  }
  .cont_flow .flow_box .acd-check:checked + .acd-label:after {
    content: "\f068";
  }
  .cont_flow .flow_box .acd-check:checked + .acd-label + .acd-content {
    height: auto;
    opacity: 1;
    padding: 0;
    visibility: visible;
  }
}
.cont_tab {
  width: 100%;
}

.cont_tab .tab_box {
  background-image: url("/pw2207-w-02/img/tab/img_tab_kv.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 160px;
}

.cont_tab .tab_infobox {
  background-color: #edf0f2;
  width: 100%;
  padding: 60px 5% 120px;
}

.cont_tab .tab_infobox .tab_info_text {
  font-size: 14px;
  border-bottom: solid 1px #000000;
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: 2em;
}

.cont_tab .tab_infobox .tab_info_text02 {
  font-size: 14px;
  line-height: 2em;
}

.cont_tab .tab_infobox .tab_info_text02 img {
  vertical-align: sub;
}

.cont_tab .tab_box h2 {
  width: 780px;
  margin: 0 auto 140px;
}

.cont_tab .tabcont-text {
  font-size: 16px;
}

.cont_tab .tab {
  list-style: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto;
}

.cont_tab .tab__item {
  text-decoration: none;
  padding: 10px 0 0px;
  margin-right: 4px;
  flex: 1;
  flex-basis: 120px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.cont_tab .tab__item:last-child {
  margin-right: 0px;
}
@media only screen and (min-width: 768px) {
  .cont_tab .tab__item {
    transition: all 0.3s ease-in-out;
  }
  .cont_tab .tab__item:hover {
    transform: translateY(10px);
  }
}

.tab__item__arrow {
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .tab__item__arrow {
    height: 30px;
  }
}
.tab__item__arrow img {
  width: 21px;
  height: 10px;
}
.tab01 .tab__item__arrow {
  background-color: #88a73a;
}
.tab02 .tab__item__arrow {
  background-color: #289579;
}
.tab03 .tab__item__arrow {
  background-color: #af2b3e;
}

.cont_tab .tab01 {
  flex: 1;
  flex-basis: 120px;
  background-color: #7a992d;
  background-size: 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  color: #fff;
  position: relative;
}

.cont_tab .tab02 {
  flex: 1;
  flex-basis: 120px;
  background-color: #1a886c;
  background-size: 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  color: #fff;
  position: relative;
}

.cont_tab .tab03 {
  flex: 1;
  flex-basis: 120px;
  background-color: #9f1e30;
  background-size: 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  color: #fff;
  position: relative;
}

.cont_tab .tab-body__item {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.cont_tab .tab-body__item .tabcont01_look {
  width: 95%;
  margin-left: 5%;
  padding-top: 100px;
  position: relative;
}

.cont_tab .tab-body__item .tabcont01_look .look_box {
  width: 100%;
  display: flex;
}

.cont_tab .tab-body__item .tabcont01_look .look_box .look_text {
  width: 48%;
  margin-right: 60px;
}

@media only screen and (min-width: 768px) {
  .cont_tab .tab-body__item .tabcont01_look .look_box .look_text h2 {
    width: 440px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1100px) {
  .cont_tab .tab-body__item .tabcont01_look .look_box .look_text h2 {
    width: 440px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1280px) {
  .cont_tab .tab-body__item .tabcont01_look .look_box .look_text h2 {
    width: 440px;
    margin-bottom: 40px;
  }
}
.cont_tab .tab-body__item .tabcont01_look .look_box .look_text p {
  font-size: 1.3vw;
  line-height: 2em;
}

@media only screen and (min-width: 768px) {
  .cont_tab .tab-body__item .tabcont01_look .look_box .look_text p {
    font-size: min(1.3vw, 1.6rem);
    line-height: 2em;
  }
}
.cont_tab .tab-body__item .tabcont01_look .look_box .look_photo {
  width: 52%;
}

.cont_tab .tab-body__item .tabcont01_look .look_photobox {
  width: 95%;
  margin: 115px 0 0 0;
  display: flex;
  justify-content: space-between;
}

.cont_tab .tab-body__item .tabcont01_look .look_photobox img {
  width: 30%;
  margin-top: 60px;
  margin-bottom: 60px;
}

.cont_tab .tab-body__item .tabcont01_look .look_photobox img.firstph {
  margin-top: 60px;
  margin-bottom: 0;
  padding-top: 60px;
}

.cont_tab .tab-body__item .tabcont01_look .look_photobox img.lastph {
  margin-top: 0;
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.cont_tab .tab-body__item .tabcont01_look .look_map {
  position: absolute;
  width: 67%;
  z-index: -1;
  top: 36%;
  left: -8%;
}

.cont_tab .tab-body__item .tabcont01_subtext {
  width: 95%;
  text-align: right;
  color: #7a992d;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 20px;
  margin: 20px 0;
  letter-spacing: 0.1em;
}

.cont_tab .tab-body__item .tabcont01_photobox {
  width: 90%;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cont_tab .tab-body__item .tabcont01_photobox img {
  width: 100%;
}

.cont_tab .tab-body__item .tabcont01_box {
  width: 95%;
  background-image: url("/pw2207-w-02/img/tab/img_tab01_bg.png");
}

.cont_tab .tab-body__item .tabcont01_box h3 {
  width: 550px;
  margin: 0 auto;
  padding: 40px 0;
}

.cont_tab .tab-body__item .tabcont01 {
  width: 90%;
  margin: 0 0 0 10%;
  background-color: #ffffff;
  padding: 60px 60px 0;
}

.cont_tab .tab-body__item .tabcont01 .tabcont-title {
  text-align: center;
  font-size: 28px;
  color: #7a992d;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.1em;
}

.cont_tab .tab-body__item .tabcont01 .tabcont-img {
  width: 100%;
  text-align: center;
  display: block;
  margin: 10px 0 40px;
}

.cont_tab .tab-body__item .tabcont01 .tabcont-img img {
  width: 160px;
}

.cont_tab .tab-body__item .tabcont02_look {
  width: 95%;
  margin-left: 5%;
  padding-top: 100px;
  position: relative;
}

.cont_tab .tab-body__item .tabcont02_look .look_box {
  width: 100%;
  display: flex;
}

.cont_tab .tab-body__item .tabcont02_look .look_box .look_text {
  width: 48%;
  margin-right: 60px;
}

@media only screen and (min-width: 768px) {
  .cont_tab .tab-body__item .tabcont02_look .look_box .look_text h2 {
    width: 440px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1100px) {
  .cont_tab .tab-body__item .tabcont02_look .look_box .look_text h2 {
    width: 440px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1280px) {
  .cont_tab .tab-body__item .tabcont02_look .look_box .look_text h2 {
    width: 440px;
    margin-bottom: 40px;
  }
}
.cont_tab .tab-body__item .tabcont02_look .look_box .look_text p {
  font-size: 16px;
  line-height: 2em;
}

@media only screen and (min-width: 768px) {
  .cont_tab .tab-body__item .tabcont02_look .look_box .look_text p {
    font-size: 1.5vw;
    line-height: 2em;
  }
}
@media only screen and (min-width: 900px) {
  .cont_tab .tab-body__item .tabcont02_look .look_box .look_text p {
    font-size: 1.3vw;
    line-height: 2em;
  }
}
.cont_tab .tab-body__item .tabcont02_look .look_box .look_photo {
  width: 52%;
}

.cont_tab .tab-body__item .tabcont02_look .look_photobox {
  width: 95%;
  margin: 115px 0 0 0;
  display: flex;
  justify-content: space-between;
}

.cont_tab .tab-body__item .tabcont02_look .look_photobox img {
  width: 30%;
  margin-top: 60px;
  margin-bottom: 60px;
}

.cont_tab .tab-body__item .tabcont02_look .look_photobox img.firstph {
  margin-top: 60px;
  margin-bottom: 0;
  padding-top: 60px;
}

.cont_tab .tab-body__item .tabcont02_look .look_photobox img.lastph {
  margin-top: 0;
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.cont_tab .tab-body__item .tabcont02_look .look_map {
  position: absolute;
  width: 67%;
  z-index: -1;
  top: 38%;
  left: -5%;
}

.cont_tab .tab-body__item .tabcont02_subtext {
  width: 95%;
  text-align: right;
  color: #1a886c;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 20px;
  margin: 20px 0;
  letter-spacing: 0.1em;
}

.cont_tab .tab-body__item .tabcont02_photobox {
  width: 90%;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cont_tab .tab-body__item .tabcont02_photobox img {
  width: 100%;
}

.cont_tab .tab-body__item .tabcont02_box {
  width: 95%;
  background-image: url("/pw2207-w-02/img/tab/img_tab02_bg.png");
}

.cont_tab .tab-body__item .tabcont02_box h3 {
  width: 580px;
  margin: 0 auto;
  padding: 40px 0;
}

.cont_tab .tab-body__item .tabcont02 {
  width: 90%;
  margin: 0 0 0 10%;
  background-color: #ffffff;
  padding: 60px 60px 0;
}

.cont_tab .tab-body__item .tabcont02 .tabcont-title {
  text-align: center;
  font-size: 28px;
  color: #1a886c;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.1em;
}

.cont_tab .tab-body__item .tabcont02 .tabcont-img {
  width: 100%;
  text-align: center;
  display: block;
  margin: 10px 0 40px;
}

.cont_tab .tab-body__item .tabcont02 .tabcont-img img {
  width: 160px;
}

.cont_tab .tab-body__item .tabcont03_look {
  width: 95%;
  margin-left: 5%;
  padding-top: 100px;
  position: relative;
}

.cont_tab .tab-body__item .tabcont03_look .look_box {
  width: 100%;
  display: flex;
}

.cont_tab .tab-body__item .tabcont03_look .look_box .look_text {
  width: 48%;
  margin-right: 60px;
}

.cont_tab .tab-body__item .tabcont03_look .look_box .look_text h2 {
  width: 80%;
  margin-bottom: 20px;
}

.cont_tab .tab-body__item .tabcont03_look .look_box .look_text p {
  font-size: 16px;
  line-height: 2em;
}

@media only screen and (min-width: 768px) {
  .cont_tab .tab-body__item .tabcont03_look .look_box .look_text p {
    font-size: 1.3vw;
    line-height: 2em;
  }
}
.cont_tab .tab-body__item .tabcont03_look .look_box .look_photo {
  width: 52%;
}

.cont_tab .tab-body__item .tabcont03_look .look_photobox {
  width: 95%;
  margin: 115px 0 0 0;
  display: flex;
  justify-content: space-between;
}

.cont_tab .tab-body__item .tabcont03_look .look_photobox img {
  width: 30%;
  margin-top: 60px;
  margin-bottom: 60px;
}

.cont_tab .tab-body__item .tabcont03_look .look_photobox img.firstph {
  margin-top: 60px;
  margin-bottom: 0;
  padding-top: 60px;
}

.cont_tab .tab-body__item .tabcont03_look .look_photobox img.lastph {
  margin-top: 0;
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.cont_tab .tab-body__item .tabcont03_look .look_map {
  position: absolute;
  width: 67%;
  z-index: -1;
  top: 42%;
  left: -5%;
}

.cont_tab .tab-body__item .tabcont03_subtext {
  width: 95%;
  text-align: right;
  color: #9f1e30;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 20px;
  margin: 20px 0;
  letter-spacing: 0.1em;
}

.cont_tab .tab-body__item .tabcont03_photobox {
  width: 90%;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cont_tab .tab-body__item .tabcont03_photobox img {
  width: 100%;
}

.cont_tab .tab-body__item .tabcont03_box {
  width: 95%;
  background-image: url("/pw2207-w-02/img/tab/img_tab03_bg.png");
}

.tabcont03_box_text {
  padding: 40px 0;
  color: #9f1e30;
  font-family: var(--mincho);
  font-style: italic;
  font-size: 38px;
  letter-spacing: 2px;
  font-weight: 500;
  text-align: center;
}

.cont_tab .tab-body__item .tabcont03 {
  width: 90%;
  margin: 0 0 0 10%;
  background-color: #ffffff;
  padding: 60px 60px 0;
}

.cont_tab .tab-body__item .tabcont03 .tabcont-title {
  text-align: center;
  font-size: 28px;
  color: #9f1e30;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.1em;
}

.cont_tab .tab-body__item .tabcont03 .tabcont-img {
  width: 100%;
  text-align: center;
  display: block;
  margin: 10px 0 40px;
}

.cont_tab .tab-body__item .tabcont03 .tabcont-img img {
  width: 160px;
}

.cont_tab .tab-text {
  padding: 40px 0 0;
  width: 1100px;
  margin: 0 auto;
  font-size: 14px;
}

.cont_tab .tab-text02 {
  padding: 20px 0 0;
  width: 1100px;
  margin: 20px auto 0;
  font-size: 14px;
  border-top: solid 1px;
}

.cont_tab .tab-text02 img {
  vertical-align: sub;
}

@media only screen and (max-width: 767px) {
  .cont_tab {
    width: 100%;
    padding: 0;
  }
  .cont_tab .tab_box {
    background-image: url("/pw2207-w-02/img/tab/img_tab_kv_sp.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 40px;
  }
  .cont_tab .tab_infobox {
    background-color: #edf0f2;
    width: 100%;
    padding: 40px 5% 60px;
  }
  .cont_tab .tab_infobox .tab_info_text {
    font-size: 12px;
    border-bottom: solid 1px #000000;
    padding-bottom: 10px;
    margin-bottom: 10px;
    line-height: 2em;
  }
  .cont_tab .tab_infobox .tab_info_text02 {
    font-size: 12px;
    line-height: 2em;
  }
  .cont_tab .tab_infobox .tab_info_text02 img {
    vertical-align: sub;
  }
  .cont_tab .tab_box h2 {
    width: 90%;
    margin: 0 auto 80px;
  }
  .cont_tab .tabcont-text {
    font-size: 12px;
    text-align: justify;
  }
  .cont_tab .tab {
    list-style: none;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
  }
  .cont_tab .tab__item {
    padding: 10px 0px 0px;
    margin-right: 4px;
    flex: 1;
    flex-basis: 31.6%;
    cursor: pointer;
    z-index: 1;
    font-size: min(3.6vw, 20px);
    font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  }
  .cont_tab .tab__item:last-child {
    margin-right: 0px;
  }
  .cont_tab .tab01 {
    flex: 1;
    flex-basis: 31.6%;
  }
  .cont_tab .tab02 {
    flex: 1;
    flex-basis: 31.6%;
  }
  .cont_tab .tab03 {
    flex: 1;
    flex-basis: 31.6%;
  }
  .cont_tab .tab-body__item {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .cont_tab .tab-body__item .tabcont01_look {
    width: 100%;
    margin-left: 0;
    padding-top: 30px;
    position: relative;
  }
  .cont_tab .tab-body__item .tabcont01_look .look_box {
    width: 100%;
    display: block;
    position: relative;
  }
  .cont_tab .tab-body__item .tabcont01_look .look_box .look_text {
    width: 100%;
    margin-right: 0;
    padding: 0 5%;
  }
  .cont_tab .tab-body__item .tabcont01_look .look_box .look_text h2 {
    width: 68%;
    margin-bottom: 30px;
  }
  .cont_tab .tab-body__item .tabcont01_look .look_box .look_text p {
    font-size: 14px;
    line-height: 2em;
    text-align: justify;
  }
  .cont_tab .tab-body__item .tabcont01_look .look_box .look_photo {
    width: 30%;
    position: absolute;
    top: 0;
    right: 0;
  }
  .cont_tab .tab-body__item .tabcont01_look .look_photobox {
    width: 95%;
    margin: 54% auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .cont_tab .tab-body__item .tabcont01_look .look_photobox img {
    width: 32%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    align-items: flex-start;
  }
  .cont_tab .tab-body__item .tabcont01_look .look_photobox img.firstph {
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 20px;
  }
  .cont_tab .tab-body__item .tabcont01_look .look_photobox img.lastph {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .cont_tab .tab-body__item .tabcont01_look .look_map {
    position: absolute;
    width: 100vw;
    z-index: -1;
    top: 48%;
    left: 0;
  }
  .cont_tab .tab-body__item .tabcont01_subtext {
    width: 95%;
    text-align: right;
    color: #7a992d;
    font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-size: 14px;
    margin: 20px 0 10px;
    letter-spacing: 0;
  }
  .cont_tab .tab-body__item .tabcont01_photobox {
    width: 90%;
    margin: 20px auto 40px;
    grid-template-columns: 1fr 1fr;
  }
  .cont_tab .tab-body__item .tabcont01_box {
    width: 95%;
    background-image: url("/pw2207-w-02/img/tab/img_tab01_bg_sp.png");
  }
  .cont_tab .tab-body__item .tabcont01_box h3 {
    width: 85%;
    margin: 0 auto;
    padding: 40px 0;
  }
  .cont_tab .tab-body__item .tabcont01 {
    width: 90%;
    margin: 0 0 0 10%;
    background-color: #ffffff;
    padding: 20px 20px 0;
  }
  .cont_tab .tab-body__item .tabcont01 .tabcont-title {
    text-align: center;
    font-size: 4vw;
    color: #7a992d;
    font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    letter-spacing: 0.1em;
  }
  .cont_tab .tab-body__item .tabcont01 .tabcont-img {
    width: 100%;
    text-align: center;
    display: block;
    margin: 0 0 20px;
  }
  .cont_tab .tab-body__item .tabcont01 .tabcont-img img {
    width: 160px;
  }
  .cont_tab .tab-body__item .tabcont02_look {
    width: 100%;
    margin-left: 0;
    padding-top: 30px;
    position: relative;
  }
  .cont_tab .tab-body__item .tabcont02_look .look_box {
    width: 100%;
    display: block;
    position: relative;
  }
  .cont_tab .tab-body__item .tabcont02_look .look_box .look_text {
    width: 100%;
    margin-right: 0;
    padding: 0 5%;
  }
  .cont_tab .tab-body__item .tabcont02_look .look_box .look_text h2 {
    width: 57%;
    margin-bottom: 20px;
  }
  .cont_tab .tab-body__item .tabcont02_look .look_box .look_text p {
    font-size: 14px;
    line-height: 2em;
    text-align: justify;
  }
  .cont_tab .tab-body__item .tabcont02_look .look_box .look_photo {
    width: 30%;
    position: absolute;
    top: 0;
    right: 0;
  }
  .cont_tab .tab-body__item .tabcont02_look .look_photobox {
    width: 95%;
    margin: 60% auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .cont_tab .tab-body__item .tabcont02_look .look_photobox img {
    width: 32%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    align-items: flex-start;
  }
  .cont_tab .tab-body__item .tabcont02_look .look_photobox img.firstph {
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 20px;
  }
  .cont_tab .tab-body__item .tabcont02_look .look_photobox img.lastph {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .cont_tab .tab-body__item .tabcont02_look .look_map {
    position: absolute;
    width: 100vw;
    z-index: -1;
    top: 48%;
    left: 0;
  }
  .cont_tab .tab-body__item .tabcont02_subtext {
    width: 95%;
    text-align: right;
    color: #1a886c;
    font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-size: 14px;
    margin: 20px 0 10px;
    letter-spacing: 0;
  }
  .cont_tab .tab-body__item .tabcont02_photobox {
    width: 90%;
    margin: 20px auto 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .cont_tab .tab-body__item .tabcont02_box {
    width: 95%;
    background-image: url("/pw2207-w-02/img/tab/img_tab02_bg_sp.png");
  }
  .cont_tab .tab-body__item .tabcont02_box h3 {
    width: 85%;
    margin: 0 auto;
    padding: 40px 0;
  }
  .cont_tab .tab-body__item .tabcont02 {
    width: 90%;
    margin: 0 0 0 10%;
    background-color: #ffffff;
    padding: 20px 20px 0;
  }
  .cont_tab .tab-body__item .tabcont02 .tabcont-title {
    text-align: center;
    font-size: 4vw;
    color: #1a886c;
    font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    letter-spacing: 0.1em;
  }
  .cont_tab .tab-body__item .tabcont02 .tabcont-img {
    width: 100%;
    text-align: center;
    display: block;
    margin: 0 0 20px;
  }
  .cont_tab .tab-body__item .tabcont02 .tabcont-img img {
    width: 160px;
  }
  .cont_tab .tab-body__item .tabcont03_look {
    width: 100%;
    margin-left: 0;
    padding-top: 30px;
    position: relative;
  }
  .cont_tab .tab-body__item .tabcont03_look .look_box {
    width: 100%;
    display: block;
    position: relative;
  }
  .cont_tab .tab-body__item .tabcont03_look .look_box .look_text {
    width: 100%;
    margin-right: 0;
    padding: 0 5%;
  }
  .cont_tab .tab-body__item .tabcont03_look .look_box .look_text h2 {
    width: 66%;
    margin-bottom: 40px;
  }
  .cont_tab .tab-body__item .tabcont03_look .look_box .look_text p {
    font-size: 14px;
    line-height: 2em;
    text-align: justify;
  }
  .cont_tab .tab-body__item .tabcont03_look .look_box .look_photo {
    width: 30%;
    position: absolute;
    top: 0;
    right: 0;
  }
  .cont_tab .tab-body__item .tabcont03_look .look_photobox {
    width: 95%;
    margin: 62% auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .cont_tab .tab-body__item .tabcont03_look .look_photobox img {
    width: 32%;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    height: auto;
    align-items: flex-start;
  }
  .cont_tab .tab-body__item .tabcont03_look .look_photobox img.firstph {
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 20px;
  }
  .cont_tab .tab-body__item .tabcont03_look .look_photobox img.lastph {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .cont_tab .tab-body__item .tabcont03_look .look_map {
    position: absolute;
    width: 100vw;
    z-index: -1;
    top: 48%;
    left: 0;
  }
  .cont_tab .tab-body__item .tabcont03_subtext {
    width: 95%;
    text-align: right;
    color: #9f1e30;
    font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-size: 14px;
    margin: 20px 0 10px;
    letter-spacing: 0;
  }
  .cont_tab .tab-body__item .tabcont03_photobox {
    width: 90%;
    margin: 20px auto 40px;
    grid-template-columns: 1fr 1fr;
  }
  .cont_tab .tab-body__item .tabcont03_box {
    width: 95%;
    background-image: url("/pw2207-w-02/img/tab/img_tab03_bg_sp.png");
  }
  .tabcont03_box_text {
    font-size: 5.3vw;
  }
  .cont_tab .tab-body__item .tabcont03 {
    width: 90%;
    margin: 0 0 0 10%;
    background-color: #ffffff;
    padding: 20px 20px 0;
  }
  .cont_tab .tab-body__item .tabcont03 .tabcont-title {
    text-align: center;
    font-size: 4vw;
    color: #9f1e30;
    font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    letter-spacing: 0.1em;
  }
  .cont_tab .tab-body__item .tabcont03 .tabcont-img {
    width: 100%;
    text-align: center;
    display: block;
    margin: 0 0 20px;
  }
  .cont_tab .tab-body__item .tabcont03 .tabcont-img img {
    width: 160px;
  }
  .cont_tab .tab-text {
    padding: 40px 0 0;
    width: 1100px;
    margin: 0 auto;
    font-size: 14px;
  }
  .cont_tab .tab-text02 {
    padding: 20px 0 0;
    width: 1100px;
    margin: 20px auto 0;
    font-size: 14px;
    border-top: solid 1px;
  }
  .cont_tab .tab-text02 img {
    vertical-align: sub;
  }
}
.menubox #ham-menu {
  box-sizing: border-box;
  height: 184px;
  padding: 2rem 2rem 2rem 4rem;
  position: fixed;
  right: 0;
  bottom: 10%;
  transition: transform 0.2s linear 0.1s;
  width: 290px;
  z-index: 999;
  background: linear-gradient(to top right, rgba(26, 148, 187, 0.9), rgba(41, 69, 196, 0.9));
  border-radius: 10px 0 0 10px;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .menubox #ham-menu {
    display: none;
  }
}
.menubox #ham-menu li a {
  font-size: 12px;
  display: block;
  width: 210px;
  line-height: 1.5em;
  color: #ffffff;
  text-align: center;
  margin: 0 auto 10px;
  border-radius: 5px;
  transition: 0.3s;
}

.menubox #ham-menu li a span {
  font-size: 16px;
  font-weight: bold;
}

.menubox #ham-menu li a:hover {
  text-decoration: none;
  opacity: 0.7;
  cursor: pointer;
}

.menubox #ham-menu li a:visited {
  text-decoration: none;
}

.menubox #ham-menu li a:focus {
  text-decoration: none;
}

.menubox #ham-menu .ham-menu-tel-box {
  text-align: center;
  line-height: 2em;
}

.menubox #ham-menu .ham-menu-tel-box .ham-menu-tel-text {
  font-size: 12px;
}

.menubox #ham-menu .ham-menu-tel-box .ham-menu-tel-number {
  font-size: 24px;
}

.menubox #ham-menu .ham-menu-tel-box .ham-menu-tel-time {
  font-size: 10px;
}

.menubox #menu {
  display: block;
  height: 100%;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.2s linear 0.1s;
  z-index: -1;
}

.menubox #hamuicon {
  border-radius: 1rem 0 0 1rem;
  cursor: pointer;
  display: block;
  line-height: 36px;
  position: fixed;
  right: 250px;
  text-align: center;
  bottom: 10%;
  width: 4rem;
  height: 184px;
  transition: all 0.2s linear 0.1s;
  z-index: 1000;
  margin-bottom: 0;
  color: #fff;
  padding: 20px 0;
  font-size: 12px;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 768px) {
  .menubox #hamuicon {
    display: none;
  }
}
.menubox #hamuicon i {
  font-size: 18px;
  margin-bottom: 10px;
  transform: rotate(0.13turn);
}

.menubox #tgl {
  display: none;
}

#tgl:checked ~ #ham-menu,
#tgl:checked ~ #hamuicon {
  transform: translate(250px);
}

#tgl:checked ~ #hamuicon i {
  transform: rotate(0turn);
}

#tgl:checked ~ #hamuicon {
  transform: translate(0);
  right: 0px;
}

#tgl:checked ~ #menu {
  opacity: 0.5;
  z-index: 999;
}

@media only screen and (max-width: 767px) {
  .menubox {
    display: none;
  }
}
.bottom-menubox #bottom-menu {
  display: none;
  position: absolute;
  right: -100vw;
}

@media only screen and (max-width: 767px) {
  .bottom-menubox #bottom-menu {
    box-sizing: border-box;
    height: auto;
    padding: 3% 0 2%;
    position: fixed;
    right: 0;
    bottom: 0;
    transition: transform 0.2s linear 0.1s;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to top right, rgba(26, 148, 187, 0.9), rgba(41, 69, 196, 0.9));
    color: #fff;
    display: none;
    margin-left: 0;
  }
  .bottom-menubox #bottom-menu ul {
    display: flex;
    justify-content: space-around;
  }
  .bottom-menubox #bottom-menu ul li {
    width: 80%;
    margin: 0 2%;
  }
  .bottom-menubox #bottom-menu li a {
    font-size: 12px;
    display: block;
    width: 100%;
    line-height: 1.3em;
    color: #ffffff;
    text-align: center;
    margin: 0 auto 5px;
    border-radius: 5px;
    transition: 0.3s;
  }
  .bottom-menubox #bottom-menu li a span {
    font-size: 14px;
    font-weight: bold;
  }
  .bottom-menubox #bottom-menu li a:hover {
    text-decoration: none;
    opacity: 0.7;
    cursor: pointer;
  }
  .bottom-menubox #bottom-menu li a:visited {
    text-decoration: none;
  }
  .bottom-menubox #bottom-menu li a:focus {
    text-decoration: none;
  }
  .bottom-menubox #bottom-menu .bottom-menu-tel-box {
    display: flex;
    text-align: center;
    line-height: 2em;
    justify-content: center;
  }
  .bottom-menubox #bottom-menu .bottom-menu-tel-box .bottom-menu-tel-text {
    font-size: 12px;
  }
  .bottom-menubox #bottom-menu .bottom-menu-tel-box .bottom-menu-tel-number {
    font-size: 18px;
    font-weight: bold;
    margin-right: 2%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .bottom-menubox #bottom-menu .bottom-menu-tel-box .bottom-menu-tel-number {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .bottom-menubox #bottom-menu .bottom-menu-tel-box .bottom-menu-tel-number a {
    color: #ffffff;
  }
  .bottom-menubox #bottom-menu .bottom-menu-tel-box .bottom-menu-tel-number a:active {
    text-decoration: none;
  }
  .bottom-menubox #bottom-menu .bottom-menu-tel-box .bottom-menu-tel-number a:focus {
    text-decoration: none;
  }
  .bottom-menubox #bottom-menu .bottom-menu-tel-box .bottom-menu-tel-time {
    font-size: 10px;
  }
  .l-footer__copy {
    margin-bottom: 22%;
  }
}
@media only screen and (max-width: 767px) {
  .bottom-menubox img {
    width: 80%;
  }
}
/*--- 追加CSS（20210818）---*/
/* 地図1（北極航路 ヨーロッパ＆中米コース)　*/
@media only screen and (min-width: 768px) {
  .cont_tab .tab-body__item .tabcont01_look .look_map {
    position: absolute;
    width: 55%;
    z-index: -1;
    top: 44%;
    left: -4%;
  }
}
@media only screen and (max-width: 767px) {
  .cont_tab .tab-body__item .tabcont01_look .look_map {
    position: absolute;
    width: 90vw;
    z-index: -1;
    top: 52%;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* 地図2（北中米＆ヨーロッパコース)　*/
@media only screen and (min-width: 768px) {
  .cont_tab .tab-body__item .tabcont02_look .look_map {
    position: absolute;
    width: 65%;
    z-index: -1;
    top: 43%;
    left: -8%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  .cont_tab .tab-body__item .tabcont02_box h3 {
    width: 550px;
    margin: 0 auto;
    padding: 40px 0;
  }
}
@media only screen and (min-width: 768px) {
  .cont_tab .tab-body__item .tabcont02_look .look_box .look_text h2 {
    width: 440px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .cont_tab .tab-body__item .tabcont02_look .look_map {
    position: absolute;
    z-index: -1;
    top: 400px;
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .cont_tab .tab-body__item .tabcont02_look .look_box .look_text h2 {
    width: 68%;
    margin-bottom: 10%;
  }
}
/* 地図3（南太平洋・南米・アフリカコース)　*/
@media only screen and (min-width: 768px) {
  .cont_tab .tab-body__item .tabcont03_look .look_map {
    position: absolute;
    width: 61%;
    z-index: -1;
    top: 32%;
    left: -8%;
  }
}
@media only screen and (max-width: 767px) {
  .cont_tab .tab-body__item .tabcont03_look .look_map {
    position: absolute;
    width: 100vw;
    z-index: -1;
    top: 47%;
  }
}
@media only screen and (max-width: 767.98px) {
  .bl_floatBtn_menu_btn img {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 768px) {
  .bl_floatBtn_tel {
    width: -webkit-max-content;
  }
}

.sp-acd-content_01 {
  background-color: #ebeff1;
  padding: 0px 3.5% 20px !important;
  font-weight: 300;
  font-family: var(--goshic);
}
.sp-acd-content_01_border {
  border-top: 1px solid #fff;
  margin-bottom: 30px;
}
.sp-acd-content_01_txt {
  margin-top: 20px;
  font-size: 3vw;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media only screen and (min-width: 375px) {
  .sp-acd-content_01_txt {
    font-size: 3.5vw;
  }
}
.sp-acd-content_01_btn {
  margin-top: 20px;
  font-size: 3.6vw;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding: 0.6em 1.2em 0.5em 1em;
}
.sp-acd-content_01_btn span {
  z-index: 2;
  position: relative;
}
.sp-acd-content_01_btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #052348;
  transform: scaleY(1) perspective(0.6em) rotateX(1deg);
  transform-origin: bottom left;
}

.js_slide {
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .js_slide {
    overflow: hidden;
  }
}

.swiper-pagination {
  top: unset !important;
  bottom: 16% !important;
}
@media only screen and (min-width: 768px) {
  .swiper-pagination {
    bottom: 0px !important;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background-color: #fff !important;
  opacity: 1 !important;
}
@media only screen and (min-width: 768px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    border: 1px solid #777;
  }
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--slide-theme-color) !important;
}

.swiper-button-prev {
  width: 35px !important;
  left: 5px !important;
}
.swiper-button-prev img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .swiper-button-prev {
    width: 40px !important;
  }
}
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next {
  width: 35px !important;
  right: 5px !important;
}
.swiper-button-next img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .swiper-button-next {
    width: 40px !important;
  }
}
.swiper-button-next::after {
  display: none;
}

.tabcont-slide {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .tabcont-slide {
    width: 75%;
    padding-bottom: 40px;
    margin-inline: auto;
    overflow: hidden;
  }
}
.tabcont-slide.-slide01 {
  --slide-theme-color: #7a992d;
}
.tabcont-slide.-slide02 {
  --slide-theme-color: #1a886c;
}
.tabcont-slide.-slide03 {
  --slide-theme-color: #9f1e30;
}
.tabcont-slide .swiper-slide img {
  width: 100%;
}