@charset "UTF-8";
/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*, ::before, ::after {
  background-repeat: no-repeat;
  /* 1 */
  box-sizing: inherit;
  /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritence in all browsers (opinionated).
 */
::before, ::after {
  vertical-align: inherit;
  /* 2 */
  text-decoration: inherit;
  /* 1 */
}

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
  box-sizing: border-box;
  /* 1 */
  cursor: default;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 3 */
}

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article, aside, footer, header, nav, section {
  display: block;
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

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

/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption, figure, main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

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

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol, nav ul {
  list-style: none;
}

/**
 * 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 (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 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 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b, strong {
  font-weight: inherit;
}

/**
 * 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 style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * 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 {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

sup {
  top: -.5em;
}

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */
::-moz-selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000;
  /* 1 */
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000;
  /* 1 */
  text-shadow: none;
}

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio, video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse;
}

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button, input, optgroup, select, textarea {
  margin: 0;
}

/**
 * Inherit styling in all browsers (opinionated).
 */
button, input, select, textarea {
  background-color: transparent;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button, input {
  /* 1 */
  overflow: visible;
}

/**
 * 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;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button, html [type="button"],
[type="reset"], [type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * 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 {
  padding: 0;
  border-style: none;
}

/**
 * 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;
}

/**
 * 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 {
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */
}

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

/**
 * 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 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a, area, button, input, label, select, summary, textarea, [tabindex] {
  /* 1 */
  touch-action: manipulation;
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden="false"][hidden]:not(:focus) {
  display: inherit;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default;
}

/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

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

img,
embed,
iframe,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

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

td,
th {
  padding: 0;
  text-align: left;
}

/**
 * Swiper 4.5.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 16, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

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

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

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

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

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

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

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

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

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

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

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

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

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

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

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

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

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

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

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

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

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

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

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

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

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

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

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

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

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

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2;
}

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

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

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

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

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

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

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

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

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

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

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

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

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

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

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}

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

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

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

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

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

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

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

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

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

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

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

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

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

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

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

/*
 *  width
 */
/*
 * Easing
 * https://easings.net/
 */
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #212121;
  word-wrap: break-word;
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

ul, li {
  margin: 0;
  padding: 0;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  outline: none;
  padding: 0;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input {
  vertical-align: bottom;
  margin: 0;
  padding: 0;
}

.br::before {
  content: "\A";
  white-space: pre;
}

.br--md::before {
  content: "";
  white-space: normal;
}

.br--main::before {
  content: "";
  white-space: normal;
}

.br--large::before {
  content: "";
  white-space: normal;
}

.br--xlarge::before {
  content: "";
  white-space: normal;
}

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

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 12.5px;
  left: 0;
  right: 0;
  padding: 0 16px;
  transform: translateY(-100%);
  opacity: 0;
  z-index: 10;
}

.header__logo {
  width: 126.5px;
  height: auto;
}

.header__link-fig {
  width: 102.5px;
  height: auto;
}

.footer {
  position: relative;
  z-index: 2;
  background: #fff;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 42.5px 0 26px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-items: center;
  margin-bottom: 11.5px;
}

.footer__link {
  margin-bottom: 15px;
  padding: 0 1em;
  letter-spacing: 0;
}

.footer__link:not(:last-of-type) {
  border-right: 1px solid #000;
}

.footer__copyright {
  font-size: 1rem;
  letter-spacing: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, calc( 12px + 6 * (var(--vw, 1vw) * 100 - 320px) / 430), 18px);
  line-height: 1.66;
  letter-spacing: 0.05em;
  color: #000;
}

main {
  position: relative;
  overflow: hidden;
}

.container {
  background: #fff;
  position: relative;
  z-index: 2;
}

.container__inner {
  width: 91.46vw;
  margin: 0 auto;
}

.anim {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.75s;
}

.anim-inner {
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.75s;
}

.anim.exit {
  transform: translate(0, 0);
}

.anim.exit .anim-inner {
  transform: translate(0, 0);
}

.fadein {
  transform: translateY(50px);
  transition: all 0.3s ease;
  opacity: 0;
}

.fadein.on {
  transform: translateY(0);
  opacity: 1;
}

.fade {
  transition: opacity 0.3s ease;
  opacity: 0;
}

.fade.on {
  opacity: 1;
}

.rellax {
  position: absolute;
  z-index: 0;
}

