@charset "UTF-8";
/* ======================================
   Reset (Modern Minimal)
====================================== */
/* Box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
html,
body {
  margin: 0;
  padding: 0;
}

/* Improve text rendering */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* HTML5 elements */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

/* Typography reset */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

/* Lists */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
}

/* Images */
img,
picture,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Forms */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* Remove default button styles */
button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* Remove inner focus for Firefox */
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Remove clear / reveal icons (IE / Edge Legacy) */
input::-ms-clear,
input::-ms-reveal {
  display: none;
}

/* Address / emphasis */
address {
  font-style: normal;
}

/* ==============================================
   Form Reset (Project Scope)
   - 全ページに効かせたいなら foundation に移す
================================================= */
input,
select,
textarea,
label,
option {
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
}

/* placeholder */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-family: inherit;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  font-family: inherit;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-family: inherit;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-family: inherit;
}
input::placeholder,
textarea::placeholder {
  font-family: inherit;
}

/* 共通：テキスト系 */
input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
input[type=url],
textarea {
  width: 100%;
  border: 1px solid #4e4844;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: none;
          box-shadow: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=url]:focus,
textarea:focus {
  outline: 2px solid #007baf;
  outline-offset: 0;
}

textarea {
  resize: none;
}

/* select */
select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #4e4844;
  background: #fff;
  color: #4e4844;
  font-size: 1rem;
}
select:focus {
  outline: 2px solid #007baf;
  outline-offset: 0;
}

/* IE / legacy */
select::-ms-expand {
  display: none;
}

/* オートコンプリートの背景対策（白背景固定にするなら） */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
          box-shadow: 0 0 0 1000px #fff inset;
}

/* hidden */
#autozip {
  display: none !important;
}

:root {
  --color-bg-base: #fdf9ed;
  --color-bg-d1e9f4: #d1e9f4;
  --color-bg-brand-main: #4578b3;
  --color-bg-brand-main-reverse: #4578b3;
  --color-bg-brand-sub: #f76c82;
  --color-bg-brand-sub-reverse: #f76c82;
  --color-bg-fff: #fff;
  --color-bg-fff-blue: #fff;
  --color-bg-fff-yellow: #fff;
  --color-text-default: #4e4844;
  --color-text-default-reverse: #4e4844;
  --color-border: #a6a3a1;
  --color-bg-panel: #f9f9f9;
  --color-link: #007baf;
  --color-link__visited: #776144;
  --color-btn-bg: #ffffff;
  --color-btn-text: #333333;
  --color-listicon: #c89995;
  --color-bg-thead: #f7dacf;
  --color-bg-th: #f9f4f2;
  --color-transparent-white: transparent;
  --color-text-new: #e25778;
  --color-important: #df4945;
  --color-bg-4e4844: #4e4844;
  --color-bg-e1f0f5: #e1f0f5;
  --color-bg-f6d8d3: #f6d8d3;
  --color-bg-c18b85: #c18b85;
  --color-bg-c18b85: #837f7c;
  --color-bg-e25b7c: #e25b7c;
  --color-bg-3b73c9: #3b73c9;
  --color-bg-f6cdd6: #f6cdd6;
  --color-bg-dae4f0: #dae4f0;
  --color-login: #df4945;
}

html.is-theme-black {
  --color-bg-base: #000000;
  --color-bg-d1e9f4: #ffffff;
  --color-bg-brand-main: #000000;
  --color-bg-brand-main-reverse: #ffffff;
  --color-bg-brand-sub: #000000;
  --color-bg-brand-sub-reverse: #ffffff;
  --color-bg-fff: #000000;
  --color-bg-fff-blue: #fff;
  --color-bg-fff-yellow: #fff;
  --color-text-default: #ffffff;
  --color-text-default-reverse: #000000;
  --color-border: #ffffff;
  --color-bg-panel: #000000;
  --color-link: #ffff00;
  --color-link__visited: #ffff00;
  --color-btn-bg: #000000;
  --color-btn-text: #ffffff;
  --color-listicon: #ffffff;
  --color-bg-thead: transparent;
  --color-bg-th: transparent;
  --color-transparent-white: #ffffff;
  --color-text-new: #ffffff;
  --color-important: #000000;
  --color-gl-4e4844: #fff;
  --color-bg-e1f0f5: #000000;
  --color-bg-f6d8d3: #000000;
  --color-bg-c18b85: #000000;
  --color-bg-c18b85: #000000;
  --color-bg-e25b7c: #000000;
  --color-bg-3b73c9: #000000;
  --color-bg-f6cdd6: #fff;
  --color-bg-dae4f0: #fff;
  --color-login: #000000;
}

html.is-theme-blue {
  --color-bg-base: #003399;
  --color-bg-d1e9f4: #ffffff;
  --color-bg-brand-main: #003399;
  --color-bg-brand-main-reverse: #ffff00;
  --color-bg-brand-sub: #003399;
  --color-bg-brand-sub-reverse: #ffff00;
  --color-bg-fff: #003399;
  --color-bg-fff-blue: #003399;
  --color-bg-fff-yellow: #ffff00;
  --color-text-default: #ffff00;
  --color-text-default-reverse: #003399;
  --color-border: #ffff00;
  --color-bg-panel: #003399;
  --color-link: #ffffff;
  --color-link__visited: #fff;
  --color-btn-bg: #003399;
  --color-btn-text: #ffff00;
  --color-listicon: #ffff00;
  --color-bg-thead: transparent;
  --color-bg-th: transparent;
  --color-transparent-white: #ffffff;
  --color-text-new: #ffff00;
  --color-important: #ffff00;
  --color-gl-4e4844: #ffff00;
  --color-bg-e1f0f5: #003399;
  --color-bg-f6d8d3: #003399;
  --color-bg-c18b85: #003399;
  --color-bg-c18b85: #003399;
  --color-bg-e25b7c: #003399;
  --color-bg-3b73c9: #003399;
  --color-bg-f6cdd6: #fff;
  --color-bg-dae4f0: #fff;
  --color-login: #003399;
}

/* ======================================
   Base
====================================== */
html {
  margin: 0;
  font-size: 100%;
}
html.is-view-large {
  font-size: 125%;
}

body {
  overflow-x: clip;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: var(--color-bg-base);
  color: var(--color-text-default);
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.025em;
}
@media (min-width: 1024px) {
  body {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: 0.025em;
  }
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

p {
  margin: 0;
  line-height: 1.75;
}
@media (min-width: 1024px) {
  p {
    line-height: 1.75;
  }
}
p a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}

img[src$=".svg"] {
  width: 100%;
}

