@charset "UTF-8";
/* ============================================================= *

Reset

* ============================================================= */
/* Reset
----------------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* ============================================================= *

Layout

* ============================================================= */
/* =============================================================

Custom Properties

* ============================================================= */
:root {
  /* color */
  --base-color: #404041;
  --key-color:  #0082cd;
  --point-color: #f36f21;
  --bg-color: #f6f6f6;
  --border-color: #d6d8dd;
  --bg-color-dark: #eee;
  /* layouts */
  --frame-width: 1480;
  --outer-width: 1200;
  --inner-width: 1200;
  --frame-width-px: calc(var(--frame-width) * 1px);
  --outer-width-px: calc(var(--outer-width) * 1px);
  --inner-width-px: calc(var(--inner-width) * 1px);
  --outer-space: 4%;
  --inner-space: 4.16667%;
  --inner-side-space: calc(100% / 92 * 4);
  --header-height: 190px;
  /* font
  ==================== */
  /* size */
  --base-font-root: clamp(52.08%, .83334vw, 62.5%);
  --base-font-size: 16;
  --base-font-px: calc(var(--base-font-size) * 1px);
  --base-font-rem: calc(var(--base-font-size) * .1rem);
  --line-height: 1.75;
  --line-space: (var(--line-height) - 1)/2;
  /* for responsive */
  --max-tablet-width: 767;
  --min-tablet-width: 375;
  --min-tablet-percent: .58;
  /* family */
  --base-font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  --en-font-family: 'Lilita One', cursive;
  --point-en-font-family: Oswald, sans-serif;
}

@media screen and (max-width: 767px) {
  :root {
    --inner-space: 0;
  }
}

@media screen and (min-width: 1304.34783px) {
  :root {
    --inner-side-space: calc(50vw - 1200px / 2);
  }
}

@media screen and (max-width: 767px) {
  :root {
    --header-height: 60px;
  }
}

*[data-intersection] {
  opacity: 0;
  transition: opacity 1s, transform .8s;
  transform: translateY(50px);
}

*[data-intersection][data-intersecting=true] {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================

Base

* ============================================================= */
html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--base-color);
  letter-spacing: .03em;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

img {
  display: block;
  max-width: 100%;
}

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

svg path:not([fill]) {
  fill: currentColor;
}

a {
  color: currentColor;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a.js-tel {
  text-decoration: none;
}

a.js-tel._active {
  text-decoration: underline;
}

button {
  cursor: pointer;
}

sup {
  vertical-align: super;
  font-size: 70%;
}

sub {
  vertical-align: sub;
  font-size: 70%;
}

.l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 1024px;
  min-height: 100%;
  margin: 0 auto;
  padding: 0;
  box-shadow: 0 0 40px 40px rgba(204, 0, 0, .15);
  transition: opacity .4s ease-out;
}

body.is-loaded .l-wrapper {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .l-wrapper {
    min-width: 0;
  }
}

/* =============================================================

Header

* ============================================================= */
/* l-header
=============================== */
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: var(--header-height);
  min-width: 1024px;
  margin: 0 auto;
  color: #fff;
}

@media screen and (min-width: 768px) {
  body.is-header-hidden .l-header {
    position: fixed;
    align-items: center;
    padding: 0 3.21429%;
    background: #fff;
    color: var(--base-color);
    opacity: 0;
    transition: none;
    transform: translateY(-100%);

    --header-height: 72px;
  }
  body.is-header-hidden.is-header-sticky .l-header {
    transition: all .3s ease-out;
  }
  body.is-header-hidden.is-header-sticky-in .l-header {
    box-shadow: 0px 0px 8px 0px rgba(64, 64, 65, .16);
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .l-header {
    position: fixed;
    min-width: 0;
  }
}

.l-header a {
  text-decoration: none;
}

/* l-header-logo
=============================== */
.l-header-logo {
  width: 432px;
}

@media screen and (min-width: 768px) {
  body.is-header-hidden .l-header-logo {
    width: 195px;
  }
}

@media screen and (max-width: 767px) {
  .l-header-logo {
    width: 177px;
  }
}

.l-header-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  border-radius: 0 0 6rem 0;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .l-header-logo a {
    border-radius: 0 0 15px 0;
  }
}

