/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/*/
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme*/
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.*/
/* ==========================================================================
 * Base styles: opinionated defaults
 * ==========================================================================*/
html {
  color: #333333;
  line-height: 2;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}
@media (max-width: 750px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 751px) and (max-width: 1280px) {
  html {
    font-size: 1.1713030747vw;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a, button {
  -webkit-transition: opacity ease 0.3s;
  transition: opacity ease 0.3s;
  cursor: pointer;
}

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

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.*/
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::-moz-selection,
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440*/
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

iframe {
  border: none;
}

/*
 * Remove default fieldset styles.*/
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.*/
textarea {
  resize: vertical;
}

/* ==========================================================================
 * Author's custom styles
 * ==========================================================================*/
/* ==========================================================================
 * Helper classes
 * ==========================================================================*/
/*
 * Hide visually and from screen readers*/
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe*/
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1*/
}
.sr-only.focusable:active, .sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638*/
/*
 * Hide visually and from screen readers, but maintain layout*/
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.*/
.clearfix::before {
  content: " ";
  display: table;
}
.clearfix::after {
  content: " ";
  display: table;
  clear: both;
}

/* ==========================================================================
* EXAMPLE Media Queries for Responsive Design.
* These examples override the primary ('mobile first') styles.
* Modify as content requires.
* ==========================================================================*/
@media only screen and (min-width: 35em) { /* Style adjustments for viewports that meet the condition*/ }
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) { /* Style adjustments for high resolution devices*/ }
/* ==========================================================================
 * Print styles.
 * Inlined to avoid the additional HTTP request:
 * https://www.phpied.com/delay-loading-your-print-css/
 * ==========================================================================*/
@media print {
  * {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster*/
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  *::before, *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster*/
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a {
    text-decoration: underline;
  }
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol*/
  a[href^="#"]::after, a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables*/
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
 * ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS. */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers. */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE. */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari. */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE. */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers. */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10. */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari. */
b, strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers. */
code, kbd, samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers. */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers. */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
 * ========================================================================== */
/**
 * Remove the border on images inside links in IE 10. */
img {
  border-style: none;
}

/* Forms
 * ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari. */
button, input, optgroup, select, textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge. */
button, input {
  /* 1 */
  overflow: visible;
}
button::-ms-clear, button::-ms-reveal, input::-ms-clear, input::-ms-reveal {
  display: none;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox. */
button, select {
  /* 1 */
  text-transform: none;
}
button::-ms-expand, select::-ms-expand {
  display: none;
}
button:focus::-ms-value, select:focus::-ms-value {
  background-color: inherit;
  color: #515151;
}

/**
 * Correct the inability to style clickable types in iOS and Safari. */
button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox. */
button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule. */
button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox. */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers. */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+. */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10. */
[type=checkbox], [type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome. */
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari. */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS. */
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari. */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox. */
details {
  display: block;
}

/*
 * Add the correct display in all browsers. */
summary {
  display: list-item;
}

/* Misc
 * ========================================================================== */
/**
 * Add the correct display in IE 10+. */
template, [hidden] {
  display: none;
}

/**
 * Add the correct display in IE 10. */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.slick-track .slick-slide {
  height: inherit !important;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -1.625rem;
  width: 2.1875rem;
  height: 2.1875rem;
  background-color: #009FB9;
  border: none;
  text-indent: -9999px;
  z-index: 2;
  border-radius: 50%;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (max-width: 750px) {
  .slick-arrow {
    margin-top: -1.5rem;
  }
}
.slick-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/icon-next.png") no-repeat center center;
  background-size: contain;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-arrow.slick-disabled {
  display: none !important;
}
.slick-arrow.slick-prev {
  left: 0.9375rem;
}
.slick-arrow.slick-prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 750px) {
  .slick-arrow.slick-prev {
    left: 0.75rem;
  }
}
.slick-arrow.slick-next {
  right: 0.9375rem;
}
@media (max-width: 750px) {
  .slick-arrow.slick-next {
    right: 0.75rem;
  }
}
@media (min-width: 751px) {
  .slick-arrow:hover {
    opacity: 0.7;
  }
}

.slick-dots {
  padding: 0;
  margin: 1.25rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  list-style: none;
  text-align: center;
}
@media (max-width: 750px) {
  .slick-dots {
    margin-top: 0.9375rem;
  }
}
.slick-dots li {
  position: relative;
  height: 0.375rem;
  width: 0.375rem;
  margin: 0 0.125rem;
  cursor: pointer;
}
.slick-dots li button {
  background-color: #D8D9DA;
  border: 0;
  display: block;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 0.25rem;
  height: 100%;
  width: 100%;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  padding: 0;
  color: transparent;
  cursor: pointer;
}
.slick-dots li button:hover {
  opacity: 1;
}
.slick-dots li.slick-active {
  width: 1.5rem;
}
.slick-dots li.slick-active button {
  background-color: #40B8CC;
}

.container {
  max-width: 75rem;
  margin: 0 auto;
}

@media (max-width: 750px) {
  .only-pc {
    display: none !important;
  }
}
@media (min-width: 751px) {
  .only-sp {
    display: none !important;
  }
}
.fnt-noto-serif {
  font-family: "Noto Serif JP", serif;
}

.fnt-zen-old-mincho {
  font-family: "Zen Old Mincho", serif;
}

.fnt-noto-sans {
  font-family: "Noto Sans JP", sans-serif;
}

.fnt-inter {
  font-family: "Inter", sans-serif;
}

.fnt-tiro-bangla {
  font-family: "Tiro Bangla", serif;
}

body {
  line-height: 2;
  letter-spacing: 0.04em;
}
body.modal-open {
  overflow: hidden;
}

body, h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Sans JP", sans-serif;
}

.main {
  overflow: hidden;
}

.inner {
  position: relative;
  width: 75rem;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .inner {
    width: auto;
  }
}

.wrap {
  position: relative;
  width: 60rem;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .wrap {
    width: auto;
    padding: 0 1.25rem;
  }
}

.header {
  position: relative;
}
.header__logo {
  position: fixed;
  top: 0;
  right: 0;
  width: 18.8140556369vw;
  z-index: 10;
}
@media (max-width: 750px) {
  .header__logo {
    width: 49.3333333333vw;
  }
}
.header__logo a {
  display: block;
}
@media (min-width: 751px) {
  .header__logo a {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .header__logo a:hover {
    opacity: 0.8;
  }
}
.header .keyvisual {
  position: relative;
  text-align: center;
}
@media (max-width: 750px) {
  .header .keyvisual {
    overflow: hidden;
  }
}
.header .keyvisual__img {
  opacity: 0;
}
.header .keyvisual__logo {
  position: absolute;
  top: 50%;
  left: 50.6%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  width: 44.2647058824%;
}
@media (max-width: 750px) {
  .header .keyvisual__logo {
    top: 60%;
    width: 23.3125rem;
  }
}
.header .keyvisual__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  border-radius: 3.125rem;
  overflow: hidden;
}
@media (max-width: 750px) {
  .header .keyvisual__video {
    padding: 4rem 0.625rem 0;
    border-radius: 0.875rem;
  }
}
.header .keyvisual__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3.125rem;
}
@media (max-width: 750px) {
  .header .keyvisual__video video {
    border-radius: 0.875rem;
  }
}
.header .keyvisual__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 106%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (max-width: 750px) {
  .header .keyvisual__video iframe {
    width: 222%;
  }
}

.content--head {
  overflow: hidden;
  position: relative;
  padding-bottom: 14.625rem;
}
@media (max-width: 750px) {
  .content--head {
    padding-bottom: 8.5rem;
  }
}
.content--head:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.1875rem;
  height: 65.375rem;
  background: url(../img/sec1_bg.jpg) no-repeat center center;
  background-size: cover;
}
@media (max-width: 750px) {
  .content--head:before {
    background-image: url(../img/sec1_bg_sp.jpg);
    bottom: 0;
    height: 38.25rem;
  }
}
.content--head:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: url(../img/sec1_gra.png) repeat-x center top;
  background-size: 100% 100%;
}
@media (max-width: 750px) {
  .content--head:after {
    background-image: url(../img/sec1_gra_sp.png);
    bottom: -11.875rem;
    top: 0;
  }
}

