@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

svg,
img {
  max-width: 100%;
  vertical-align: middle;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6, th, dt {
  font-weight: inherit;
}

article, main, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, picture {
  display: block;
}

:root {
  --sans: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", "Meiryo", sans-serif;
  --serif: "Shippori Mincho B1", "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ 明朝", serif;
  --font: var(--serif);
  --color: #1a2b33;
  --color-inverse: #fff;
  --color-assort: #00388d;
  --color-accent: #00388d;
  --header-height: 3.75rem;
  --gap: 0.75rem;
  --padding-block: 2rem;
  --padding-section-sm: 3.75rem;
  --padding-section: 10rem;
  --padding-page: 16.625rem;
  --border-color: 1px solid #1a2b33;
  --border-gray: 1px solid #ced2d9;
}
@media screen and (min-width: 1024px) {
  :root {
    --header-height: 7.5rem;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --gap: 1rem;
    --padding-block: 4rem;
    --padding-section-sm: 5rem;
    --padding-section: 15rem;
    --padding-page: 24.5rem;
  }
}

:root {
  --easeInSine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --easeOutSine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --easeInOutSine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --easeInQuad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --easeOutQuad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --easeInOutQuad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --easeInCubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --easeOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --easeInQuart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --easeOutQuart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --easeInOutQuart: cubic-bezier(0.77, 0, 0.175, 1);
  --easeInQuint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --easeOutQuint: cubic-bezier(0.23, 1, 0.32, 1);
  --easeInOutQuint: cubic-bezier(0.86, 0, 0.07, 1);
  --easeInExpo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --easeOutExpo: cubic-bezier(0.19, 1, 0.22, 1);
  --easeInOutExpo: cubic-bezier(1, 0, 0, 1);
  --easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --easeInOutBack: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.is-section-dark {
  --color: #fff;
  color: var(--color);
}

/*----------------------------------------------------
	フォーム
----------------------------------------------------*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  left: -9999px;
  top: -9999px;
}

input,
select,
label {
  vertical-align: middle;
  color: var(--color);
}

[type=text] {
  line-height: normal;
}

input[type=text],
input[type=email],
input[type=tel],
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--color);
  font-family: var(--font);
  font-size: 16px;
}

input[type=submit],
button {
  cursor: pointer;
  border: none;
}

textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  outline: none;
  background: transparent;
  color: var(--color);
  font-family: var(--font);
  font-size: 16px;
}

*:focus {
  outline: none;
}

/*----------------------------------------------------
	フォント
----------------------------------------------------*/
html {
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 641px) and (max-width: 1023px) {
  html {
    font-size: 2.1333333333vw;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 1vw;
  }
}
@media screen and (min-width: 1921px) {
  html {
    font-size: 19.2px;
  }
}

body {
  font-family: var(--font);
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  word-wrap: break-word;
  color: var(--color);
}

.serif {
  font-family: var(--serif);
}

/*----------------------------------------------------
	レスポンシブ
----------------------------------------------------*/
@media screen and (min-width: 641px) {
  .sp {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .sp-tab {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .pc-tab {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .tab {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .tab {
    display: none;
  }
}

/*----------------------------------------------------
	リンク
----------------------------------------------------*/
button,
a {
  color: var(--color);
  text-decoration: none;
  -webkit-transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: 0.3s cubic-bezier(0.33, 0.64, 0.67, 0.96);
  transition: 0.3s cubic-bezier(0.33, 0.64, 0.67, 0.96);
  cursor: pointer;
}
@media (hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media (hover: none) {
  a, button {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
  }
}
[data-scroll-target] {
  content: "";
  display: block;
  position: relative;
  pointer-events: none;
  top: calc(-1 * var(--header-height));
}

/*----------------------------------------------------
	コンテナ
----------------------------------------------------*/
.l-container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1920px;
}
@media screen and (max-width: 640px) {
  .l-container {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
@media screen and (min-width: 641px) and (max-width: 1023px) {
  .l-container {
    padding-left: 10.6666666667vw;
    padding-right: 10.6666666667vw;
  }
}
@media screen and (min-width: 1024px) {
  .l-container {
    padding-left: 12.5vw;
    padding-right: 12.5vw;
  }
}
@media screen and (min-width: 1921px) {
  .l-container {
    padding-left: 240px;
    padding-right: 240px;
  }
}

/*----------------------------------------------------
	body
----------------------------------------------------*/
html {
  height: 100%;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

body {
  position: relative;
  height: 100%;
}
.l-body-wrap {
  width: 100%;
  min-height: 100%;
}
/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
.l-header-logo {
  position: fixed;
  left: 1.25rem;
  top: 1.25rem;
  width: 15.166875rem;
  z-index: 500;
}
.l-header-logo img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.is-logo-dark .l-header-logo img:nth-child(2) {
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .l-header-logo {
    width: 22.75rem;
    left: 3.75rem;
    top: 3.125rem;
  }
}

.l-header-contact {
  position: fixed;
  right: 2.625rem;
  top: 2.5rem;
  z-index: 500;
}
@media screen and (max-width: 1023px) {
  .l-header-contact {
    display: none;
  }
}
.l-header-cta {
  position: fixed;
  bottom: 0;
  z-index: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.l-header-cta li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-header-cta a {
  width: 100%;
}
.l-header-cta li:nth-child(2) {
  position: relative;
}
.l-header-cta li:nth-child(2):before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  border-left: 0.0625rem solid #fff;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .l-header-cta {
    display: none;
  }
}

/*----------------------------------------------------
	l-header-drawer
----------------------------------------------------*/
/*----------------------------------------------------
	main
----------------------------------------------------*/
/*----------------------------------------------------
	フッター
----------------------------------------------------*/
.l-footer {
  position: relative;
  background: #fff;
  padding: 7.5rem 0 6.25rem;
}
@media screen and (min-width: 1024px) {
  .l-footer {
    padding: 11.25rem 0 5rem;
  }
}

.l-footer__wrap {
  display: -ms-grid;
  display: grid;
  font-size: 0.8125rem;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .l-footer__wrap {
        grid-template-areas: "logo logo" "info copyright";
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.l-footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.l-footer-logo img {
  width: 9.643125rem;
}
@media screen and (min-width: 1024px) {
  .l-footer-logo {
    grid-area: logo;
  }
  .l-footer-logo img {
    width: 12.856875rem;
  }
}

.l-footer-info {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2em;
}
@media screen and (min-width: 1024px) {
  .l-footer-info {
    grid-area: info;
    margin-top: 2rem;
  }
}

.l-footer-copyright {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .l-footer-copyright {
    margin-top: 0;
    grid-area: copyright;
    align-self: flex-end;
    text-align: right;
  }
}
@media screen and (min-width: 1024px){
  .l-footer-logo {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .l-footer-info {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .l-footer-copyright {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}

/*----------------------------------------------------
	...
----------------------------------------------------*/
.p-top__wrap {
  position: relative;
  background: #fff;
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
.p-top-mv-open {
  display: block;
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}

.p-top-mv {
  position: relative;
  height: 100vh;
  z-index: 20;
}
@media screen and (min-width: 1024px) {
  .p-top-mv {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
}

.p-top-mv-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.p-top-mv-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-mv-bg2 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 3;
}
.p-top-mv-bg2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  will-change: transform, opacity;
  -webkit-transition: 1s var(--easeOutQuart);
  transition: 1s var(--easeOutQuart);
}
.p-top-mv-bg2.is-active img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-top-mv-access {
  width: 100%;
  will-change: transform, opacity;
  -webkit-transition: 1s var(--easeOutQuart);
  transition: 1s var(--easeOutQuart);
}
.p-top-mv-access.is-hide {
  opacity: 0;
}
.p-top-mv-access__pic1 img, .p-top-mv-access__pic1 svg {
  will-change: transform, opacity;
}
.p-top-mv-access__pic1 img {
  opacity: 0;
  position: absolute;
  width: 234.35px;
  left: 20px;
  top: 219px;
  -webkit-transform: translate(-200px, 100px);
          transform: translate(-200px, 100px);
  -webkit-transition: 1s var(--easeOutQuart);
  transition: 1s var(--easeOutQuart);
}
.p-top-mv-access__pic1 svg {
  opacity: 0;
  position: absolute;
  width: 231.5px;
  height: auto;
  left: 21px;
  top: 315px;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: 1s var(--easeOutQuart);
  transition: 1s var(--easeOutQuart);
}
.p-top-mv-access__pic1.is-active img {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.p-top-mv-access__pic1.is-active svg {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (min-width: 1024px) {
  .p-top-mv-access__pic1 img {
    width: 468px;
    left: calc(50% - 600px);
    top: 187px;
  }
  .p-top-mv-access__pic1 svg {
    width: 464.38px;
    left: calc(50% - 600px);
    top: 378px;
  }
}

.p-top-mv-access__pic2 img, .p-top-mv-access__pic2 svg {
  will-change: transform, opacity;
}
.p-top-mv-access__pic2 img {
  opacity: 0;
  position: absolute;
  width: 300px;
  top: 436px;
  left: 55px;
  -webkit-transform: translate(200px, 100px);
          transform: translate(200px, 100px);
  -webkit-transition: 1s var(--easeOutQuart);
  transition: 1s var(--easeOutQuart);
}
.p-top-mv-access__pic2 svg {
  opacity: 0;
  position: absolute;
  width: 274.02px;
  height: auto;
  left: 80px;
  top: 506px;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: 1s var(--easeOutQuart);
  transition: 1s var(--easeOutQuart);
}
.p-top-mv-access__pic2.is-active img {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.p-top-mv-access__pic2.is-active svg {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (min-width: 1024px) {
  .p-top-mv-access__pic2 img {
    width: 598px;
    top: 469px;
    left: 50%;
  }
  .p-top-mv-access__pic2 svg {
    width: 546.36px;
    left: calc(50% + 50px);
    top: 608px;
  }
}

.p-top-mv-lead {
  opacity: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  top: 270px;
  left: calc(50% - 36px);
  gap: 8px;
  width: 100%;
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  line-height: 1;
  text-align: center;
  -webkit-transition: 1s var(--easeOutQuart);
  transition: 1s var(--easeOutQuart);
  will-change: transform, opacity;
}
.p-top-mv-lead p {
  width: 1em;
  line-height: 1.3em;
  -webkit-transition: 1s var(--easeOutQuart);
  transition: 1s var(--easeOutQuart);
  will-change: transform, opacity;
}
.p-top-mv-lead p:nth-child(1) {
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
.p-top-mv-lead p:nth-child(2) {
  padding-top: 3em;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
.p-top-mv-lead.is-active {
  opacity: 1;
}
.p-top-mv-lead.is-active p {
  line-height: 1em;
}
.p-top-mv-lead.is-active p:nth-child(1) {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.p-top-mv-lead.is-active p:nth-child(2) {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.p-top-mv-lead.is-hide {
  opacity: 0;
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
}
@media screen and (min-width: 1024px) {
  .p-top-mv-lead {
    top: 260px;
    left: calc(50% - 54px);
    gap: 13px;
    font-size: 48px;
  }
}

.p-top-mv-type {
  opacity: 0;
  position: absolute;
  top: 577px;
  -webkit-transform: translate(500px, 200px);
          transform: translate(500px, 200px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 1s var(--easeOutQuart);
  transition: 1s var(--easeOutQuart);
  will-change: transform, opacity;
}
.p-top-mv-type.is-active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (min-width: 1024px) {
  .p-top-mv-type {
    top: 536px;
  }
}

.p-top-mv-type__svg {
  -webkit-animation: loopLeft linear 40s infinite;
          animation: loopLeft linear 40s infinite;
  will-change: transform;
}
.p-top-mv-type__svg svg {
  width: auto;
  max-width: none;
  height: 144.75px;
}
@media screen and (min-width: 1024px) {
  .p-top-mv-type__svg {
    -webkit-animation: loopLeft linear 80s infinite;
            animation: loopLeft linear 80s infinite;
  }
  .p-top-mv-type__svg svg {
    height: 289.5px;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
.p-top-mv__wrap {
  position: relative;
  z-index: 10;
  opacity: 0;
  -webkit-transition: 1s var(--easeOutQuart);
  transition: 1s var(--easeOutQuart);
  will-change: opacity;
}
.p-top-mv__wrap.is-active {
  opacity: 1;
}
.p-top-mv__inner {
  padding-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .p-top-mv__inner {
    padding-top: 17.5rem;
    width: 39.375rem;
    margin-left: -1.875rem;
  }
}

.p-top-mv__action {
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) {
  .p-top-mv__action {
    margin-top: 1.875rem;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
.p-top-location {
  position: relative;
  padding: var(--padding-section) 0;
}
.p-top-location:before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 100vh);
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  background: rgb(26, 43, 51);
  opacity: 0;
  z-index: 2;
  -webkit-transition: 0.5s var(--easeOutQuart);
  transition: 0.5s var(--easeOutQuart);
}
.is-page-dark .p-top-location:before {
  opacity: 0.9;
}
@media screen and (min-width: 1024px) {
  .p-top-location:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
    width: 100%;
    height: 83.6875rem;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(60%, #1a2b33), to(rgba(26, 43, 51, 0)));
    background: linear-gradient(to top, #1a2b33 60%, rgba(26, 43, 51, 0) 100%);
    z-index: 6;
  }
}

.p-top-location__bg {
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: -1;
}
.p-top-location__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-location__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 7.5rem;
  gap: 5.8125rem;
}
@media screen and (min-width: 1024px) {
  .p-top-location__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 11.25rem;
    gap: 5.875rem;
  }
}

.p-top-location__aside {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1023px) {
  .p-top-location__aside {
    position: relative;
    height: 150vh;
  }
  .p-top-location__aside figure {
    position: sticky;
    top: calc(50vh - 11.25rem);
  }
}
@media screen and (min-width: 1024px) {
  .p-top-location__aside {
    width: 35.3875rem;
    margin-bottom: -50vh;
  }
  .p-top-location__aside figure {
    position: sticky;
    top: var(--header-height);
  }
}

.p-top-location__content {
  position: relative;
  z-index: 8;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 1024px) {
  .p-top-location__content {
    padding-top: 175vh;
  }
}

.p-top-location__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.45em;
  font-size: 0.9375rem;
  line-height: 2.5;
}
@media screen and (min-width: 1024px) {
  .p-top-location__txt {
    font-size: 1.25rem;
    line-height: 2.5;
  }
}

.p-top-location__pic {
  margin-top: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
.p-top-location__pic figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .p-top-location__pic {
    margin-top: 11.25rem;
    gap: 5rem;
  }
  .p-top-location__pic figure {
    font-size: 1rem;
  }
}

.p-top-location-gallery {
  position: relative;
  z-index: 8;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top-location-gallery__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  padding-right: 1.5rem;
  -webkit-animation: loopLeft linear 30s infinite;
          animation: loopLeft linear 30s infinite;
  will-change: transform;
}
.p-top-location-gallery__wrap figure {
  width: 11.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem;
}
.p-top-location-gallery__wrap figure:nth-child(even) {
  margin-top: 1.25rem;
}
.p-top-location-gallery__wrap img {
  max-width: none;
}
@media screen and (min-width: 1024px) {
  .p-top-location-gallery__wrap {
    padding-right: 3rem;
    gap: 3rem;
    -webkit-animation: loopLeft linear 50s infinite;
            animation: loopLeft linear 50s infinite;
  }
  .p-top-location-gallery__wrap figure {
    width: 22.5rem;
    font-size: 1rem;
  }
  .p-top-location-gallery__wrap figure:nth-child(even) {
    margin-top: 2.5rem;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
.p-top-plan {
  padding: var(--padding-section) 0 0;
  position: relative;
}
.p-top-plan__type {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  overflow: hidden;
}
.p-top-plan__type span {
  position: absolute;
  left: 3.375rem;
  top: 10rem;
  font-size: 9.3125rem;
  line-height: 1;
  letter-spacing: -0.07em;
  color: #edeff2;
  opacity: 0.4;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .p-top-plan__type span {
    left: calc(50% - 20rem);
    top: 12.5rem;
    font-size: 18.75rem;
  }
}

.p-top-plan__head {
  position: relative;
}
.p-top-plan__wrap {
  position: relative;
  padding-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.375rem;
}
@media screen and (min-width: 1024px) {
  .p-top-plan__wrap {
    padding-top: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.8125rem;
  }
}

.p-top-plan__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 1024px) {
  .p-top-plan__content {
    padding-top: 6.875rem;
    gap: 2.375rem;
  }
}

.p-top-plan__pic img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-top-plan__pic {
    width: 38.1875rem;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
.p-top-facility {
  padding: var(--padding-section) 0 0;
}
.p-top-facility__points {
  padding-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .p-top-facility__points {
    padding-top: 8.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3rem;
  }
}

.p-top-facility-point {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  padding: 4rem 1.25rem 1rem 1.25rem;
  background: #f8f9fb;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transform: translateY(4.375rem);
          transform: translateY(4.375rem);
  -webkit-transition: 0.6s var(--easeOutQuart);
  transition: 0.6s var(--easeOutQuart);
}
.p-top-facility-point.is-visible, .is-visible .p-top-facility-point {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  will-change: clip-path, transform;
}
@media screen and (min-width: 1024px) {
  .p-top-facility-point {
    gap: 1.25rem;
    padding: 7.25rem 2.5rem 2.25rem 2.5rem;
  }
  .p-top-facility-point:nth-child(2) {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .p-top-facility-point:nth-child(3) {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
}

.p-top-facility-point__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-top-facility-point__title span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.5rem;
  background: #1a2b33;
  font-size: 1.25rem;
  color: #f8f9fb;
}
@media screen and (min-width: 1024px) {
  .p-top-facility-point__title {
    gap: 0.5rem;
  }
  .p-top-facility-point__title span {
    height: 2.1875rem;
    font-size: 1.5rem;
  }
}

.p-top-facility-point__body.p-top-facility-point__body {
  line-height: 2;
}
.p-top-facility__wrap {
  padding-top: var(--padding-section);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .p-top-facility__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 7.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .p-top-facility__pic {
    width: 37.5rem;
  }
  .p-top-facility__pic figure {
    position: sticky;
    top: 0;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-top-facility__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--padding-block);
}
@media screen and (min-width: 1024px) {
  .p-top-facility__content {
    padding-top: 75vh;
  }
}

.p-top-facility-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .p-top-facility-item {
    gap: 0.75rem;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
.p-top-map {
  padding: var(--padding-section) 0 0;
}
.p-top-map__map {
  padding-top: var(--padding-section-sm);
}
.p-top-map__map iframe {
  width: 100%;
  height: 17.5625rem;
}
@media screen and (min-width: 1024px) {
  .p-top-map__map iframe {
    height: 45rem;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
.p-top-outline {
  padding: var(--padding-section) 0;
  background: #f8f9fb;
}
.p-top-outline__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .p-top-outline__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-top-outline__head {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 1024px) {
  .p-top-outline__head .c-heading-section {
    position: sticky;
    top: var(--header-height);
  }
}

.p-top-outline__content {
  padding-top: 3.75rem;
}
@media screen and (min-width: 1024px) {
  .p-top-outline__content {
    padding-top: 0;
    width: 50rem;
  }
}

.p-top-outline-item:not(:first-child):has(.p-top-outline-item__head:not(.is-open)) {
  border-bottom: var(--border-color);
}
.p-top-outline-item:first-child .p-top-outline-item__body {
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .p-top-outline-item:first-child .p-top-outline-item__body {
    padding-bottom: 4.375rem;
  }
}

.p-top-outline-item__head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  padding: 0;
  gap: 0.5rem;
  border-top: var(--border-color);
  width: 100%;
  height: 4.8125rem;
  font-size: 1.25rem;
}
.p-top-outline-item__head span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-outline-item__head i {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: #fff;
  border: var(--border-gray);
  border-radius: 100%;
}
.p-top-outline-item__head i span {
  position: absolute;
  width: 0.625rem;
  height: 0.0625rem;
  background: #1a2b33;
  -webkit-transition: 0.3s var(--easeOutQuart);
  transition: 0.3s var(--easeOutQuart);
}
.p-top-outline-item__head i span:nth-child(2) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-top-outline-item__head.is-open i span:nth-child(2) {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (min-width: 1024px) {
  .p-top-outline-item__head {
    height: 9.625rem;
    font-size: 1.75rem;
    padding: 0 1rem;
  }
  .p-top-outline-item__head i {
    width: 2.5rem;
    height: 2.5rem;
  }
  .p-top-outline-item__head i span {
    width: 1rem;
    height: 0.125rem;
  }
}

.p-top-outline-item__body {
  display: none;
}
.is-open + .p-top-outline-item__body {
  display: block;
}
.p-top-outline-item__body table {
  width: 100%;
  font-size: 0.875rem;
  line-height: 2;
}
.p-top-outline-item__body tr {
  border-top: var(--border-gray);
}
.p-top-outline-item__body tr:last-child {
  border-bottom: var(--border-gray);
}
.p-top-outline-item__body th, .p-top-outline-item__body td {
  padding: 1.25rem 0.625rem 1.25rem 0;
}
.p-top-outline-item__body th {
  width: 6.25rem;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-top-outline-item__body table {
    font-size: 1.125rem;
  }
  .p-top-outline-item__body th, .p-top-outline-item__body td {
    padding: 1.6875rem 1rem;
  }
  .p-top-outline-item__body th {
    width: 11.25rem;
  }
}

.p-top-outline__ex {
  padding-top: 1.5rem;
  font-size: 0.875rem;
  text-align: right;
}
@media screen and (min-width: 1024px) {
  .p-top-outline__ex {
    padding-top: 2rem;
    font-size: 1.125rem;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
.p-top-contact {
  padding-top: var(--padding-section);
}
.p-top-contact__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-top-contact__head {
    gap: 3rem;
  }
}

.p-top-contact__title {
  padding: 0.625rem 1.25rem;
  background: #00388d;
  font-size: 1.25rem;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .p-top-contact__title {
    padding: 1.25rem 2.5rem;
    font-size: 2.5rem;
  }
}

.p-top-contact__form {
  margin-top: 3.125rem;
}
@media screen and (min-width: 1024px) {
  .p-top-contact__form {
    margin-top: 6.25rem;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*----------------------------------------------------
	...
----------------------------------------------------*/
/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*----------------------------------------------------
	...
----------------------------------------------------*/
/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*----------------------------------------------------
	c-paragraph
----------------------------------------------------*/
.c-paragraph, .cm-form__lead {
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .c-paragraph, .cm-form__lead {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.c-paragraph-md {
  font-size: 0.9375rem;
  line-height: 2.5;
}
@media screen and (min-width: 1024px) {
  .c-paragraph-md {
    font-size: 1.25rem;
    line-height: 2.5;
  }
}

.c-paragraph-lg {
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .c-paragraph-lg {
    font-size: 2.5rem;
    line-height: 1.8;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*----------------------------------------------------
	...
----------------------------------------------------*/
.cm-form {
  padding: 3.125rem 1rem;
  background: #f8f9fb;
}
.cm-form input[type=text],
.cm-form input[type=email],
.cm-form textarea {
  width: 100%;
  height: 3.3125rem;
  border-radius: 0.25rem;
  background: #fff;
  border: var(--border-gray);
  padding: 0.625rem 1rem;
}
.cm-form input[type=text]:focus,
.cm-form input[type=email]:focus,
.cm-form textarea:focus {
  border-color: var(--color-assort);
}
@media screen and (min-width: 1024px) {
  .cm-form input[type=text],
  .cm-form input[type=email],
  .cm-form textarea {
    height: 4.625rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
  }
}
.cm-form textarea {
  height: 14.3125rem;
}
.cm-form input[type=radio],
.cm-form input[type=checkbox] {
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
}
.cm-form label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.cm-form label span {
  font-size: 0.9375rem;
}
@media screen and (min-width: 1024px) {
  .cm-form label span {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .cm-form {
    padding: 6.25rem 6.25rem;
  }
}

.cm-form__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.cm-form-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .cm-form-inputs {
    gap: 1.5rem;
  }
}

.cm-form-agree {
  margin-top: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .cm-form-agree {
    margin-top: 3rem;
    margin-left: 16.25rem;
  }
}

.cm-form-agree__wrap {
  width: 100%;
  height: 14.6875rem;
  border-radius: 0.25rem;
  background: #edeff2;
  padding: 0.625rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  overflow: auto;
  font-size: 0.8125rem;
  line-height: 2;
}
.cm-form-agree__wrap h3 {
  padding-top: 0.5em;
}
.cm-form-agree__wrap h3 + * {
  margin-top: -1em;
}
@media screen and (min-width: 1024px) {
  .cm-form-agree__wrap {
    height: 29.3125rem;
    border-radius: 0.5rem;
    padding: 2.5rem 1.875rem;
    font-size: 1rem;
    line-height: 2;
  }
}

.cm-form-agree__check {
  margin-top: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .cm-form-agree__check {
    margin-top: 1.25rem;
  }
}

.cm-form-action {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .cm-form-action {
    margin-top: 5rem;
  }
}

.c-form-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.c-form-input dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}
.c-form-input dt .required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem;
  height: 1.1875rem;
  background: #ced2d9;
  font-size: 0.75rem;
  gap: 0.5rem;
}
.c-form-input dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 1024px) {
  .c-form-input {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
  .c-form-input dt {
    width: 16.25rem;
    gap: 1rem;
    font-size: 1.25rem;
    -ms-flex-item-align: start;
        align-self: flex-start;
    padding-top: 1.25rem;
  }
  .c-form-input dt .required {
    width: 2.75rem;
    height: 1.5rem;
    font-size: 0.875rem;
  }
}

.c-form-input__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .c-form-input__radio {
    gap: 1.125rem;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*----------------------------------------------------
	c-btn
----------------------------------------------------*/
.c-btn-round {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  position: relative;
  width: 15.6875rem;
  max-width: 100%;
  height: 3rem;
  border-radius: 1.5rem;
  background: #00388d;
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .c-btn-round {
    width: 22.25rem;
    height: 4rem;
    border-radius: 2rem;
    font-size: 1.5rem;
  }
}

.c-btn-round--header {
  width: 15rem;
  height: 3.5rem;
  border-radius: 1.75rem;
  font-size: 1.125rem;
}

.c-btn-round--cta {
  height: 3rem;
  border-radius: 0;
  font-size: 1rem;
}

.c-btn-round__txt {
  position: relative;
}
.c-btn-round__txt span {
  position: relative;
  display: inline-block;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: 0.5s var(--easeOutQuart);
  transition: 0.5s var(--easeOutQuart);
  opacity: 1;
  will-change: transform, opacity;
}
.c-btn-round__txt:after {
  content: attr(data-text) "";
  display: inline-block;
  position: absolute;
  left: 0;
  -webkit-transition: 0.5s var(--easeOutQuart);
  transition: 0.5s var(--easeOutQuart);
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  opacity: 0;
  will-change: transform, opacity;
}
a:hover .c-btn-round__txt span {
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  opacity: 0;
}
a:hover .c-btn-round__txt:after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.c-btn-round__ico {
  width: 1rem;
  line-height: 0;
}
.c-btn-round__ico svg {
  width: 100%;
  height: auto;
}

.c-btn-round__angle {
  width: 1rem;
  line-height: 0;
  position: absolute;
  right: 0.9375rem;
}
.c-btn-round__angle svg {
  width: 100%;
  height: auto;
  stroke: #fff;
}
@media screen and (min-width: 1024px) {
  .c-btn-round__angle {
    right: 1.4375rem;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
.c-btn-menu {
  width: 3.75rem;
  height: 3.75rem;
  cursor: pointer;
  position: relative;
}
.c-btn-menu span {
  display: block;
  position: absolute;
  height: 0.0625rem;
  width: 1.5rem;
  background: #005bac;
  left: 1.125rem;
}
.c-btn-menu span:nth-child(1) {
  top: calc(50% - 0.5rem);
}
.c-btn-menu span:nth-child(2) {
  top: 50%;
}
.c-btn-menu span:nth-child(3) {
  top: calc(50% + 0.5rem);
}
.c-btn-menu.is-nav-open span:nth-child(1) {
  top: 50%;
  -webkit-transform: scale(-1, -1) rotate(-35deg);
          transform: scale(-1, -1) rotate(-35deg);
}
.c-btn-menu.is-nav-open span:nth-child(2) {
  width: 0;
  left: 50%;
}
.c-btn-menu.is-nav-open span:nth-child(3) {
  top: 50%;
  -webkit-transform: scale(-1, -1) rotate(35deg);
          transform: scale(-1, -1) rotate(35deg);
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*----------------------------------------------------
	...
----------------------------------------------------*/
/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*----------------------------------------------------
	c-heading
----------------------------------------------------*/
.c-heading-section__en {
  font-size: 3.5rem;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .c-heading-section__en {
    font-size: 5rem;
  }
}

.c-heading-section__ja {
  margin-top: 0.625rem;
  position: relative;
  font-size: 1rem;
  padding-left: 1rem;
}
.c-heading-section__ja:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(0.75em - 0.25rem);
  pointer-events: none;
  width: 0.5rem;
  height: 0.5rem;
  background: #00388d;
  border-radius: 100%;
}
@media screen and (min-width: 1024px) {
  .c-heading-section__ja {
    margin-top: 1rem;
    font-size: 1.25rem;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
.c-heading-bar {
  position: relative;
  padding-left: 0.625rem;
  font-size: 1.25rem;
}
.c-heading-bar:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.35em;
  pointer-events: none;
  width: 0.125rem;
  height: 0.9em;
  background: #1a2b33;
}
@media screen and (min-width: 1024px) {
  .c-heading-bar {
    padding-left: 1rem;
    font-size: 1.75rem;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*----------------------------------------------------
	...
----------------------------------------------------*/
.c-list-disc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
}
.c-list-disc li {
  position: relative;
  padding-left: 1em;
  font-size: 0.875rem;
  line-height: 1.5;
}
.c-list-disc li:before {
  content: "・";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .c-list-disc {
    gap: 0.5rem;
  }
  .c-list-disc li {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*----------------------------------------------------
	...
----------------------------------------------------*/
/*::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*----------------------------------------------------
	汎用クラス
----------------------------------------------------*/
.bold,
.strong {
  font-weight: bold;
}

.u-hide {
  display: none;
}

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

.u-center {
  text-align: center;
}

.u-only-sp {
  display: block !important;
}
@media screen and (min-width: 641px) {
  .u-only-sp {
    display: none !important;
  }
}

.u-only-pc {
  display: none !important;
}
@media screen and (min-width: 641px) {
  .u-only-pc {
    display: block !important;
  }
}

.u-accent-color {
  color: var(--accent-color);
}

.u-template {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  padding-bottom: 6.25rem;
}
.u-template > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.u-gap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--gap);
}

.is-disabled {
  opacity: 0.7;
  pointer-events: none;
}

.u-budoux {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

[data-delay="0.1"] {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

[data-delay="0.2"] {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

[data-delay="0.3"] {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

[data-delay="0.4"] {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

[data-delay="0.5"] {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

[data-delay="0.6"] {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

[data-delay="0.7"] {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

[data-delay="0.8"] {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

[data-delay="0.9"] {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

[data-delay="1"] {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

[data-delay="1.1"] {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

[data-delay="1.2"] {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

[data-delay="1.3"] {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

[data-delay="1.4"] {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

[data-delay="1.5"] {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

[data-delay="1.6"] {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

[data-delay="1.7"] {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}

[data-delay="1.8"] {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

[data-delay="1.9"] {
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}

[data-delay="2"] {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

[data-delay="2.1"] {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}

[data-delay="2.2"] {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}

[data-delay="2.3"] {
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
}

[data-delay="2.4"] {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

[data-delay="2.5"] {
  -webkit-transition-delay: 2.5s;
          transition-delay: 2.5s;
}

[data-delay="2.6"] {
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}

[data-delay="2.7"] {
  -webkit-transition-delay: 2.7s;
          transition-delay: 2.7s;
}

[data-delay="2.8"] {
  -webkit-transition-delay: 2.8s;
          transition-delay: 2.8s;
}

[data-delay="2.9"] {
  -webkit-transition-delay: 2.9s;
          transition-delay: 2.9s;
}

[data-delay="3"] {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}

.__loop {
  -webkit-animation: loopLeft linear 30s infinite;
          animation: loopLeft linear 30s infinite;
  will-change: transform;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.__loop img {
  width: auto;
  max-width: none;
  height: 18.75rem;
}
@media screen and (min-width: 1024px) {
  .__loop {
    -webkit-animation: loopLeft linear 50s infinite;
            animation: loopLeft linear 50s infinite;
  }
  .__loop img {
    height: 32.875rem;
  }
}

@-webkit-keyframes loopLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes loopLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes loopRight {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes loopRight {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}