a img {
  border: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

small {
  font-size: 1rem;
  font-style: normal;
  text-align: center;
}

address {
  font-style: normal;
}

strong {
  font-weight: 700;
}

button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

sub,
sup {
  font-size: 60%;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

/* --------- Links --------- */
a {
  text-decoration: none;
}
a:link {
  color: #007baf;
}
@media (min-width: 1024px) {
  a {
    -webkit-transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  a:focus img {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: #007baf;
    opacity: 0.7;
    text-decoration: none;
  }
}

.js_toggle + * {
  display: none;
}

/* ======================================
    Common Class
====================================== */
/*  display
-------------------------------------- */
.hp_sp_none {
  display: none !important;
}
@media (min-width: 768px) {
  .hp_sp_none {
    display: block !important;
  }
}

.hp_sp_display {
  display: block !important;
}
@media (min-width: 768px) {
  .hp_sp_display {
    display: none !important;
  }
}

.hp_pc_none {
  display: block !important;
}
@media (min-width: 1024px) {
  .hp_pc_none {
    display: none !important;
  }
}

.hp_pc_display {
  display: none !important;
}
@media (min-width: 1024px) {
  .hp_pc_display {
    display: block !important;
  }
}

/*  direction
-------------------------------------- */
.hp_row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

/*  text_align
-------------------------------------- */
.hp_text_center {
  text-align: center !important;
}

.hp_text_left {
  text-align: left !important;
}

.hp_text_right {
  text-align: right !important;
}

/*  margin padding
-------------------------------------- */
/* padding 部分的な設定*/
.hp_pb-0 {
  padding-bottom: 0px !important;
  padding-bottom: 0rem !important;
}

.hp_pb-5 {
  padding-bottom: 5px !important;
  padding-bottom: 0.5rem !important;
}

.hp_pb-10 {
  padding-bottom: 10px !important;
  padding-bottom: 1rem !important;
}

.hp_pb-15 {
  padding-bottom: 15px !important;
  padding-bottom: 1.5rem !important;
}

.hp_pb-20 {
  padding-bottom: 20px !important;
  padding-bottom: 2rem !important;
}

.hp_pb-25 {
  padding-bottom: 25px !important;
  padding-bottom: 2.5rem !important;
}

.hp_pb-30 {
  padding-bottom: 30px !important;
  padding-bottom: 3rem !important;
}

.hp_pb-35 {
  padding-bottom: 35px !important;
  padding-bottom: 3.5rem !important;
}

.hp_pb-40 {
  padding-bottom: 40px !important;
  padding-bottom: 4rem !important;
}

.hp_pb-45 {
  padding-bottom: 45px !important;
  padding-bottom: 4.5rem !important;
}

.hp_pb-50 {
  padding-bottom: 50px !important;
  padding-bottom: 5rem !important;
}

/* margin 部分的な設定*/
.mt-0 {
  margin-top: 0px !important;
}
@media (min-width: 1024px) {
  .mt-0 {
    margin-top: 0px !important;
  }
}

.mt-10 {
  margin-top: 8px !important;
}
@media (min-width: 1024px) {
  .mt-10 {
    margin-top: 10px !important;
  }
}

.mt-20 {
  margin-top: 16px !important;
}
@media (min-width: 1024px) {
  .mt-20 {
    margin-top: 20px !important;
  }
}

.mt-30 {
  margin-top: 24px !important;
}
@media (min-width: 1024px) {
  .mt-30 {
    margin-top: 30px !important;
  }
}

.mt-40 {
  margin-top: 32px !important;
}
@media (min-width: 1024px) {
  .mt-40 {
    margin-top: 40px !important;
  }
}

.mt-50 {
  margin-top: 40px !important;
}
@media (min-width: 1024px) {
  .mt-50 {
    margin-top: 50px !important;
  }
}

.mt-60 {
  margin-top: 48px !important;
}
@media (min-width: 1024px) {
  .mt-60 {
    margin-top: 60px !important;
  }
}

.mt-70 {
  margin-top: 56px !important;
}
@media (min-width: 1024px) {
  .mt-70 {
    margin-top: 70px !important;
  }
}

.mt-80 {
  margin-top: 64px !important;
}
@media (min-width: 1024px) {
  .mt-80 {
    margin-top: 80px !important;
  }
}

.mt-90 {
  margin-top: 72px !important;
}
@media (min-width: 1024px) {
  .mt-90 {
    margin-top: 90px !important;
  }
}

.mt-100 {
  margin-top: 80px !important;
}
@media (min-width: 1024px) {
  .mt-100 {
    margin-top: 100px !important;
  }
}

.mt--0 {
  margin-top: 0px !important;
}
@media (min-width: 1024px) {
  .mt--0 {
    margin-top: 0px !important;
  }
}

.mt--10 {
  margin-top: -8px !important;
}
@media (min-width: 1024px) {
  .mt--10 {
    margin-top: -10px !important;
  }
}

.mt--20 {
  margin-top: -16px !important;
}
@media (min-width: 1024px) {
  .mt--20 {
    margin-top: -20px !important;
  }
}

.mt--30 {
  margin-top: -24px !important;
}
@media (min-width: 1024px) {
  .mt--30 {
    margin-top: -30px !important;
  }
}

.mt--40 {
  margin-top: -32px !important;
}
@media (min-width: 1024px) {
  .mt--40 {
    margin-top: -40px !important;
  }
}

.mt--50 {
  margin-top: -40px !important;
}
@media (min-width: 1024px) {
  .mt--50 {
    margin-top: -50px !important;
  }
}

.mt--60 {
  margin-top: -48px !important;
}
@media (min-width: 1024px) {
  .mt--60 {
    margin-top: -60px !important;
  }
}

.mt--70 {
  margin-top: -56px !important;
}
@media (min-width: 1024px) {
  .mt--70 {
    margin-top: -70px !important;
  }
}

.mt--80 {
  margin-top: -64px !important;
}
@media (min-width: 1024px) {
  .mt--80 {
    margin-top: -80px !important;
  }
}

.mt--90 {
  margin-top: -72px !important;
}
@media (min-width: 1024px) {
  .mt--90 {
    margin-top: -90px !important;
  }
}

.mt--100 {
  margin-top: -80px !important;
}
@media (min-width: 1024px) {
  .mt--100 {
    margin-top: -100px !important;
  }
}

.mb-0 {
  margin-bottom: 0px !important;
}
@media (min-width: 1024px) {
  .mb-0 {
    margin-bottom: 0rem !important;
  }
}

.mb-10 {
  margin-bottom: 8px !important;
}
@media (min-width: 1024px) {
  .mb-10 {
    margin-bottom: 10rem !important;
  }
}

.mb-20 {
  margin-bottom: 16px !important;
}
@media (min-width: 1024px) {
  .mb-20 {
    margin-bottom: 20rem !important;
  }
}

.mb-30 {
  margin-bottom: 24px !important;
}
@media (min-width: 1024px) {
  .mb-30 {
    margin-bottom: 30rem !important;
  }
}

.mb-40 {
  margin-bottom: 32px !important;
}
@media (min-width: 1024px) {
  .mb-40 {
    margin-bottom: 40rem !important;
  }
}

.mb-50 {
  margin-bottom: 40px !important;
}
@media (min-width: 1024px) {
  .mb-50 {
    margin-bottom: 50rem !important;
  }
}

.mb-60 {
  margin-bottom: 48px !important;
}
@media (min-width: 1024px) {
  .mb-60 {
    margin-bottom: 60rem !important;
  }
}

.mb-70 {
  margin-bottom: 56px !important;
}
@media (min-width: 1024px) {
  .mb-70 {
    margin-bottom: 70rem !important;
  }
}

.mb-80 {
  margin-bottom: 64px !important;
}
@media (min-width: 1024px) {
  .mb-80 {
    margin-bottom: 80rem !important;
  }
}

.mb-90 {
  margin-bottom: 72px !important;
}
@media (min-width: 1024px) {
  .mb-90 {
    margin-bottom: 90rem !important;
  }
}

.mb-100 {
  margin-bottom: 80px !important;
}
@media (min-width: 1024px) {
  .mb-100 {
    margin-bottom: 100rem !important;
  }
}

.mb-110 {
  margin-bottom: 88px !important;
}
@media (min-width: 1024px) {
  .mb-110 {
    margin-bottom: 110rem !important;
  }
}

.mb-120 {
  margin-bottom: 96px !important;
}
@media (min-width: 1024px) {
  .mb-120 {
    margin-bottom: 120rem !important;
  }
}

.mb-130 {
  margin-bottom: 104px !important;
}
@media (min-width: 1024px) {
  .mb-130 {
    margin-bottom: 130rem !important;
  }
}

.mb-140 {
  margin-bottom: 112px !important;
}
@media (min-width: 1024px) {
  .mb-140 {
    margin-bottom: 140rem !important;
  }
}

.mb-150 {
  margin-bottom: 120px !important;
}
@media (min-width: 1024px) {
  .mb-150 {
    margin-bottom: 150rem !important;
  }
}

.mb-160 {
  margin-bottom: 128px !important;
}
@media (min-width: 1024px) {
  .mb-160 {
    margin-bottom: 160rem !important;
  }
}

.mb-170 {
  margin-bottom: 136px !important;
}
@media (min-width: 1024px) {
  .mb-170 {
    margin-bottom: 170rem !important;
  }
}

.mb-180 {
  margin-bottom: 144px !important;
}
@media (min-width: 1024px) {
  .mb-180 {
    margin-bottom: 180rem !important;
  }
}

.mb-190 {
  margin-bottom: 152px !important;
}
@media (min-width: 1024px) {
  .mb-190 {
    margin-bottom: 190rem !important;
  }
}

.mb-200 {
  margin-bottom: 160px !important;
}
@media (min-width: 1024px) {
  .mb-200 {
    margin-bottom: 200rem !important;
  }
}

.mb--0 {
  margin-bottom: 0px !important;
}
@media (min-width: 1024px) {
  .mb--0 {
    margin-bottom: 0rem !important;
  }
}

.mb--10 {
  margin-bottom: -8px !important;
}
@media (min-width: 1024px) {
  .mb--10 {
    margin-bottom: -10rem !important;
  }
}

.mb--20 {
  margin-bottom: -16px !important;
}
@media (min-width: 1024px) {
  .mb--20 {
    margin-bottom: -20rem !important;
  }
}

.mb--30 {
  margin-bottom: -24px !important;
}
@media (min-width: 1024px) {
  .mb--30 {
    margin-bottom: -30rem !important;
  }
}

.mb--40 {
  margin-bottom: -32px !important;
}
@media (min-width: 1024px) {
  .mb--40 {
    margin-bottom: -40rem !important;
  }
}

.mb--50 {
  margin-bottom: -40px !important;
}
@media (min-width: 1024px) {
  .mb--50 {
    margin-bottom: -50rem !important;
  }
}

.mb--60 {
  margin-bottom: -48px !important;
}
@media (min-width: 1024px) {
  .mb--60 {
    margin-bottom: -60rem !important;
  }
}

.mb--70 {
  margin-bottom: -56px !important;
}
@media (min-width: 1024px) {
  .mb--70 {
    margin-bottom: -70rem !important;
  }
}

.mb--80 {
  margin-bottom: -64px !important;
}
@media (min-width: 1024px) {
  .mb--80 {
    margin-bottom: -80rem !important;
  }
}

.mb--90 {
  margin-bottom: -72px !important;
}
@media (min-width: 1024px) {
  .mb--90 {
    margin-bottom: -90rem !important;
  }
}

.mb--100 {
  margin-bottom: -80px !important;
}
@media (min-width: 1024px) {
  .mb--100 {
    margin-bottom: -100rem !important;
  }
}

.mb--110 {
  margin-bottom: -88px !important;
}
@media (min-width: 1024px) {
  .mb--110 {
    margin-bottom: -110rem !important;
  }
}

.mb--120 {
  margin-bottom: -96px !important;
}
@media (min-width: 1024px) {
  .mb--120 {
    margin-bottom: -120rem !important;
  }
}

.mb--130 {
  margin-bottom: -104px !important;
}
@media (min-width: 1024px) {
  .mb--130 {
    margin-bottom: -130rem !important;
  }
}

.mb--140 {
  margin-bottom: -112px !important;
}
@media (min-width: 1024px) {
  .mb--140 {
    margin-bottom: -140rem !important;
  }
}

.mb--150 {
  margin-bottom: -120px !important;
}
@media (min-width: 1024px) {
  .mb--150 {
    margin-bottom: -150rem !important;
  }
}

.mb--160 {
  margin-bottom: -128px !important;
}
@media (min-width: 1024px) {
  .mb--160 {
    margin-bottom: -160rem !important;
  }
}

.mb--170 {
  margin-bottom: -136px !important;
}
@media (min-width: 1024px) {
  .mb--170 {
    margin-bottom: -170rem !important;
  }
}

.mb--180 {
  margin-bottom: -144px !important;
}
@media (min-width: 1024px) {
  .mb--180 {
    margin-bottom: -180rem !important;
  }
}

.mb--190 {
  margin-bottom: -152px !important;
}
@media (min-width: 1024px) {
  .mb--190 {
    margin-bottom: -190rem !important;
  }
}

.mb--200 {
  margin-bottom: -160px !important;
}
@media (min-width: 1024px) {
  .mb--200 {
    margin-bottom: -200rem !important;
  }
}

/*  clearfix
-------------------------------------- */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.hp_scrollbarNone {
  /*Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
.hp_scrollbarNone::-webkit-scrollbar {
  display: none;
}

/* =================================================
   Header
=================================================== */
.bl_header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  height: 60px;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.1s ease-in-out, -webkit-box-shadow 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out, -webkit-box-shadow 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out, box-shadow 0.1s ease-in-out, -webkit-box-shadow 0.1s ease-in-out;
  z-index: 111000;
}
@media (min-width: 1280px) {
  .bl_header {
    height: 100px;
  }
}
.bl_header_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  margin-inline: auto;
  width: calc(100% - 40px);
}
@media (min-width: 768px) {
  .bl_header_inner {
    width: 92.1875%;
  }
}
@media (min-width: 1280px) {
  .bl_header_inner {
    width: 94.7368421053%;
  }
}
.bl_header_logo {
  display: block;
  width: 68.6567164179%;
  max-width: 230px;
  height: auto;
  z-index: 111000;
}
@media (min-width: 1280px) {
  .bl_header_logo {
    width: 29.0833333333%;
    max-width: 349px;
  }
}
.bl_header_logo a {
  display: block;
  width: 100%;
  height: 100%;
}
/* =================================================
   main
=================================================== */
main {
  margin-top: 60px;
}
@media (min-width: 1280px) {
  main {
    margin-top: 100px;
  }
}

/* =================================================
   footer
=================================================== */
.bl_footer {
  width: 100%;
  margin-inline: auto;
  border-top: 1px solid var(--color-transparent-white);
  background: var(--color-bg-brand-main);
  color: #fff;
  text-align: left;
  padding-top: 0.5rem;
  padding-bottom: 3.75rem;
}
@media (min-width: 1024px) {
  .bl_footer {
    padding-top: 2.875rem;
    padding-bottom: 6.25rem;
  }
}
@media (min-width: 1280px) {
  .bl_footer {
    padding-bottom: 1.875rem;
  }
}
.bl_footer_inner {
  width: 89.3333333333%;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .bl_footer_inner {
    width: 96.875%;
    max-width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.bl_footer .bl_address {
  margin: 20px auto;
}
@media (min-width: 1024px) {
  .bl_footer .bl_address {
    margin: 0;
  }
}
.bl_footer .bl_address .bl_footer_logo {
  width: 254px;
  margin-bottom: 6px;
}
@media (min-width: 1024px) {
  .bl_footer .bl_address .bl_footer_logo {
    margin-bottom: 18px;
  }
}
.bl_footer .bl_address p {
  line-height: 1.6666666667;
}
.bl_footer .bl_address .el_tel a {
  color: inherit;
  text-decoration: none;
}
.bl_footer .bl_address .bl_footer_copyright {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0em;
}
@media (min-width: 1024px) {
  .bl_footer .bl_address .bl_footer_copyright {
    text-align: left;
  }
}
.bl_footer .bl_address .bl_footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (min-width: 1024px) {
  .bl_footer .bl_address .bl_footer_nav {
    gap: 13px;
  }
}
.bl_footer .bl_address .bl_footer_nav li a {
  color: inherit;
}
.bl_footer .bl_footer_navWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 13px;
}
@media (min-width: 1024px) {
  .bl_footer .bl_footer_navWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 17px;
    margin-top: 23px;
  }
}
@media (min-width: 1024px) {
  .bl_footer .bl_footer_img {
    max-width: 320px;
    overflow: hidden;
    border-radius: 13px;
  }
}

.bl_floatNav {
  position: fixed;
  width: 100%;
  height: 57px;
  z-index: 111000;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 84.8% 15.2%;
  padding: 0 env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
@media (min-width: 1280px) {
  .bl_floatNav {
    left: auto;
    right: 0;
    bottom: auto;
    top: 228px;
    padding: 0;
    width: 60px;
    height: 371px;
    grid-template-columns: 1fr;
    grid-template-rows: 82.2102425876% 13.4770889488%;
    gap: 16px;
  }
}

.bl_floatNav_list {
  height: 100%;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 17.9245283019% 40.8805031447% 40.8805031447%;
  background: #fff;
  -webkit-box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
          box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
}
@media (min-width: 1280px) {
  .bl_floatNav_list {
    grid-template-columns: 1fr;
    grid-template-rows: 14.7540983607% 42.6229508197% 42.6229508197%;
    border-top: 0;
    border-radius: 5px 0 0 5px;
    -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
  }
}

.bl_floatNav_item {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.bl_floatNav_item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 40px;
  background-color: #d3d1d0;
}
@media (min-width: 1280px) {
  .bl_floatNav_item:not(:last-child)::after {
    border-right: 1px solid #d3d1d0;
    height: 1px;
    width: 40px;
    top: auto;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.bl_floatNav_link {
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #4e4844;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
@media (min-width: 1280px) {
  .bl_floatNav_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bl_floatNav_link:hover {
  opacity: 0.9;
}
.bl_floatNav_link:focus-visible {
  outline: 2px solid rgba(255, 105, 130, 0.9);
  outline-offset: -2px;
}

.bl_floatNav_txt {
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.125rem;
  color: #4e4844;
}
@media (min-width: 1280px) {
  .bl_floatNav_txt {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    margin: 0 auto;
  }
}

.bl_floatNav_item__x {
  background: #0f1419;
  color: #fff;
  gap: 0;
}
@media (min-width: 1280px) {
  .bl_floatNav_item__x {
    border-radius: 5px 0 0 5px;
    -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  }
}
.bl_floatNav_item__x img {
  width: 31.5789473684%;
  max-width: 20px;
}

/* =================================================
    layout section
=================================================== */
.ly_sec {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.ly_sec_inner {
  width: 89.3333333333%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .ly_sec_inner {
    width: 92.1875%;
  }
}
@media (min-width: 1024px) {
  .ly_sec_inner {
    width: 96.875%;
    max-width: calc(1200px + 60px);
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* ======================================
   .bl_headerNav
====================================== */
/* --------------------------------------
   open state (SP)
-------------------------------------- */
.is_btnHamburger__on .bl_headerNav {
  right: 0;
  opacity: 1;
}

/* --------------------------------------
   nav container
-------------------------------------- */
.bl_headerNav {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 60px;
  right: -100%;
  width: 100%;
  max-width: 400px;
  max-height: calc(100dvh - 60px - 57px);
  background: #fff;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow-y: auto;
  z-index: 111100;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.bl_headerNav::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
@media (min-width: 1280px) {
  .bl_headerNav {
    position: static;
    width: calc(80.6111111111% - 20px);
    height: 100%;
    padding-top: 8px;
    max-width: none;
    max-height: none;
    background: #fff;
    opacity: 1;
    overflow: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
.bl_headerNav_global {
  width: 100%;
  background: #fff;
  border-top: 1px solid #d3d1d0;
}
@media (min-width: 1280px) {
  .bl_headerNav_global {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 23px;
    background: transparent;
    border-top: none;
  }
}
@media (min-width: 1366px) {
  .bl_headerNav_global {
    gap: 20px;
  }
}
.bl_headerNav_global > li {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #d3d1d0;
}
@media (min-width: 1280px) {
  .bl_headerNav_global > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    width: auto;
    border-bottom: none;
  }
  .bl_headerNav_global > li::after {
    content: "|";
    display: inline;
    color: var(--color-text-default-reverse);
  }
  .bl_headerNav_global > li:last-of-type::after {
    display: none;
  }
}
@media (min-width: 1280px) {
  .bl_headerNav_global > li:hover {
    opacity: 1;
  }
  .bl_headerNav_global > li:hover .bl_headerNav_toggle {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    visibility: visible;
    opacity: 1;
  }
  .bl_headerNav_global > li:hover::before {
    content: "";
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    width: calc(100% - 20px);
    height: 3px;
    display: block;
    background: #4578b3;
  }
}
.bl_headerNav_global > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 50px);
  padding: 21px 18px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-text-default-reverse);
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1280px) {
  .bl_headerNav_global > li > a {
    width: 100%;
    height: 100%;
    padding: 0;
  }
}
.bl_headerNav_global > li > .el_iconToggle {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 28px;
  height: 28px;
}
.bl_headerNav_global > li > .el_iconToggle::before, .bl_headerNav_global > li > .el_iconToggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.bl_headerNav_global > li > .el_iconToggle::before {
  width: 2px;
  height: 15px;
}
.bl_headerNav_global > li > .el_iconToggle.is_open::before {
  display: none;
}
.bl_headerNav_global > li > .el_iconToggle {
  top: 24px;
  right: 20px;
  background: var(--color-bg-brand-main);
  border-radius: 100%;
}
@media (min-width: 1280px) {
  .bl_headerNav_global > li > .el_iconToggle {
    display: none;
  }
}
.bl_headerNav_global > li > .el_iconChevron {
  position: absolute;
  top: 24px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--color-bg-brand-main);
  border-radius: 100%;
  pointer-events: none;
}
@media (min-width: 1280px) {
  .bl_headerNav_global > li > .el_iconChevron {
    display: none;
  }
}
.bl_headerNav_global > li > .el_iconChevron img {
  width: 7px;
  height: auto;
}
.bl_headerNav_toggle {
  display: none;
}
@media (min-width: 1280px) {
  .bl_headerNav_toggle {
    display: block;
    position: absolute;
    top: 50px;
    left: 0;
    min-width: 325px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    max-height: none;
    padding: 30px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .bl_headerNav_toggle::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}
.bl_headerNav_toggle > ul {
  padding-top: 10px;
  padding-bottom: 10px;
  background: #fdf9ed;
}
@media (min-width: 1280px) {
  .bl_headerNav_toggle > ul {
    width: 100%;
    padding: 0;
    background: #fff;
  }
}
.bl_headerNav_toggle > ul > li {
  position: relative;
}
.bl_headerNav_toggle > ul > li > a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 89.3333333333%;
  padding: 6px 13px;
  margin: 0 auto;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--color-text-default-reverse);
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1280px) {
  .bl_headerNav_toggle > ul > li > a {
    width: 100%;
    padding: 5px;
    margin: 0;
  }
}
.bl_headerNav .bl_utilityPanel {
  margin: 0 auto;
  padding: 1.25rem 0.625rem 1.875rem;
  text-align: center;
}
@media (min-width: 1280px) {
  .bl_headerNav .bl_utilityPanel {
    max-width: 54.375rem;
    display: grid;
    grid-template-areas: "voice font color btn";
    gap: 30px;
    padding: 0;
    margin: 0;
    margin-left: auto;
  }
  .bl_headerNav .bl_utilityPanel .ly_grid_voice {
    grid-area: voice;
  }
  .bl_headerNav .bl_utilityPanel .ly_grid_btn {
    grid-area: btn;
  }
  .bl_headerNav .bl_utilityPanel .ly_grid_font {
    grid-area: font;
  }
  .bl_headerNav .bl_utilityPanel .ly_grid_color {
    grid-area: color;
    gap: 5px;
  }
}
.bl_headerNav .bl_utilityPanel .el_btnVoice {
  display: grid;
  place-items: center;
  width: 82%;
  max-width: 275px;
  height: 40px;
  margin: 20px auto;
  border: 1px solid var(--color-text-default-reverse);
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--color-text-default-reverse);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 5px;
  letter-spacing: 0.08em;
}
@media (min-width: 1280px) {
  .bl_headerNav .bl_utilityPanel .el_btnVoice {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 11rem;
            flex: 0 0 11rem;
    min-width: 110px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 30px;
    margin: 0;
    margin-right: 0.5rem;
    padding: 2px 5px;
    font-size: 0.8125rem;
    white-space: nowrap;
  }
}
.bl_headerNav .bl_utilityPanel_group {
  margin-bottom: 1.25rem;
}
@media (min-width: 1280px) {
  .bl_headerNav .bl_utilityPanel_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
    gap: 10px;
  }
}
.bl_headerNav .bl_utilityPanel_label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.075em;
  font-weight: 500;
  margin-bottom: 0.5625rem;
  color: var(--color-text-default-reverse);
}
@media (min-width: 1280px) {
  .bl_headerNav .bl_utilityPanel_label {
    margin: 0;
  }
}
.bl_headerNav .bl_utilityPanel_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media (min-width: 1280px) {
  .bl_headerNav .bl_utilityPanel_row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 3px;
  }
}
.bl_headerNav .bl_utilityPanel_row--color {
  gap: 10px;
}
@media (min-width: 1280px) {
  .bl_headerNav .bl_utilityPanel_row--color {
    gap: 4px;
  }
}
.bl_headerNav .bl_utilityPanel_row--color .el_btn.el_btn-rect {
  width: 6.5625rem;
}
@media (min-width: 1280px) {
  .bl_headerNav .bl_utilityPanel_row--color .el_btn.el_btn-rect {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 1.875rem;
  }
}
.bl_headerNav .bl_utilityPanel_footer {
  margin-top: 1.5625rem;
}
@media (min-width: 1280px) {
  .bl_headerNav .bl_utilityPanel_footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    gap: 12px;
  }
}
.bl_headerNav .el_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border: 1px solid var(--color-text-default-reverse);
  color: var(--color-text-default-reverse);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
.bl_headerNav .el_btn:hover {
  opacity: 0.8;
}
.bl_headerNav .el_btn.el_btn-rect {
  width: 7.5rem;
  height: 2.375rem;
  border-radius: 5px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 1280px) {
  .bl_headerNav .el_btn.el_btn-rect {
    width: 3.0625rem;
    height: 1.875rem;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.bl_headerNav .el_btn.el_btn-rect.is-color-white {
  background-color: #fff;
  color: #333;
  border-color: #666;
  letter-spacing: 0em;
}
.bl_headerNav .el_btn.el_btn-rect.is-color-black {
  background-color: #4b4b4b;
  color: #fff;
  border-color: #4b4b4b;
  letter-spacing: 0em;
}
.bl_headerNav .el_btn.el_btn-rect.is-color-blue {
  background-color: #0000ff;
  color: #ffff00;
  border-color: #0000ff;
  letter-spacing: 0em;
}
.bl_headerNav .el_btn.el_btn-nihongo {
  width: 11rem;
  height: 2.375rem;
  border-radius: 2.375rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: var(--color-text-default-reverse);
  border-color: var(--color-text-default-reverse);
}
@media (min-width: 1280px) {
  .bl_headerNav .el_btn.el_btn-nihongo {
    width: 10rem;
    height: 1.75rem;
  }
}
.bl_headerNav .el_btn.el_btn-login {
  display: none !important;
}
@media (min-width: 1280px) {
  .bl_headerNav .el_btn.el_btn-login {
    position: relative;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    width: 8.4375rem;
    height: 1.75rem;
    border-radius: 2.375rem;
    border: 1px solid var(--color-login);
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    color: #fff;
    background: var(--color-login);
  }
  .bl_headerNav .el_btn.el_btn-login::before {
    content: "";
    width: 13px;
    height: 16px;
    background: url(../images/common/icon_login__white.svg) no-repeat center center/contain;
  }
}

/* ----------------------------
   base
---------------------------- */
.ly_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* direction */
}
.ly_flex--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.ly_flex--row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.ly_flex--col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ly_flex--col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.ly_flex {
  /* wrap */
}
.ly_flex--nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.ly_flex--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ly_flex {
  /* justify-content */
}
.ly_flex--jc-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.ly_flex--jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ly_flex--jc-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.ly_flex--jc-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ly_flex--jc-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.ly_flex--jc-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.ly_flex {
  /* align-items */
}
.ly_flex--ai-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.ly_flex--ai-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ly_flex--ai-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.ly_flex--ai-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.ly_flex--ai-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.ly_flex {
  /* gap（必要なら tokens で管理してもOK） */
}
.ly_flex--gap-0 {
  gap: 0;
}
.ly_flex--gap-8 {
  gap: 8px;
}
.ly_flex--gap-12 {
  gap: 12px;
}
.ly_flex--gap-16 {
  gap: 16px;
}
.ly_flex--gap-20 {
  gap: 20px;
}
.ly_flex--gap-24 {
  gap: 24px;
}
.ly_flex--gap-32 {
  gap: 32px;
}
.ly_flex {
  /* ----------------------------
     responsive enable
     - SPでは block、指定幅以上で flex にしたい場合
     - 例: class="ly_flex ly_flex--pc ly_flex--jc-between"
  ---------------------------- */
}
.ly_flex--tab {
  display: block;
}
@media (min-width: 768px) {
  .ly_flex--tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.ly_flex--pc {
  display: block;
}
@media (min-width: 1024px) {
  .ly_flex--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.ly_flex {
  /* ----------------------------
     columns（子要素に付ける）
     - gap を考慮して幅を割る
     - 例: .ly_flex--gap-20 + .ly_flex__col--2
  ---------------------------- */
}
.ly_flex__col {
  min-width: 0;
}
.ly_flex__col--2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - var(--_gap, 0px)) / 2);
          flex: 0 0 calc((100% - var(--_gap, 0px)) / 2);
}
.ly_flex__col--3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - var(--_gap, 0px) * 2) / 3);
          flex: 0 0 calc((100% - var(--_gap, 0px) * 2) / 3);
}
.ly_flex__col--4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - var(--_gap, 0px) * 3) / 4);
          flex: 0 0 calc((100% - var(--_gap, 0px) * 3) / 4);
}
.ly_flex__col--auto {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.ly_flex__col--fill {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
.ly_flex {
  /* gap を columns 計算用に変数へ渡す */
}
.ly_flex--gap-0 {
  --_gap: 0px;
}
.ly_flex--gap-8 {
  --_gap: 8px;
}
.ly_flex--gap-12 {
  --_gap: 12px;
}
.ly_flex--gap-16 {
  --_gap: 16px;
}
.ly_flex--gap-20 {
  --_gap: 20px;
}
.ly_flex--gap-24 {
  --_gap: 24px;
}
.ly_flex--gap-32 {
  --_gap: 32px;
}

.ly_grid {
  display: grid;
  grid-template-columns: 1fr;
  /* --------------------------------------------
     gap
  -------------------------------------------- */
}
.ly_grid--gap-0 {
  gap: 0;
}
.ly_grid--gap-8 {
  gap: 8px;
}
.ly_grid--gap-12 {
  gap: 12px;
}
.ly_grid--gap-16 {
  gap: 16px;
}
.ly_grid--gap-20 {
  gap: 20px;
}
.ly_grid--gap-24 {
  gap: 24px;
}
.ly_grid--gap-32 {
  gap: 32px;
}
.ly_grid {
  /* row/column gap を分けたい場合 */
}
.ly_grid--rg-8 {
  row-gap: 8px;
}
.ly_grid--rg-16 {
  row-gap: 16px;
}
.ly_grid--rg-24 {
  row-gap: 24px;
}
.ly_grid--cg-8 {
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.ly_grid--cg-16 {
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.ly_grid--cg-24 {
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
.ly_grid {
  /* --------------------------------------------
     columns（SP時点での列数）
  -------------------------------------------- */
}
.ly_grid--col-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.ly_grid--col-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ly_grid--col-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ly_grid--col-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ly_grid {
  /* --------------------------------------------
     responsive columns
     例: class="ly_grid ly_grid--gap-20 ly_grid--pc-3"
  -------------------------------------------- */
}
@media (min-width: 768px) {
  .ly_grid--tab-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .ly_grid--tab-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .ly_grid--pc-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .ly_grid--pc-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .ly_grid--pc-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.ly_grid {
  /* --------------------------------------------
     align / justify
  -------------------------------------------- */
}
.ly_grid--ai-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.ly_grid--ai-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ly_grid--ai-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.ly_grid--ai-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.ly_grid--jc-start {
  justify-items: start;
}
.ly_grid--jc-center {
  justify-items: center;
}
.ly_grid--jc-end {
  justify-items: end;
}
.ly_grid--jc-stretch {
  justify-items: stretch;
}
.ly_grid {
  /* --------------------------------------------
     auto flow
     - dense: 隙間埋め（カード高さが不揃いのときに便利）
  -------------------------------------------- */
}
.ly_grid--row {
  grid-auto-flow: row;
}
.ly_grid--col {
  grid-auto-flow: column;
}
.ly_grid--dense {
  grid-auto-flow: dense;
}
.ly_grid {
  /* --------------------------------------------
     便利: 子要素のはみ出し防止
  -------------------------------------------- */
}
.ly_grid > * {
  min-width: 0;
}

/* =================================================
   Grid children helpers (optional)
=================================================== */
/* 子要素を横に広げたい時 */
.ly_gridItem--span-2 {
  grid-column: span 2;
}
.ly_gridItem--span-3 {
  grid-column: span 3;
}
.ly_gridItem--span-4 {
  grid-column: span 4;
}
.ly_gridItem {
  /* PCだけ span を変えたい例 */
}
@media (min-width: 1024px) {
  .ly_gridItem--pc-span-2 {
    grid-column: span 2;
  }
}

.bl_breadcrumbs {
  display: none;
}
@media (min-width: 768px) {
  .bl_breadcrumbs {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
.bl_breadcrumbs li {
  display: inline;
  font-size: 0.9375rem;
  color: var(--color-text-default-reverse);
  letter-spacing: 0.05em;
}
.bl_breadcrumbs li::after {
  content: "ー";
  display: inline-block;
  inline-size: 15px;
  block-size: 12px;
  margin-inline: 3px;
  color: var(--color-text-default-reverse);
}
.bl_breadcrumbs li:last-child::after {
  content: none;
}
.bl_breadcrumbs a {
  color: var(--color-text-default-reverse);
  font-size: inherit;
  letter-spacing: inherit;
}
.bl_breadcrumbs li.is_home .bl_breadcrumbs a {
  color: #007baf;
}
@media (hover: hover) and (pointer: fine) {
  .bl_breadcrumbs a:hover {
    color: #4578b3;
  }
}

/* ======================================
    el_btnHamburger
====================================== */
.el_btnHamburger {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0;
  overflow: hidden;
  z-index: 111110;
  background-color: #4e4844;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .el_btnHamburger {
    display: none;
  }
}
.el_btnHamburger .el_btnHamburger__inner {
  position: absolute;
  top: 13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 20px;
  height: 13px;
  text-align: center;
}
.el_btnHamburger__line {
  /* 線色 */
  background: #fff;
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.el_btnHamburger__line--top {
  top: 0;
}
.el_btnHamburger__line--bottom {
  top: 100%;
}

/* 背景 */
.js_wrapBg {
  position: fixed;
  inset: 60px 0 0 0;
  width: 100vw;
  height: calc(100vh - 60px);
  z-index: 110000;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
  cursor: pointer;
}

.is_btnHamburger__on .el_btnHamburger__line--top {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
}
.is_btnHamburger__on .el_btnHamburger__line--middle {
  background: transparent;
}
.is_btnHamburger__on .el_btnHamburger__line--bottom {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
}
.is_btnHamburger__on .js_wrapBg {
  opacity: 0.3;
  visibility: visible;
}

/* ======================================
    .js_pageTop
====================================== */
.bl_pageTop {
  width: 100%;
  height: 57px;
  background: #f9e5dd;
  text-align: center;
  padding-top: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.bl_pageTop img {
  width: 88px;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .bl_pageTop img {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .bl_pageTop {
    width: 108px;
    height: auto;
    cursor: pointer;
    position: fixed;
    bottom: -200px;
    right: 42px;
    background: transparent;
    padding-top: 0;
    z-index: 100000;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .bl_pageTop.is_active {
    bottom: 50px;
  }
}

/* ======================================
    font icomoon
====================================== */
@font-face {
  font-family: "icomoon";
  src: url("../fonts/fonts/icomoon.eot?erygqh");
  src: url("../fonts/fonts/icomoon.eot?erygqh#iefix") format("embedded-opentype"), url("../fonts/fonts/icomoon.ttf?erygqh") format("truetype"), url("../fonts/fonts/icomoon.woff?erygqh") format("woff"), url("../fonts/fonts/icomoon.svg?erygqh#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-icon_flow:before {
  content: "\e90e";
}

.icon-icon_arrow_r_light:before {
  content: "\e90d";
}

.icon-icon_close:before {
  content: "\e90c";
}

.icon-icon_tag:before {
  content: "\e90b";
}

.icon-icon_panel__minus:before {
  content: "\e907";
}

.icon-icon_panel__plus:before {
  content: "\e908";
}

.icon-icon_tableofcontents_list:before {
  content: "\e90a";
}

.icon-icon_flow1:before {
  content: "\e906";
}

.icon-icon_jump:before {
  content: "\e909";
}

.icon-icon_search:before {
  content: "\e901";
}

.icon-icon_angle-d:before {
  content: "\e905";
}

.icon-icon_arrow:before {
  content: "\e900";
}

.icon-icon_access:before {
  content: "\e902";
}

.icon-icon_blank:before {
  content: "\e903";
}

.icon-icon_mail:before {
  content: "\e904";
}

/* ======================================
   Swiper 初期化
====================================== */
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "";
}

/* =================================================
   .is_noslide
=================================================== */
.is_noslide .swiper-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
.is_noslide .swiper-wrapper .swiper-slide {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 768px) {
  .is_noslide .swiper-wrapper .swiper-slide {
    max-width: 400px;
  }
}
.is_noslide .swiper-button-prev,
.is_noslide .swiper-button-next {
  display: none;
}

/* =================================================
   #js_sec_newbooks
=================================================== */
.js_switchable_slider {
  position: relative;
}
.js_switchable_slider .swiper {
  position: relative;
}
@media (min-width: 1024px) {
  .js_switchable_slider .swiper {
    margin-top: 30px;
  }
}
@media (min-width: 1024px) {
  .js_switchable_slider .swiper .swiper-wrapper {
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}
.js_switchable_slider .swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  height: auto;
}
@media (min-width: 1024px) {
  .js_switchable_slider .swiper .swiper-slide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px * (5 - 1)) / 5);
            flex: 0 0 calc((100% - 40px * (5 - 1)) / 5);
  }
}
.js_switchable_slider .swiper .swiper-slide > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  gap: 10px;
  color: #4e4844;
}
@media (min-width: 1024px) {
  .js_switchable_slider .swiper .swiper-slide > a {
    width: 100%;
  }
}
.js_switchable_slider .swiper .swiper-slide > a .el_thum {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: auto;
  aspect-ratio: 3/2;
  padding: 20px;
  padding-bottom: 10px;
}
@media (min-width: 1024px) {
  .js_switchable_slider .swiper .swiper-slide > a .el_thum {
    width: 100%;
    padding: 10px;
  }
}
.js_switchable_slider .swiper .swiper-slide > a .el_thum img {
  display: block;
  width: auto;
  max-width: 230px;
  height: 100%;
  max-height: 230px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  -webkit-box-shadow: 3px 6px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 6px 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1024px) {
  .js_switchable_slider .swiper .swiper-slide > a .el_thum img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }
}
.js_switchable_slider .swiper .swiper-slide > a .el_bookttl {
  width: 70%;
  margin-top: auto;
}
.js_switchable_slider .swiper .swiper-slide > a .el_bookttl p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0em;
  color: var(--color-text-default-reverse);
}
.js_switchable_slider .el_swiperButton {
  position: absolute;
  left: 50%;
  pointer-events: none;
  width: 100%;
  height: 45px;
  top: min(22.7864583333vw, 175px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
}
@media (min-width: 1024px) {
  .js_switchable_slider .el_swiperButton {
    display: none;
  }
}
.js_switchable_slider .el_swiperButton .swiper-button-prev,
.js_switchable_slider .el_swiperButton .swiper-button-next {
  width: 45px;
  height: 45px;
  top: 0;
  margin-top: 0;
  opacity: 1;
  pointer-events: all;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .js_switchable_slider .el_swiperButton .swiper-button-prev,
  .js_switchable_slider .el_swiperButton .swiper-button-next {
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
  .js_switchable_slider .el_swiperButton .swiper-button-prev:hover,
  .js_switchable_slider .el_swiperButton .swiper-button-next:hover {
    opacity: 0.7;
  }
}
.js_switchable_slider .el_swiperButton .swiper-button-prev {
  left: 0;
  background: url("../images/top/slide_left.svg") no-repeat center center/contain;
}
.js_switchable_slider .el_swiperButton .swiper-button-next {
  right: 0;
  background: url("../images/top/slide_right.svg") no-repeat center center/contain;
}
.js_switchable_slider .el_btnWrap {
  text-align: center;
}

/* =================================================
   #js_topSample4_slideWrap
=================================================== */
#js_topSample4_slideWrap.bl_sample_slideWrap {
  position: relative;
  margin: 30px calc(50% - 50vw);
}
@media (min-width: 768px) {
  #js_topSample4_slideWrap.bl_sample_slideWrap {
    margin: 50px auto;
  }
}
@media (min-width: 1024px) {
  #js_topSample4_slideWrap.bl_sample_slideWrap {
    max-width: 1140px;
    margin: 60px 0;
  }
}
#js_topSample4_slideWrap.bl_sample_slideWrap .swiper {
  position: relative;
}
#js_topSample4_slideWrap.bl_sample_slideWrap .swiper .swiper-slide > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  gap: 10px;
  color: #4e4844;
}
#js_topSample4_slideWrap.bl_sample_slideWrap .swiper .swiper-slide > a .el_thum {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
}
#js_topSample4_slideWrap.bl_sample_slideWrap .swiper .swiper-slide > a .el_thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#js_topSample4_slideWrap.bl_sample_slideWrap .swiper .swiper-slide > a .el_cont {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  padding: 10px;
}
#js_topSample4_slideWrap.bl_sample_slideWrap .swiper .swiper-slide > a .el_cont time {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
#js_topSample4_slideWrap.bl_sample_slideWrap .swiper .swiper-slide > a .el_cont p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  letter-spacing: 0.025em;
}
#js_topSample4_slideWrap.bl_sample_slideWrap .el_swiperButton {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  width: 100vw;
  height: 45px;
  top: min(28.6458333333vw, 220px);
  z-index: 100;
}
@media (min-width: 1024px) {
  #js_topSample4_slideWrap.bl_sample_slideWrap .el_swiperButton {
    top: min(7.34375vw, 94px);
    height: 60px;
  }
}
@media (min-width: 1280px) {
  #js_topSample4_slideWrap.bl_sample_slideWrap .el_swiperButton {
    top: 85px;
    width: calc(100% + 120px);
  }
}
#js_topSample4_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-prev,
#js_topSample4_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-next {
  width: 45px;
  height: 45px;
  top: 0;
  margin-top: 0;
  opacity: 1;
  pointer-events: all;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  #js_topSample4_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-prev,
  #js_topSample4_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-next {
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
  #js_topSample4_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-prev:hover,
  #js_topSample4_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-next:hover {
    opacity: 0.7;
  }
}
#js_topSample4_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-prev {
  left: 0;
  background: url("../images/top/slide_left.svg") no-repeat center center/contain;
}
#js_topSample4_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-next {
  right: 0;
  background: url("../images/top/slide_right.svg") no-repeat center center/contain;
}
#js_topSample4_slideWrap.bl_sample_slideWrap .swiper-pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: 30px auto 0;
  gap: 20px;
}
@media (min-width: 1024px) {
  #js_topSample4_slideWrap.bl_sample_slideWrap .swiper-pagination {
    margin: 50px auto 0;
  }
}
#js_topSample4_slideWrap.bl_sample_slideWrap .swiper-pagination .swiper-pagination-bullet {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0;
  background: #cad2e2;
  border-radius: 100vh;
  opacity: 1;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  color: #4578b3;
  line-height: 30px;
  text-align: center;
}
#js_topSample4_slideWrap.bl_sample_slideWrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0092d9;
}
#js_topSample4_slideWrap .el_btnWrap {
  text-align: center;
}