.section01 {
  position: relative;
  z-index: 1;
}
.section01 .wrap {
  padding-block: 10rem 9.5rem;
  text-align: center;
  z-index: 1;
}
@media (max-width: 750px) {
  .section01 .wrap {
    padding-block: 20.25rem 18.4375rem;
  }
}
.section01 .title {
  width: 55rem;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .section01 .title {
    width: 19rem;
    margin-left: 1.625rem;
    margin-right: 0;
  }
}
.section01 .text {
  margin-top: 3.125rem;
  font-size: 1.125rem;
  line-height: 3;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 750px) {
  .section01 .text {
    margin-top: 1.75rem;
    font-size: 0.9375rem;
    line-height: 3;
    letter-spacing: 0.02em;
  }
}
.section01 .photo {
  position: absolute;
}
@media (max-width: 750px) {
  .section01 .photo {
    margin: 0 !important;
    border-radius: 0.25rem;
  }
}
.section01 .photo > div {
  border-radius: 0.5rem;
  overflow: hidden;
  will-change: transform;
}
.section01 .photo.photo01 {
  width: 12.875rem;
  top: 5.875rem;
  left: 50%;
  margin-left: 27.5625rem;
}
@media (max-width: 750px) {
  .section01 .photo.photo01 {
    width: 10.5rem;
    top: 3.75rem;
    left: 3.75rem;
  }
}
.section01 .photo.photo02 {
  width: 18.75rem;
  top: 16.0625rem;
  right: 50%;
  margin-right: 30rem;
}
@media (max-width: 750px) {
  .section01 .photo.photo02 {
    width: 6.3125rem;
    bottom: 10rem;
    top: auto;
    left: 3.125rem;
  }
}
.section01 .photo.photo03 {
  width: 12.875rem;
  top: 33.5625rem;
  right: 50%;
  margin-right: 26.5625rem;
}
@media (max-width: 750px) {
  .section01 .photo.photo03 {
    width: 6.75rem;
    top: 8.375rem;
    left: 13.25rem;
  }
}
.section01 .photo.photo04 {
  width: 22.875rem;
  top: 37.5rem;
  left: 50%;
  margin-left: 23.375rem;
}
@media (max-width: 750px) {
  .section01 .photo.photo04 {
    width: 9.75rem;
    bottom: 3.375rem;
    top: auto;
    left: 10.5625rem;
  }
}

.section02 {
  position: relative;
  z-index: 1;
  padding-bottom: 12.5rem;
  text-align: center;
}
@media (max-width: 750px) {
  .section02 {
    padding-bottom: 8.4375rem;
  }
}
.section02 .inner {
  max-width: 65rem;
  padding: 0 0 4.875rem;
  border-radius: 2.5rem;
  border: 0.125rem solid #fff;
  -webkit-box-shadow: 0 0.1875rem 1.5rem rgba(1, 43, 97, 0.08);
          box-shadow: 0 0.1875rem 1.5rem rgba(1, 43, 97, 0.08);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  z-index: 1;
}
@media (max-width: 750px) {
  .section02 .inner {
    width: 20.9375rem;
    padding: 0 0 1.875rem;
    border-radius: 0.75rem;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
}
.section02 .inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2.5rem;
  z-index: -1;
}
@media (max-width: 750px) {
  .section02 .inner:before {
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.4);
  }
}
.section02 .ttl {
  width: 19.875rem;
  margin-inline: auto;
  position: relative;
  top: -1.0625rem;
  margin-bottom: -1.0625rem;
  line-height: 1;
}
@media (max-width: 750px) {
  .section02 .ttl {
    width: 16.125rem;
    top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}
.section02 .logo {
  width: 11.5rem;
  margin-block: 2.5rem 2rem;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .section02 .logo {
    width: 8.25rem;
    margin-block: 2.5rem 1.4375rem;
  }
}
.section02 .title {
  width: 45rem;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .section02 .title {
    width: 18.4375rem;
  }
}
.section02 .text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 2.5;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 750px) {
  .section02 .text {
    padding-inline: 1.75rem;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0;
  }
}