.l-header-logo img._pc {
  width: 77.77778%;
}

.l-header-logo img._sp {
  width: 75.14124%;
}

.l-header-logo img:where(._sp, ._scrolled) {
  display: none;
}

@media screen and (min-width: 768px) {
  body.is-header-hidden .l-header-logo img._pc {
    display: none;
  }
  body.is-header-hidden .l-header-logo img._scrolled {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .l-header-logo img._sp {
    display: block !important;
  }
  .l-header-logo img:is(._pc, ._scrolled) {
    display: none;
  }
}

/* l-header-menu
============================== */
.l-header-menu {
  display: flex;
  flex-direction: column;
  padding: 1.875em 2em 0;
}

@media screen and (min-width: 768px) {
  body.is-header-hidden .l-header-menu {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .l-header-menu {
    align-self: stretch;
    padding: 0;
    font-size: 1.6rem;
  }
}

/* l-header-toggle
============================== */
.l-header-toggle {
  position: relative;
  z-index: 1;
  display: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  aspect-ratio: 1 / 1;
  outline: none;
  border: 0;
  border-radius: 0 0 0 15px;
  background: var(--point-color);
  color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.l-header-toggle :is(img, svg) {
  width: 25px;
  height: 20px;
  transition: all .3s ease-out;

  -o-object-fit: contain;

     object-fit: contain;
}

.l-header-toggle ._close {
  position: absolute;
  margin: auto;
  opacity: 0;

  inset: 0;
}

body.is-toggle-menu-open .l-header-toggle ._close {
  opacity: 1;
}

body.is-toggle-menu-open .l-header-toggle ._open {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .l-header-toggle {
    display: flex;
    transition: all .3s ease-out;
  }
  body.is-toggle-menu-open .l-header-toggle {
    background: #fff;
    color: var(--point-color);
  }
}

/* l-header-nav
============================== */
.l-header-nav {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 1.6875em;
}

@media screen and (max-width: 767px) {
  .l-header-nav {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    gap: 39px 0;
    width: 100%;
    height: 100%;
    padding: var(--header-height) 4% 4%;
    background: var(--point-color);
    opacity: 0;
    transition: all .3s ease-out;
    transform: translateY(-50%);
    transform-origin: 0 0;
    pointer-events: none;
  }
  body.is-toggle-menu-open .l-header-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* l-header-nav-main
============================== */
.l-header-nav-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 1.6875em 2.5em;
  font-weight: 900;
  font-size: 1em;
  line-height: 1;
}

.l-header-nav-main a {
  transition: opacity .1s;
}

.l-header-nav-main a:hover {
  opacity: .7;
}

@media screen and (min-width: 768px) {
  .l-header-nav-main {
    min-height: 48px;
    padding-right: 1em;
  }
  body.is-header-hidden .l-header-nav-main {
    flex-wrap: nowrap;
    gap: 1.6875em 1.875em;
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .l-header-nav-main {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.875em 0;
    width: 100%;
    padding: 45px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
  }
}

.l-header-nav-main__item:last-child {
  padding-left: .625em;
}

@media screen and (max-width: 767px) {
  .l-header-nav-main__item:last-child {
    padding-top: 4px;
    padding-left: 0;
  }
}

/* l-header-nav-sub
============================== */
.l-header-nav-sub {
  display: flex;
  align-items: center;
  color: #dde9f6;
  font-weight: bold;
  font-size: .875em;
  line-height: 1.5rem;
}

.l-header-nav-sub a {
  transition: opacity .1s;
}

.l-header-nav-sub a:hover {
  opacity: .7;
}

@media screen and (min-width: 768px) {
  body.is-header-hidden .l-header-nav-sub {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .l-header-nav-sub {
    color: #ffe1cf;
  }
}

.l-header-nav-sub__item:not(:first-child) {
  margin-left: 1.21429em;
  padding-left: 1.21429em;
  border-left: 1px solid #82bde2;
}

@media screen and (max-width: 767px) {
  .l-header-nav-sub__item:not(:first-child) {
    border-left-color: #ffe1cf;
  }
}

.l-header-nav-sub__logo {
  display: block;
  width: 150px;
  height: 48px;
  margin-right: .4rem;
  margin-left: 2.3rem;
  color: #fff;!important

  -o-object-fit: contain;

     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .l-header-nav-sub__logo {
    display: none;
  }
}

/* l-header-login
============================== */
.l-header-login {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  width: 13.47059em;
  height: 2.82353em;
  border-radius: 1.41176em;
  background: var(--point-color);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.0625em;
}

@media screen and (min-width: 768px) {
  body.is-header-hidden .l-header-login {
    height: 2.57143em;
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .l-header-login {
    background: #fff;
    color: var(--point-color);
  }
}

.l-header-login__icon {
  box-sizing: content-box;
  width: 1.6rem;
  padding-left: 1.2rem;
  border-left: 1px solid #f9b790;
}

/* =============================================================

Main

* ============================================================= */
/* l-main
=============================== */
.l-main {
  flex-grow: 1;
  overflow: hidden;
}

.l-main__head {
  position: relative;
  padding-top: var(--header-height);
  background: var(--key-color);
  color: #fff;
}

.l-main__head > :where(*) {
  position: relative;
  z-index: 1;
}

.l-main__body {
  width: 92%;
  max-width: var(--inner-width-px);
  margin: 0 auto;
}

/* l-main-head-bg
=============================== */
.l-main-head-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

/* l-main-breadcrumbs
=============================== */
.l-main-breadcrumbs {
  margin-bottom: clamp(30px, -2.52551px + 8.67347vw, 64px);
  font-size: clamp(12px, 10.08673px + .5102vw, 14px);
}

.l-main-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.l-main-breadcrumbs__list > li {
  display: flex;
  align-items: center;
}

.l-main-breadcrumbs__list > li + li:before {
  content: "\FF0F";
  margin: 0 .2em;
}

.l-main-breadcrumbs__list > li a {
  text-decoration: none;
}

.l-main-breadcrumbs__list > li a:hover {
  text-decoration: underline;
}

/* =============================================================

Footer

* ============================================================= */
/* l-footer
=============================== */
.l-footer {
  background: var(--base-color);
  color: #fff;
}

.l-footer__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px 65px;
  width: 92%;
  max-width: var(--inner-width-px);
  margin: 0 auto;
  padding: 5.3rem 0 4.6rem;
}

@media screen and (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: center;
  }
}

/* l-footer-nav
============================== */
.l-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 65px 0;
}

@media screen and (max-width: 767px) {
  .l-footer-nav {
    align-items: center;
    gap: 21px;
  }
}

.l-footer-nav__corporate {
  width: 150px;
}

@media screen and (max-width: 767px) {
  .l-footer-nav__corporate {
    width: 150px;
  }
}

.l-footer-nav__corporate svg path {
  fill: currentColor;
}

.l-footer-nav__corporate a {
  display: block;
  transition: all .3s ease-out;
}

.l-footer-nav__corporate a:hover {
  opacity: .7;
}

.l-footer-nav__list {
  display: flex;
  font-size: 1.4rem;
  line-height: 1.5rem;
}

.l-footer-nav__list > li:not(:first-child) {
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid;
}

.l-footer-nav__list a {
  text-decoration: none;
}

.l-footer-nav__list a:hover {
  text-decoration: underline;
}

/* l-footer-copyright
============================== */
.l-footer-copyright {
  font-size: 1rem;
}

/* l-footer-pagetop
=============================== */
.l-footer-pagetop {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%);
}

.l-footer-pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--point-color);
  color: #fff;
  transition: all .3s ease-out;
  transform: rotate(-90deg);
}