/* =================================================
   #js_topSample3_slideWrap
=================================================== */
#js_topSample3_slideWrap.bl_sample_slideWrap {
  position: relative;
  margin: 30px calc(50% - 50vw);
}
@media (min-width: 768px) {
  #js_topSample3_slideWrap.bl_sample_slideWrap {
    margin: 50px auto;
  }
}
@media (min-width: 1024px) {
  #js_topSample3_slideWrap.bl_sample_slideWrap {
    max-width: 1140px;
    margin: 60px 0;
  }
}
#js_topSample3_slideWrap.bl_sample_slideWrap .swiper {
  position: relative;
}
#js_topSample3_slideWrap.bl_sample_slideWrap .swiper .swiper-slide > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  gap: 10px;
  color: #4e4844;
}
#js_topSample3_slideWrap.bl_sample_slideWrap .swiper .swiper-slide > a .el_thum {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
}
#js_topSample3_slideWrap.bl_sample_slideWrap .swiper .swiper-slide > a .el_thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#js_topSample3_slideWrap.bl_sample_slideWrap .swiper .swiper-slide > a .el_cont {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  padding: 10px;
}
#js_topSample3_slideWrap.bl_sample_slideWrap .swiper .swiper-slide > a .el_cont time {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
#js_topSample3_slideWrap.bl_sample_slideWrap .swiper .swiper-slide > a .el_cont p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  letter-spacing: 0.025em;
}
#js_topSample3_slideWrap.bl_sample_slideWrap .el_swiperButton {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  width: 100vw;
  height: 45px;
  top: min(28.6458333333vw, 220px);
  z-index: 100;
}
@media (min-width: 1024px) {
  #js_topSample3_slideWrap.bl_sample_slideWrap .el_swiperButton {
    top: min(7.34375vw, 94px);
    height: 60px;
  }
}
@media (min-width: 1280px) {
  #js_topSample3_slideWrap.bl_sample_slideWrap .el_swiperButton {
    top: 85px;
    width: calc(100% + 120px);
  }
}
#js_topSample3_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-prev,
#js_topSample3_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-next {
  width: 45px;
  height: 45px;
  top: 0;
  margin-top: 0;
  opacity: 1;
  pointer-events: all;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  #js_topSample3_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-prev,
  #js_topSample3_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-next {
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
  #js_topSample3_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-prev:hover,
  #js_topSample3_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-next:hover {
    opacity: 0.7;
  }
}
#js_topSample3_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-prev {
  left: 0;
  background: url("../images/top/slide_left.svg") no-repeat center center/contain;
}
#js_topSample3_slideWrap.bl_sample_slideWrap .el_swiperButton .swiper-button-next {
  right: 0;
  background: url("../images/top/slide_right.svg") no-repeat center center/contain;
}
#js_topSample3_slideWrap.bl_sample_slideWrap .swiper-pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: 30px auto 0;
  gap: 20px;
}
@media (min-width: 1024px) {
  #js_topSample3_slideWrap.bl_sample_slideWrap .swiper-pagination {
    margin: 50px auto 0;
  }
}
#js_topSample3_slideWrap.bl_sample_slideWrap .swiper-pagination .swiper-pagination-bullet {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0;
  background: #cad2e2;
  border-radius: 100vh;
  opacity: 1;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  color: #4578b3;
  line-height: 30px;
  text-align: center;
}
#js_topSample3_slideWrap.bl_sample_slideWrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0092d9;
}
#js_topSample3_slideWrap .el_btnWrap {
  text-align: center;
}