.section03 {
  background-color: #009FB9;
  border-top-right-radius: 12.5rem;
  border-bottom-right-radius: 10.3125rem;
  padding-block: 8.75rem 10rem;
  position: relative;
  top: -14.625rem;
  margin-bottom: -14.625rem;
}
@media (max-width: 750px) {
  .section03 {
    border-top-right-radius: 3.4375rem;
    border-bottom-right-radius: 3.4375rem;
    padding-block: 5.9375rem 6.0625rem;
    top: -8.5rem;
    margin-bottom: -8.5rem;
  }
}
.section03 .bg_gradient {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(45, 180, 197)), color-stop(86%, rgb(22, 181, 201)), to(rgb(0, 159, 185)));
  background: linear-gradient(to bottom, rgb(45, 180, 197) 0%, rgb(22, 181, 201) 86%, rgb(0, 159, 185) 100%);
  border-top-right-radius: 12.5rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 46.8125rem;
}
@media (max-width: 750px) {
  .section03 .bg_gradient {
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(45, 180, 197)), color-stop(79%, rgb(22, 181, 201)), to(rgb(0, 159, 185)));
    background: linear-gradient(to bottom, rgb(45, 180, 197) 0%, rgb(22, 181, 201) 79%, rgb(0, 159, 185) 100%);
    border-top-right-radius: 3.4375rem;
    height: 39.9375rem;
  }
}
.section03:before, .section03:after {
  content: "";
  position: absolute;
  left: 0;
  width: 9.875rem;
  height: 9.875rem;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100%;
}
@media (max-width: 750px) {
  .section03:before, .section03:after {
    width: 3.4375rem;
    height: 3.4375rem;
  }
}
.section03:before {
  top: -9.8125rem;
  background-image: url(../img/sec3_bg_01.png);
}
@media (max-width: 750px) {
  .section03:before {
    top: -3.375rem;
  }
}
.section03:after {
  bottom: -9.8125rem;
  background-image: url(../img/sec3_bg_02.png);
}
@media (max-width: 750px) {
  .section03:after {
    bottom: -3.375rem;
  }
}
.section03 .inner {
  z-index: 1;
}
.section03 .title {
  width: 58rem;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .section03 .title {
    width: 19.125rem;
    margin-left: 0.3125rem;
  }
}
@media (max-width: 750px) {
  .section03 .row01 {
    padding: 0 1.25rem;
  }
}
.section03 .row01 .video {
  -webkit-box-shadow: 0 0.1875rem 1.5rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.1875rem 1.5rem rgba(0, 0, 0, 0.16);
  background-color: rgba(255, 255, 255, 0.17);
  margin-top: 2.5rem;
  margin-inline: auto;
  width: 37.5rem;
  height: 22.1875rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
}
@media (max-width: 750px) {
  .section03 .row01 .video {
    width: 19.6875rem;
    height: 11.5625rem;
    border-radius: 0.875rem;
    margin-top: 2.5rem;
    padding: 0.625rem;
  }
}
.section03 .row01 .video .iframe {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 750px) {
  .section03 .row01 .video .iframe {
    border-radius: 0.5rem;
  }
}
.section03 .row01 .video .iframe.icon-play {
  background-color: #FFFFFF;
  cursor: pointer;
}
.section03 .row01 .video .iframe.icon-play:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  background: url(../img/icon-play.png) no-repeat center center;
  background-size: 100%;
}
@media (max-width: 750px) {
  .section03 .row01 .video .iframe.icon-play:after {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.section03 .row02 {
  margin-top: 6.125rem;
  padding: 6rem 5rem 6.125rem;
  -webkit-box-shadow: 0 0.1875rem 1.5rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.1875rem 1.5rem rgba(0, 0, 0, 0.16);
  background-color: #009FB9;
  border-radius: 7.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
}
@media (max-width: 750px) {
  .section03 .row02 {
    margin-top: 7.4375rem;
    border-radius: 3rem;
    padding: 4rem 1.875rem 5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.section03 .row02:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.section03 .row02:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/sec3_bg.png) no-repeat center top;
  background-size: 100%;
}
@media (max-width: 750px) {
  .section03 .row02:after {
    background-image: url(../img/sec3_bg_sp.png);
    background-repeat: repeat-y;
  }
}
.section03 .row02 .sub-title {
  width: 22.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 750px) {
  .section03 .row02 .sub-title {
    width: 12.5625rem;
    margin-inline: auto;
    margin-bottom: 2.625rem;
  }
}
.section03 .row02 .blog {
  width: 36.875rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}
@media (max-width: 750px) {
  .section03 .row02 .blog {
    width: 100%;
    border-bottom-width: 1px;
  }
}
.section03 .row02 .blog:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 1rem;
  border-top: 2px solid #74D625;
}
@media (max-width: 750px) {
  .section03 .row02 .blog:after {
    border-top-width: 1px;
    bottom: -1px;
  }
}
.section03 .row02 .blog__item {
  background: url(../img/icon-minus-circle.png) no-repeat center left -4rem;
  background-size: 0;
  padding-block: 0.8125rem 0.6875rem;
  position: relative;
  -webkit-transition: padding ease 0.3s;
  transition: padding ease 0.3s;
}
@media (max-width: 750px) {
  .section03 .row02 .blog__item {
    border-top-width: 1px;
    padding-block: 1.25rem 1.25rem;
  }
}
.section03 .row02 .blog__item.is-active {
  padding-block: 3.5rem 2.875rem;
}
@media (max-width: 750px) {
  .section03 .row02 .blog__item.is-active {
    padding-block: 1.9375rem 1.5rem;
  }
}
.section03 .row02 .blog__item:before, .section03 .row02 .blog__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top-width: 2px;
  border-top-style: solid;
}
@media (max-width: 750px) {
  .section03 .row02 .blog__item:before, .section03 .row02 .blog__item:after {
    border-top-width: 1px;
  }
}
.section03 .row02 .blog__item:before {
  width: 100%;
  border-top-color: rgba(255, 255, 255, 0.6);
}
.section03 .row02 .blog__item:after {
  width: 1rem;
  border-top-color: #74D625;
}
.section03 .row02 .blog__item .blog__ttl {
  font-family: "Tiro Bangla", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.25rem;
  line-height: 4rem;
  letter-spacing: 0.025em;
  font-weight: 400;
}
@media (max-width: 750px) {
  .section03 .row02 .blog__item .blog__ttl {
    font-size: 2rem;
    line-height: 1.25;
  }
}
.section03 .row02 .blog__item .blog__ttl .line {
  width: 1.5rem;
  margin-inline: 0.8125rem 1rem;
  border-bottom: 1px solid #fff;
}
@media (max-width: 750px) {
  .section03 .row02 .blog__item .blog__ttl .line {
    margin-inline: 0.625rem;
  }
}
.section03 .row02 .blog__item .blog__ttl .unit {
  margin-left: 0.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.8181818182;
  font-weight: 700;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  position: relative;
}
@media (min-width: 751px) {
  .section03 .row02 .blog__item .blog__ttl .unit {
    top: 0.1875rem;
  }
}
@media (max-width: 750px) {
  .section03 .row02 .blog__item .blog__ttl .unit {
    margin-left: 0.125rem;
    font-size: 0.875rem;
    line-height: 2.8571428571;
  }
}
.section03 .row02 .blog__item .blog__ttl.is-active {
  font-size: 4rem;
}
.section03 .row02 .blog__item .blog__ttl.is-active .unit {
  font-size: 1.375rem;
}
@media (max-width: 750px) {
  .section03 .row02 .blog__item .blog__ttl.is-active {
    font-size: 2.5rem;
  }
  .section03 .row02 .blog__item .blog__ttl.is-active .unit {
    font-size: 0.875rem;
    top: 0.1875rem;
  }
}
.section03 .row02 .blog__item .blog__list > div {
  padding-right: 2.5rem;
  padding-top: 2.375rem !important;
}
@media (max-width: 750px) {
  .section03 .row02 .blog__item .blog__list > div {
    padding-top: 0.5rem !important;
    padding-right: 0;
  }
}
.section03 .row02 .blog__item .blog__list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.375rem 0;
}
@media (max-width: 750px) {
  .section03 .row02 .blog__item .blog__list dl {
    display: block;
    padding-left: 0.625rem;
    padding-block: 0.6875rem 0.65625rem;
    font-size: 0.875rem;
  }
}
.section03 .row02 .blog__item .blog__list dl dt {
  width: 11.25rem;
  position: relative;
  padding-left: 1.25rem;
  font-weight: 700;
}
@media (max-width: 750px) {
  .section03 .row02 .blog__item .blog__list dl dt {
    width: 100%;
    letter-spacing: 0.04em;
    line-height: 1.25rem;
  }
}
.section03 .row02 .blog__item .blog__list dl dt:before {
  content: "";
  position: absolute;
  top: 0.875rem;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  background-color: #F2F6FC;
}
@media (max-width: 750px) {
  .section03 .row02 .blog__item .blog__list dl dt:before {
    top: 0.5rem;
  }
}
.section03 .row02 .blog__item .blog__list dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
}
@media (max-width: 750px) {
  .section03 .row02 .blog__item .blog__list dl dd {
    margin-top: 0.375rem;
    padding-left: 1.25rem;
    letter-spacing: 0.02em;
    line-height: 1.53125rem;
  }
}