.l-footer-pagetop a:hover {
  opacity: .9;
}

.l-footer-pagetop a :is(img, svg) {
  width: 34.54545%;
}

/* ============================================================= *

Components

* ============================================================= */
/* ============================================================= *

Navigation

* ============================================================= */
/* c-button
============================== */
.c-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 23.125em;
  height: 4.375em;
  border-radius: 2.1875em;
  background: var(--point-color);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.6rem;
  transition: all .3s ease-out;
}

.c-button:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .c-button {
    font-size: 1.5rem;
  }
}

.c-button._white {
  background: #fff;
  color: var(--point-color);
}

.c-button:after,
.c-button svg {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  flex-shrink: 0;
  width: .75em;
  aspect-ratio: 1 / 1;
  margin: auto 11.35135% auto 0;
  background: url(../img/arrow.svg) 50% 50%/contain no-repeat;
}

.c-button svg {
  z-index: 1;
}

.c-button._no-arrow:after {
  content: none;
}

/* c-entry-button
============================== */
.c-entry-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22.28571em;
  height: 5em;
  border-radius: 2.5em;
  background: var(--point-color);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  transition: all .3s ease-out;
}

.c-entry-button:hover {
  opacity: .7;
}

.c-entry-button:before {
  content: "";
  flex-shrink: 0;
  width: 1.5em;
  aspect-ratio: 1 / 1;
  margin-right: 1em;
  background: url(../img/entry.svg) 50% 50%/contain no-repeat;
}