/* ==============================================
   form module contactform7
================================================= */
/* 共通：テキスト系 */
.bl_post .wpcf7-form-control.wpcf7-text,
.bl_post .wpcf7-form-control.wpcf7-email,
.bl_post .wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  border: 1px solid #4e4844;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.bl_post .wpcf7-form-control.wpcf7-text:focus,
.bl_post .wpcf7-form-control.wpcf7-email:focus,
.bl_post .wpcf7-form-control.wpcf7-textarea:focus {
  outline: 2px solid #007baf;
  outline-offset: 0;
}

.bl_post .el_required {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.1em 0.6em;
  font-size: 12px;
  font-size: 0.75rem;
  background: #d80a30;
  color: #fff;
}
.bl_post .wpcf7-response-output,
.bl_post .el_error_ttl,
.bl_post .wpcf7-not-valid-tip {
  display: block;
  color: #d80a30;
  font-weight: 700;
}
.bl_post {
  /* CF7が付ける標準クラスも拾う（type指定と併用） */
}
.bl_post {
  /* hidden系（CF7プレビュー等） */
}
.bl_post input[type=hidden],
.bl_post textarea[type=hidden],
.bl_post select[type=hidden],
.bl_post .form_preview .required {
  display: none;
}
.bl_post {
  /* placeholder（module内で色だけ調整） */
}
.bl_post input::-webkit-input-placeholder, .bl_post textarea::-webkit-input-placeholder {
  color: #ccc;
  font-weight: 400;
}
.bl_post input::-moz-placeholder, .bl_post textarea::-moz-placeholder {
  color: #ccc;
  font-weight: 400;
}
.bl_post input:-ms-input-placeholder, .bl_post textarea:-ms-input-placeholder {
  color: #ccc;
  font-weight: 400;
}
.bl_post input::-ms-input-placeholder, .bl_post textarea::-ms-input-placeholder {
  color: #ccc;
  font-weight: 400;
}
.bl_post input::placeholder,
.bl_post textarea::placeholder {
  color: #ccc;
  font-weight: 400;
}
.bl_post {
  /* ----------------------------------------
     select wrap（矢印をCSSで描画）
  ---------------------------------------- */
}
.bl_post .el_selectWrap {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}
.bl_post .el_selectWrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #4e4844;
}
.bl_post .el_selectWrap select {
  padding-right: 3em;
}
.bl_post {
  /* ----------------------------------------
     checkbox（見た目カスタム）
  ---------------------------------------- */
}
.bl_post .wpcf7-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.bl_post .wpcf7-checkbox label {
  cursor: pointer;
}
.bl_post .wpcf7-checkbox .wpcf7-list-item-label {
  position: relative;
  padding-left: 2em;
  margin-right: 20px;
}
.bl_post .wpcf7-checkbox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 2px;
  background: #fff;
}
.bl_post .wpcf7-checkbox {
  /* checked */
}
.bl_post .wpcf7-checkbox input[type=checkbox]:checked ~ .wpcf7-list-item-label {
  color: #000;
}
.bl_post .wpcf7-checkbox input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 5px;
  width: 7px;
  height: 14px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
}
.bl_post .wpcf7-checkbox {
  /* focus */
}
.bl_post .wpcf7-checkbox input[type=checkbox]:focus + .wpcf7-list-item-label::before {
  outline: 2px solid #007baf;
  outline-offset: 2px;
}
.bl_post {
  /* ----------------------------------------
     radio（見た目カスタム）
  ---------------------------------------- */
}
.bl_post .wpcf7-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.bl_post .wpcf7-radio label {
  display: inline-block;
  cursor: pointer;
  margin-right: 1em;
}
.bl_post .wpcf7-radio .wpcf7-list-item-label {
  position: relative;
  padding-left: 3em;
}
.bl_post .wpcf7-radio {
  /* 外枠 */
}
.bl_post .wpcf7-radio input[type=radio] + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #000;
}
.bl_post .wpcf7-radio {
  /* 中の丸 */
}
.bl_post .wpcf7-radio input[type=radio] + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  width: 16px;
  height: 16px;
  -webkit-transform: translateY(-50%) scale(1.6);
          transform: translateY(-50%) scale(1.6);
  border-radius: 9999px;
  background: #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.bl_post .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