.rellax--01 {
  background: linear-gradient(0deg, #78c1eb 0%, #61a8f1 34%, #4a8ff7 100%);
  bottom: clamp(42.5px, calc( 42.5px + 21.25 * (var(--vw, 1vw) * 100 - 320px) / 430), 63.75px);
  left: 0;
  width: clamp(16px, calc( 16px + 8 * (var(--vw, 1vw) * 100 - 320px) / 430), 24px);
  height: clamp(124px, calc( 124px + 62 * (var(--vw, 1vw) * 100 - 320px) / 430), 186px);
}

.rellax--02 {
  background: #6db5ee;
  top: clamp(4px, calc( 4px + 2 * (var(--vw, 1vw) * 100 - 320px) / 430), 6px);
  right: clamp(26px, calc( 26px + 13 * (var(--vw, 1vw) * 100 - 320px) / 430), 39px);
  width: clamp(16.5px, calc( 16.5px + 8.25 * (var(--vw, 1vw) * 100 - 320px) / 430), 24.75px);
  height: clamp(89px, calc( 89px + 44.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 133.5px);
  z-index: 2;
}

.rellax--03 {
  display: none;
}

.rellax--04 {
  background-color: #d4f9f5;
}

.rellax--06 {
  background-color: #78c1eb;
}

.rellax--08 {
  background-color: #f7e5e5;
  top: clamp(-20.5px, calc( -20.5px + -10.25 * (var(--vw, 1vw) * 100 - 320px) / 430), -30.75px);
  right: clamp(23px, calc( 23px + 11.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 34.5px);
  width: clamp(33px, calc( 33px + 16.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 49.5px);
  height: clamp(12px, calc( 12px + 6 * (var(--vw, 1vw) * 100 - 320px) / 430), 18px);
  transform: translate(0, -100%);
  z-index: 2;
}

.rellax--09 {
  background: #d4f9f5;
}

.rellax--10 {
  background: #f7e5e5;
  transform: translate(100%, -50%);
}

.kv {
  position: relative;
}

.kv__inner {
  background: url(../img/kv/bg_kv_base_sp.jpg) center/cover no-repeat;
  position: fixed;
  width: 100%;
  height: 180vw;
  z-index: 0;
}

.kv__copy {
  position: absolute;
  top: 12.21%;
  left: 0;
  z-index: 5;
}

.kv__copy-fig {
  width: 100vw;
  height: auto;
}

.kv__ship {
  background: url(../img/kv/img_kv_ship_sp.png) center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
}

.kv__fig {
  position: absolute;
  top: 25.5%;
  left: 50%;
  width: 62.66vw;
  height: 80vw;
  transform: translateX(-50%);
  z-index: 4;
}

.kv__img {
  position: absolute;
  height: auto;
  transform: translateY(100%) scale(0.5);
  opacity: 0;
  z-index: 1;
}

.kv__img--01 {
  display: none;
}

.kv__img--02 {
  top: 40.76%;
  left: -48.67%;
  width: 56.66vw;
  z-index: 3;
}

.kv__img--03 {
  display: none;
}

.kv__img--04 {
  display: none;
}

.kv__img--05 {
  top: 14.5%;
  left: 0;
  width: 19.06vw;
}

.kv__img--06 {
  top: 45.95%;
  left: 4.39%;
  width: 19.73vw;
}

.kv__img--07 {
  top: 41.67%;
  right: 1.33%;
  width: 28.53vw;
}

.kv__img--08 {
  top: 8.5%;
  left: 9.57%;
  width: 16.26vw;
}

.kv__img--09 {
  top: 50%;
  left: 0;
  width: 8.93vw;
}

.kv__img--10 {
  top: 47.33%;
  left: 17.44%;
  width: 7.86vw;
}

.kv__img--11 {
  top: 0;
  left: 40.21%;
  width: 2.66vw;
}

.kv__img--12 {
  top: 11.16%;
  left: 44.25%;
  width: 5.06vw;
}

.kv__img--13 {
  bottom: 0;
  left: 41.91%;
  width: 7.33vw;
}

.kv__img--14 {
  top: 1.5%;
  right: 37.44%;
  width: 4.26vw;
}

.kv__img--15 {
  top: 61.5%;
  right: 34.68%;
  width: 5.86vw;
}

.kv__img--16 {
  top: 20.66%;
  right: 24.04%;
  width: 4.93vw;
}

.kv__img--17 {
  top: 1.66%;
  right: 18.29%;
  width: 5.2vw;
}

.kv__img--18 {
  top: 17.83%;
  right: 0;
  width: 10.4vw;
}

.kv__img--19 {
  top: 63.83%;
  right: 11.06%;
  width: 8.4vw;
}

.kv-main {
  margin-bottom: 36px;
  padding-top: 100vh;
}

.kv__ttl {
  z-index: 5;
}

.kv__txt {
  margin-bottom: 25px;
  z-index: 5;
}

.anchor-link__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 19px;
  padding-top: 78px;
}

.anchor-link__blc {
  position: relative;
  width: calc(50% - (32px / 4));
  height: clamp(144px, calc( 144px + 144 * (var(--vw, 1vw) * 100 - 320px) / 430), 288px);
  overflow: hidden;
}

.anchor-link__blc:nth-of-type(1), .anchor-link__blc:nth-of-type(2) {
  margin-bottom: 16px;
}

.anchor-link__blc:last-of-type .anchor-link__ttl {
  letter-spacing: -0.075em;
}

.anchor-link__blc:before, .anchor-link__blc:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.anchor-link__blc:before {
  background: center / cover no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s linear;
  z-index: 1;
}

.anchor-link__blc:after {
  background: #fff;
  top: 0;
  left: 0;
  transition: opacity 0.25s linear;
  opacity: 0.5;
  z-index: 2;
}

.anchor-link__blc:hover {
  opacity: 1;
}

.anchor-link__blc:hover:before {
  transform: translate(-50%, -50%) scale(1.05);
}

.anchor-link__blc:hover:after {
  opacity: 0.7;
}

.anchor-link__blc--01:before {
  background-image: url(../img/anchorlink/bg_anchorlink_01_sp.jpg);
}

.anchor-link__blc--02:before {
  background-image: url(../img/anchorlink/bg_anchorlink_02_sp.jpg);
}

.anchor-link__blc--03:before {
  background-image: url(../img/anchorlink/bg_anchorlink_03_sp.jpg);
}

.anchor-link__blc--04:before {
  background-image: url(../img/anchorlink/bg_anchorlink_04_sp.jpg);
}

.anchor-link__item {
  position: relative;
  z-index: 3;
}

.anchor-link__num {
  width: auto;
  height: clamp(47.625px, calc( 47.625px + 23.8125 * (var(--vw, 1vw) * 100 - 320px) / 430), 71.4375px);
}

.anchor-link__ttl {
  margin-top: 3px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.75);
}

.sec01 {
  margin-left: calc(50% - (var(--vw, 1vw) * 50));
  margin-right: calc(50% - (var(--vw, 1vw) * 50));
  padding-left: calc((var(--vw, 1vw) * 50) - 50%);
  padding-right: calc((var(--vw, 1vw) * 50) - 50%);
  position: relative;
  margin-top: clamp(100px, calc( 100px + 50 * (var(--vw, 1vw) * 100 - 320px) / 430), 150px);
}

.sec01__bg {
  position: absolute;
  top: clamp(-27px, calc( -27px + -13.5 * (var(--vw, 1vw) * 100 - 320px) / 430), -40.5px);
  right: 0;
  width: clamp(91px, calc( 91px + 45.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 136.5px);
}

.sec01__bg img {
  width: 100%;
  height: 100%;
}

.sec01-top {
  margin-left: calc(50% - (var(--vw, 1vw) * 50));
  margin-right: calc(50% - (var(--vw, 1vw) * 50));
  padding-left: calc((var(--vw, 1vw) * 50) - 50%);
  padding-right: calc((var(--vw, 1vw) * 50) - 50%);
  display: grid;
  position: relative;
  gap: 0 clamp(13px, calc( 13px + 6.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 19.5px);
  grid-template-columns: clamp(75.5px, calc( 75.5px + 37.75 * (var(--vw, 1vw) * 100 - 320px) / 430), 113.25px) auto;
}

.sec01-top__num {
  width: 100%;
}

.sec01-top__ttl {
  display: block;
  width: clamp(131.5px, calc( 131.5px + 65.75 * (var(--vw, 1vw) * 100 - 320px) / 430), 197.25px);
  margin-left: clamp(16px, calc( 16px + 8 * (var(--vw, 1vw) * 100 - 320px) / 430), 24px);
}

.sec01-top__box {
  background-color: #fff;
  margin-top: clamp(13px, calc( 13px + 6.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 19.5px);
  padding: clamp(20px, calc( 20px + 10 * (var(--vw, 1vw) * 100 - 320px) / 430), 30px) clamp(20px, calc( 20px + 10 * (var(--vw, 1vw) * 100 - 320px) / 430), 30px) clamp(21px, calc( 21px + 10.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 31.5px);
  box-shadow: 0 1.5px 8px 0 rgba(0, 0, 0, 0.09);
}

.sec01-history {
  position: relative;
  margin-top: clamp(30px, calc( 30px + 15 * (var(--vw, 1vw) * 100 - 320px) / 430), 45px);
}

.sec01-history__ttl {
  display: block;
  width: clamp(198px, calc( 198px + 99 * (var(--vw, 1vw) * 100 - 320px) / 430), 297px);
}

.sec01-history__blc {
  position: relative;
}

.sec01-history__blc--1 {
  margin-top: clamp(12px, calc( 12px + 6 * (var(--vw, 1vw) * 100 - 320px) / 430), 18px);
}

.sec01-history__blc--1:before {
  content: "";
  background: #efefef;
  position: absolute;
  bottom: clamp(-122px, calc( -122px + -61 * (var(--vw, 1vw) * 100 - 320px) / 430), -183px);
  left: calc(var(--vw, 1vw) * -4.27);
  width: clamp(286px, calc( 286px + 143 * (var(--vw, 1vw) * 100 - 320px) / 430), 429px);
  height: clamp(490px, calc( 490px + 245 * (var(--vw, 1vw) * 100 - 320px) / 430), 735px);
  z-index: -1;
}

.sec01-history__blc--2 {
  margin-top: clamp(12px, calc( 12px + 6 * (var(--vw, 1vw) * 100 - 320px) / 430), 18px);
}

.sec01-history__blc--2 .sec01-history__caption {
  margin: clamp(13.5px, calc( 13.5px + 6.75 * (var(--vw, 1vw) * 100 - 320px) / 430), 20.25px) clamp(19px, calc( 19px + 9.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 28.5px) 0;
}

.sec01-history__blc--2 .sec01-history__txt {
  margin: clamp(21px, calc( 21px + 10.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 31.5px) clamp(19px, calc( 19px + 9.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 28.5px) 0;
}

.sec01-history__box {
  background-color: #fff;
  padding: clamp(19px, calc( 19px + 9.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 28.5px);
  box-shadow: 0 1.5px 8px 0 rgba(0, 0, 0, 0.09);
}

.sec01-history__box--1 .sec01-history__img {
  box-shadow: 0 1.5px 8px 0 rgba(0, 0, 0, 0.09);
}

.sec01-history__box--1 .sec01-history__caption {
  margin-top: clamp(12.5px, calc( 12.5px + 6.25 * (var(--vw, 1vw) * 100 - 320px) / 430), 18.75px);
}

.sec01-history__box--1 .sec01-history__txt {
  margin-top: clamp(20px, calc( 20px + 10 * (var(--vw, 1vw) * 100 - 320px) / 430), 30px);
}

.sec01-history__img {
  display: block;
}

.sec01-history__caption {
  font-size: clamp(10px, calc( 10px + 5 * (var(--vw, 1vw) * 100 - 320px) / 430), 15px);
  letter-spacing: 0.05em;
}

.sec01-movie {
  margin-left: calc(50% - (var(--vw, 1vw) * 50));
  margin-right: calc(50% - (var(--vw, 1vw) * 50));
  padding-left: calc((var(--vw, 1vw) * 50) - 50%);
  padding-right: calc((var(--vw, 1vw) * 50) - 50%);
  position: relative;
  margin-top: clamp(32px, calc( 32px + 16 * (var(--vw, 1vw) * 100 - 320px) / 430), 48px);
  padding-bottom: clamp(26px, calc( 26px + 13 * (var(--vw, 1vw) * 100 - 320px) / 430), 39px);
}

.sec01-movie:before {
  content: "";
  background: linear-gradient(0deg, #fee0b0 -50%, white 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(var(--vw, 1vw) * 100);
  height: clamp(285px, calc( 285px + 142.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 427.5px);
  transform: translate(-50%, 0%);
  z-index: -1;
}

.sec01-movie__ttl {
  display: block;
  width: clamp(304.1px, calc( 304.1px + 152.05 * (var(--vw, 1vw) * 100 - 320px) / 430), 456.15px);
}

.sec01-movie__blc {
  position: relative;
  margin-top: clamp(12px, calc( 12px + 6 * (var(--vw, 1vw) * 100 - 320px) / 430), 18px);
}

.sec01-movie__blc.is-hidden .sec01-movie__thumb, .sec01-movie__blc.is-hidden .sec01-movie__btn {
  transition: opacity 0.3s linear, z-index 0.1s 0.3s;
  opacity: 0;
  z-index: -100;
}

.sec01-movie__thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.sec01-movie__thumb:hover + .sec01-movie__btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.sec01-movie__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(100px, calc( 100px + 50 * (var(--vw, 1vw) * 100 - 320px) / 430), 150px);
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
  pointer-events: none;
  z-index: 5;
}

.sec01-movie__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.sec01-feeling {
  margin-left: calc(50% - (var(--vw, 1vw) * 50));
  margin-right: calc(50% - (var(--vw, 1vw) * 50));
  padding-left: calc((var(--vw, 1vw) * 50) - 50%);
  padding-right: calc((var(--vw, 1vw) * 50) - 50%);
  position: relative;
  padding-top: clamp(30px, calc( 30px + 15 * (var(--vw, 1vw) * 100 - 320px) / 430), 45px);
}

.sec01-feeling__bg {
  position: absolute;
  bottom: clamp(27.5px, calc( 27.5px + 13.75 * (var(--vw, 1vw) * 100 - 320px) / 430), 41.25px);
  left: 0;
  width: clamp(74px, calc( 74px + 37 * (var(--vw, 1vw) * 100 - 320px) / 430), 111px);
}

.sec01-feeling__inner {
  background-color: #fff;
  position: relative;
}

.sec01-feeling__ttl {
  display: block;
  width: clamp(289px, calc( 289px + 144.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 433.5px);
}

.sec01-feeling__box {
  position: relative;
  margin-top: clamp(16px, calc( 16px + 8 * (var(--vw, 1vw) * 100 - 320px) / 430), 24px);
  padding: clamp(34px, calc( 34px + 17 * (var(--vw, 1vw) * 100 - 320px) / 430), 51px) clamp(19px, calc( 19px + 9.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 28.5px) clamp(20px, calc( 20px + 10 * (var(--vw, 1vw) * 100 - 320px) / 430), 30px);
  box-shadow: 0 1.5px 8px 0 rgba(0, 0, 0, 0.09);
}

.sec01-feeling__img {
  display: block;
  width: clamp(124px, calc( 124px + 62 * (var(--vw, 1vw) * 100 - 320px) / 430), 186px);
  margin: 0 auto;
}

.sec01-feeling__txt {
  margin-top: clamp(18px, calc( 18px + 9 * (var(--vw, 1vw) * 100 - 320px) / 430), 27px);
}

.sec02 {
  margin-left: calc(50% - (var(--vw, 1vw) * 50));
  margin-right: calc(50% - (var(--vw, 1vw) * 50));
  padding-left: calc((var(--vw, 1vw) * 50) - 50%);
  padding-right: calc((var(--vw, 1vw) * 50) - 50%);
  position: relative;
  margin-top: clamp(84px, calc( 84px + 42 * (var(--vw, 1vw) * 100 - 320px) / 430), 126px);
}

.sec02__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(107px, calc( 107px + 53.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 160.5px);
  height: calc(100% - clamp(90px, calc( 90px + 45 * (var(--vw, 1vw) * 100 - 320px) / 430), 135px));
  z-index: -1;
}

.sec02__bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.sec02-intro {
  display: grid;
  position: relative;
  gap: 0 clamp(24px, calc( 24px + 12 * (var(--vw, 1vw) * 100 - 320px) / 430), 36px);
  grid-template-columns: clamp(75.5px, calc( 75.5px + 37.75 * (var(--vw, 1vw) * 100 - 320px) / 430), 113.25px) auto;
}

.sec02-intro__ttl {
  display: block;
  width: clamp(197.25px, calc( 197.25px + 98.625 * (var(--vw, 1vw) * 100 - 320px) / 430), 295.875px);
}

.sec02-intro__box {
  margin-top: clamp(16px, calc( 16px + 8 * (var(--vw, 1vw) * 100 - 320px) / 430), 24px);
}

.sec02-intro__txt + .sec02-intro__txt {
  margin-top: clamp(8px, calc( 8px + 4 * (var(--vw, 1vw) * 100 - 320px) / 430), 12px);
}

.sec02-intro__txt--bold {
  font-weight: bold;
}

.sec02__img {
  display: block;
  margin-top: clamp(15px, calc( 15px + 7.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 22.5px);
  box-shadow: 0 1.5px 8px 0 rgba(0, 0, 0, 0.09);
}

.sec02-grow {
  position: relative;
  padding-top: clamp(30px, calc( 30px + 15 * (var(--vw, 1vw) * 100 - 320px) / 430), 45px);
}

.sec02-grow__ttl {
  display: block;
  width: clamp(305px, calc( 305px + 152.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 457.5px);
}

.sec02-grow__txt {
  margin-top: clamp(16px, calc( 16px + 8 * (var(--vw, 1vw) * 100 - 320px) / 430), 24px);
}

.sec03 {
  margin-top: clamp(100px, calc( 100px + 50 * (var(--vw, 1vw) * 100 - 320px) / 430), 150px);
}

.sec03__inner {
  position: relative;
}

.sec03__inner:before {
  content: "";
  background: url(../img/sec03/bg_sec03_gradation_sp.jpg) top left/auto 100% repeat-x;
  position: absolute;
  top: 2.43%;
  left: 78.71%;
  width: 50vw;
  height: 49.36%;
  z-index: 1;
}

.sec03__inner:after {
  content: "";
  background: #efefef;
  position: absolute;
  top: 17.65%;
  right: 21.28%;
  width: 100vw;
  height: 72.43%;
  z-index: 0;
}

.sec03__ttl {
  position: relative;
  height: auto;
  margin-bottom: 16px;
}

.sec03-head__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 24px;
  z-index: 3;
}

.sec03-head__num {
  width: 83px;
  height: auto;
}

.sec03-head__blc {
  width: 69.13%;
}

.sec03-head__ttl {
  width: 194.5px;
  height: auto;
}

.sec03__blc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.sec03__item {
  background: #fff;
  margin-bottom: 16px;
  padding: 0 6.55% 4.95%;
  box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.09);
}

.sec03__item.sec03__item--long {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 4.95%;
}

.sec03-item__parts {
  display: flex;
  justify-content: center;
}

.sec03-item__parts:first-of-type {
  flex-direction: column;
  width: calc(50% - (32px / 4));
}

.sec03-item__parts:first-of-type .sec03-item__ttl {
  text-align: left;
}

.sec03-item__parts:nth-of-type(2) {
  flex-direction: column;
  width: calc(50% - (32px / 4));
}

.sec03-item__img {
  display: block;
  height: auto;
}

.sec03-item__img--01 {
  width: 51px;
  margin: 23.5px auto 13.5px;
}

.sec03-item__img--02 {
  width: 48.5px;
  margin: 18px auto 9.5px;
}

.sec03-item__img--03 {
  width: 54px;
  margin: 29px auto 8.5px;
}

.sec03-item__img--04 {
  width: 43.5px;
  margin: 11.5px auto 3px;
}

.sec03-item__img--05 {
  width: 52px;
  margin: 18px auto 6.5px;
}

.sec03-item__img--06 {
  width: 48px;
  margin: 5px auto 10.5px;
}

.sec03-item__img--07 {
  width: 56.5px;
  margin: 15.5px auto 11.5px;
}

.sec03-item__img--08 {
  width: 53px;
  margin: 21.5px auto 12.5px;
}

.sec03-item__img--09 {
  width: 40.5px;
  margin: 15.5px auto 10px;
}

.sec03-item__img--10 {
  width: 42px;
  margin: 21px auto 7.5px;
}

.sec03-item__img--11 {
  width: 44px;
  margin: 14px auto 7px;
}

.sec03-item__img--12 {
  width: 47.5px;
  margin: 12px auto 10.5px;
}

.sec03-item__ttl {
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

.sec03-item__sub-ttl {
  margin-bottom: 7px;
  line-height: 1;
}

.sec03-item__sub-txt {
  font-size: 1rem;
}

.sec04__inner {
  position: relative;
  padding-top: 110px;
}

.sec04__ttl {
  position: relative;
  height: auto;
  margin-bottom: 16px;
}

.sec04-head__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 24px;
}

.sec04-head__inner:before {
  content: "";
  background: url(../img/sec04/bg_sec04_gradation_01.jpg) top right/auto 100% repeat-x;
  position: absolute;
  top: 50%;
  left: 21.57%;
  width: 25vw;
  height: 40.36%;
  transform: translateX(-100%);
  z-index: 1;
}

.sec04-head__num {
  position: relative;
  width: 87px;
  z-index: 2;
}

.sec04-head__blc {
  width: 69.13%;
}

.sec04-head__ttl {
  width: 184px;
}

.sec04 .region {
  position: relative;
  z-index: 2;
}

.sec04 .region__inner {
  background: #fff;
  position: relative;
  padding: 41.5px 17px 32.5px;
  box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.09);
}

.sec04 .region__inner:before {
  content: "";
  background: #efefef;
  position: absolute;
  top: -9.76%;
  left: 34.11%;
  width: 100vw;
  height: 53.9%;
  z-index: -1;
}

.sec04 .region__txt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  font-size: 1.6rem;
  font-size: calc(1.4rem + ((1vw - 3.4px) * 0.46729));
  font-weight: 900;
  line-height: 1;
}

.sec04 .region__img {
  display: block;
  width: 90.24%;
  height: auto;
  margin: 0 auto;
}

.sec04 .region__icon {
  width: 13.8px;
  height: auto;
  margin: 0 18px;
}

.sec04 .safety {
  position: relative;
  z-index: 3;
}

.sec04 .safety__inner {
  position: relative;
  padding: 64px 0 13.5px;
  z-index: 1;
}

.sec04 .safety__inner:before {
  content: "";
  background: url(../img/sec04/bg_sec04_gradation_02_sp.jpg) top right/auto 100% repeat-x;
  position: absolute;
  bottom: 0;
  left: 38.19%;
  width: 50vw;
  height: 101.83%;
  transform: translateX(-100%);
  z-index: -1;
}

.sec04 .safety__ttl {
  width: 280.5px;
}

.sec04 .safety-goal__inner {
  background: #fff;
  margin-top: 33.5px;
  padding: 0 16px 33.5px;
  box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.09);
}

.sec04 .safety-goal__ttl {
  font-size: 1.7rem;
  font-weight: 900;
  text-align: center;
  transform: translateY(-50%);
}

.sec04 .gas__inner {
  position: relative;
  margin-top: 45px;
  margin-bottom: 64px;
}

.sec04 .gas__inner:after {
  content: "";
  background: url(../img/sec04/bg_sec04_gradation_02.jpg) top right/auto 100% repeat-x;
  position: absolute;
  bottom: 22.92%;
  left: -7.82vw;
  width: 50vw;
  height: 183%;
  transform: translateX(-100%);
  z-index: -1;
}

.sec04 .gas__ttl {
  width: 242px;
}

.sec04 .gas-input__inner {
  background: #fff;
  position: relative;
  margin-top: 24px;
  padding: 23px 16px 33.5px;
  box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.09);
}

.sec04 .gas-input__ttl {
  margin-bottom: 16px;
  font-size: 1.6rem;
  font-weight: 900;
}

.sec04 .energy__inner {
  position: relative;
  margin-top: 64px;
}

.sec04 .energy__inner:before {
  content: "";
  background: url(../img/sec04/bg_sec04_gradation_03_sp.jpg) top left/auto 100% repeat-x;
  position: absolute;
  top: 52.57%;
  right: 32.06%;
  width: 50vw;
  height: 106.97%;
  transform: translateX(100%);
  z-index: -1;
}

.sec04 .energy__ttl {
  width: 241px;
}

.sec04 .energy__txt {
  margin-bottom: 24px;
}

.sec04 .energy__blc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.sec04 .energy__blc:before {
  content: "";
  background: #efefef;
  position: absolute;
  top: 23.62%;
  left: 33.81%;
  width: 100vw;
  height: 13.74%;
  z-index: -1;
}

.sec04 .energy__item {
  background: #fff;
  -webkit-filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.09));
          filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.09));
}

.sec04 .energy__item:not(:last-of-type) {
  margin-bottom: 51.5px;
}

.sec04 .energy-item__inner {
  padding: 17px 17px 24px;
}

.sec04 .energy-item__fig {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 53px;
  height: 62.5px;
  margin: 0 auto;
  margin-bottom: 11.5px;
}

.sec04 .energy-item__ttl {
  margin-bottom: 16px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

.sec04 .energy-item__result {
  position: relative;
  padding-top: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.42;
  color: #fff;
  text-align: center;
}

.sec04 .energy-item__result:before {
  content: "";
  background: top center / 100% auto no-repeat;
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  padding-bottom: 6.8%;
  transform: translateY(100%);
  z-index: -1;
}

.sec04 .energy-item__result--01 {
  background: #81e1e5;
  text-shadow: 6px 8px 10px rgba(0, 108, 255, 0.25);
}

.sec04 .energy-item__result--01:before {
  background-image: url(../img/sec04/img_sec04_energy_result_01_sp.png);
}

.sec04 .energy-item__result--02 {
  background: #f4e25c;
  text-shadow: 6px 8px 10px rgba(255, 84, 0, 0.25);
}

.sec04 .energy-item__result--02:before {
  background-image: url(../img/sec04/img_sec04_energy_result_02_sp.png);
}

.sec04 .energy-item__result--03 {
  background: #61e6cb;
  text-shadow: 6px 8px 10px rgba(1, 166, 79, 0.25);
}

.sec04 .energy-item__result--03:before {
  background-image: url(../img/sec04/img_sec04_energy_result_03_sp.png);
}

.sec04 .energy-item__small {
  font-size: 1.1rem;
}

.sec04 .energy-item__notice {
  position: relative;
  margin-top: 10px;
  font-size: 1.0rem;
}

.sec04 .contribution__inner {
  position: relative;
  margin-top: 64px;
  margin-bottom: 24px;
}

.sec04 .contribution__ttl {
  display: block;
  width: 264px;
  margin: 0 auto 16px;
}

.sec04 .contribution__txt {
  margin: 0 auto;
}

.sec04 .platform {
  position: relative;
}

.sec04 .platform:before {
  content: "";
  background: #efefef;
  position: absolute;
  bottom: 0;
  right: 37.02%;
  width: 100vw;
  height: 46.48%;
  z-index: 0;
}

.sec04 .platform__inner {
  background: #fff;
  position: relative;
  padding: 46px 21.5px 35px;
  box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.09);
}

.sec04 .platform__fig {
  position: relative;
  width: 79.81vw;
  height: 80.8vw;
  margin: 0 auto 25px;
}

.sec04 .platform__circle {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  transition-duration: 1.5s;
}

.sec04 .platform__circle--01 {
  background: #84f5de;
  width: 100%;
  height: 100%;
  transition-delay: 1.2s;
  z-index: 1;
}

.sec04 .platform__circle--02 {
  background: #63eee9;
  bottom: 2.26vw;
  width: 71.26vw;
  height: 69.33vw;
  transition-delay: 0.9s;
  z-index: 2;
}

.sec04 .platform__circle--03 {
  background: #6adaee;
  bottom: 4.39vw;
  width: 59.88vw;
  height: 57.44vw;
  transition-delay: 0.6s;
  z-index: 3;
}

.sec04 .platform__circle--04 {
  background: #f8bfd8;
  bottom: 6.4vw;
  width: 45.81vw;
  height: 46.37vw;
  transition-delay: 0.3s;
  z-index: 4;
}

.sec04 .platform__circle--05 {
  background: #fff;
  bottom: 8.53vw;
  width: 31.93vw;
  height: 32.33vw;
  opacity: 1;
  z-index: 5;
}

.sec04 .platform__img {
  position: absolute;
  bottom: 4.53vw;
  left: 50%;
  width: auto;
  height: 30.66vw;
  transform: translateX(-50%);
}

.sec04 .platform__name {
  position: absolute;
  top: 3.33vw;
  left: 50%;
  width: 100%;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.77;
  color: #fff;
  text-align: center;
  transform: translateX(-50%);
}

.sec04 .platform__name--small {
  font-size: 0.715rem;
}

.sec04 .platform__name--01 {
  text-shadow: 6px 8px 10px rgba(1, 166, 79, 0.25);
}

.sec04 .platform__name--02 {
  text-shadow: 6px 8px 10px rgba(0, 108, 255, 0.25);
}

.sec04 .platform__name--03 {
  text-shadow: 6px 8px 10px rgba(0, 108, 255, 0.25);
}

.sec04 .platform__name--04 {
  top: 2.66vw;
  text-shadow: 6px 8px 10px rgba(255, 0, 114, 0.25);
}

.sec05 {
  margin-left: calc(50% - (var(--vw, 1vw) * 50));
  margin-right: calc(50% - (var(--vw, 1vw) * 50));
  padding-left: calc((var(--vw, 1vw) * 50) - 50%);
  padding-right: calc((var(--vw, 1vw) * 50) - 50%);
  position: relative;
  margin-top: clamp(26px, calc( 26px + 13 * (var(--vw, 1vw) * 100 - 320px) / 430), 39px);
  padding-top: clamp(40px, calc( 40px + 20 * (var(--vw, 1vw) * 100 - 320px) / 430), 60px);
  padding-bottom: clamp(149px, calc( 149px + 74.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 223.5px);
  z-index: 1;
}

.sec05__bg {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1;
}

.sec05__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left bottom;
     object-position: left bottom;
}

.sec05__ttl {
  font-size: clamp(25px, calc( 25px + 12.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 37.5px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-shadow: 2.85px 4px 5px rgba(0, 186, 255, 0.5);
}

.sec05__txt {
  margin-top: clamp(20px, calc( 20px + 10 * (var(--vw, 1vw) * 100 - 320px) / 430), 30px);
  color: #fff;
}

.sec05__body {
  margin-top: clamp(20px, calc( 20px + 10 * (var(--vw, 1vw) * 100 - 320px) / 430), 30px);
}

.sec05-link {
  display: block;
}

.sec05-link + .sec05-link {
  margin-top: clamp(25px, calc( 25px + 12.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 37.5px);
}

.sec05-link:hover {
  opacity: 1;
}

.sec05-link:hover .sec05-link__img {
  transform: scale(1.05);
  opacity: 0.6;
}

.sec05-link__label {
  position: relative;
  padding-bottom: clamp(16px, calc( 16px + 8 * (var(--vw, 1vw) * 100 - 320px) / 430), 24px);
  font-size: clamp(18px, calc( 18px + 9 * (var(--vw, 1vw) * 100 - 320px) / 430), 27px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-shadow: 2.85px 4px 5px rgba(0, 186, 255, 0.5);
}

.sec05-link__label:before {
  content: "";
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  left: 50%;
  width: clamp(156.5px, calc( 156.5px + 78.25 * (var(--vw, 1vw) * 100 - 320px) / 430), 234.75px);
  height: 1px;
  transform: translateX(-50%);
}

.sec05-link__ttl {
  background-color: #fff;
  margin-top: clamp(12px, calc( 12px + 6 * (var(--vw, 1vw) * 100 - 320px) / 430), 18px);
  padding: clamp(8px, calc( 8px + 4 * (var(--vw, 1vw) * 100 - 320px) / 430), 12px) 0;
  font-size: clamp(16px, calc( 16px + 8 * (var(--vw, 1vw) * 100 - 320px) / 430), 24px);
  font-weight: 600;
  line-height: 1.25;
  color: #62afda;
  text-align: center;
}

.sec05-link__detail {
  margin-top: clamp(14px, calc( 14px + 7 * (var(--vw, 1vw) * 100 - 320px) / 430), 21px);
  font-size: clamp(16px, calc( 16px + 8 * (var(--vw, 1vw) * 100 - 320px) / 430), 24px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #fff;
}

.sec05-link__fig {
  background-color: #84f5de;
  margin-top: clamp(15px, calc( 15px + 7.5 * (var(--vw, 1vw) * 100 - 320px) / 430), 22.5px);
  overflow: hidden;
}

.sec05-link__img {
  display: block;
  transition: all 0.5s ease;
}

@media screen and (min-width: 400px) {
  .sec03__item {
    width: calc(50% - (30px / 4));
  }
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
  button {
    cursor: pointer;
  }
  .br--sp::before {
    content: "";
    white-space: normal;
  }
  .br--md::before {
    content: "\A";
    white-space: pre;
  }
  .header__inner {
    align-items: flex-end;
    top: 0;
    height: 66px;
    padding: 0 40px;
  }
  .header__logo {
    width: 368px;
  }
  .header__link-fig {
    width: 151px;
  }
  .footer__inner {
    flex-direction: row;
    height: 60px;
    padding: 0 40px;
  }
  .footer__links {
    flex-wrap: nowrap;
    margin-bottom: 0;
  }
  .footer__link {
    margin-bottom: 0;
    font-size: 1.2rem;
  }
  .footer__copyright {
    font-size: 1.2rem;
  }
  body {
    font-size: 1.6rem;
    line-height: 2;
  }
  .container__inner {
    width: 100%;
    max-width: calc(1000px + 10%);
    padding: 0 5%;
  }
  .hidden-pc {
    display: none !important;
  }
  .rellax--01 {
    top: clamp(-7.5px, calc( -7.5px + -2.5 * (var(--vw, 1vw) * 100 - 750px) / 530), -10px);
    bottom: auto;
    width: calc(var(--vw, 1vw) * 4);
    height: clamp(186px, calc( 186px + 62 * (var(--vw, 1vw) * 100 - 750px) / 530), 248px);
  }
  .rellax--02 {
    top: 0;
    right: 0;
    width: clamp(30px, calc( 30px + 10 * (var(--vw, 1vw) * 100 - 750px) / 530), 40px);
    height: clamp(111px, calc( 111px + 37 * (var(--vw, 1vw) * 100 - 750px) / 530), 148px);
    transform: translateX(50%);
  }
  .rellax--03 {
    display: block;
    background: #55d2e5;
    top: clamp(107.25px, calc( 107.25px + 35.75 * (var(--vw, 1vw) * 100 - 750px) / 530), 143px);
    left: auto;
    right: clamp(-29.25px, calc( -29.25px + -9.75 * (var(--vw, 1vw) * 100 - 750px) / 530), -39px);
    width: clamp(72px, calc( 72px + 24 * (var(--vw, 1vw) * 100 - 750px) / 530), 96px);
    height: clamp(72px, calc( 72px + 24 * (var(--vw, 1vw) * 100 - 750px) / 530), 96px);
    transform: translateX(100%);
  }
  .rellax--04 {
    top: clamp(40.5px, calc( 40.5px + 13.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 54px);
    left: clamp(-63px, calc( -63px + -21 * (var(--vw, 1vw) * 100 - 750px) / 530), -84px);
    width: clamp(101.775px, calc( 101.775px + 33.925 * (var(--vw, 1vw) * 100 - 750px) / 530), 135.7px);
    height: clamp(101.775px, calc( 101.775px + 33.925 * (var(--vw, 1vw) * 100 - 750px) / 530), 135.7px);
    transform: translateX(-100%);
  }
  .rellax--05 {
    content: "";
    background-color: #b4f1b5;
    top: clamp(-24px, calc( -24px + -8 * (var(--vw, 1vw) * 100 - 750px) / 530), -32px);
    left: 0;
    width: clamp(30px, calc( 30px + 10 * (var(--vw, 1vw) * 100 - 750px) / 530), 40px);
    height: clamp(176.25px, calc( 176.25px + 58.75 * (var(--vw, 1vw) * 100 - 750px) / 530), 235px);
    transform: translateY(-100%);
  }
  .rellax--06 {
    top: clamp(-13.5px, calc( -13.5px + -4.5 * (var(--vw, 1vw) * 100 - 750px) / 530), -18px);
    right: clamp(-53.25px, calc( -53.25px + -17.75 * (var(--vw, 1vw) * 100 - 750px) / 530), -71px);
    width: clamp(24.75px, calc( 24.75px + 8.25 * (var(--vw, 1vw) * 100 - 750px) / 530), 33px);
    height: clamp(133.5px, calc( 133.5px + 44.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 178px);
    transform: translateX(100%);
  }
  .rellax--07 {
    content: "";
    background-color: #d2fffe;
    bottom: clamp(94.5px, calc( 94.5px + 31.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 126px);
    left: clamp(-50.25px, calc( -50.25px + -16.75 * (var(--vw, 1vw) * 100 - 750px) / 530), -67px);
    width: clamp(42px, calc( 42px + 14 * (var(--vw, 1vw) * 100 - 750px) / 530), 56px);
    height: clamp(58.5px, calc( 58.5px + 19.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 78px);
    transform: translateX(-100%);
    z-index: 2;
  }
  .rellax--08 {
    background-color: #72f4ac;
    top: auto;
    bottom: 0;
    right: clamp(67.5px, calc( 67.5px + 22.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 90px);
    width: clamp(126.75px, calc( 126.75px + 42.25 * (var(--vw, 1vw) * 100 - 750px) / 530), 169px);
    height: clamp(30px, calc( 30px + 10 * (var(--vw, 1vw) * 100 - 750px) / 530), 40px);
    transform: translateY(50%);
  }
  .rellax--09 {
    top: 0;
    left: 0;
    width: clamp(39.75px, calc( 39.75px + 13.25 * (var(--vw, 1vw) * 100 - 750px) / 530), 53px);
    height: clamp(143.25px, calc( 143.25px + 47.75 * (var(--vw, 1vw) * 100 - 750px) / 530), 191px);
  }
  .rellax--10 {
    top: 0;
    right: clamp(-18px, calc( -18px + -6 * (var(--vw, 1vw) * 100 - 750px) / 530), -24px);
    width: clamp(49.5px, calc( 49.5px + 16.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 66px);
    height: clamp(91.5px, calc( 91.5px + 30.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 122px);
  }
  .rellax--11 {
    background: #c4ecfb;
    bottom: -67.19vw;
    right: -4.67vw;
    width: 45px;
    height: 73px;
  }
  .rellax--12 {
    background: #99d799;
    top: 1140px;
    left: -7.82vw;
    width: 45px;
    height: 176px;
  }
  .rellax--13 {
    background: #e0f9f0;
    bottom: -1740px;
    left: -12.82vw;
    width: 84px;
    height: 131px;
  }
  .rellax--14 {
    background: #f9f4e0;
    bottom: -1966px;
    right: 16px;
    width: 34px;
    height: 80px;
  }
  .rellax--15 {
    background: #f3fff6;
    top: 1946.5px;
    right: -7.04vw;
    width: 37px;
    height: 107px;
  }
  .rellax--16 {
    background: #faffd9;
    bottom: -133.6vw;
    left: -6.57vw;
    width: 54px;
    height: 178px;
  }
  .kv__inner {
    background-image: url(../img/kv/bg_kv_base_pc.jpg);
    position: relative;
    height: 66.01vw;
  }
  .kv__copy {
    top: 15.62%;
  }
  .kv__ship {
    background-image: url(../img/kv/img_kv_ship_pc.png);
  }
  .kv__fig {
    top: 22.24%;
    width: 25.23vw;
    height: 29.6vw;
  }
  .kv__img--01 {
    display: block;
    top: 14.55%;
    left: 0;
    width: 25.54vw;
  }
  .kv__img--02 {
    top: 38.69%;
    left: 4.76%;
    width: 29.14vw;
    transform: none;
  }
  .kv__img--03 {
    display: block;
    top: 18.46%;
    right: 0;
    width: 34.29vw;
    z-index: 3;
  }
  .kv__img--04 {
    display: block;
    top: 40.11%;
    right: 0;
    width: 5.31vw;
  }
  .kv__img--05 {
    top: 14.2%;
    left: 32.57%;
    width: 6.25vw;
  }
  .kv__img--06 {
    top: 36.68%;
    left: 32.5%;
    width: 6.32vw;
  }
  .kv__img--07 {
    display: block;
    top: 32.54%;
    right: 32.03%;
    width: 9.14vw;
  }
  .kv__img--08 {
    top: 8.44%;
    left: 7.43%;
    width: 6.01vw;
  }
  .kv__img--09 {
    top: 49.86%;
    width: 3.35vw;
  }
  .kv__img--10 {
    top: 47.22%;
    left: 15.47%;
    width: 2.89vw;
  }
  .kv__img--11 {
    left: 35.91%;
    width: 1.01vw;
  }
  .kv__img--12 {
    top: 10.81%;
    left: 39.31%;
    width: 1.87vw;
  }
  .kv__img--13 {
    left: 37.46%;
    width: 2.65vw;
  }
  .kv__img--14 {
    top: 1.31%;
    right: 43.65%;
    width: 1.56vw;
  }
  .kv__img--15 {
    top: 61.47%;
    right: 41.17%;
    width: 2.18vw;
  }
  .kv__img--16 {
    top: 20.58%;
    right: 31.57%;
    width: 1.79vw;
  }
  .kv__img--17 {
    top: 1.58%;
    right: 26%;
    width: 1.95vw;
  }
  .kv__img--18 {
    top: 17.67%;
    right: 9.59%;
    width: 3.82vw;
  }
  .kv__img--19 {
    top: 63.85%;
    right: 19.5%;
    width: 3.12vw;
  }
  .kv-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    padding-top: 0;
  }
  .kv__ttl {
    position: absolute;
    top: 38.69%;
    right: 3.12%;
  }
  .kv__ttl-fig {
    width: 31.64vw;
  }
  .kv__txt {
    position: absolute;
    top: 39.17%;
    left: 3.12%;
    margin-bottom: 0;
  }
  .kv__txt-fig {
    width: 25vw;
  }
  .anchor-link__inner {
    margin-top: -16px;
    margin-bottom: 48px;
    padding-top: 0;
  }
  .anchor-link__blc {
    width: calc((100% / 4) - (16px * 3 / 4));
    height: 288px;
  }
  .anchor-link__blc:nth-of-type(1), .anchor-link__blc:nth-of-type(2) {
    margin-bottom: 0;
  }
  .anchor-link__blc:after {
    opacity: 0.4;
  }
  .anchor-link__blc--01:before {
    background-image: url(../img/anchorlink/bg_anchorlink_01_pc.jpg);
  }
  .anchor-link__blc--02:before {
    background-image: url(../img/anchorlink/bg_anchorlink_02_pc.jpg);
  }
  .anchor-link__blc--03:before {
    background-image: url(../img/anchorlink/bg_anchorlink_03_pc.jpg);
  }
  .anchor-link__blc--04:before {
    background-image: url(../img/anchorlink/bg_anchorlink_04_pc.jpg);
  }
  .anchor-link__num {
    height: clamp(52.5px, calc( 52.5px + 17.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 70px);
  }
  .anchor-link__ttl {
    margin-top: 5px;
    font-size: 1.6rem;
  }
  .sec01 {
    margin-top: clamp(127.5px, calc( 127.5px + 42.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 170px);
  }
  .sec01__bg {
    top: clamp(-57px, calc( -57px + -19 * (var(--vw, 1vw) * 100 - 750px) / 530), -76px);
    width: calc(var(--vw, 1vw) * 26.71);
    height: clamp(1092.75px, calc( 1092.75px + 364.25 * (var(--vw, 1vw) * 100 - 750px) / 530), 1457px);
  }
  .sec01-top {
    gap: 0 clamp(78.75px, calc( 78.75px + 26.25 * (var(--vw, 1vw) * 100 - 750px) / 530), 105px);
    grid-template-columns: clamp(113.25px, calc( 113.25px + 37.75 * (var(--vw, 1vw) * 100 - 750px) / 530), 151px) auto;
  }
  .sec01-top__ttl {
    width: clamp(292.5px, calc( 292.5px + 97.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 390px);
    margin-left: 0;
  }
  .sec01-top__box {
    margin-top: clamp(24px, calc( 24px + 8 * (var(--vw, 1vw) * 100 - 750px) / 530), 32px);
    padding: clamp(36px, calc( 36px + 12 * (var(--vw, 1vw) * 100 - 750px) / 530), 48px) clamp(30px, calc( 30px + 10 * (var(--vw, 1vw) * 100 - 750px) / 530), 40px) clamp(31.5px, calc( 31.5px + 10.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 42px);
    box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.09);
  }
  .sec01-history {
    margin-top: clamp(45.75px, calc( 45.75px + 15.25 * (var(--vw, 1vw) * 100 - 750px) / 530), 61px);
  }
  .sec01-history__ttl {
    width: clamp(432px, calc( 432px + 144 * (var(--vw, 1vw) * 100 - 750px) / 530), 576px);
  }
  .sec01-history__blc--1 {
    width: clamp(558.75px, calc( 558.75px + 186.25 * (var(--vw, 1vw) * 100 - 750px) / 530), 745px);
    margin-top: clamp(22.5px, calc( 22.5px + 7.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 30px);
  }
  .sec01-history__blc--1:before {
    bottom: 0;
    left: 50%;
    width: calc(var(--vw, 1vw) * 100);
    height: clamp(363.75px, calc( 363.75px + 121.25 * (var(--vw, 1vw) * 100 - 750px) / 530), 485px);
    transform: translate(-50%, 40%);
  }
  .sec01-history__blc--2 {
    width: clamp(496.5px, calc( 496.5px + 165.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 662px);
    margin-top: clamp(39px, calc( 39px + 13 * (var(--vw, 1vw) * 100 - 750px) / 530), 52px);
    margin-left: auto;
  }
  .sec01-history__blc--2 .sec01-history__caption {
    margin: clamp(18px, calc( 18px + 6 * (var(--vw, 1vw) * 100 - 750px) / 530), 24px) 0 0;
  }
  .sec01-history__blc--2 .sec01-history__txt {
    margin: clamp(21px, calc( 21px + 7 * (var(--vw, 1vw) * 100 - 750px) / 530), 28px) 0 0;
  }
  .sec01-history__box {
    box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.09);
  }
  .sec01-history__box--1 {
    display: grid;
    padding: clamp(36px, calc( 36px + 12 * (var(--vw, 1vw) * 100 - 750px) / 530), 48px) clamp(36px, calc( 36px + 12 * (var(--vw, 1vw) * 100 - 750px) / 530), 48px) clamp(32.25px, calc( 32.25px + 10.75 * (var(--vw, 1vw) * 100 - 750px) / 530), 43px);
    gap: 0 clamp(24px, calc( 24px + 8 * (var(--vw, 1vw) * 100 - 750px) / 530), 32px);
    grid-template-columns: clamp(220.5px, calc( 220.5px + 73.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 294px) auto;
  }
  .sec01-history__box--1 .sec01-history__img {
    box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.09);
  }
  .sec01-history__box--1 .sec01-history__caption {
    margin-top: clamp(15px, calc( 15px + 5 * (var(--vw, 1vw) * 100 - 750px) / 530), 20px);
  }
  .sec01-history__box--1 .sec01-history__txt {
    margin-top: 0;
  }
  .sec01-history__box--2 {
    padding: clamp(12px, calc( 12px + 4 * (var(--vw, 1vw) * 100 - 750px) / 530), 16px);
  }
  .sec01-history__caption {
    font-size: clamp(10px, calc( 10px + 2 * (var(--vw, 1vw) * 100 - 750px) / 530), 12px);
  }
  .sec01-movie {
    margin-top: clamp(48px, calc( 48px + 16 * (var(--vw, 1vw) * 100 - 750px) / 530), 64px);
    padding-bottom: clamp(60px, calc( 60px + 20 * (var(--vw, 1vw) * 100 - 750px) / 530), 80px);
  }
  .sec01-movie:before {
    height: clamp(713.25px, calc( 713.25px + 237.75 * (var(--vw, 1vw) * 100 - 750px) / 530), 951px);
  }
  .sec01-movie__inner {
    width: clamp(634.5px, calc( 634.5px + 211.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 846px);
    margin: 0 auto;
  }
  .sec01-movie__ttl {
    width: clamp(374.25px, calc( 374.25px + 124.75 * (var(--vw, 1vw) * 100 - 750px) / 530), 499px);
  }
  .sec01-movie__blc {
    margin-top: clamp(15.75px, calc( 15.75px + 5.25 * (var(--vw, 1vw) * 100 - 750px) / 530), 21px);
  }
  .sec01-movie__btn {
    width: clamp(150px, calc( 150px + 50 * (var(--vw, 1vw) * 100 - 750px) / 530), 200px);
  }
  .sec01-feeling {
    padding-top: clamp(42px, calc( 42px + 14 * (var(--vw, 1vw) * 100 - 750px) / 530), 56px);
  }
  .sec01-feeling__bg {
    top: 0;
    bottom: auto;
    width: calc(var(--vw, 1vw) * 17.34);
    height: clamp(399.75px, calc( 399.75px + 133.25 * (var(--vw, 1vw) * 100 - 750px) / 530), 533px);
  }
  .sec01-feeling__inner {
    width: clamp(623.25px, calc( 623.25px + 207.75 * (var(--vw, 1vw) * 100 - 750px) / 530), 831px);
    margin-left: auto;
  }
  .sec01-feeling__ttl {
    width: clamp(463.5px, calc( 463.5px + 154.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 618px);
  }
  .sec01-feeling__box {
    display: grid;
    margin-top: clamp(24px, calc( 24px + 8 * (var(--vw, 1vw) * 100 - 750px) / 530), 32px);
    padding: clamp(45px, calc( 45px + 15 * (var(--vw, 1vw) * 100 - 750px) / 530), 60px);
    box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.09);
    gap: 0 clamp(31.5px, calc( 31.5px + 10.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 42px);
    grid-template-columns: clamp(186px, calc( 186px + 62 * (var(--vw, 1vw) * 100 - 750px) / 530), 248px) auto;
  }
  .sec01-feeling__img {
    width: 100%;
  }
  .sec01-feeling__txt {
    margin-top: 0;
  }
  .sec02 {
    margin-top: clamp(118.5px, calc( 118.5px + 39.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 158px);
  }
  .sec02__bg {
    width: calc(var(--vw, 1vw) * 27.18);
    height: clamp(661.5px, calc( 661.5px + 220.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 882px);
  }
  .sec02-intro {
    gap: 0 clamp(78.75px, calc( 78.75px + 26.25 * (var(--vw, 1vw) * 100 - 750px) / 530), 105px);
    grid-template-columns: clamp(113.25px, calc( 113.25px + 37.75 * (var(--vw, 1vw) * 100 - 750px) / 530), 151px) auto;
  }
  .sec02-intro__ttl {
    width: clamp(242.085px, calc( 242.085px + 80.695 * (var(--vw, 1vw) * 100 - 750px) / 530), 322.78px);
  }
  .sec02-intro__box {
    margin-top: clamp(24px, calc( 24px + 8 * (var(--vw, 1vw) * 100 - 750px) / 530), 32px);
  }
  .sec02-intro__txt + .sec02-intro__txt {
    margin-top: clamp(16.5px, calc( 16.5px + 5.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 22px);
  }
  .sec02__img {
    width: calc(100% - clamp(192px, calc( 192px + 64 * (var(--vw, 1vw) * 100 - 750px) / 530), 256px));
    margin-top: clamp(21px, calc( 21px + 7 * (var(--vw, 1vw) * 100 - 750px) / 530), 28px);
    margin-left: auto;
    box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.09);
  }
  .sec02-grow {
    width: calc(100% - clamp(192px, calc( 192px + 64 * (var(--vw, 1vw) * 100 - 750px) / 530), 256px));
    margin-left: auto;
    padding-top: clamp(55.5px, calc( 55.5px + 18.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 74px);
  }
  .sec02-grow__ttl {
    width: clamp(375px, calc( 375px + 125 * (var(--vw, 1vw) * 100 - 750px) / 530), 500px);
  }
  .sec02-grow__txt {
    margin-top: clamp(24px, calc( 24px + 8 * (var(--vw, 1vw) * 100 - 750px) / 530), 32px);
  }
  .sec03 {
    margin-top: clamp(90px, calc( 90px + 30 * (var(--vw, 1vw) * 100 - 750px) / 530), 120px);
  }
  .sec03__inner {
    padding-top: 140px;
  }
  .sec03__inner:before {
    background-image: url(../img/sec03/bg_sec03_gradation.jpg);
    top: -24px;
    left: auto;
    right: 20%;
    height: 57.22%;
    transform: translateX(100%);
  }
  .sec03__inner:after {
    top: 29.05%;
    right: -50px;
    height: 54.58%;
  }
  .sec03__ttl {
    margin-bottom: 30px;
  }
  .sec03-head__inner {
    margin-bottom: 42px;
  }
  .sec03-head__num {
    width: 110px;
  }
  .sec03-head__blc {
    width: 74.5%;
  }
  .sec03-head__ttl {
    width: 495px;
  }
  .sec03__item {
    padding: 0 3.4% 3.4%;
  }
  .sec03-item__parts:first-of-type {
    width: 40%;
    margin-right: 24px;
  }
  .sec03-item__parts:nth-of-type(2) {
    flex-direction: row;
    justify-content: space-between;
    width: 60%;
    margin-right: 17px;
  }
  .sec03-item__parts:nth-of-type(2) > div {
    width: calc(50% - (17px / 2));
  }
  .sec03-item__img--01 {
    width: 102px;
    margin: 47px auto 27px;
  }
  .sec03-item__img--02 {
    width: 97px;
    margin: 36px auto 19px;
  }
  .sec03-item__img--03 {
    width: 108px;
    margin: 58px auto 17px;
  }
  .sec03-item__img--04 {
    width: 87px;
    margin: 23px auto 6px;
  }
  .sec03-item__img--05 {
    width: 104px;
    margin: 0 auto 13px;
  }
  .sec03-item__img--06 {
    width: 96px;
    margin: 10px auto 21px;
  }
  .sec03-item__img--07 {
    width: 113px;
    margin: 31px auto 23px;
  }
  .sec03-item__img--08 {
    width: 106px;
    margin: 43px auto 25px;
  }
  .sec03-item__img--09 {
    width: 81px;
    margin: 31px auto 20px;
  }
  .sec03-item__img--10 {
    width: 84px;
    margin: 42px auto 15px;
  }
  .sec03-item__img--11 {
    width: 88px;
    margin: 28px auto 14px;
  }
  .sec03-item__img--12 {
    width: 95px;
    margin: 24px auto 21px;
  }
  .sec03-item__ttl {
    margin-bottom: 24px;
    font-size: 2rem;
  }
  .sec03-item__sub-ttl {
    margin-bottom: 19px;
  }
  .sec03-item__sub-txt {
    font-size: 1.4rem;
  }
  .sec04__inner {
    padding-top: 130px;
  }
  .sec04__ttl {
    margin-bottom: 30px;
  }
  .sec04-head__inner {
    margin-bottom: 48px;
  }
  .sec04-head__inner:before {
    left: 7%;
    width: 50vw;
    height: 100%;
  }
  .sec04-head__num {
    width: 116px;
  }
  .sec04-head__blc {
    width: 74.5%;
  }
  .sec04-head__ttl {
    width: 466px;
  }
  .sec04 .region__inner {
    width: 74.5%;
    margin-bottom: 128px;
    margin-left: auto;
    padding: 11.81% 20px;
  }
  .sec04 .region__inner:before {
    top: 9.26%;
    left: -8.7%;
    height: 208.53%;
  }
  .sec04 .region__txt {
    margin-top: 23px;
    font-size: 2.4rem;
  }
  .sec04 .region__img {
    width: 44.84vw;
    max-width: 574px;
  }
  .sec04 .safety__inner {
    width: 74.5%;
    padding: 0;
  }
  .sec04 .safety__inner:before {
    content: none;
  }
  .sec04 .safety__ttl {
    width: 459px;
  }
  .sec04 .safety-goal__inner {
    margin-top: 60px;
    padding: 0 64px 40px;
  }
  .sec04 .safety-goal__ttl {
    font-size: 2.0rem;
  }
  .sec04 .safety-goal__txt {
    font-size: 1.4rem;
    line-height: 2.28;
  }
  .sec04 .gas__inner {
    width: 74.5%;
    margin-top: 136px;
    margin-bottom: 53px;
    margin-left: auto;
  }
  .sec04 .gas__inner:before {
    content: "";
    background: #efefef;
    position: absolute;
    bottom: 22.92%;
    left: -7.82vw;
    width: 100vw;
    height: 68.18%;
    z-index: -1;
  }
  .sec04 .gas__ttl {
    width: 396px;
  }
  .sec04 .gas-input__inner {
    margin-top: 60px;
    padding: 0 64px 40px;
  }
  .sec04 .gas-input__ttl {
    margin-bottom: 0;
    font-size: 2.0rem;
    text-align: center;
    transform: translateY(-50%);
  }
  .sec04 .gas-input__txt {
    font-size: 1.4rem;
    line-height: 2.28;
  }
  .sec04 .energy__inner {
    margin-top: 0;
    padding-top: 96px;
  }
  .sec04 .energy__inner:before {
    background-image: url(../img/sec04/bg_sec04_gradation_03.jpg);
    top: 0;
    right: 23.79%;
    height: 149.83%;
  }
  .sec04 .energy__ttl {
    width: 394px;
  }
  .sec04 .energy__txt {
    width: 74.5%;
    margin-bottom: 48px;
  }
  .sec04 .energy__blc:before {
    top: 9.3%;
    left: auto;
    right: 23.79%;
    height: 57.55%;
  }
  .sec04 .energy__item:not(:last-of-type) {
    margin-bottom: 103px;
  }
  .sec04 .energy-item__inner {
    padding: 27px 10.55% 48px;
  }
  .sec04 .energy-item__fig {
    width: 72px;
    height: 83px;
    margin-bottom: 22px;
  }
  .sec04 .energy-item__ttl {
    margin-bottom: 24px;
    font-size: 2rem;
  }
  .sec04 .energy-item__result {
    padding-top: 16px;
    font-size: 2rem;
    line-height: 1.6;
  }
  .sec04 .energy-item__result:before {
    padding-bottom: 10.49%;
  }
  .sec04 .energy-item__result--01:before {
    background-image: url(../img/sec04/img_sec04_energy_result_01.png);
  }
  .sec04 .energy-item__result--02:before {
    background-image: url(../img/sec04/img_sec04_energy_result_02.png);
  }
  .sec04 .energy-item__result--03:before {
    background-image: url(../img/sec04/img_sec04_energy_result_03.png);
  }
  .sec04 .energy-item__small {
    font-size: 1.4rem;
  }
  .sec04 .energy-item__notice {
    margin-top: 16px;
    font-size: 1.2rem;
  }
  .sec04 .contribution__inner {
    margin-top: 184px;
    margin-bottom: 78px;
  }
  .sec04 .contribution__ttl {
    width: 432px;
    margin-bottom: 30px;
  }
  .sec04 .contribution__txt {
    width: 74.5%;
  }
  .sec04 .platform {
    padding-bottom: 78px;
  }
  .sec04 .platform__inner {
    padding: 74px 6.64vw 70px;
  }
  .sec04 .platform__fig {
    width: 58.82vw;
    height: 59.53vw;
    max-width: 753px;
    max-height: 762px;
    margin-bottom: 63px;
  }
  .sec04 .platform__circle--01 {
    max-width: 753px;
    max-height: 762px;
  }
  .sec04 .platform__circle--02 {
    bottom: 1.64vw;
    width: 52.53vw;
    height: 51.09vw;
    max-width: 672.45px;
    max-height: 654.05px;
  }
  .sec04 .platform__circle--03 {
    bottom: 3.28vw;
    width: 44.14vw;
    height: 42.34vw;
    max-width: 565px;
    max-height: 542px;
  }
  .sec04 .platform__circle--04 {
    bottom: 4.68vw;
    width: 33.77vw;
    height: 34.18vw;
    max-width: 432.26px;
    max-height: 437.57px;
  }
  .sec04 .platform__circle--05 {
    bottom: 6.25vw;
    width: 23.51vw;
    height: 23.82vw;
    max-width: 301px;
    max-height: 305px;
  }
  .sec04 .platform__img {
    bottom: 2.34vw;
    height: 22.65vw;
    max-height: 290px;
  }
  .sec04 .platform__name {
    top: 1.56vw;
    font-size: calc(1.4rem + ((1vw - 7.68px) * 1.17188));
  }
  .sec04 .platform__name--small {
    font-size: 1.8rem;
    font-size: calc(1rem + ((1vw - 7.68px) * 1.5625));
  }
  .sec04 .platform__name--04 {
    top: 0.78vw;
  }
  .sec05 {
    padding-top: clamp(60px, calc( 60px + 20 * (var(--vw, 1vw) * 100 - 750px) / 530), 80px);
    padding-bottom: clamp(141px, calc( 141px + 47 * (var(--vw, 1vw) * 100 - 750px) / 530), 188px);
  }
  .sec05__ttl {
    font-size: clamp(31.5px, calc( 31.5px + 10.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 42px);
    text-shadow: 5.7px 8px 10px rgba(0, 186, 255, 0.5);
  }
  .sec05__txt {
    margin-top: clamp(15px, calc( 15px + 5 * (var(--vw, 1vw) * 100 - 750px) / 530), 20px);
    text-align: center;
  }
  .sec05__body {
    display: grid;
    margin-top: clamp(30px, calc( 30px + 10 * (var(--vw, 1vw) * 100 - 750px) / 530), 40px);
    gap: 0 clamp(13.5px, calc( 13.5px + 4.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 18px);
    grid-template-columns: repeat(3, 1fr);
  }
  .sec05-link + .sec05-link {
    margin-top: 0;
  }
  .sec05-link__label {
    padding-bottom: clamp(9px, calc( 9px + 3 * (var(--vw, 1vw) * 100 - 750px) / 530), 12px);
    font-size: clamp(19.5px, calc( 19.5px + 6.5 * (var(--vw, 1vw) * 100 - 750px) / 530), 26px);
    text-shadow: 5.7px 8px 10px rgba(0, 186, 255, 0.5);
  }
  .sec05-link__label:before {
    width: clamp(60px, calc( 60px + 20 * (var(--vw, 1vw) * 100 - 750px) / 530), 80px);
  }
  .sec05-link__ttl {
    margin-top: clamp(15px, calc( 15px + 5 * (var(--vw, 1vw) * 100 - 750px) / 530), 20px);
    padding: clamp(9px, calc( 9px + 3 * (var(--vw, 1vw) * 100 - 750px) / 530), 12px) 0;
    font-size: 1.6rem;
    line-height: 1.37;
  }
  .sec05-link__detail {
    margin-top: clamp(9px, calc( 9px + 3 * (var(--vw, 1vw) * 100 - 750px) / 530), 12px);
    font-size: 1.4rem;
  }
  .sec05-link__fig {
    margin-top: clamp(15px, calc( 15px + 5 * (var(--vw, 1vw) * 100 - 750px) / 530), 20px);
  }
}

@media screen and (max-width: 767px) and (min-width: 768px) {
  .kv-main__inner {
    width: 100%;
    max-width: calc(1000px + 10%);
    padding: 0 5%;
  }
}

@media screen and (min-width: 950px) {
  .br--main::before {
    content: "\A";
    white-space: pre;
  }
  .sec03-head__num {
    width: 165px;
  }
  .sec03__item {
    width: calc((100% / 3) - (32px / 3));
  }
  .sec03__item.sec03__item--long {
    width: calc((100% / 3 * 2) - (32px / 3));
    padding: 40px 34px;
  }
  .sec04-head__num {
    width: 174px;
  }
  .sec04 .region {
    margin: 0 calc((100vw - 100%) / 2 * -1);
    padding: 0 calc((100vw - 100%) / 2);
    z-index: 0;
  }
  .sec04 .region:before {
    content: "";
    background: url(../img/sec04/bg_sec04_spiral.png) right top/100% 100% no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 79vw;
    height: 868%;
    transform: translateY(100%);
  }
  .sec04 .region__txt {
    font-size: 3rem;
  }
  .sec04 .safety-goal__ttl {
    font-size: 2.6rem;
  }
  .sec04 .gas-input__ttl {
    font-size: 2.6rem;
  }
  .sec04 .energy__blc {
    flex-direction: row;
  }
  .sec04 .energy__item {
    width: calc((100% / 3) - (17px * 2 / 3));
  }
  .sec04 .energy__item:not(:last-of-type) {
    margin-bottom: 0;
  }
  .sec04 .platform__name--small {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .br--large::before {
    content: "\A";
    white-space: pre;
  }
}

@media screen and (min-width: 1280px) {
  .br--xlarge::before {
    content: "\A";
    white-space: pre;
  }
  .rellax--12 {
    left: -11.33vw;
  }
  .rellax--13 {
    left: -164px;
  }
  .sec03__item {
    padding: 0 34px 34px;
  }
  .sec04 .region__inner {
    padding: 88px 84px;
  }
  .sec04 .energy-item__inner {
    padding: 27px 34px 48px;
  }
  .sec04 .platform__inner {
    padding: 74px 85px 70px;
  }
  .sec04 .platform__name {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none !important;
  }
  .kv-main__inner {
    width: 91.46vw;
    margin: 0 auto;
    position: relative;
    padding: 33.5px 14px;
  }
  .kv-main__inner:before {
    content: "";
    background: url(../img/kv/bg_kv_txt.png) center/cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
}

/*# sourceMappingURL=style.css.map */