.c-entry-button:after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1em;
  aspect-ratio: 1 / 1;
  background: url(../img/arrow.svg) 50% 50%/contain no-repeat;
}

.c-entry-button > span {
  margin-right: 1.57143em;
  padding-right: 2.28571em;
  border-right: 1px solid rgba(255, 255, 255, .5);
}

/* c-more
============================== */
.c-more {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--key-color);
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  transition: all .3s ease-out;
}

.c-more:hover {
  opacity: .7;
}

.c-more__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.61111em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--key-color);
}

.c-more__icon img, .c-more__icon svg {
  width: 10px;
}

/* c-pager
============================== */
.c-pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: clamp(40px, -7.83163px + 12.7551vw, 90px);
}

.c-pager__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.c-pager__list:first-child {
  padding-left: clamp(28px, 12.69388px + 4.08163vw, 44px);
}

.c-pager__list:last-child {
  padding-right: clamp(28px, 12.69388px + 4.08163vw, 44px);
}

.c-pager__list > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(28px, 12.69388px + 4.08163vw, 44px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  text-decoration: none;
  font-family: var(--point-en-font-family);
  transition: color .3s;
}

.c-pager__list > li a:hover {
  color: var(--point-color);
}

.c-pager__list > li a.is-current {
  background: #fff;
  pointer-events: none;
}

.c-pager__arrow {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: clamp(28px, -5.48214px + 8.92857vw, 63px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--point-color);
  color: #fff;
  transition: all .3s ease-out;
}

.c-pager__arrow:hover {
  opacity: .7;
}

.c-pager__arrow._prev {
  transform: rotate(-180deg);
}

.c-pager__arrow img,
.c-pager__arrow svg {
  width: 23.80952%;
}

/* tab
============================== */
*[data-tab-id] {
  display: none;
}

*[data-tab-id].is-current {
  display: block;
}

/* ============================================================= *

Text

* ============================================================= */
/* c-text
============================== */
.c-lead {
  font-size: clamp(14px, 9.21684px + 1.27551vw, 19px);
  line-height: 1.78947;
}

.c-lead em {
  color: var(--point-color);
  font-weight: bold;
  font-size: 1.15789em;
}

.c-lead:not(:last-child) {
  margin-bottom: 2.42105em;
}

/* ============================================================= *

Title

* ============================================================= */
/* c-page-title
============================== */
.c-page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.36364em;
  padding: 4.5rem 0 clamp(67px, 12.47194px + 14.54082vw, 124px);
  text-align: center;
  font-weight: bold;
  font-size: clamp(16px, 10.2602px + 1.53061vw, 22px);
  line-height: 1;
}

.c-page-title:before {
  content: attr(data-en);
  color: var(--en-color);
  font-size: clamp(40px, 1.73469px + 10.20408vw, 80px);
  font-family: var(--en-font-family);
  line-height: .8;
}

/* c-ja-title
============================== */
.c-ja-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.5rem 1em clamp(67px, 12.47194px + 14.54082vw, 124px);
  text-align: center;
  text-align: center;
  font-weight: bold;
  font-size: clamp(24px, 16.34694px + 2.04082vw, 32px);
  line-height: 1.4;
}