.bl_post .wpcf7-radio input[type=radio]:focus + .wpcf7-list-item-label::before {
  outline: 2px solid #007baf;
  outline-offset: 2px;
}
.bl_post {
  /* ----------------------------------------
     buttons（CF7確認画面系も含めて統一）
  ---------------------------------------- */
}
.bl_post input.wpcf7-submit,
.bl_post input.btn-check,
.bl_post input.btn-back,
.bl_post input.btn-send,
.bl_post input[type=submit],
.bl_post input[type=button] {
  display: inline-block;
  padding: 6px 20px;
  margin-top: 60px;
  background: #4578b3;
  border: 2px solid #fff;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  text-align: center;
  text-decoration: none !important;
  -webkit-transition: background-color 0.3s, border-color 0.3s, color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s, opacity 0.3s;
}
@media (min-width: 1024px) {
  .bl_post input.wpcf7-submit,
  .bl_post input.btn-check,
  .bl_post input.btn-back,
  .bl_post input.btn-send,
  .bl_post input[type=submit],
  .bl_post input[type=button] {
    padding: 9px 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .bl_post input.wpcf7-submit:hover:hover,
  .bl_post input.btn-check:hover:hover,
  .bl_post input.btn-back:hover:hover,
  .bl_post input.btn-send:hover:hover,
  .bl_post input[type=submit]:hover:hover,
  .bl_post input[type=button]:hover:hover {
    background: #fff;
    border-color: #4578b3;
    color: #4578b3;
    opacity: 1;
  }
}
.bl_post {
  /* spinner（中央揃え用のブロック化） */
}
.bl_post .wpcf7 .wpcf7-spinner {
  display: block;
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  opacity: 1;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_fadeInTrigger,
.js_fadeUpTrigger,
.js_fadeDownTrigger,
.js_fadeLeftTrigger,
.js_fadeRightTrigger {
  opacity: 0;
}

/*==================================================
パタッ
===================================*/
/* 下へ */
.flipDown {
  -webkit-animation-name: flipDownAnime;
          animation-name: flipDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes flipDownAnime {
  from {
    -webkit-transform: perspective(2500px) rotateX(100deg);
            transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(2500px) rotateX(0);
            transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}

@keyframes flipDownAnime {
  from {
    -webkit-transform: perspective(2500px) rotateX(100deg);
            transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(2500px) rotateX(0);
            transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}
/* 左へ */
.flipLeft {
  -webkit-animation-name: flipLeftAnime;
          animation-name: flipLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-perspective-origin: left center;
          perspective-origin: left center;
  opacity: 0;
}

@-webkit-keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* 左上へ */
.flipLeftTop {
  -webkit-animation-name: flipLeftTopAnime;
          animation-name: flipLeftTopAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes flipLeftTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(-15deg);
            transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes flipLeftTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(-15deg);
            transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
/* 右へ */
.flipRight {
  -webkit-animation-name: flipRightAnime;
          animation-name: flipRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-perspective-origin: right center;
          perspective-origin: right center;
  opacity: 0;
}

@-webkit-keyframes flipRightAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipRightAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* 右上へ */
.flipRightTop {
  -webkit-animation-name: flipRightTopAnime;
          animation-name: flipRightTopAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes flipRightTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(25deg);
            transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 1) rotate(0deg);
            transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes flipRightTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(25deg);
            transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 1) rotate(0deg);
            transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_flipDownTrigger,
.js_flipLeftTrigger,
.js_flipLeftTopTrigger,
.js_flipRightTrigger,
.js_flipRightTopTrigger {
  opacity: 0;
}

/*==================================================
くるっ
===================================*/
/* X 軸（縦へ） */
.rotateX {
  -webkit-animation-name: rotateXAnime;
          animation-name: rotateXAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes rotateXAnime {
  from {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateX(-360deg);
            transform: rotateX(-360deg);
    opacity: 1;
  }
}

@keyframes rotateXAnime {
  from {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateX(-360deg);
            transform: rotateX(-360deg);
    opacity: 1;
  }
}
/*　Y軸（横へ） */
.rotateY {
  -webkit-animation-name: rotateYAnime;
          animation-name: rotateYAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes rotateYAnime {
  from {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
    opacity: 1;
  }
}

@keyframes rotateYAnime {
  from {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
    opacity: 1;
  }
}
/* Z 軸（左へ） */
.rotateLeftZ {
  -webkit-animation-name: rotateLeftZAnime;
          animation-name: rotateLeftZAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes rotateLeftZAnime {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
    opacity: 1;
  }
}

@keyframes rotateLeftZAnime {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
    opacity: 1;
  }
}
/*　Z 軸（右へ） */
.rotateRightZ {
  -webkit-animation-name: rotateRightZAnime;
          animation-name: rotateRightZAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes rotateRightZAnime {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
    opacity: 1;
  }
}

@keyframes rotateRightZAnime {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_rotateXTrigger,
.js_rotateYTrigger,
.js_rotateLeftZTrigger,
.js_rotateRightZTrigger {
  opacity: 0;
}

/*==================================================
ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
          animation-name: zoomOutAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_zoomInTrigger,
.js_zoomOutTrigger {
  opacity: 0;
}

/*==================================================
じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0.1;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0.1;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_blurTrigger {
  opacity: 0.1;
}

/*==================================================
にゅーん
===================================*/
/* 滑らかに変形して出現 */
.smooth {
  -webkit-animation-name: smoothAnime;
          animation-name: smoothAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform-origin: left;
          transform-origin: left;
  opacity: 0;
}

@-webkit-keyframes smoothAnime {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}

@keyframes smoothAnime {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_smoothTrigger {
  opacity: 0;
  opacity: 1;
}

/*==================================================
スーッ（枠線が伸びて出現）
===================================*/
/*枠線が伸びて出現*/
.js_lineTrigger {
  position: relative; /* 枠線が書かれる基点*/
  opacity: 0;
}

.js_lineTrigger.lineanime {
  -webkit-animation-name: lineAnimeBase;
          animation-name: lineAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*上下線*/
.js_lineTrigger::before,
.js_lineTrigger::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #333; /* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #333; /* 枠線の色*/
}

/*上線*/
.js_lineTrigger::before {
  top: 0;
  left: 0;
}

.js_lineTrigger.lineanime::before {
  -webkit-animation: lineAnime 0.5s linear 0s forwards;
          animation: lineAnime 0.5s linear 0s forwards; /*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.js_line2::before {
  top: 0;
  right: 0;
}

.js_lineTrigger.lineanime .line2::before {
  -webkit-animation: lineAnime2 0.5s linear 0.5s forwards;
          animation: lineAnime2 0.5s linear 0.5s forwards; /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.js_lineTrigger::after {
  bottom: 0;
  right: 0;
}

.js_lineTrigger.lineanime::after {
  -webkit-animation: lineAnime 0.5s linear 1s forwards;
          animation: lineAnime 0.5s linear 1s forwards; /*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after {
  bottom: 0;
  left: 0;
}

.js_lineTrigger.lineanime .line2::after {
  -webkit-animation: lineAnime2 0.5s linear 1s forwards;
          animation: lineAnime2 0.5s linear 1s forwards; /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@-webkit-keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*枠線内側の要素*/
.js_lineTrigger.lineanime .lineinappear {
  -webkit-animation: lineInnerAnime 0.5s linear 1s forwards;
          animation: lineInnerAnime 0.5s linear 1s forwards; /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0; /*初期値を透過0にする*/
}

@-webkit-keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================
シャッ（背景色が伸びて出現）
===================================*/
/*背景色が伸びて出現（共通）*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*右から*/
.bgRLextend::before {
  -webkit-animation-name: bgRLextendAnime;
          animation-name: bgRLextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*下から*/
.bgDUextend::before {
  -webkit-animation-name: bgDUextendAnime;
          animation-name: bgDUextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
/*上から*/
.bgUDextend::before {
  -webkit-animation-name: bgUDextendAnime;
          animation-name: bgUDextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_bgappearTrigger,
.js_bgUDextendTrigger,
.js_bgDUextendTrigger,
.js_bgRLextendTrigger,
.js_bgLRextendTrigger {
  opacity: 0;
}

/* =================================================
    アニメーション設定
=================================================== */
/* アニメーションの回数を決めるCSS*/
.count2 {
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2; /*この数字を必要回数分に変更*/
}

.countinfinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; /*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.hp_delay_time0 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.hp_delay_time1 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.hp_delay_time2 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.hp_delay_time3 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.hp_delay_time4 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.hp_delay_time5 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.hp_delay_time6 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.hp_delay_time7 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.hp_delay_time8 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.hp_delay_time9 {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

.hp_delay_time10 {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.hp_change_time0 {
  -webkit-animation-duration: 0s;
          animation-duration: 0s;
}

.hp_change_time1 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.hp_change_time2 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.hp_change_time3 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.hp_change_time4 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.hp_change_time5 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.hp_change_time6 {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.hp_change_time7 {
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
}

.hp_change_time8 {
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}

.hp_change_time9 {
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
}

.hp_change_time10 {
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}

/* ======================================
    .mask
====================================== */
.js_mask {
  position: relative;
  display: block;
  overflow: hidden;
}

/* ======================================
  .wp-pagenavi
======================================= */
.wp-pagenavi {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: var(--color-text-default);
  border: none;
  font-family: "Comfortaa", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  text-align: center;
}
.wp-pagenavi .page {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 35px;
  width: 35px;
  height: 35px;
  background-color: transparent;
  color: var(--color-text-default);
}
@media (min-width: 1024px) {
  .wp-pagenavi .page:hover {
    border-radius: 50px;
    background-color: var(--color-bg-brand-main-reverse);
    color: #fff;
    opacity: 1;
  }
}
.wp-pagenavi span.current {
  line-height: 35px;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  color: #fff;
  background-color: var(--color-bg-brand-main-reverse);
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  position: relative;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #4e4844;
  font-weight: 700;
}
.wp-pagenavi .previouspostslink {
  margin-right: 1em;
  color: var(--color-bg-brand-main-reverse);
}
.wp-pagenavi .nextpostslink {
  margin-left: 1em;
  color: var(--color-bg-brand-main-reverse);
}
.wp-pagenavi span.extend {
  background-color: transparent;
  width: auto;
  padding: 0 5px;
  letter-spacing: 2px;
}

/* =================================================
    .記事詳細ページ 
=================================================== */
.bl_post .txt_alignLeft {
  text-align: left !important;
}
.bl_post .txt_alignRight {
  text-align: right !important;
}
.bl_post .txt_alignCenter {
  text-align: center !important;
}
.bl_post .block_alignCenter, .bl_post .block_alignRight, .bl_post .block_alignLeft {
  margin-inline: auto !important;
}
@media (min-width: 768px) {
  .bl_post .block_alignLeft {
    margin-inline: 0 !important;
  }
}
@media (min-width: 768px) {
  .bl_post .block_alignRight {
    margin-inline: 0 0 0 auto !important;
  }
}
.bl_post .el_voiceBtnWrap {
  width: 200px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}
.bl_post .el_voiceBtnWrap button {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #cdcdcd;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  font-weight: 500;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-text-default-reverse);
}
@media (min-width: 1024px) {
  .bl_post .el_voiceBtnWrap button {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
.bl_post .el_postjumpNavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 23px;
}
@media (min-width: 1024px) {
  .bl_post .el_postjumpNavi {
    gap: 12px 30px;
    text-align: center;
  }
}
.bl_post .el_postjumpNavi li a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--color-text-default);
  text-decoration: none !important;
  padding: 0;
  padding-left: 26px;
  line-height: 1.6;
}
.bl_post .el_postjumpNavi li a::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 21px;
  height: 21px;
  border: 0;
  border-radius: 21px;
  background: var(--color-bg-brand-sub);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.bl_post .el_postjumpNavi li a::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 11px;
  height: 11px;
  background: url(../images/common/icon/icon_arrow_linkBtn.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  margin: auto;
}
.bl_post * + .el_postjumpNavi {
  margin-top: 40px;
}
.bl_post h2 {
  position: relative;
  padding: 1rem 1.5625rem;
  background: var(--color-bg-brand-main-reverse);
  border-radius: 13px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-bg-fff);
  text-align: center;
}
.bl_post h2 + * {
  margin-top: 1.875rem;
}
@media (min-width: 1024px) {
  .bl_post h2 + * {
    margin-top: 2.5rem;
  }
}
.bl_post h2 + p {
  margin-top: 1.375rem;
}
@media (min-width: 1024px) {
  .bl_post h2 + p {
    margin-top: 2rem;
  }
}
@media (min-width: 1024px) {
  .bl_post h2 {
    padding: 1.25rem 2.5rem;
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.3333333333;
    letter-spacing: 0.025em;
  }
}
.bl_post * + h2:not(.el_singleTtl) {
  margin-top: 3.75rem;
}
@media (min-width: 1024px) {
  .bl_post * + h2:not(.el_singleTtl) {
    margin-top: 4.375rem;
  }
}
.bl_post p + h2:not(.el_singleTtl) {
  margin-top: 3.25rem;
}
@media (min-width: 1024px) {
  .bl_post p + h2:not(.el_singleTtl) {
    margin-top: 3.875rem;
  }
}
.bl_post h3 {
  position: relative;
  padding: 0.875rem;
  padding-left: 3.125rem;
  background: #fff;
  border-radius: 13px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.2727272727;
  letter-spacing: 0.1em;
  color: var(--color-text-default-reverse);
  font-weight: 700;
}
@media (min-width: 1024px) {
  .bl_post h3 {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.2307692308;
    letter-spacing: 0.025em;
    padding: 0.875rem;
    padding-left: 4rem;
  }
}
.bl_post h3::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 25px;
  height: 23px;
  background: url(../images/common/icon/icon_catfoot.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 13px;
  margin: auto;
}
@media (min-width: 1024px) {
  .bl_post h3::before {
    left: 27px;
  }
}
.bl_post h3 + * {
  margin-top: 1.5625rem;
}
@media (min-width: 1024px) {
  .bl_post h3 + * {
    margin-top: 1.875rem;
  }
}
.bl_post h3 + p {
  margin-top: 1.0625rem;
}
@media (min-width: 1024px) {
  .bl_post h3 + p {
    margin-top: 1.375rem;
  }
}
.bl_post * + h3 {
  margin-top: 3.125rem;
}
@media (min-width: 1024px) {
  .bl_post * + h3 {
    margin-top: 3.75rem;
  }
}
.bl_post p + h3 {
  margin-top: 2.625rem;
}
@media (min-width: 1024px) {
  .bl_post p + h3 {
    margin-top: 3.25rem;
  }
}
.bl_post h4,
.bl_post .partTtl {
  position: relative;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--color-bg-brand-sub-reverse);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 1.4736842105;
  letter-spacing: 0.1em;
  color: var(--color-text-default);
  font-weight: 700;
}
@media (min-width: 1024px) {
  .bl_post h4,
  .bl_post .partTtl {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.3636363636;
    letter-spacing: 0.1em;
  }
}
.bl_post h4 + *,
.bl_post .partTtl + * {
  margin-top: 1.25rem;
}
@media (min-width: 1024px) {
  .bl_post h4 + *,
  .bl_post .partTtl + * {
    margin-top: 1.25rem;
  }
}
.bl_post h4 + p,
.bl_post .partTtl + p {
  margin-top: 0.75rem;
}
@media (min-width: 1024px) {
  .bl_post h4 + p,
  .bl_post .partTtl + p {
    margin-top: 0.75rem;
  }
}
.bl_post * + h4 {
  margin-top: 2.5rem;
}
@media (min-width: 1024px) {
  .bl_post * + h4 {
    margin-top: 3.125rem;
  }
}
.bl_post p + h4 {
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .bl_post p + h4 {
    margin-top: 2.625rem;
  }
}
.bl_post h5 {
  color: var(--color-text-default);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.7647058824;
  letter-spacing: 0.025em;
  color: var(--color-text-default);
  font-weight: 700;
}
@media (min-width: 1024px) {
  .bl_post h5 {
    margin-top: 2rem;
  }
}
.bl_post h5 + * {
  margin-top: 1.25rem;
}
@media (min-width: 1024px) {
  .bl_post h5 + * {
    margin-top: 1.25rem;
  }
}
.bl_post h5 + p {
  margin-top: 0.75rem;
}
@media (min-width: 1024px) {
  .bl_post h5 + p {
    margin-top: 0.75rem;
  }
}
.bl_post * + h5 {
  margin-top: 2.5rem;
}
@media (min-width: 1024px) {
  .bl_post * + h5 {
    margin-top: 2.5rem;
  }
}
.bl_post p + h5 {
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .bl_post p + h5 {
    margin-top: 2rem;
  }
}
.bl_post p:not([class]) {
  text-align: left;
  line-height: 1.75;
}
@media (min-width: 1024px) {
  .bl_post p:not([class]) {
    line-height: 1.75;
  }
}
.bl_post * + p {
  margin-top: 2.5rem;
}
@media (min-width: 1024px) {
  .bl_post * + p {
    margin-top: 2.5rem;
  }
}
.bl_post p + p {
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .bl_post p + p {
    margin-top: 2rem;
  }
}
.bl_post .el_postLead {
  margin-top: 2rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-weight: 700;
}
.bl_post strong {
  font-weight: 700;
}
.bl_post a:not(.el_linkBtn):not(.el_postjumpNavi a):not(.el_tableofcontents a):not(.el_figureFlex a) {
  text-decoration: none;
}
.bl_post a:not(.el_linkBtn):not(.el_postjumpNavi a):not(.el_tableofcontents a):not(.el_figureFlex a):link {
  color: var(--color-link);
  text-decoration: underline;
}
.bl_post a:not(.el_linkBtn):not(.el_postjumpNavi a):not(.el_tableofcontents a):not(.el_figureFlex a):visited {
  color: var(--color-link__visited);
}
@media (hover: hover) and (pointer: fine) {
  .bl_post a:not(.el_linkBtn):not(.el_postjumpNavi a):not(.el_tableofcontents a):not(.el_figureFlex a):hover:hover {
    opacity: 0.7;
  }
}
.bl_post iframe {
  max-width: 100%;
  display: block;
}
.bl_post ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul) {
  padding-left: 8px;
}
@media (min-width: 1024px) {
  .bl_post ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul) {
    padding-left: 19px;
  }
}
.bl_post ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul) li {
  position: relative;
  margin-top: 12px;
  padding-left: 18px;
  color: var(--color-text-default);
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .bl_post ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul) li {
    padding-left: 22px;
    margin-top: 10px;
  }
}
.bl_post ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul) li:first-of-type {
  margin-top: 0;
}
.bl_post ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul) li::before {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--color-listicon);
}
.bl_post * + ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul) {
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .bl_post * + ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul) {
    margin-top: 37px;
  }
}
.bl_post ol:not(.el_flow):not(.el_flowNo) {
  list-style-type: none;
  counter-reset: cnt;
  padding-left: 8px;
}
@media (min-width: 1024px) {
  .bl_post ol:not(.el_flow):not(.el_flowNo) {
    padding-left: 18px;
  }
}
.bl_post ol:not(.el_flow):not(.el_flowNo) li {
  position: relative;
  counter-increment: cnt;
  padding-left: 18px;
  margin-top: 15px;
  color: var(--color-text-default);
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .bl_post ol:not(.el_flow):not(.el_flowNo) li {
    padding-left: 25px;
    margin-top: 10px;
  }
}
.bl_post ol:not(.el_flow):not(.el_flowNo) li:first-of-type {
  margin-top: 0;
}
.bl_post ol:not(.el_flow):not(.el_flowNo) li:before {
  content: counter(cnt);
  display: inline-block;
  margin-left: -22px;
  width: 2em;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
}
.bl_post * + ol:not(.el_flow):not(.el_flowNo) {
  margin-top: 23px;
}
@media (min-width: 1024px) {
  .bl_post * + ol:not(.el_flow):not(.el_flowNo) {
    margin-top: 33px;
  }
}
.bl_post table {
  width: 100%;
  background: var(--color-bg-fff);
  margin-top: 40px;
}
.bl_post :where(table th, table td) :where(p, ul, ol, img, figure):last-child {
  margin-bottom: 0;
}
.bl_post :where(table th, table td) :where(ol.el_flow, ol.el_flowNo, ul.el_postjumpNavi, ul.el_tableofcontents, ul.el_tableofcontents ul):last-child {
  margin-bottom: initial;
}
.bl_post table th,
.bl_post table td {
  padding: 10px 15px;
  border: 1px solid var(--color-border);
  text-align: left;
  overflow-wrap: anywhere;
  word-break: normal;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.bl_post table td {
  vertical-align: top;
}
.bl_post table thead th {
  position: relative;
  background: var(--color-bg-thead);
  font-weight: 700;
  color: var(--color-text-default);
  text-align: center;
  vertical-align: top;
}
.bl_post table tbody th {
  background: var(--color-bg-th);
  color: var(--color-text-default);
  font-weight: 500;
  vertical-align: top;
}
.bl_post table tbody td {
  background: var(--color-bg-fff);
}
.bl_post table.el_table_none {
  margin-top: 20px;
}
.bl_post table.el_table_none,
.bl_post table.el_table_none th,
.bl_post table.el_table_none td {
  border: none !important;
  background: transparent;
}
.bl_post table.el_table_responsive {
  border: 1px solid var(--color-border);
}
.bl_post table.el_table_responsive th,
.bl_post table.el_table_responsive td {
  width: 100%;
  display: block;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .bl_post table.el_table_responsive th,
  .bl_post table.el_table_responsive td {
    width: auto;
    display: table-cell;
    border: 1px solid var(--color-border);
  }
}
.bl_post table.el_table_responsive tr:last-child > td:last-child {
  border-bottom: 0;
}
.bl_post table.el_table_fix {
  table-layout: fixed !important;
}
.bl_post * + .bl_overflowSP {
  margin-top: 26px;
}
.bl_post .bl_overflowSP {
  width: 100%;
  margin-top: 40px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.bl_post .bl_overflowSP table {
  width: auto;
  min-width: 600px !important;
  margin-top: 0;
}
@media (min-width: 768px) {
  .bl_post .bl_overflowSP table {
    width: 100%;
    min-width: auto;
  }
}
.bl_post .bl_overflowSP::before {
  content: "→スクロールできます";
  display: block;
  margin-bottom: 5px;
  line-height: 1;
}
@media (min-width: 768px) {
  .bl_post .bl_overflowSP::before {
    display: none;
  }
}
.bl_post table.el_table_none.el_table_border thead th {
  background: #f76c82;
  color: #fff;
  font-weight: 700;
}
.bl_post table.el_table_none.el_table_border thead th + th::before {
  content: "";
  display: block !important;
  position: absolute;
  top: 27%;
  left: 0;
  width: 1px;
  background: #fff;
  height: 46%;
}
.bl_post table.el_table_none.el_table_border tbody tr:nth-of-type(even) {
  background: #f4f4f4;
}
.bl_post .el_tableofcontents_grid {
  display: grid;
  grid-template-columns: auto;
  gap: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (min-width: 768px) {
  .bl_post .el_tableofcontents_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .bl_post .el_tableofcontents_grid {
    gap: 40px 80px;
  }
}
.bl_post .el_tableofcontents {
  background: var(--color-bg-fff);
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .bl_post .el_tableofcontents {
    width: 100%;
    vertical-align: text-top;
  }
}
.bl_post .el_tableofcontents_ttl {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--color-bg-d1e9f4);
  padding: 22px 14px;
  padding-right: 70px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--color-text-default-reverse);
}
@media (min-width: 1024px) {
  .bl_post .el_tableofcontents_ttl {
    height: auto;
    min-height: 94px;
    padding: 34px 31px;
    padding-right: 105px;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
.bl_post .el_tableofcontents_ttl::after {
  content: "\e90d";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 36px;
  background: var(--color-bg-brand-main);
  line-height: 36px;
  font-size: 12px;
  color: #fff;
  text-align: center;
}
@media (min-width: 1024px) {
  .bl_post .el_tableofcontents_ttl::after {
    width: 45px;
    height: 45px;
    border-radius: 45px;
    right: 30px;
    line-height: 45px;
    font-size: 13px;
  }
}
.bl_post .el_tableofcontents > li > a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100%;
}
.bl_post .el_tableofcontents > li > a::after {
  content: "\e900";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 33px;
  height: 33px;
  border-radius: 33px;
  background: #fff;
  line-height: 33px;
  font-size: 10px;
  color: var(--color-bg-brand-main-reverse);
  text-align: center;
}
@media (min-width: 1024px) {
  .bl_post .el_tableofcontents > li > a::after {
    right: 26px;
  }
}
.bl_post .el_tableofcontents_lv2 {
  padding: 16px 11px 20px;
}
@media (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 {
    padding: 35px 23px 33px;
  }
}
.bl_post .el_tableofcontents_lv2 > li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 > li {
    padding-left: 30px;
    margin-bottom: 20px;
  }
}
.bl_post .el_tableofcontents_lv2 > li:last-of-type {
  margin-bottom: 0;
}
.bl_post .el_tableofcontents_lv2 > li:not(.el_tableofcontents_hasChiled)::before {
  content: "\e90a";
  color: var(--color-bg-brand-sub-reverse);
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  display: block;
  position: absolute;
  top: 6px;
  left: 5px;
  width: 13px;
  height: 13px;
}
@media (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 > li:not(.el_tableofcontents_hasChiled)::before {
    left: 4px;
  }
}
.bl_post .el_tableofcontents_lv2 > li > a {
  position: relative;
  color: var(--color-link);
  text-decoration: underline !important;
}
@media (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 > li > a:hover {
    text-decoration: none !important;
  }
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled {
  display: grid;
  grid-template-areas: "icon list" "icon childlist";
  grid-template-columns: 28px 1fr;
  padding-left: 0;
  margin-bottom: 11px;
}
@media (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled {
    grid-template-columns: 31px 1fr;
    margin-bottom: 19px;
  }
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled .el_btnToggle {
  grid-area: icon;
  display: grid;
  place-content: center;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: var(--color-bg-brand-sub-reverse);
  text-align: center;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled .el_btnToggle {
    -webkit-transform: translate(1px, 3px);
            transform: translate(1px, 3px);
  }
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled .el_btnToggle::after {
  content: "\e908";
  color: var(--color-bg-fff);
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled .el_btnToggle.is_open::after {
  content: "\e907";
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > a {
  grid-area: list;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--color-link);
  text-decoration: underline !important;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > a:hover {
    text-decoration: none !important;
  }
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > ul {
  grid-area: childlist;
  display: none;
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > ul li {
  position: relative;
  padding-left: 14px;
  margin-top: 12px;
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > ul li::before {
  content: "-";
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 0;
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > ul li > a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--color-link);
  text-decoration: underline !important;
}
.bl_post .el_linkBtn {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 70px 16px 38px;
  margin-right: 20px;
  margin-bottom: 30px;
  background: #fff;
  border: 1px solid var(--color-bg-brand-main-reverse);
  border-radius: 7px;
  text-decoration: none;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.bl_post .el_linkBtn:last-of-type {
  margin-right: 0;
}
@media (min-width: 1024px) {
  .bl_post .el_linkBtn {
    padding: 16px 116px 16px 20px;
  }
}
.bl_post .el_linkBtn span:not(.el_btnIcon) {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.05em;
  color: var(--color-bg-brand-main);
  border-radius: 7px;
  text-align: left !important;
  font-weight: 500;
}
.bl_post .el_linkBtn:focus-visible {
  outline: 2px solid #007baf;
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .bl_post .el_linkBtn:hover {
    background: var(--color-bg-brand-main);
    opacity: 1;
  }
  .bl_post .el_linkBtn:hover::after {
    color: #fff;
  }
  .bl_post .el_linkBtn:hover span:not(.el_btnIcon) {
    color: #fff;
  }
}
.bl_post .el_linkBtn::after {
  content: "\e90d";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 13px;
  color: var(--color-bg-brand-main);
  text-align: center;
}
.bl_post .bl_accordion,
.bl_post .bl_qanda {
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  padding: 1rem 0.9375rem 1.25rem;
}
@media (min-width: 1024px) {
  .bl_post .bl_accordion,
  .bl_post .bl_qanda {
    padding: 1.75rem 1.875rem;
  }
}
.bl_post .bl_accordion_ttl,
.bl_post .bl_qanda_ttl {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  padding-right: 25px;
}
.bl_post .bl_accordion_ttl > p:last-child,
.bl_post .bl_accordion_ttl > ul:last-child,
.bl_post .bl_accordion_ttl > ol:last-child,
.bl_post .bl_accordion_ttl > dl:last-child,
.bl_post .bl_qanda_ttl > p:last-child,
.bl_post .bl_qanda_ttl > ul:last-child,
.bl_post .bl_qanda_ttl > ol:last-child,
.bl_post .bl_qanda_ttl > dl:last-child {
  margin-bottom: 0;
}
.bl_post .bl_accordion_ttl p,
.bl_post .bl_qanda_ttl p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
  color: var(--color-text-default-reverse);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .bl_post .bl_accordion_ttl p,
  .bl_post .bl_qanda_ttl p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
.bl_post .bl_accordion_ttl::before, .bl_post .bl_accordion_ttl::after,
.bl_post .bl_qanda_ttl::before,
.bl_post .bl_qanda_ttl::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--color-text-default-reverse);
}
@media (min-width: 1024px) {
  .bl_post .bl_accordion_ttl::before, .bl_post .bl_accordion_ttl::after,
  .bl_post .bl_qanda_ttl::before,
  .bl_post .bl_qanda_ttl::after {
    right: 0;
  }
}
.bl_post .bl_accordion_ttl::after,
.bl_post .bl_qanda_ttl::after {
  width: 15px;
  height: 3px;
}
.bl_post .bl_accordion_ttl::before,
.bl_post .bl_qanda_ttl::before {
  width: 3px;
  height: 15px;
  right: calc(0px + 6px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  opacity: 1;
}
@media (min-width: 1024px) {
  .bl_post .bl_accordion_ttl::before,
  .bl_post .bl_qanda_ttl::before {
    right: calc(0px + 6px);
  }
}
.bl_post .bl_accordion_ttl.is_open::before,
.bl_post .bl_qanda_ttl.is_open::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}
.bl_post .bl_accordion .bl_accordion_ttl.is_open + .bl_accordion_body,
.bl_post .bl_accordion .bl_qanda_ttl.is_open + .bl_qanda_body,
.bl_post .bl_qanda .bl_accordion_ttl.is_open + .bl_accordion_body,
.bl_post .bl_qanda .bl_qanda_ttl.is_open + .bl_qanda_body {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.bl_post .bl_accordion_body,
.bl_post .bl_qanda_body {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  pointer-events: none;
  position: relative;
  padding-top: 13px;
  margin-top: 14px;
  border-top: 1px solid var(--color-border);
  line-height: 1.6;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media (min-width: 1024px) {
  .bl_post .bl_accordion_body,
  .bl_post .bl_qanda_body {
    padding-top: 24px;
    margin-top: 25px;
  }
}
.bl_post .bl_accordion_body > p:last-child,
.bl_post .bl_accordion_body > ul:last-child,
.bl_post .bl_accordion_body > ol:last-child,
.bl_post .bl_accordion_body > dl:last-child,
.bl_post .bl_qanda_body > p:last-child,
.bl_post .bl_qanda_body > ul:last-child,
.bl_post .bl_qanda_body > ol:last-child,
.bl_post .bl_qanda_body > dl:last-child {
  margin-bottom: 0;
}
* .bl_post .bl_accordion,
* .bl_post .bl_qanda {
  margin-top: 0.9375rem;
}
.bl_post .bl_qanda_ttl {
  padding-left: 30px;
}
@media (min-width: 1024px) {
  .bl_post .bl_qanda_ttl {
    padding-left: 52px;
  }
}
.bl_post .bl_qanda_ttl::marker {
  content: "";
}
.bl_post .bl_qanda_ttl p::before {
  position: absolute;
  display: block;
  top: 1px;
  left: 0;
  content: "Q";
  font-family: "Comfortaa", sans-serif;
  color: var(--color-bg-brand-sub);
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0em;
}
@media (min-width: 1024px) {
  .bl_post .bl_qanda_ttl p::before {
    top: 1px;
    left: 0px;
  }
}
.bl_post .bl_qanda_body {
  border-top: none;
  padding-top: 10px;
  margin-top: 0;
}
.bl_post .bl_qanda_body .bl_qanda_bodyInner {
  width: 100%;
  height: 100%;
  padding: 0;
}
@media (min-width: 1024px) {
  .bl_post .bl_qanda_body .bl_qanda_bodyInner {
    padding: 9px 51px 0px 51px;
  }
}
.bl_post .el_flow {
  list-style: none;
  counter-reset: num;
  margin-top: 20px;
}
.bl_post .el_flow li {
  position: relative;
  padding: 12px 16px;
  background: var(--color-bg-fff);
}
@media (min-width: 1024px) {
  .bl_post .el_flow li {
    padding: 26px 27px;
  }
}
.bl_post .el_flow li + li {
  margin-top: 33px;
}
.bl_post .el_flow li:last-of-type::after {
  display: none;
}
.bl_post .el_flow li::after {
  position: absolute;
  top: calc(100% + 8.5px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "\e90e";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-bg-brand-sub-reverse);
  display: block;
  font-size: 12px;
}
.bl_post .el_flow li > p:first-of-type {
  display: inline-block;
  margin-bottom: 9px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .bl_post .el_flow li > p:first-of-type {
    margin-bottom: 8px;
    font-size: 23px;
    font-size: 1.4375rem;
    line-height: 1.3913043478;
  }
}
@media (min-width: 1024px) {
  .bl_post .el_flow li .el_flow_cont {
    padding-top: 14px;
  }
}
.bl_post .el_flow li .el_flow_cont p {
  margin-bottom: 1em;
  line-height: 1.6;
}
.bl_post .el_flow li .el_flow_cont *:last-of-type {
  margin-bottom: 0;
}
.bl_post .el_flow_num li > p:first-of-type {
  position: relative;
  padding-left: 70px;
}
@media (min-width: 768px) {
  .bl_post .el_flow_num li > p:first-of-type {
    padding-left: 97px;
  }
}
.bl_post .el_flow_num li > p:first-of-type::before {
  content: counter(num, decimal-leading-zero);
  counter-increment: num;
  display: block;
  width: 54px;
  margin-bottom: 9px;
  border-right: 1px solid #d3d1d0;
  line-height: 1;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  color: var(--color-bg-brand-sub-reverse);
  line-height: 1;
  position: absolute;
  top: 5px;
  left: 0px;
  display: inline-block;
  padding-right: 1px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .bl_post .el_flow_num li > p:first-of-type::before {
    width: 68px;
    margin-bottom: 0;
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media (min-width: 768px) {
  .bl_post .el_flow_num li .el_flow_cont {
    padding-top: 10px;
    padding-left: 0;
  }
}
.bl_post img {
  display: block;
  max-width: 100%;
  height: auto;
  display: block;
}
.bl_post figure {
  margin: 0;
  padding: 0;
}
.bl_post figure,
.bl_post .el_figure {
  display: table;
  max-width: 100%;
}
.bl_post figure figcaption,
.bl_post figure .el_caption,
.bl_post .el_figure figcaption,
.bl_post .el_figure .el_caption {
  display: table-caption;
  caption-side: bottom;
  margin-top: 8px;
  line-height: 1.8666666667;
}
.bl_post * + figure,
.bl_post * + .el_figure_fluid {
  margin-top: 20px;
}
.bl_post .el_flexImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .bl_post .el_flexImg {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.bl_post .el_flexImg > .el_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .bl_post .el_flexImg > .el_img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.bl_post .el_flexImg > .el_img img {
  width: 100%;
}
.bl_post .el_flexImg > .el_img figcaption {
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .bl_post .el_flexImg > .el_text {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    min-width: 0;
  }
}
.bl_post .el_flexImg.el_flexImg__rightImg {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .bl_post .el_flexImg.el_flexImg__rightImg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.bl_post * + .el_flexImg {
  margin-top: 50px;
}
.bl_post .el_figure_fluid {
  max-width: none;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
@media (min-width: 768px) {
  .bl_post .el_figure_fluid {
    max-width: 100%;
    width: 100%;
    margin-inline: auto;
  }
}
.bl_post .el_figure_fluid img {
  border-radius: 0;
}
.bl_post .el_figure_fluid figcaption {
  width: 90%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .bl_post .el_figure_fluid figcaption {
    width: 100%;
  }
}
.bl_post .alignleft {
  margin: 0 auto 15px;
}
@media (min-width: 768px) {
  .bl_post .alignleft {
    float: left;
    margin-right: 2em;
    margin-bottom: 15px;
  }
}
.bl_post .alignright {
  margin: 0 auto 15px;
}
@media (min-width: 768px) {
  .bl_post .alignright {
    float: right;
    margin-left: 2em;
    margin-bottom: 15px;
  }
}
.bl_post .aligncenter {
  margin-bottom: 15px;
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.bl_post .el_figureFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
}
.bl_post .el_figureFlex > div a {
  color: var(--color-text-default);
}
.bl_post .el_figureFlex__half {
  gap: 15px;
}
@media (min-width: 768px) {
  .bl_post .el_figureFlex__half {
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .bl_post .el_figureFlex__half {
    gap: 80px;
  }
}
.bl_post .el_figureFlex__half > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 15px * (2 - 1)) / 2);
          flex: 0 0 calc((100% - 15px * (2 - 1)) / 2);
}
@media (min-width: 768px) {
  .bl_post .el_figureFlex__half > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px * (2 - 1)) / 2);
            flex: 0 0 calc((100% - 40px * (2 - 1)) / 2);
  }
}
@media (min-width: 1024px) {
  .bl_post .el_figureFlex__half > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 80px * (2 - 1)) / 2);
            flex: 0 0 calc((100% - 80px * (2 - 1)) / 2);
  }
}
.bl_post .el_figureFlex__onethird {
  gap: 15px;
}
@media (min-width: 768px) {
  .bl_post .el_figureFlex__onethird {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .bl_post .el_figureFlex__onethird {
    gap: 45px;
  }
}
.bl_post .el_figureFlex__onethird > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 15px * (2 - 1)) / 2);
          flex: 0 0 calc((100% - 15px * (2 - 1)) / 2);
}
@media (min-width: 768px) {
  .bl_post .el_figureFlex__onethird > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * (3 - 1)) / 3);
            flex: 0 0 calc((100% - 20px * (3 - 1)) / 3);
  }
}
@media (min-width: 1024px) {
  .bl_post .el_figureFlex__onethird > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 45px * (3 - 1)) / 3);
            flex: 0 0 calc((100% - 45px * (3 - 1)) / 3);
  }
}
.bl_post .el_figureFlex__quarter {
  gap: 15px;
}
@media (min-width: 768px) {
  .bl_post .el_figureFlex__quarter {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .bl_post .el_figureFlex__quarter {
    gap: 36px;
  }
}
.bl_post .el_figureFlex__quarter > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 15px * (2 - 1)) / 2);
          flex: 0 0 calc((100% - 15px * (2 - 1)) / 2);
}
@media (min-width: 768px) {
  .bl_post .el_figureFlex__quarter > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px * (4 - 1)) / 4);
            flex: 0 0 calc((100% - 20px * (4 - 1)) / 4);
  }
}
@media (min-width: 1024px) {
  .bl_post .el_figureFlex__quarter > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 36px * (4 - 1)) / 4);
            flex: 0 0 calc((100% - 36px * (4 - 1)) / 4);
  }
}
@media (min-width: 768px) {
  .bl_post .el_figureFlex__halfTitle {
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .bl_post .el_figureFlex__halfTitle {
    gap: 80px;
  }
}
.bl_post .el_figureFlex__halfTitle > div {
  width: 100%;
}
@media (min-width: 768px) {
  .bl_post .el_figureFlex__halfTitle > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px * (2 - 1)) / 2);
            flex: 0 0 calc((100% - 40px * (2 - 1)) / 2);
  }
}
@media (min-width: 1024px) {
  .bl_post .el_figureFlex__halfTitle > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 80px * (2 - 1)) / 2);
            flex: 0 0 calc((100% - 80px * (2 - 1)) / 2);
  }
}
.bl_post .el_figureFlex__halfTitle > div + div {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .bl_post .el_figureFlex__halfTitle > div + div {
    margin-top: 0;
  }
}
.bl_post .el_figureFlex__halfTitle + * {
  margin-top: 40px;
}
.bl_post * + .el_figureFlex {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .bl_post * + .el_figureFlex {
    margin-top: 30px;
  }
}