.carbox {
  height: 47.5rem;
  border-top-right-radius: 12.5rem;
  border-bottom-right-radius: 12.5rem;
  position: absolute;
  top: 1.875rem;
  right: 2rem;
  left: -29.125rem;
}
@media (max-width: 750px) {
  .carbox {
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 3rem;
    top: 0.875rem;
    right: 0.875rem;
    left: -2.6875rem;
    height: 36.625rem;
  }
}
.carbox svg {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
}
.carbox .car {
  width: 3.5rem;
  position: absolute;
  top: -1.125rem;
  left: 0;
  opacity: 0;
}
.carbox .car.show {
  opacity: 1;
}
@media (max-width: 750px) {
  .carbox .car {
    width: 2.6875rem;
    top: -0.875rem;
  }
  .carbox .car#car7, .carbox .car#car8, .carbox .car#car9 {
    opacity: 0;
  }
}

@-webkit-keyframes move01 {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}

@keyframes move01 {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}
@-webkit-keyframes animationIcoScroll {
  0%, 100% {
    -webkit-transform: translateX(8vw);
            transform: translateX(8vw);
  }
  50% {
    -webkit-transform: translateX(-8vw);
            transform: translateX(-8vw);
  }
}
@keyframes animationIcoScroll {
  0%, 100% {
    -webkit-transform: translateX(8vw);
            transform: translateX(8vw);
  }
  50% {
    -webkit-transform: translateX(-8vw);
            transform: translateX(-8vw);
  }
}
.section04 {
  position: relative;
  padding-block: 7.5rem 0;
}
@media (max-width: 750px) {
  .section04 {
    padding-block: 6.25rem 0;
  }
}
.section04 .title {
  width: 39.125rem;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .section04 .title {
    width: 19.8125rem;
  }
}
.section04 .anchor {
  max-width: 65rem;
  margin-block: 2.5rem 6.25rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
}
@media (max-width: 750px) {
  .section04 .anchor {
    margin-block: 2.4375rem 5rem;
    gap: 0.5rem 0.625rem;
  }
}
.section04 .anchor a {
  -webkit-box-shadow: 0 0.1875rem 0.75rem rgba(0, 0, 0, 0.04);
          box-shadow: 0 0.1875rem 0.75rem rgba(0, 0, 0, 0.04);
  background-color: #fff;
  background: url(../img/arrow_down.png) no-repeat center bottom 0.5625rem;
  background-size: 0.75rem;
  border-radius: 0.5rem;
  padding-block: 1.25rem;
  position: relative;
  width: 12rem;
  height: 10.1875rem;
  display: block;
  text-align: center;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: inherit;
}
.section04 .anchor a:before, .section04 .anchor a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #E0E0E0;
  border-radius: 0.5rem;
}
.section04 .anchor a:after {
  -webkit-transition: opacity ease 0.3s;
  transition: opacity ease 0.3s;
  border: 2px solid #40B8CC;
  opacity: 0;
}
@media (min-width: 751px) and (hover: hover) {
  .section04 .anchor a:hover:after {
    opacity: 1;
  }
}
@media (max-width: 750px) {
  .section04 .anchor a {
    background-size: 0.5625rem;
    background-position: center bottom 0.3125rem;
    padding-block: 0.75rem;
    width: 8.75rem;
    height: 6.25rem;
  }
}
.section04 .anchor a img {
  line-height: 1;
  vertical-align: top;
  width: 3.5rem;
}
@media (max-width: 750px) {
  .section04 .anchor a img {
    width: 2rem;
  }
}
.section04 .anchor a span {
  margin-top: 0.75rem;
  display: block;
  min-height: 2.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media (max-width: 750px) {
  .section04 .anchor a span {
    margin-top: 0;
    font-size: 0.6875rem;
    line-height: 1.3636363636;
    letter-spacing: 0;
  }
}
.section04 .row {
  background-color: #fff;
  position: relative;
  padding-block: 5rem 7.5rem;
  border-radius: 5rem;
}
@media (max-width: 750px) {
  .section04 .row {
    padding-block: 2rem 5rem;
    border-radius: 2.5rem;
  }
}
.section04 .row:last-child:before {
  bottom: 0;
}
@media (min-width: 751px) {
  .section04 .row:last-child {
    padding-bottom: 5rem;
  }
}
.section04 .row:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -12.5rem;
  -webkit-box-shadow: 0 0 3rem rgba(1, 97, 67, 0.12);
          box-shadow: 0 0 3rem rgba(1, 97, 67, 0.12);
  border-radius: 5rem;
}
@media (max-width: 750px) {
  .section04 .row:before {
    border-radius: 2.5rem;
    bottom: -5rem;
  }
}
.section04 .row .row__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #009FB9;
}
@media (max-width: 750px) {
  .section04 .row .row__title {
    display: block;
    font-size: 1.75rem;
    line-height: 1.4285714286;
    letter-spacing: 0.08em;
    text-align: center;
  }
}
.section04 .row .row__title img {
  margin-right: 2rem;
  width: 6rem;
}
@media (max-width: 750px) {
  .section04 .row .row__title img {
    width: 4.5rem;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}
.section04 .row .row__title span {
  display: block;
}
.section04 .row .rc-content .item {
  position: relative;
}
@media (min-width: 751px) {
  .section04 .row .rc-content .item.pb-150 {
    padding-bottom: 9.375rem;
  }
}
.section04 .row .rc-content .d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 750px) {
  .section04 .row .rc-content .d-flex {
    display: block;
  }
}
.section04 .row .rc-content .d-flex .group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 750px) {
  .section04 .row .rc-content .d-flex .group {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.section04 .row .rc-content .d-flex .photo {
  width: 17.5rem;
  margin-left: 4rem;
}
@media (max-width: 750px) {
  .section04 .row .rc-content .d-flex .photo {
    width: 100%;
    margin-left: 0;
    margin-top: 1.125rem;
  }
}
.section04 .row .rc-content .photo--inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 750px) {
  .section04 .row .rc-content .photo--inline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section04 .row .rc-content .photo--scroll {
  position: relative;
}
@media (max-width: 750px) {
  .section04 .row .rc-content .photo--scroll {
    overflow: auto;
  }
}
.section04 .row .rc-content .photo--scroll .icon--scroll {
  position: absolute;
  left: calc(50% - 2.25rem);
  top: calc(50% - 2.25rem);
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto;
  z-index: 2;
  -webkit-transition: opacity 0.5s ease, visibility 0s 0.5s ease;
  transition: opacity 0.5s ease, visibility 0s 0.5s ease;
  -webkit-animation: animationIcoScroll 4s ease infinite both;
          animation: animationIcoScroll 4s ease infinite both;
}
@media (min-width: 751px) {
  .section04 .row .rc-content .photo--scroll .icon--scroll {
    display: none;
  }
}
.section04 .row .rc-content .photo--scroll .icon--scroll.is-active {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 750px) {
  .section04 .row .rc-content .photo__slider {
    margin-inline: -1.875rem;
    padding-inline: 1.875rem;
  }
  .section04 .row .rc-content .photo__slider .slider--item {
    margin-right: 1.25rem;
  }
}
.section04 .row .rc-content .photo figure + figure {
  margin-top: 2.5rem;
}
@media (max-width: 750px) {
  .section04 .row .rc-content .photo figure + figure {
    margin-top: 1.25rem;
  }
}
.section04 .row .rc-content .photo .caption {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #656777;
}
.section04 .row .rc-content .photo .caption.ta-r {
  text-align: right;
}
.section04 .row .rc-content dl dt {
  font-size: 1.5rem;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: #009FB9;
}
@media (min-width: 751px) {
  .section04 .row .rc-content dl dt.let-2 {
    letter-spacing: 0.02em;
  }
}
@media (max-width: 750px) {
  .section04 .row .rc-content dl dt {
    font-size: 1.25rem;
    line-height: 1.75;
    letter-spacing: 0.02em;
  }
}
.section04 .row .rc-content dl dd {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 750px) {
  .section04 .row .rc-content dl dd {
    font-size: 0.9375rem;
    line-height: 2.1333333333;
    letter-spacing: 0.02em;
  }
}
.section04 .row .rc-content p {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 750px) {
  .section04 .row .rc-content p {
    font-size: 0.9375rem;
    line-height: 2.1333333333;
    letter-spacing: 0.02em;
  }
}
.section04 .row .rc-content sub {
  font-size: 100%;
  bottom: -0.4375rem;
}
.section04 .row .rc-content .mt-20 {
  margin-top: 1.25rem;
}
@media (max-width: 750px) {
  .section04 .row .rc-content .mt-20 {
    margin-top: 1.25rem;
  }
}
.section04 .row .rc-content .mt-40 {
  margin-top: 2.25rem;
}
@media (max-width: 750px) {
  .section04 .row .rc-content .mt-40 {
    margin-top: 2rem;
  }
}
.section04 .row .rc-content .mt-60 {
  margin-top: 3.75rem;
}
@media (max-width: 750px) {
  .section04 .row .rc-content .mt-60 {
    margin-top: 3.75rem;
  }
}
.section04 .row__content01 {
  margin-block: 5rem 2.5rem;
  padding: 0;
  border: 1px solid #E0E0E0;
  border-radius: 2rem;
}
@media (max-width: 750px) {
  .section04 .row__content01 {
    margin: 2.5625rem 1.25rem 2.5rem;
    padding: 0;
    border-radius: 1rem;
  }
}
.section04 .row__content01 .rc-title {
  background-image: url(../img/icon-plus.png);
  background-size: 1rem;
  background-position: center right 7.5rem;
  padding: 0.875rem 5rem;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.section04 .row__content01 .rc-title.is-active {
  background-image: url(../img/icon-minus.png);
}
@media (max-width: 750px) {
  .section04 .row__content01 .rc-title {
    padding: 0.4375rem 1.25rem;
    border-radius: 1rem;
    font-size: 1rem;
    line-height: 2.5;
    background-position: center right 1.375rem;
  }
}
.section04 .row__content01 .rc-content {
  padding-top: 2.5rem;
  padding-inline: 5rem;
  position: relative;
}
@media (max-width: 750px) {
  .section04 .row__content01 .rc-content {
    padding-top: 0;
    padding-inline: 1.25rem;
  }
}
.section04 .row__content01 .rc-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5rem;
  right: 5rem;
  border-top: 1px solid #E0E0E0;
}
@media (max-width: 750px) {
  .section04 .row__content01 .rc-content:before {
    left: 1.25rem;
    right: 1.25rem;
  }
}
.section04 .row__content01 .rc-content .item {
  padding: 2.25rem 2.4375rem 4rem;
  border-top: 1px solid #E0E0E0;
}
.section04 .row__content01 .rc-content .item:first-child {
  border-top: none;
}
@media (max-width: 750px) {
  .section04 .row__content01 .rc-content .item {
    padding: 2.5rem 0.5625rem 3rem;
  }
}
.section04 .row__content01 .rc-btn {
  width: 15.625rem;
  height: 4rem;
}
@media (min-width: 751px) {
  .section04 .row__content01 .rc-btn {
    position: absolute;
    bottom: 4rem;
    right: 0;
  }
}
@media (max-width: 750px) {
  .section04 .row__content01 .rc-btn {
    width: 14.0625rem;
    height: 2.75rem;
    margin-top: 3rem;
    margin-inline: auto;
  }
}
.section04 .row__content01 .rc-btn--center {
  margin-top: 4rem;
  margin-inline: auto;
  position: relative;
  bottom: auto;
  right: auto;
}
@media (max-width: 750px) {
  .section04 .row__content01 .rc-btn--center {
    margin-top: 3rem;
  }
}
.section04 .row__content01 .rc-btn a {
  height: 100%;
  padding-right: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.3888888889;
  letter-spacing: 0.025em;
  text-decoration: none;
  color: #009FB9;
}
.section04 .row__content01 .rc-btn a:before, .section04 .row__content01 .rc-btn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #009FB9;
  border-radius: 0.5rem;
  pointer-events: none;
}
.section04 .row__content01 .rc-btn a::after {
  -webkit-transition: opacity ease 0.3s;
  transition: opacity ease 0.3s;
  border: 2px solid #009FB9;
  opacity: 0;
}
@media (min-width: 751px) and (hover: hover) {
  .section04 .row__content01 .rc-btn a:hover:after {
    opacity: 1;
  }
}
@media (max-width: 750px) {
  .section04 .row__content01 .rc-btn a {
    font-size: 1rem;
    line-height: 1.5625;
  }
}
.section04 .row__content01 .rc-btn a span {
  background: url(../img/icon-pdf.png) no-repeat center left;
  background-size: 1.625rem;
  padding-left: 2.375rem;
}
@media (max-width: 750px) {
  .section04 .row__content01 .rc-btn a span {
    padding-left: 2.125rem;
    background-size: 1.375rem;
  }
}
.section04 .row__content02 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(45, 180, 197)), color-stop(63%, rgb(22, 181, 201)), to(rgb(0, 159, 185)));
  background: linear-gradient(to bottom, rgb(45, 180, 197) 0%, rgb(22, 181, 201) 63%, rgb(0, 159, 185) 100%);
  border-radius: 2rem;
  padding: 0 2.5rem 2.5rem;
}
@media (max-width: 750px) {
  .section04 .row__content02 {
    padding: 0 0.625rem 1rem;
    border-radius: 1rem;
  }
}
.section04 .row__content02 .rc-title {
  padding: 1.875rem 0;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  color: #fff;
}
@media (max-width: 750px) {
  .section04 .row__content02 .rc-title {
    padding: 1rem 0;
    font-size: 1rem;
    line-height: 2.5;
  }
}
.section04 .row__content02 .rc-content {
  padding-bottom: 4.125rem;
  position: relative;
}
@media (max-width: 750px) {
  .section04 .row__content02 .rc-content {
    padding-bottom: 3rem;
  }
}
.section04 .row__content02 .rc-content .item {
  padding: 4rem 5rem 1.0625rem;
  background-color: #fff;
  border-radius: 1rem;
  border-bottom-left-radius: 0;
  margin-top: 6.625rem;
  position: relative;
}
@media (max-width: 750px) {
  .section04 .row__content02 .rc-content .item {
    padding: 2.375rem 1.875rem 1.875rem;
    margin-top: 4.5rem;
  }
}
.section04 .row__content02 .rc-content .item:first-child {
  margin-top: 0;
}
.section04 .row__content02 .rc-content .item::before {
  content: "";
  position: absolute;
  bottom: -4.125rem;
  left: 0;
  width: calc(100% - 13.375rem);
  height: 4.375rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background-color: #fff;
}
@media (max-width: 750px) {
  .section04 .row__content02 .rc-content .item::before {
    bottom: -3rem;
    width: calc(100% - 10.0625rem);
    height: 3.125rem;
  }
}
.section04 .row__content02 .rc-btn {
  position: absolute;
  bottom: -4.125rem;
  right: 0;
  width: 13.375rem;
  height: 4.125rem;
  border-radius: 0.5rem;
}
@media (max-width: 750px) {
  .section04 .row__content02 .rc-btn {
    width: 10.0625rem;
    height: 3rem;
    bottom: -3rem;
  }
}
.section04 .row__content02 .rc-btn:after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 1.0625rem;
  height: 1.0625rem;
  background: url(../img/border-top-w.png) no-repeat left top/100%;
  pointer-events: none;
}
.section04 .row__content02 .rc-btn a {
  padding: 1.875rem 0 0.5625rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.125rem;
  line-height: 1.3888888889;
  letter-spacing: 0.025em;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 750px) {
  .section04 .row__content02 .rc-btn a {
    padding: 1rem 0 0.375rem;
    font-size: 1rem;
    line-height: 1.5625;
  }
}
.section04 .row__content02 .rc-btn a span {
  background: url(../img/icon-pdf2.png) no-repeat center left;
  background-size: 1.625rem;
  padding-left: 2.625rem;
  position: relative;
}
.section04 .row__content02 .rc-btn a span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2.625rem;
  right: 0;
  border-bottom: 1px solid #fff;
  -webkit-transition: left ease 0.3s;
  transition: left ease 0.3s;
}
@media (max-width: 750px) {
  .section04 .row__content02 .rc-btn a span {
    background-size: 1.375rem;
    padding-left: 2.125rem;
  }
  .section04 .row__content02 .rc-btn a span:after {
    left: 2.125rem;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .section04 .row__content02 .rc-btn a:hover span:after {
    left: 100%;
  }
}
@media (min-width: 751px) {
  .section04 .row.row01 {
    padding-top: 5.8125rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row01 .row__content01 {
    margin-top: 4rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row01 .row__content01 .item {
    padding-bottom: 2.5rem;
  }
}
.section04 .row.row01 .row__content01 .item .txt_img {
  margin-top: 2.25rem;
  max-width: 38.5rem;
}
@media (max-width: 750px) {
  .section04 .row.row01 .row__content01 .item .txt_img {
    margin-top: 1.5rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row01 .row__content01 .item .rc-btn {
    bottom: 2.5rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row01 .row__content02 .item {
    padding-bottom: 0;
  }
}
@media (max-width: 750px) {
  .section04 .row.row01 .row__content02 .item {
    padding-bottom: 1.5rem;
  }
}
.section04 .row.row01 .row__content02 .item .txt_img {
  max-width: 34.1875rem;
}
@media (min-width: 751px) {
  .section04 .row.row01 .row__content02 .item .txt_img {
    margin-top: 2.25rem;
  }
}
@media (max-width: 750px) {
  .section04 .row.row01 .row__content02 .item .txt_img {
    margin-top: 1.5rem;
  }
}
@media (max-width: 750px) {
  .section04 .row.row02 .row__content01 .item {
    padding-block: 2.75rem 3rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row02 .row__content01 .item.item--03 {
    padding-bottom: 7.75rem;
  }
  .section04 .row.row02 .row__content01 .item.item--03 .photo {
    padding-top: 3.625rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row02 .row__content01 .item.item--04 {
    padding-bottom: 10.25rem;
  }
  .section04 .row.row02 .row__content01 .item.item--04 .photo {
    width: 19.875rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row02 .row__content01 .item.item--01 .photo, .section04 .row.row02 .row__content01 .item.item--05 .photo, .section04 .row.row02 .row__content01 .item.item--07 .photo {
    width: 13.125rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row02 .row__content01 .item.item--06 .photo__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem;
  }
}
.section04 .row.row02 .row__content01 .item.item--06 .photo__slider .slider--item {
  width: 19.125rem;
}
@media (min-width: 751px) {
  .section04 .row.row02 .row__content01 .item.item--06 .photo__slider .slider--item:nth-child(2) {
    width: 20.125rem;
  }
}
@media (max-width: 750px) {
  .section04 .row.row02 .row__content01 .item.item--06 .photo__slider .slider--item {
    width: 17.1875rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row02 .row__content02 .photo__slider .slider--item + .slider--item {
    margin-top: 2.25rem;
  }
}
@media (max-width: 750px) {
  .section04 .row.row02 .row__content02 .photo__slider .slider--item {
    width: 18.4375rem;
  }
}
.section04 .row.row03 .row__content01 .item .photo {
  margin-top: 3.75rem;
}
@media (max-width: 750px) {
  .section04 .row.row03 .row__content01 .item .photo {
    margin-top: 1.125rem;
    margin-inline: -1.25rem;
  }
}
.section04 .row.row03 .row__content01 .item .photo figure + figure {
  margin-top: 0.625rem;
}
@media (max-width: 750px) {
  .section04 .row.row03 .row__content01 .item .photo figure + figure {
    margin-top: 1.5rem;
  }
}
.section04 .row.row03 .row__content02 .photo {
  margin-top: 2.125rem;
}
@media (min-width: 751px) {
  .section04 .row.row03 .row__content02 .photo {
    margin-top: 3.125rem;
    padding-bottom: 1.4375rem;
  }
}
.section04 .row.row03 .row__content02 .photo > figure {
  width: 20.25rem;
  margin-right: 2.25rem;
}
@media (max-width: 750px) {
  .section04 .row.row03 .row__content02 .photo > figure {
    width: 17.1875rem;
    margin-inline: auto;
  }
}
@media (min-width: 751px) {
  .section04 .row.row03 .row__content02 .photo__slider {
    padding-top: 3.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
  }
}
@media (max-width: 750px) {
  .section04 .row.row03 .row__content02 .photo__slider {
    margin-top: 2.5rem;
  }
}
.section04 .row.row03 .row__content02 .photo__slider .slider--item {
  width: 17.5rem;
}
@media (max-width: 750px) {
  .section04 .row.row03 .row__content02 .photo__slider .slider--item {
    width: 18.4375rem;
  }
}
.section04 .row.row04 .row__content01 .photo {
  text-align: center;
  margin-top: 1rem;
}
@media (min-width: 751px) {
  .section04 .row.row04 .row__content01 .photo {
    padding-bottom: 4.125rem;
  }
}
.section04 .row.row04 .row__content01 .photo img {
  max-width: 35.1875rem;
  width: 100%;
}
.section04 .row.row04 .row__content02 .photo {
  text-align: center;
}
@media (min-width: 751px) {
  .section04 .row.row04 .row__content02 .photo {
    padding-bottom: 1.25rem;
  }
}
.section04 .row.row04 .row__content02 .photo img {
  max-width: 45.5625rem;
  width: 100%;
}
.section04 .row.row05 .row__content01 .item > dl {
  margin-top: 2.0625rem;
}
@media (max-width: 750px) {
  .section04 .row.row05 .row__content01 .item > dl {
    margin-top: 1.9375rem;
  }
  .section04 .row.row05 .row__content01 .item > dl dd {
    margin-top: 0.5rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row05 .row__content01 .item .photo__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.5rem;
  }
}
.section04 .row.row05 .row__content01 .item .photo__slider .slider--item {
  width: 17.5rem;
}
@media (max-width: 750px) {
  .section04 .row.row05 .row__content01 .item .photo__slider .slider--item {
    width: 17.1875rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row05 .row__content02 .item {
    padding-bottom: 2.25rem;
  }
}
.section04 .row.row05 .row__content02 .item > dl {
  margin-top: 1.5625rem;
}
@media (max-width: 750px) {
  .section04 .row.row05 .row__content02 .item > dl {
    margin-top: 2rem;
  }
}
.section04 .row.row05 .row__content02 .item > dl dd {
  margin-top: 0.5rem;
}
@media (max-width: 750px) {
  .section04 .row.row05 .row__content02 .item > dl dd {
    margin-top: 1rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row06 .row__content02 .item {
    padding-bottom: 2.25rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row07 .row__content01 .item .photo {
    width: 18.75rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row07 .row__content02 .item {
    padding-bottom: 0;
  }
}
.section04 .row.row07 .row__content02 .item .photo {
  margin-top: 0.75rem;
  text-align: center;
  position: relative;
}
@media (max-width: 750px) {
  .section04 .row.row07 .row__content02 .item .photo {
    margin-top: 1.125rem;
    padding-bottom: 0.625rem;
  }
}
.section04 .row.row07 .row__content02 .item .photo img {
  max-width: 28.625rem;
  width: 100%;
}
.section04 .row.row08 .row__content01 .card {
  margin-top: 2.5rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 750px) {
  .section04 .row.row08 .row__content01 .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2.25rem;
  }
}
.section04 .row.row08 .row__content01 .card .photo {
  width: 12.1875rem;
  margin-right: 2.5625rem;
}
.section04 .row.row08 .row__content01 .card .group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section04 .row.row08 .row__content01 .card .group dl dd {
  margin-top: 0.5rem;
}
@media (max-width: 750px) {
  .section04 .row.row08 .row__content01 .card .photo {
    width: 6.25rem;
    margin-right: 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
  }
  .section04 .row.row08 .row__content01 .card .group {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .section04 .row.row08 .row__content01 .card .group dl dt {
    margin-left: 7.75rem;
    height: 6.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section04 .row.row08 .row__content01 .card .group dl dd {
    margin-top: 0.875rem;
  }
}
.section04 .row.row08 .row__content02 .item > dl {
  margin-top: 2.0625rem;
}
.section04 .row.row08 .row__content02 .item dl dd {
  margin-top: 0.5rem;
}
@media (max-width: 750px) {
  .section04 .row.row08 .row__content02 .item dl dd {
    margin-top: 1rem;
  }
}
@media (min-width: 751px) {
  .section04 .row.row08 .row__content02 .item .mtpc-0 {
    margin-top: 0;
  }
}
@media (min-width: 751px) {
  .section04 .row.row08 .row__content02 .photo.w-240 {
    width: 15rem;
  }
  .section04 .row.row08 .row__content02 .photo.w-432 {
    width: 27rem;
    padding-top: 3.375rem;
  }
}
@media (max-width: 750px) {
  .section04 .row.row08 .row__content02 .photo.w-240 {
    width: 15rem;
    margin-inline: auto;
  }
}
.section04 .row.row09 .row__content01 .item > dl {
  margin-top: 2.0625rem;
}
@media (min-width: 751px) {
  .section04 .row.row09 .row__content01 .item .rc-btn {
    margin-top: 2.5rem;
  }
}
.section04 .row.row09 .row__content02 .photo {
  text-align: center;
}
@media (min-width: 751px) {
  .section04 .row.row09 .row__content02 .photo {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 750px) {
  .section04 .row.row09 .row__content02 .photo {
    margin-inline: -1.875rem;
    padding-inline: 0.625rem;
  }
}
.section04 .row.row09 .row__content02 .photo .image {
  width: 46.5625rem;
  margin-inline: auto;
}
.section04 .row.row10 .row__content01 .item .photo {
  position: relative;
}
.section04 .row.row10 .row__content01 .item .photo:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.125rem;
  height: 1.5rem;
  background: url(../img/icon-triangle.png) no-repeat center center;
  background-size: contain;
}
@media (max-width: 750px) {
  .section04 .row.row10 .row__content01 .item .photo:before {
    width: 0.75rem;
    height: 1rem;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
}
@media (min-width: 751px) {
  .section04 .row.row10 .row__content01 .item .photo {
    gap: 4.125rem;
  }
  .section04 .row.row10 .row__content01 .item .photo figure {
    margin-top: 0;
    width: 17.5rem;
  }
}
@media (max-width: 750px) {
  .section04 .row.row10 .row__content01 .item .photo {
    gap: 3.125rem;
  }
  .section04 .row.row10 .row__content01 .item .photo figure {
    width: 100%;
    margin-top: 0;
  }
}
@media (min-width: 751px) {
  .section04 .row.row10 .row__content02 .item .d-flex .photo {
    width: 16.25rem;
  }
}
.section04 .row.row10 .row__content02 .item .photo--inline {
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 751px) {
  .section04 .row.row10 .row__content02 .item .photo--inline {
    padding-bottom: 2.5rem;
    margin-top: 4.75rem;
  }
}
.section04 .row.row10 .row__content02 .item .photo--inline:before {
  content: "";
  position: absolute;
  top: 38%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.125rem;
  height: 1.5rem;
  background: url(../img/icon-triangle.png) no-repeat center center;
  background-size: contain;
}
@media (max-width: 750px) {
  .section04 .row.row10 .row__content02 .item .photo--inline:before {
    top: 46%;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
}
@media (min-width: 751px) {
  .section04 .row.row10 .row__content02 .item .photo--inline figure {
    margin-top: 0;
    width: 27.25rem;
  }
}
@media (max-width: 750px) {
  .section04 .row.row10 .row__content02 .item .photo--inline {
    gap: 3.125rem;
  }
  .section04 .row.row10 .row__content02 .item .photo--inline figure {
    width: 100%;
    margin-top: 0;
  }
}
.section04 .row.row10 .row__content02 .item dl dd {
  margin-top: 0.5rem;
}

.accordion__link {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 2rem;
  background-image: url(../img/icon-plus-circle.png);
}
@media (min-width: 751px) {
  .accordion__link {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .accordion__link:hover {
    opacity: 0.8;
  }
}
.accordion__link.is-active {
  background-image: url(../img/icon-minus-circle.png);
}
@media (max-width: 750px) {
  .accordion__link {
    background-size: 1.5rem;
  }
}
.accordion__content {
  display: none;
}

.blocker {
  z-index: 11;
}

.modal-video {
  max-width: 65rem;
  padding: 0;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}
@media (max-width: 750px) {
  .modal-video {
    width: 20.9375rem;
  }
}
.modal-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.modal-video a.close-modal {
  position: absolute;
  width: 2.375rem;
  height: 2.375rem;
  top: -2.625rem;
  right: 0;
  background: url(../img/icon-close-modal.png) no-repeat center center;
  background-size: contain;
}
.modal-video a.close-modal:before, .modal-video a.close-modal:after {
  display: none;
}
@media (max-width: 750px) {
  .modal-video a.close-modal {
    width: 2.1875rem;
    height: 2.1875rem;
    top: -2.75rem;
  }
}

.footer {
  background: url(../img/footer_bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 14.4375rem 0 10.125rem;
  margin-top: -8.0625rem;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: -1;
}
@media (max-width: 750px) {
  .footer {
    background-image: url(../img/footer_bg_sp.jpg);
    padding: 11.375rem 0 11.875rem;
    margin-top: -2.5rem;
  }
}
.footer .title {
  font-size: 2.5rem;
  line-height: 1.8;
  letter-spacing: 0.22em;
  font-weight: bold;
  width: 60rem;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .footer .title {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.11em;
    width: auto;
    margin-inline: -1.125rem;
  }
}
.footer .text {
  margin-top: 2rem;
  text-shadow: 0 0 0.75rem #000000;
  font-size: 1.125rem;
  line-height: 3;
  letter-spacing: 0.04em;
  font-weight: bold;
}
@media (max-width: 750px) {
  .footer .text {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 2.8571428571;
    letter-spacing: 0.02em;
    font-weight: 500;
  }
}
.footer .is-detect-bg {
  position: absolute;
  top: 13.125rem;
  height: 1px;
  width: 10px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 750px) {
  .footer .is-detect-bg {
    top: 3.75rem;
  }
}

#ss-header {
  width: 100%;
}
@media (max-width: 750px) {
  #ss-header {
    height: 100%;
  }
}
#ss-header ul#headerlogo {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 750px) {
  #ss-header ul#headerlogo li {
    padding-left: 15px;
    padding-right: 15px;
  }
}

#ss-footer {
  height: auto;
  width: 100%;
}
@media (min-width: 751px) {
  #ss-footer ul#footerMenu {
    padding: 5px 0;
  }
}
@media (max-width: 750px) {
  #ss-footer ul#footerMenu {
    padding-bottom: 7px;
  }
}
#ss-footer ul#footerMenu li a {
  letter-spacing: normal;
  line-height: 1;
}
@media (max-width: 750px) {
  #ss-footer ul#footerMenu li {
    padding: 0px 10px;
    display: inline-block;
    border: none;
    line-height: 1;
  }
}
#ss-footer p#copyright {
  text-align: center;
  background: #fff;
  letter-spacing: normal;
}
@media (min-width: 751px) {
  #ss-footer p#copyright {
    font-size: 75%;
    padding: 13px 0;
    line-height: 1;
  }
}
@media (max-width: 750px) {
  #ss-footer p#copyright {
    font-size: 10.5px;
  }
}

.pageTop {
  position: fixed;
  bottom: 2.75rem;
  right: 2.75rem;
  width: 2rem;
  z-index: 99;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 750px) {
  .pageTop {
    width: 6.125rem;
    bottom: 1rem;
    right: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .pageTop:hover {
    opacity: 0.8;
  }
}
.pageTop.light-mode img {
  -webkit-filter: invert(1);
          filter: invert(1);
}