.c-ja-title span {
  display: block;
  margin-top: .4em;
  font-size: .6875em;
}

/* c-section-title
============================== */
.c-section-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85714em 0;
  font-weight: bold;
  font-size: clamp(16px, 4.52041px + 3.06122vw, 28px);
  line-height: 1;

  --en-color: var(--key-color);
}

.c-section-title._center {
  justify-content: center;
  text-align: center;
}

.c-section-title._white {
  --en-color: #fff;
}

.c-section-title:before {
  content: attr(data-en);
  width: 100%;
  color: var(--en-color);
  font-size: clamp(40px, 8.43112px + 8.41837vw, 73px);
  font-family: var(--en-font-family);
  line-height: .8;
}

.c-section-title__label {
  display: inline-flex;
  align-items: flex-end;
  gap: .1em;
  height: 2.4em;
  margin-right: .75em;
  padding: 0 .8em .5em 1em;
  border-radius: 3px;
  background: var(--base-color);
  color: #fff;
  font-weight: black;
  font-size: .53571em;
  line-height: 1;
}

.c-section-title__label em {
  font-weight: bold;
  font-size: 180%;
  line-height: .9;
}

/* c-subheader
============================== */
.c-subheader {
  padding-bottom: .66667em;
  border-bottom: 1px dashed;
  font-size: clamp(15px, 8.30357px + 1.78571vw, 22px);
}

.c-subheader:not(:first-child) {
  margin-top: 2.27273em;
}

.c-subheader__title {
  display: flex;
  gap: 10px;
  font-weight: bold;
  line-height: 1.2;
}

.c-subheader__title:before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 4px;
  height: 1.2em;
  background: var(--point-color);
}

@media screen and (max-width: 560px) {
  .c-subheader__title:before {
    width: 3px;
  }
}

.c-subheader__text {
  margin-top: .8em;
  padding-bottom: .5em;
  font-size: clamp(13px, 11.08673px + .5102vw, 15px);
}

/* ============================================================= *

Block

* ============================================================= */
/* c-entry-block
============================== */
.c-entry-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 35%;
  background: url(../img/entry-image.png) right 5.90909% top 50% / 30.54545% auto no-repeat;
}

.c-entry-block:not(:first-child) {
  margin-top: clamp(50px, 11.73469px + 10.20408vw, 90px);
}

@media screen and (max-width: 767px) {
  .c-entry-block {
    padding-top: 57.97101%;
    padding-right: 0;
    background: url(../img/entry-image.png) 50% top / 74.2029% auto no-repeat;
  }
}

.c-entry-block__head {
  width: 95.07246%;
  max-width: 393px;
}

.c-entry-block__body {
  margin-top: .66667em;
  text-align: center;
  font-weight: bold;
  font-size: clamp(22px, 14.34694px + 2.04082vw, 30px);
  line-height: 1.36364;
}

.c-entry-block__foot {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 434px;
  margin: clamp(26px, 20.2602px + 1.53061vw, 32px) auto 0;
  padding: 0 4.63768%;
}

/* ============================================================= *

Flow

* ============================================================= */
/* c-flow-step-header
============================== */
.c-flow-step-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px 0;
  margin-top: clamp(25px, -8.48214px + 8.92857vw, 60px);
  margin-bottom: clamp(25px, -46.74745px + 19.13265vw, 100px);
}

.c-flow-step-header__item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 30.90909%;
  text-align: center;

  --number-color: var(--key-color);
  --bg-color: #fff;
  --color: var(--base-color);
}

@media screen and (max-width: 767px) {
  .c-flow-step-header__item {
    width: 100%;
  }
}

.c-flow-step-header__item:after {
  content: "";
  position: absolute;
  top: clamp(44.8px, 27.38929px + 4.64286vw, 63px);
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  width: 3.5em;
  height: 3.5em;
  aspect-ratio: 1 / 1;
  margin: auto 0;
  border-radius: 100%;
  background: url(../img/arrow.svg) 50% 50% / 35.18519% auto no-repeat var(--base-color);
  transform: translateX(87.03704%);
}