.icon_pdf::after,
.icon_excel::after,
.icon_word::after,
.icon_ppt::after,
.icon_blank::after,
.icon_new::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1em;
  margin: 0 5px 2px;
  margin-right: 5px;
  vertical-align: middle;
}

.icon_pdf::after {
  background: url(../images/common/icon/icon_pdf.svg) no-repeat center center/contain;
}

.icon_excel::after {
  background: url(../images/common/icon/icon_excel.svg) no-repeat center center/contain;
}

.icon_word::after {
  background: url(../images/common/icon/icon_word.svg) no-repeat center center/contain;
}

.icon_ppt::after {
  height: 15px;
  background: url(../images/common/icon/icon_ppt.svg) no-repeat center center/contain;
}

.icon_blank::after {
  width: 15px;
  background: url(../images/common/icon/icon_blank.svg) no-repeat center center/contain;
}

.icon_new:not(.icon_pdf)::after,
.icon_pdf.icon_new::after {
  content: "NEW";
  display: inline-block;
  width: auto;
  height: 1em;
  vertical-align: middle;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  color: var(--color-text-new);
  line-height: 1;
  white-space: nowrap;
}

.icon_new:not(.icon_pdf)::after {
  margin: 0 0 5px;
}

.icon_pdf.icon_new::after {
  display: inline-block;
  width: 30px;
  height: 15px;
  padding-left: 35px;
  margin: 0 0px 2px;
  background: url(../images/common/icon/icon_pdf.svg) no-repeat left center/contain;
}