@media screen and (max-width: 767px) {
  .c-flow-step-header__item:after {
    top: auto;
    left: 0;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    transform: translateY(90%) rotate(90deg);
  }
}

.c-flow-step-header__item:last-child {
  --number-color: var(--point-color);
  --bg-color: var(--key-color);
  --color: #fff;
}

.c-flow-step-header__item:last-child:after {
  content: none;
}

.c-flow-step-header__number {
  margin-bottom: -.1em;
  color: var(--number-color);
  font-weight: bold;
  font-size: clamp(64px, 39.12755px + 6.63265vw, 90px);
  font-family: var(--en-font-family);
  line-height: .8;
}

.c-flow-step-header__contents {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  padding: 1.8em 1em 2.2em;
  border-radius: 10px;
  background: var(--bg-color);
  color: var(--color);
  font-size: clamp(16px, 12.17347px + 1.02041vw, 20px);
}

.c-flow-step-header__text {
  margin-top: calc(-1em * var(--line-space) + 1em);
  margin-bottom: calc(-1em * var(--line-space));
  font-weight: bold;
  line-height: var(--line-height);

  --line-height: 1.4;
  --line-space: (var(--line-height) - 1)/2;
}

.c-flow-step-header__text span {
  display: inline-block;
}

/* c-flow-step
============================== */
.c-flow-step {
  border-top: 1px dashed;
}

.c-flow-step:not(:last-child) {
  margin-bottom: clamp(28px, 6.95408px + 5.61224vw, 50px);
}

.c-flow-step__item {
  display: grid;
  grid-template-columns: 1fr 61.81818%;
  gap: 20px 7.27273%;
  padding: clamp(32px, 3.30102px + 7.65306vw, 62px) 0 clamp(30px, 20.43367px + 2.55102vw, 40px);
  border-bottom: 1px dashed;
}

@media screen and (max-width: 767px) {
  .c-flow-step__item {
    grid-template-columns: 100%;
  }
}

@media screen and (min-width: 768px) {
  .c-flow-step__contents:first-child:last-child {
    grid-column: 1 / 3;
  }
}

.c-flow-step__body {
  margin-top: clamp(24px, 13.47704px + 2.80612vw, 35px);
  text-align: justify;
  text-justify: auto;
  font-size: clamp(14px, 13.04337px + .2551vw, 15px);
  line-height: 1.86667;
}

.c-flow-step__body > p + p {
  margin-top: .25em;
}

.c-flow-step__body em {
  font-weight: bold;
  font-size: 1.33333em;
}

.c-flow-step__body a {
  color: var(--point-color);
}

.c-flow-step__grid {
  display: grid;
  grid-template-columns: 65.44118% 30.88235%;
  gap: 23px;
}

@media screen and (max-width: 560px) {
  .c-flow-step__grid {
    grid-template-columns: 100%;
  }
}

.c-flow-step__grid._row {
  gap: 0 23px;
}

.c-flow-step__caption {
  margin-top: calc(-1em * var(--line-space));
  margin-bottom: calc(-1em * var(--line-space) + .78947em);
  font-weight: bold;
  font-size: clamp(14px, 9.21684px + 1.27551vw, 19px);
}

@media screen and (max-width: 560px) {
  .c-flow-step__caption {
    display: none;
  }
}

.c-flow-step__grid > .c-flow-step__caption {
  display: block;
}

.c-flow-step__grid._row > .c-flow-step__caption {
  grid-column: 1 / 3;
}

.c-flow-step__grid._row > .c-flow-step__caption:not(:first-child) {
  margin-top: clamp(20px, -8.69898px + 7.65306vw, 50px);
}