/* =================================================
    .ly_pageContent
=================================================== */
.ly_pageContent {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
@media (min-width: 1024px) {
  .ly_pageContent {
    padding-top: 3.75rem;
    padding-bottom: 9.375rem;
  }
}

/* =================================================
    .bl_pageheader
=================================================== */
.page_editor .bl_pageheader {
  background: var(--color-bg-d1e9f4);
}
.page_editor .bl_pageheader h1 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.625rem;
  color: var(--color-text-default-reverse);
  text-align: center;
}
@media (min-width: 768px) {
  .page_editor .bl_pageheader h1 {
    font-size: 2.25rem;
  }
}

.bl_pageheader {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  height: auto;
  background: var(--color-bg-d1e9f4);
  aspect-ratio: 375/150;
  overflow: hidden;
}
@media (min-width: 768px) {
  .bl_pageheader {
    aspect-ratio: auto;
    height: 227px;
    gap: 10px;
    padding-top: 30px;
  }
}
.bl_pageheader h1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--color-text-default-reverse);
  font-weight: 700;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.2307692308;
  letter-spacing: 0.025em;
  text-align: center;
}
@media (min-width: 768px) {
  .bl_pageheader h1 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.5;
    letter-spacing: 0.025em;
  }
}

/* =================================================
    カテゴリー
=================================================== */
.el_cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .el_cat {
    padding: 3px 18px;
  }
}
.el_cat.is_event {
  background: #fff482;
  color: var(--color-text-default);
  border: 1px solid var(--color-transparent-white);
}
.el_cat.is_notice {
  background: #fddae0;
  color: var(--color-text-default-reverse);
}
.el_cat.is_other {
  background: var(--color-bg-d1e9f4);
  color: var(--color-text-default-reverse);
}

html.is-theme-black .el_cat.is_event,
html.is-theme-blue .el_cat.is_event {
  background: var(--color-bg-brand-main);
}
html.is-theme-black .el_cat.is_notice,
html.is-theme-blue .el_cat.is_notice {
  background: #fff;
}
html.is-theme-black .el_cat.is_other,
html.is-theme-blue .el_cat.is_other {
  background: var(--color-bg-d1e9f4);
}

/* =================================================
    TOP COMMON
=================================================== */
.el_btn_toArchive {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-weight: 700;
  color: var(--color-text-default);
}
.el_btn_toArchive:visited {
  color: var(--color-text-default);
}
.el_btn_toArchive .el_btnIcon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  background: var(--color-bg-brand-main);
  border-radius: 45px;
  border: 1px solid var(--color-transparent-white);
}
.el_btn_toArchive .el_btnIcon img {
  width: 10px;
  height: 10px;
}

.btn_toArchiveBook {
  position: relative;
  min-width: 107px;
  min-height: 45px;
  border-radius: 45px;
  overflow: hidden;
  border: 1px solid var(--color-bg-brand-main);
  display: grid;
  place-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: var(--color-transparent-white);
  padding: 9px 16px;
  padding-right: 40px;
  color: var(--color-bg-brand-main);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.025em;
  font-weight: 500;
}
.btn_toArchiveBook:link {
  color: var(--color-bg-brand-main);
}
.btn_toArchiveBook:visited {
  color: var(--color-bg-brand-main);
}
.btn_toArchiveBook::after {
  content: "\e90d";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
  pointer-events: none;
}

/* =================================================
    #sec_fv
=================================================== */
html.is-theme-black #sec_fv,
html.is-theme-blue #sec_fv {
  background: none;
}

#sec_fv {
  width: 100%;
  height: auto;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  background: url(../images/top/bkg_fv_sp.jpg) no-repeat top center/contain;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  #sec_fv {
    padding-top: 3.625rem;
    padding-bottom: 4.375rem;
    background: url(../images/top/bkg_fv.jpg) no-repeat top center/contain;
  }
}
@media (min-width: 1024px) {
  #sec_fv .ly_sec_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 32px;
  }
}
#sec_fv .bl_fv_img {
  max-width: 815px;
  position: relative;
  padding-bottom: 163px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  #sec_fv .bl_fv_img {
    padding-bottom: 0;
    margin: 0;
  }
}
#sec_fv .bl_fv_img figure {
  width: 100%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #sec_fv .bl_fv_img figure {
    border-radius: 60px;
  }
}
#sec_fv .bl_fv_img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sec_fv .bl_fv_img::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 48px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  aspect-ratio: 140/159;
  width: 100%;
  max-width: 140px;
  height: auto;
  background: url(../images/top/illust_book.png) no-repeat center center/contain;
  z-index: 1;
}
@media (min-width: 1024px) {
  #sec_fv .bl_fv_img::after {
    max-width: 220px;
    bottom: -30px;
    right: -225px;
  }
}
#sec_fv .bl_fv_search {
  width: 100%;
  max-width: 350px;
  background: var(--color-bg-fff);
  border-radius: 40px;
  padding: 26px 15px;
  margin-top: 15px;
  margin-inline: auto;
  font-family: "Zen Maru Gothic", sans-serif;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.35);
}
@media (min-width: 1024px) {
  #sec_fv .bl_fv_search {
    margin: 0;
    padding: 26px;
  }
}
#sec_fv .bl_fv_search h2 {
  position: relative;
  font-size: 29px;
  font-size: 1.8125rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: var(--color-text-default);
  text-align: center;
}
#sec_fv .bl_fv_search h2::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 48px;
  height: 64px;
  background: url(../images/top/illust_search.svg) no-repeat center center/contain;
  position: absolute;
  bottom: 0;
  left: -10px;
  margin: auto;
}
@media (min-width: 1024px) {
  #sec_fv .bl_fv_search h2::before {
    left: -5px;
  }
}
#sec_fv .bl_fv_search .el_lead {
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  color: var(--color-text-default);
}
#sec_fv .bl_fv_search .el_search {
  width: 100%;
  max-width: 274px;
  margin: 10px auto 0;
}
@media (min-width: 1024px) {
  #sec_fv .bl_fv_search .el_search {
    max-width: 316px;
  }
}
#sec_fv .bl_fv_search .bl_searchBox {
  width: min(100%, 560px);
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border: 2px solid var(--color-text-default);
  border-radius: 999px;
  overflow: hidden;
  background: var(--color-bg-fff);
}
#sec_fv .bl_fv_search .bl_searchBox_input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 20px 0 26px;
  font-size: 16px;
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
#sec_fv .bl_fv_search .bl_searchBox_btn {
  width: 61px;
  border: 0;
  outline: 0;
  background: var(--color-text-default-reverse);
  cursor: pointer;
  display: grid;
  place-items: center;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
#sec_fv .bl_fv_search .bl_searchBox_btn:hover {
  opacity: 0.8;
}
#sec_fv .bl_fv_search .bl_searchBox_btn img {
  width: 24px;
  height: 24px;
}
#sec_fv .bl_fv_search .el_btnWrap {
  margin-top: 25px;
  text-align: center;
}
#sec_fv .bl_fv_search .btn_searchDetail {
  display: inline-block;
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid var(--color-bg-brand-main-reverse);
  background: var(--color-bg-brand-main);
  border-radius: 999px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--color-bg-fff-yellow);
}
#sec_fv .bl_banner {
  margin-top: 21px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}
#sec_fv .bl_banner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
#sec_fv .bl_banner ul li {
  width: 100%;
  max-width: 270px;
}

/* ======================================
  #sec_free
====================================== */
#sec_free {
  padding-bottom: 2.625rem;
}
@media (min-width: 1024px) {
  #sec_free {
    padding-bottom: 2.5rem;
  }
}

/* ======================================
  #sec_important
====================================== */
#sec_important .bl_important {
  background: #fff;
  border: 1px solid var(--color-important);
  border-radius: 10px;
  padding: 30px 23px;
}
@media (min-width: 1024px) {
  #sec_important .bl_important {
    padding: 12px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 38px;
  }
}
#sec_important h2 {
  display: grid;
  place-items: center;
  width: 12.5rem;
  height: 2.1875rem;
  margin: 0 auto;
  background: var(--color-important);
  border-radius: 2.1875rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: var(--color-bg-fff-blue);
  text-align: center;
  font-size: 1.0625rem;
}
@media (min-width: 1024px) {
  #sec_important h2 {
    margin: 0;
  }
}
#sec_important ul {
  margin-top: 1.625rem;
}
@media (min-width: 1024px) {
  #sec_important ul {
    margin: 0;
  }
}
#sec_important ul li + li {
  margin-top: 1.625rem;
}
@media (min-width: 1024px) {
  #sec_important ul li + li {
    margin-top: 0;
  }
}
#sec_important ul li a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: var(--color-text-default-reverse);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.025em;
}
@media (min-width: 1024px) {
  #sec_important ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowarp;
        flex-wrap: nowarp;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
  }
}
#sec_important ul li a time {
  display: block;
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0em;
  color: var(--color-text-default-reverse);
}
@media (min-width: 1024px) {
  #sec_important ul li a time {
    font-size: 16px;
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0em;
  }
}

/* ======================================
  #sec_topNews 
====================================== */
#sec_topNews {
  padding-top: 3.125rem;
}
@media (min-width: 1024px) {
  #sec_topNews .ly_flex--pc {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
  }
}
#sec_topNews .bl_topNews {
  display: grid;
  grid-template-areas: "ttl btn" "list list";
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topNews {
    grid-template-areas: "ttl" "list" "btn";
  }
}
#sec_topNews .bl_topNews .ly_grid_ttl {
  grid-area: ttl;
}
#sec_topNews .bl_topNews .ly_grid_list {
  grid-area: list;
}
#sec_topNews .bl_topNews .ly_grid_btn {
  grid-area: btn;
  justify-self: end;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topNews .ly_grid_btn {
    padding-top: 18px;
    justify-self: start;
  }
}
#sec_topNews .bl_topNews h2 {
  display: grid;
  gap: 3px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: var(--color-text-default);
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topNews h2 {
    grid-template-columns: auto 1fr;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 25px;
  }
}
#sec_topNews .bl_topNews h2 span {
  display: block;
}
#sec_topNews .bl_topNews h2 .el_en {
  font-family: "Comfortaa", sans-serif;
  font-size: 2.3125rem;
  font-weight: 400;
}
#sec_topNews .bl_infoList {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_infoList {
    margin-top: 23px;
  }
}
#sec_topNews .bl_infoList .bl_infoList_item + .bl_infoList_item {
  margin-top: 18px;
}
#sec_topNews .bl_infoList .bl_infoList_link {
  display: grid;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  color: var(--color-text-default);
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "date cat" "ttl  ttl";
  gap: 3px 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  #sec_topNews .bl_infoList .bl_infoList_link {
    grid-template-columns: 5.3em 6.7em 1fr;
    grid-template-rows: auto;
    grid-template-areas: "date cat ttl";
    gap: 0 14px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
#sec_topNews .bl_infoList {
  /* Element: Date */
}
#sec_topNews .bl_infoList .bl_infoList_date {
  grid-area: date;
  font-family: "Comfortaa", sans-serif;
  font-size: 1rem;
  letter-spacing: 0em;
}
#sec_topNews .bl_infoList {
  /* Element: Title */
}
#sec_topNews .bl_infoList .bl_infoList_ttl {
  grid-area: ttl;
  line-height: 1.5;
}
#sec_topNews .bl_topCalendar {
  display: grid;
  place-items: center;
  max-width: 426px;
  margin: 45px auto 0;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar {
    margin: 0;
  }
}
#sec_topNews .bl_topCalendar .bl_status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background: var(--color-bg-4e4844);
  padding: 17px 20px;
  border-radius: 13px;
  color: #fff;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .bl_status {
    padding: 19px 31px 23px 27px;
  }
}
#sec_topNews .bl_topCalendar .bl_status .el_day {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
#sec_topNews .bl_topCalendar .bl_status .el_day div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-right: 1px solid #fff;
  gap: 3px;
  white-space: nowrap;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .bl_status .el_day div {
    font-size: 35px;
    font-size: 2.1875rem;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}
#sec_topNews .bl_topCalendar .bl_status .el_day div .el_today {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 1.1875rem;
  line-height: 1;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .bl_status .el_day div .el_today {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.025em;
  }
}
#sec_topNews .bl_topCalendar .bl_status .el_day div .el_today span {
  font-family: "Comfortaa", sans-serif;
}
#sec_topNews .bl_topCalendar .bl_status .el_status {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: center;
  padding-left: 18px;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .bl_status .el_status {
    padding-left: 40px;
  }
}
#sec_topNews .bl_topCalendar .bl_status .el_status .el_status_open,
#sec_topNews .bl_topCalendar .bl_status .el_status .el_status_close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 500;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .bl_status .el_status .el_status_open,
  #sec_topNews .bl_topCalendar .bl_status .el_status .el_status_close {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1;
    letter-spacing: 0.15em;
  }
}
#sec_topNews .bl_topCalendar .bl_status .el_status .el_status_open img,
#sec_topNews .bl_topCalendar .bl_status .el_status .el_status_close img {
  width: 39px;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .bl_status .el_status .el_status_open img,
  #sec_topNews .bl_topCalendar .bl_status .el_status .el_status_close img {
    width: 49px;
  }
}
#sec_topNews .bl_topCalendar .bl_status .el_status .el_status_open,
#sec_topNews .bl_topCalendar .bl_status .el_status .el_status_close {
  display: none;
}
#sec_topNews .bl_topCalendar .bl_status .el_status:not(.is_close) .el_status_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#sec_topNews .bl_topCalendar .bl_status .el_status.is_close .el_status_close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#sec_topNews .bl_topCalendar .bl_topCalendar_card {
  width: min(760px, 100%);
  background: #fff;
  margin-top: 10px;
  border-radius: 15px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .bl_topCalendar_card {
    margin-top: 15px;
  }
}
#sec_topNews .bl_topCalendar .bl_topCalendar_head {
  padding: 16px 16px 8px;
  background: var(--color-bg-f6d8d3);
  text-align: center;
  border: 1px solid var(--color-transparent-white);
  border-radius: 15px 15px 0 0;
}
#sec_topNews .bl_topCalendar .bl_topCalendar_ttl {
  margin: 0;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .bl_topCalendar_ttl {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
#sec_topNews .bl_topCalendar .bl_topCalendar_hours {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .bl_topCalendar_hours {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 2;
    letter-spacing: 0.025em;
  }
}
#sec_topNews .bl_topCalendar .bl_topCalendar_body {
  padding: 14px 20px 14px;
  background: #fff;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .bl_topCalendar_body {
    padding: 22px 30px 22px;
  }
}
#sec_topNews .bl_topCalendar .el_calendarHeader {
  max-width: 225px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .el_calendarHeader {
    max-width: 292px;
  }
}
#sec_topNews .bl_topCalendar .el_calendarHeader .el_calendarHeader_inner {
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
#sec_topNews .bl_topCalendar .el_btn__nav {
  width: 20px;
  height: 20px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: var(--color-bg-c18b85);
  display: grid;
  place-items: center;
  cursor: pointer;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .el_btn__nav {
    width: 25px;
    height: 25px;
  }
}
#sec_topNews .bl_topCalendar .el_btn__nav img {
  display: block;
  width: 5px;
  height: auto;
}
#sec_topNews .bl_topCalendar .el_btn__nav:hover {
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}
#sec_topNews .bl_topCalendar .el_btn__nav:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
#sec_topNews .bl_topCalendar .el_month {
  text-align: center;
}
#sec_topNews .bl_topCalendar .el_month_year,
#sec_topNews .bl_topCalendar .el_month_month {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-text-default-reverse);
  text-align: center;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .el_month_year,
  #sec_topNews .bl_topCalendar .el_month_month {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
#sec_topNews .bl_topCalendar .bl_topCalendar_tableWrap {
  margin-top: 8px;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .bl_topCalendar_tableWrap {
    margin-top: 17px;
  }
}
#sec_topNews .bl_topCalendar .el_calendarTable {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
#sec_topNews .bl_topCalendar .el_calendarTable th,
#sec_topNews .bl_topCalendar .el_calendarTable td {
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Comfortaa", sans-serif;
  font-weight: 400;
  text-align: center;
  color: var(--color-text-default-reverse);
  padding: 5px 0;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .el_calendarTable th,
  #sec_topNews .bl_topCalendar .el_calendarTable td {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: 0.05em;
    padding: 6px 0;
  }
}
#sec_topNews .bl_topCalendar .el_calendarTable thead th {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
#sec_topNews .bl_topCalendar .el_calendarTable tbody td {
  font-family: "Comfortaa", sans-serif;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .el_calendarTable tbody td {
    font-size: 23px;
    font-size: 1.4375rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
#sec_topNews .bl_topCalendar .el_calendarTable {
  /* 日付の中身を「丸」にするため span を使う */
}
#sec_topNews .bl_topCalendar .el_calendarTable .el_day {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 999px;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  #sec_topNews .bl_topCalendar .el_calendarTable .el_day {
    width: 40px;
    height: 40px;
  }
}
#sec_topNews .bl_topCalendar .el_calendarTable {
  /* 休館日 */
}
#sec_topNews .bl_topCalendar .el_calendarTable .el_closeDay {
  background: var(--color-bg-c18b85);
  color: #fff;
}
#sec_topNews .bl_topCalendar .el_calendarTable {
  /* 前月/次月 */
}
#sec_topNews .bl_topCalendar .el_calendarTable .el_not {
  color: rgba(90, 81, 76, 0.35);
}
#sec_topNews .bl_topCalendar .el_calendarTable .el_not .el_day {
  color: inherit;
}
#sec_topNews .bl_topCalendar .el_calendarTable .is_sun {
  color: var(--color-bg-e25b7c) !important;
}
#sec_topNews .bl_topCalendar .el_calendarTable .is_sun .el_day {
  color: inherit;
}
#sec_topNews .bl_topCalendar .el_calendarTable .is_sun .el_day.el_closeDay {
  color: var(--color-bg-f6cdd6) !important;
}
#sec_topNews .bl_topCalendar .el_calendarTable .is_sat {
  color: var(--color-bg-3b73c9) !important;
}
#sec_topNews .bl_topCalendar .el_calendarTable .is_sat .el_day {
  color: inherit;
}
#sec_topNews .bl_topCalendar .el_calendarTable .is_sat .el_day.el_closeDay {
  color: var(--color-bg-dae4f0) !important;
}
#sec_topNews .bl_topCalendar .el_noteClose {
  padding-right: 1em;
  margin: 0;
  text-align: right;
  font-size: 0.9375rem;
  line-height: 1;
  color: #4e4844;
}
#sec_topNews .bl_topCalendar .el_noteDot {
  display: inline-block;
  margin: 0 6px;
  color: #7b7572;
}

/* ======================================
  #sec_topPickup
====================================== */
#sec_topPickup {
  position: relative;
  margin-top: 3.125rem;
  padding-top: 6.5625rem;
  padding-bottom: 1.5625rem;
  z-index: 0;
}
@media (min-width: 1024px) {
  #sec_topPickup {
    margin-top: 6.625rem;
    padding-top: 3.875rem;
    padding-bottom: 3.4375rem;
  }
  #sec_topPickup::before {
    content: "";
    display: block;
    width: 113px;
    height: 213px;
    background: url(../images/top/illust_pickup.png) no-repeat center center/contain;
    position: absolute;
    bottom: 0;
    margin-left: 5.3333333333%;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  #sec_topPickup::before {
    margin-left: 10.4210526316%;
    bottom: 28px;
  }
}
#sec_topPickup::after {
  content: "";
  display: block;
  width: 94.6666666667%;
  height: 100%;
  background: var(--color-bg-e1f0f5);
  margin-left: 5.3333333333%;
  margin-right: calc(50% - 50vw);
  border-radius: 50px 0 0 50px;
  position: absolute;
  inset: 0;
  z-index: -1;
}
@media (min-width: 1024px) {
  #sec_topPickup::after {
    width: 89.5789473684%;
    margin-left: 10.4210526316%;
    border: 1px solid var(--color-transparent-white);
    border-right: none;
  }
}
#sec_topPickup .ly_sec_inner {
  z-index: 1;
}
#sec_topPickup h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
  padding-left: 40px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 1.4;
  color: var(--color-bg-brand-sub-reverse);
  border-bottom: 2px solid var(--color-bg-brand-sub-reverse);
  position: absolute;
  top: 22px;
  left: 0;
}
@media (min-width: 1280px) {
  #sec_topPickup h2 {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: mixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 28px;
    border-bottom: none;
    border-left: 2px solid var(--color-bg-brand-sub-reverse);
    top: -50px;
    left: calc(10.4210526316% + 151px);
  }
}
#sec_topPickup h2 .el_en {
  font-family: "Comfortaa", sans-serif;
  font-size: 2.4375rem;
  font-weight: 400;
}
#sec_topPickup h2 .el_jp {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
#sec_topPickup .bl_pickup_list {
  width: 72.5373134328%;
  max-width: 345px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #sec_topPickup .bl_pickup_list {
    max-width: 1100px;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
    margin: 0 0 0 auto;
  }
}
@media (min-width: 1680px) {
  #sec_topPickup .bl_pickup_list {
    width: 91.6666666667%;
  }
}
#sec_topPickup .bl_pickup_item {
  width: 100%;
  max-width: 345px;
}
#sec_topPickup .bl_pickup_link {
  display: grid;
  gap: 3px;
  color: inherit;
}
@media (min-width: 1024px) {
  #sec_topPickup .bl_pickup_link {
    gap: 7px;
  }
}
#sec_topPickup .bl_pickup_fig {
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 243/172;
  background: rgba(0, 0, 0, 0.04);
}
#sec_topPickup .bl_pickup_fig .el_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
#sec_topPickup time {
  font-family: "Comfortaa", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (min-width: 1024px) {
  #sec_topPickup time {
    margin-top: 15px;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}
#sec_topPickup .bl_pickup_ttl {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.4705882353;
  letter-spacing: 0.025em;
  font-weight: 700;
}

/* ======================================
  #sec_newbooks
====================================== */
#sec_newbooks {
  position: relative;
  padding-top: 3.0625rem;
  padding-bottom: 3.3125rem;
  margin-top: 3.125rem;
}
@media (min-width: 1024px) {
  #sec_newbooks {
    padding-top: 3.1875rem;
    padding-bottom: 3.75rem;
    margin-top: 5rem;
  }
}
#sec_newbooks::after {
  content: "";
  display: block;
  width: 94.6666666667%;
  height: 100%;
  background: #fff;
  margin-right: 5.3333333333%;
  margin-left: calc(50% - 50vw);
  border-radius: 0 50px 50px 0;
  position: absolute;
  inset: 0;
  z-index: -1;
}
@media (min-width: 1024px) {
  #sec_newbooks::after {
    width: 89.4736842105%;
    margin-right: 10.5263157895%;
  }
}
#sec_newbooks .bl_newbooks_list {
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  #sec_newbooks .bl_newbooks_list {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #sec_newbooks .bl_newbooks_list {
    width: 100%;
  }
}

.bl_newbooks_header,
.bl_recommend_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .bl_newbooks_header,
  .bl_recommend_header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.bl_newbooks_header .el_btn_toArchive,
.bl_recommend_header .el_btn_toArchive {
  margin-left: auto;
  margin-right: 15px;
  color: var(--color-text-default-reverse);
}
@media (min-width: 1024px) {
  .bl_newbooks_header .el_btn_toArchive,
  .bl_recommend_header .el_btn_toArchive {
    margin-right: 0;
  }
}
.bl_newbooks_header h2,
.bl_recommend_header h2 {
  position: relative;
  padding-left: 2.625rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.0714285714;
  letter-spacing: 0em;
  color: var(--color-text-default-reverse);
  font-weight: 700;
}
@media (min-width: 1024px) {
  .bl_newbooks_header h2,
  .bl_recommend_header h2 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.0714285714;
    letter-spacing: 0.1em;
    padding-left: 2.6875rem;
  }
}
.bl_newbooks_header h2::before,
.bl_recommend_header h2::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 30px;
  height: 28px;
  background: url(../images/common/icon/icon_catfoot.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media (min-width: 1024px) {
  .bl_newbooks_header h2::before,
  .bl_recommend_header h2::before {
    left: 0;
  }
}

#sec_recommend {
  margin-top: 3.125rem;
}
@media (min-width: 1024px) {
  #sec_recommend {
    margin-top: 6.25rem;
  }
}
@media (min-width: 1024px) {
  #sec_recommend .bl_recommend_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#sec_recommend .bl_recommend_list {
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  #sec_recommend .bl_recommend_list {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  #sec_recommend .bl_recommend_list {
    width: 100%;
  }
}
#sec_recommend .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

/* ======================================
  #sec_banner
====================================== */
#sec_banner {
  position: relative;
  padding-top: 3.125rem;
  padding-bottom: 5.5625rem;
}
@media (min-width: 1024px) {
  #sec_banner {
    padding-top: 5rem;
    padding-bottom: 4.625rem;
  }
}
#sec_banner::after {
  content: "";
  display: block;
  width: 62px;
  height: 30px;
  background: url(../images/common/icon_google.png) no-repeat center center/contain;
  position: absolute;
  bottom: 30px;
  right: 9%;
}
@media (min-width: 1024px) {
  #sec_banner::after {
    bottom: 23px;
    right: auto;
    left: 2.6%;
  }
}

.bl_bannerImg_list {
  width: 86.5671641791%;
  display: grid;
  gap: 15px;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .bl_bannerImg_list {
    width: 100%;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
  }
}
@media (min-width: 1024px) {
  .bl_bannerImg_list {
    grid-template-columns: repeat(4, auto);
  }
}
.bl_bannerImg_list li {
  width: 100%;
  max-width: 290px;
}
.bl_bannerImg_list li a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.bl_bannerImg_list li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bl_bannerTxt_list {
  width: 86.5671641791%;
  display: grid;
  gap: 15px;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px auto 13px;
}
@media (min-width: 768px) {
  .bl_bannerTxt_list {
    width: 100%;
    grid-template-columns: repeat(2, 290px);
  }
}
@media (min-width: 1024px) {
  .bl_bannerTxt_list {
    margin: 40px auto 31px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.bl_bannerTxt_list li {
  width: 100%;
  max-width: 290px;
  min-height: 75px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-bg-brand-main);
}
.bl_bannerTxt_list li a {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: #fff;
  padding: 10px 15px;
  padding-right: 40px;
  color: var(--color-bg-brand-main);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.025em;
  font-weight: 500;
}
.bl_bannerTxt_list li a::after {
  content: "\e90d";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0.025em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  pointer-events: none;
}

.bl_link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media (min-width: 1024px) {
  .bl_link_list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 47px;
  }
}
.bl_link_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  color: var(--color-bg-brand-main);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.025em;
}
.bl_link_list li a::after {
  content: "\e90d";
  display: inline-block;
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.025em;
  pointer-events: none;
}

/* =================================================
    #sec_infoArcive
=================================================== */
#sec_infoArcive .bl_infoList {
  list-style: none;
  margin: 0;
  padding: 0;
}
#sec_infoArcive .bl_infoList_item + .bl_infoList_item {
  margin-top: 25px;
}
#sec_infoArcive .bl_infoList_link {
  display: grid;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  color: var(--color-text-default);
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "date cat" "ttl  ttl";
  gap: 6px 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  #sec_infoArcive .bl_infoList_link {
    grid-template-columns: 5.4em 6.7em 1fr;
    grid-template-rows: auto;
    grid-template-areas: "date cat ttl";
    gap: 0 14px;
  }
}
#sec_infoArcive {
  /* Element: Date */
}
#sec_infoArcive .bl_infoList_date {
  grid-area: date;
  font-family: "Comfortaa", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
#sec_infoArcive {
  /* Element: Title */
}
#sec_infoArcive .bl_infoList_ttl {
  grid-area: ttl;
}
#sec_infoArcive .bl_pagenation {
  margin-top: 1.875rem;
}
@media (min-width: 768px) {
  #sec_infoArcive .bl_pagenation {
    margin-top: 5.625rem;
  }
}

/* =================================================
    #sec_single
=================================================== */
#sec_single .bl_single_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 19px;
}
#sec_single .bl_single_header time {
  font-family: "Comfortaa", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
#sec_single .el_singleTtl {
  position: relative;
  padding: 0.875rem;
  padding-left: 4rem;
  background: #fff;
  border-radius: 13px;
  margin-top: 0.9375rem;
  margin-bottom: 1.6875rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-text-default-reverse);
  font-weight: 700;
}
@media (min-width: 1024px) {
  #sec_single .el_singleTtl {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.2307692308;
    letter-spacing: 0.025em;
    padding: 0.875rem;
    padding-left: 4rem;
    margin-top: 1.625rem;
    margin-bottom: 1.5rem;
  }
}
#sec_single .el_singleTtl::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 25px;
  height: 23px;
  background: url(../images/common/icon/icon_catfoot.svg) no-repeat center center/contain;
  position: absolute;
  top: 19px;
  left: 28px;
  margin: auto;
}
@media (min-width: 1024px) {
  #sec_single .el_singleTtl::before {
    left: 27px;
  }
}
#sec_single .bl_btnWrap {
  margin-top: 1.875rem;
  text-align: center;
}
@media (min-width: 1024px) {
  #sec_single .bl_btnWrap {
    margin-top: 3.75rem;
  }
}
#sec_single .el_btn_backtoArchive {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 16px 16px 68px;
  background: #fff;
  border: 1px solid var(--color-bg-brand-main-reverse);
  border-radius: 7px;
  text-decoration: none;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.05em;
  color: var(--color-bg-brand-main);
  text-align: left !important;
  font-weight: 500;
}
#sec_single .el_btn_backtoArchive:focus-visible {
  outline: 2px solid #007baf;
  outline-offset: 2px;
}
@media (min-width: 1024px) {
  #sec_single .el_btn_backtoArchive {
    padding: 16px 16px 16px 68px;
  }
}
@media (hover: hover) and (pointer: fine) {
  #sec_single .el_btn_backtoArchive:hover {
    background: var(--color-bg-brand-main);
    color: #fff;
    opacity: 1;
  }
  #sec_single .el_btn_backtoArchive:hover::before {
    color: #fff;
  }
}
#sec_single .el_btn_backtoArchive::before {
  content: "\e90d";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 19px;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  font-size: 13px;
  color: var(--color-bg-brand-main);
  text-align: center;
}

/* =================================================
    #sec_sitemap
=================================================== */
@media (min-width: 1024px) {
  #sec_sitemap > .ly_sec_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3.3333333333%;
    row-gap: 60px;
  }
}
#sec_sitemap .bl_sitemap_list + .bl_sitemap_list {
  margin-top: 1.875rem;
}
@media (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list + .bl_sitemap_list {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px * (2 - 1)) / 2);
            flex: 0 0 calc((100% - 40px * (2 - 1)) / 2);
  }
}
#sec_sitemap .bl_sitemap_list > li {
  overflow: hidden;
  border-radius: 10px;
}
#sec_sitemap .bl_sitemap_list > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.625rem;
  padding-left: 3.125rem;
  background: var(--color-bg-d1e9f4);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.025em;
  color: var(--color-text-default-reverse);
  font-weight: 700;
}
@media (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > a {
    padding: 0.9375rem;
    padding-left: 3.375rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.025em;
  }
}
#sec_sitemap .bl_sitemap_list > li > a::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 20px;
  left: 27px;
  width: 6px;
  height: 10px;
  background: url(../images/common/icon/icon_chevron-right-white.svg) no-repeat center center/contain;
  z-index: 1;
}
@media (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > a::before {
    top: 25px;
    left: 30px;
  }
}
#sec_sitemap .bl_sitemap_list > li > a::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 13px;
  left: 17px;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--color-bg-brand-main);
}
@media (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > a::after {
    top: 18px;
    left: 20px;
  }
}
#sec_sitemap .bl_sitemap_list > li > ul {
  background: var(--color-bg-fff);
  padding: 20px 15px;
}
@media (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > ul {
    padding: 27px 20px;
  }
}
#sec_sitemap .bl_sitemap_list > li > ul > li + li {
  margin-top: 20px;
}
#sec_sitemap .bl_sitemap_list > li > ul > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 36px;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.5294117647;
  letter-spacing: 0.025em;
  color: var(--color-text-default);
  font-weight: 500;
}
@media (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > ul > li > a {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4444444444;
    letter-spacing: 0.025em;
  }
}
#sec_sitemap .bl_sitemap_list > li > ul > li > a::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 9px;
  left: 11px;
  width: 6px;
  height: 10px;
  background: url(../images/common/icon/icon_chevron-right-white.svg) no-repeat center center/contain;
  z-index: 1;
}
#sec_sitemap .bl_sitemap_list > li > ul > li > a::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 1px;
  left: 0px;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--color-bg-brand-sub);
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul {
  padding-left: 52px;
  margin-top: 17px;
}
@media (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > ul > li > ul {
    padding-left: 50px;
    margin-top: 12px;
  }
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li {
  margin-bottom: 11px;
}
@media (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > ul > li > ul > li {
    margin-bottom: 12px;
  }
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-indent: -7px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.025em;
  color: var(--color-link);
  text-decoration: underline;
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > a::before {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f054";
  display: inline-block;
  color: var(--color-bg-brand-sub);
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul {
  padding-left: 24px;
}
@media (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul {
    padding-left: 26px;
  }
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul > li {
  margin-top: 12px;
}
@media (min-width: 1024px) {
  #sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul > li {
    margin-top: 9px;
  }
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-indent: -7px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.025em;
  padding-left: 20px;
  color: var(--color-link);
  text-decoration: underline;
}
#sec_sitemap .bl_sitemap_list > li > ul > li > ul > li > ul > li > a::before {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f054";
  display: inline-block;
  color: var(--color-bg-brand-sub);
}/*# sourceMappingURL=style.css.map */