@media screen and (max-width: 560px) {
  .c-flow-step__desktop {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .c-flow-step__mobile {
    overflow: hidden;
  }
  .c-flow-step._point .c-flow-step__mobile {
    aspect-ratio: 345 / 320;
  }
  .c-flow-step._guide .c-flow-step__mobile {
    aspect-ratio: 345 / 385;
  }
  .c-flow-step._guide .c-flow-step__item:last-child .c-flow-step__mobile {
    aspect-ratio: 345 / 225;
  }
  .c-flow-step__mobile img {
    width: 100%;
  }
}

/* c-flow-step-title
============================== */
.c-flow-step-title {
  display: flex;
  align-items: baseline;
  color: var(--key-color);
  font-weight: bold;
  font-size: clamp(25.2px, 9.12857px + 4.28571vw, 42px);
  font-family: var(--en-font-family);
  line-height: .8;
}

.c-flow-step-title._c02 {
  color: var(--point-color);
}

.c-flow-step-title em {
  font-size: 1.42857em;
}

.c-flow-step-title i {
  width: auto;
  height: 1.61905em;
  margin-left: .64286em;
}

@media screen and (max-width: 767px) {
  .c-flow-step-title i {
    display: none;
  }
}

.c-flow-step-title i img {
  height: 100%;
}

/* ============================================================= *

information

* ============================================================= */
/* c-information-list
============================== */
.c-information-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* c-information-item
============================== */
.c-information-item {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(64, 64, 65, .16);
  font-size: clamp(14px, 9.21684px + 1.27551vw, 19px);

  --label-color: var(--key-color);
}

.c-information-item[data-label=enquete] {
  --label-color: var(--point-color);
}

.c-information-item[data-label=report] {
  --label-color: #fdb813;
}

.c-information-item__label {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 8.89474em;
  padding: 1.47368em 0;
  background: var(--label-color);
  color: #fff;
  font-weight: 900;
}

.c-information-item__contents {
  display: flex;
  flex-grow: 1;
  align-items: center;
  gap: .25em 1.68421em;
  padding: 1.47368em;
}

@media screen and (max-width: 767px) {
  .c-information-item__contents {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 2em;
  }
}

.c-information-item__date {
  flex-shrink: 0;
  font-family: var(--point-en-font-family);
}

.c-information-item__text a {
  text-decoration: none;
}

.c-information-item__text a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: opacity .3s;
}

.c-information-item__text a:hover:before {
  opacity: .2;
}

.c-information-item__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1em;
  margin-left: auto;
  color: var(--label-color);
  font-weight: bold;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .c-information-item__arrow {
    position: absolute;
    right: 13px;
    bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .c-information-item__arrow span {
    display: none;
  }
}

.c-information-item__arrow i {
  width: .875em;
}

.c-information-item__arrow i svg path {
  fill: currentColor;
}

/* ============================================================= *

Utility

* ============================================================= */
/* Media Query Setting
====================================== */
.u-tablet-block {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .u-tablet-block {
    display: block !important;
  }
}

.u-tablet-inline-block {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .u-tablet-inline-block {
    display: inline-block !important;
  }
}

.u-tablet-flex {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .u-tablet-flex {
    display: flex !important;
  }
}

@media screen and (max-width: 767px) {
  .u-tablet-none {
    display: none !important;
  }
}

.u-mobile-block {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-block {
    display: block !important;
  }
}

.u-mobile-inline-block {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-inline-block {
    display: inline-block !important;
  }
}

.u-mobile-flex {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-flex {
    display: flex !important;
  }
}

@media screen and (max-width: 560px) {
  .u-mobile-none {
    display: none !important;
  }
}

/* text align
====================================== */
.u-ta-left {
  text-align: left !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-ta-center {
  text-align: center !important;
}

/* display
====================================== */
.u-d-block {
  display: block !important;
}

.u-d-none {
  display: none !important;
}

.u-d-inline {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

/* position
====================================== */
.u-pos-static {
  position: static !important;
}

.u-pos-relative {
  position: relative !important;
}

.u-pos-absolute {
  position: absolute !important;
}

.u-pos-fixed {
  position: fixed !important;
}

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

/* other
====================================== */
.u-strong {
  font-weight: bold !important;
}

.u-pointer {
  cursor: pointer;
}

.u-nowrap {
  white-space: nowrap;
}

.u-color-honda {
  color: #cc0000 !important;
}

.u-color-ciao {
  color: #0068b6 !important;
}

.u-color-mamoru {
  color: #8fc31f !important;
}

.u-rotate-90 {
  transform: rotate(90deg);
}

/* animationn
====================================== */
.u-no-transition {
  transition: none !important;
}
