@charset "UTF-8";
/* foundation
------------------------------------*/
/* ==========================================================================
// global
// ======================================================================== */
/* -----------------------------------------------------------------
// variables
// --------------------------------------------------------------- */
/* ==========================================================================
// variable
// ======================================================================== */
/* -----------------------------------------------------------------
// CSS custom properties (CSS variables)
// --------------------------------------------------------------- */
:root {
  --color-text: #005BAB;
}

/* -----------------------------------------------------------------
// color manage
// --------------------------------------------------------------- */
/* -----------------------------------------------------------------
// bg
// --------------------------------------------------------------- */
/* -----------------------------------------------------------------
// border
// --------------------------------------------------------------- */
/* ==========================================================================
// font-family
// ======================================================================== */
/* ==========================================================================
// variable
// ======================================================================== */
/* ==========================================================================
// font-weight
// ======================================================================== */
/* ==========================================================================
// variable
// ======================================================================== */
/* -----------------------------------------------------------------
// z-index manage：z-index: global.z(header);
// --------------------------------------------------------------- */
/* -----------------------------------------------------------------
// mixins
// --------------------------------------------------------------- */
/* ==========================================================================
// mixin
// updated --- 2023/01/17 01:02:33
// ======================================================================== */
/* ------------------------------------------------------------
   * @mixin：aspect-ratio
   * 
   * 比率維持のBOX
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
   * @mixin：aspect-ratio v2?
   * 
   * 比率維持のBOX
   * https://zenn.dev/tak_dcxi/articles/2cc1828e9c1fe2#%E7%94%BB%E5%83%8F%E3%81%AA%E3%81%A9%E3%82%92%E7%B8%A6%E6%A8%AA%E6%AF%94%E3%82%92%E7%B6%AD%E6%8C%81%E3%81%97%E3%81%9F%E3%81%BE%E3%81%BE%E3%83%AC%E3%82%B9%E3%83%9D%E3%83%B3%E3%82%B7%E3%83%96%E5%AF%BE%E5%BF%9C
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
	 * @mixin：clamp-value($min,$max,$vmin,$vmax)
   * ref：https://css-tricks.com/linearly-scale-font-size-with-css-clamp-based-on-the-viewport/
	 * 
	 * $min：最小サイズ〜$max：最大サイズ
	 * $vmin：viewport最小〜$vmax：viewport最大
	-------------------------------------------------------------- */
/* ------------------------------------------------------------
	 * @mixin：pxrem($px,$basepx)
	 * 
	 * px => rem
	 * base : 16px;
	-------------------------------------------------------------- */
/* ------------------------------------------------------------
	 * @mixin：pxvw($px,$basepx)
	 * 
	 * px => vw
	 * base : 750px;
	-------------------------------------------------------------- */
/* ------------------------------------------------------------
	 * @mixin：pxper($px,$basepx)
	 * 
	 * px => per
	-------------------------------------------------------------- */
/* ------------------------------------------------------------
   * @function：ease
   * 
   * Easing mixin http://www.kuma-de.com/blog/2016-12-08/7273
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
   * @mixin：hover
   * 
   * $hoverでfocus時の実行可否を制御
   * ※ie11の判別にcssua必須
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
   * @mixin：lineHeightCrop
   * 
   * line-heightの不要な余白を打ち消す
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
   * vertical
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
   * @mixin：indent
   * 
   * text-indent 制御 ※改善の余地あり
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
   * @mixin：triangle
   * 
   * 第1引数に方向を指定。上向き(upward)、右向き(rightward)、下向き(downward)、左向き(leftward)、左上(upper-left)、右上(upper-right)、右下(lower-right)、左下(lower-left)の８方向から選択します
   * 第2引数に三角形の横幅を指定します
   * 第3引数に三角形の縦幅を指定します
   * 第4引数に三角形の色を指定します。デフォルトは現在の文字色(currentColor)
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
   * @function：z
   * 
   * z-index 管理
   * https://qiita.com/kojika17/items/b4694e3afe0da97e6335
  -------------------------------------------------------------- */
/*!
 * ress.css • v2.0.4
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
hr {
  overflow: visible; /* Show the overflow in Edge and IE */
  height: 0; /* Add the correct box sizing in Firefox */
}

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

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

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

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

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

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

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

pre {
  font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
}

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

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

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

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

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

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
  color: inherit;
}

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

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

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

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
  appearance: none;
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */
}

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

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

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

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

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  width: 100%;
}

/* safari css hack */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 1px) {
  html {
    overflow-x: auto;
    overflow-y: hidden;
  }
}
body {
  background: #e7e7e7;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-wrap: break-word;
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom); /* セーフエリア余白 */
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  body {
    min-width: 320px;
    overflow-x: hidden;
  }
}
body.is-fixed {
  overflow-y: hidden;
}

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

p {
  margin: 0;
  padding: 0;
}

input {
  border-radius: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input[type=submit],
a {
  transition: all 0.2s ease;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
button,
input[type=button] {
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
button::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
button:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

summary::-webkit-details-marker {
  display: none;
}

.c-preload * {
  transition: none !important;
}

/* commons
------------------------------------*/
/* foundation
------------------------------------*/
.c-header-default {
  padding: 1.3888888889vw 1.3888888889vw 2.7777777778vw;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .c-header-default {
    padding: min(2.2222222222vw, 2rem) min(2.2222222222vw, 2rem) 0;
  }
}
@media screen and (max-width: 768px) {
  .c-header-default {
    padding: 6.1538461538vw 6.1538461538vw 0;
  }
}

.c-header-logo__link {
  display: block;
  width: min(14.3055555556vw, 12.875rem);
}
@media screen and (max-width: 768px) {
  .c-header-logo__link {
    width: 35.8974358974vw;
  }
}

/* foundation
------------------------------------*/
/* foundation
------------------------------------*/
/* foundation
------------------------------------*/
/* foundation
------------------------------------*/
/* foundation
------------------------------------*/
.c-wrap {
  margin: 0;
  /* overflow: hidden; */ /* iOS Safari対応で無効化 */
  position: relative;
  width: 100vw;
}

.c-sticky-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh; /* JavaScriptで上書き */
  z-index: -1;
}
.c-sticky-bg img {
  -o-object-position: top center;
     object-position: top center;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .c-sticky-bg img.is-pc {
    display: block;
  }
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  .c-sticky-bg img.is-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .c-sticky-bg img.is-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .c-sticky-bg img.is-tab {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  .c-sticky-bg img.is-tab {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .c-sticky-bg img.is-tab {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .c-sticky-bg img.is-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .c-sticky-bg img.is-sp {
    display: block;
  }
}

/* foundation
------------------------------------*/
.c-button-default {
  background: transparent;
  border: 1px solid var(--color-text);
  display: flex;
  align-items: center;
  color: var(--color-text);
  font-weight: 900;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media screen and (min-width: 769px) {
  .c-button-default {
    gap: min(2.2222222222vw, 2rem);
    border-radius: min(6.9444444444vw, 6.25rem);
    padding: min(2.2916666667vw, 2.0625rem) min(2.7777777778vw, 2.5rem);
    font-size: clamp(1.125rem, 1.6666666667vw, 1.5rem);
  }
}
@media screen and (max-width: 768px) {
  .c-button-default {
    gap: 8.2051282051vw;
    border-radius: 25.641025641vw;
    padding: 5.1282051282vw 8.7179487179vw;
    font-size: 4.1025641026vw;
  }
}
.c-button-default::after {
  background: url("../../assets/images/icon-arrow.svg") no-repeat center center/contain;
  content: "";
  display: inline-block;
  transition: transform 0.2s ease, filter 0.2s ease;
}
@media screen and (min-width: 769px) {
  .c-button-default::after {
    height: min(0.9722222222vw, 0.875rem);
    width: min(1.3888888889vw, 1.25rem);
  }
}
@media screen and (max-width: 768px) {
  .c-button-default::after {
    height: 3.5897435897vw;
    width: 5.1282051282vw;
  }
}
.c-button-default:hover {
  background: #005BAB;
  color: #E7E7E7;
}
.c-button-default:hover::after {
  filter: brightness(0) invert(1) brightness(0.91);
}
@media screen and (min-width: 769px) {
  .c-button-default:hover::after {
    transform: translate3d(min(0.2777777778vw, 0.25rem), 0, 0);
  }
}
@media screen and (max-width: 768px) {
  .c-button-default:hover::after {
    transform: translate3d(1.0256410256vw, 0, 0);
  }
}

.c-button-back {
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
  display: inline-flex;
  align-items: center;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .c-button-back {
    gap: min(1.8055555556vw, 1.625rem);
    font-size: min(1.1111111111vw, 1rem);
    font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
    padding: 0 0 min(0.5555555556vw, 0.5rem);
  }
}
@media screen and (max-width: 768px) {
  .c-button-back {
    gap: 5.641025641vw;
    font-size: 3.5897435897vw;
    padding: 0 0 2.0512820513vw;
  }
}
.c-button-back img {
  transition: transform 0.2s ease;
}
@media screen and (min-width: 769px) {
  .c-button-back img {
    width: min(0.6944444444vw, 0.625rem);
  }
}
@media screen and (max-width: 768px) {
  .c-button-back img {
    width: 2.8205128205vw;
  }
}
@media screen and (min-width: 769px) {
  .c-button-back:hover img {
    transform: translate3d(min(0.2777777778vw, 0.25rem), 0, 0);
  }
}
@media screen and (max-width: 768px) {
  .c-button-back:hover img {
    transform: translate3d(1.0256410256vw, 0, 0);
  }
}

/* foundation
------------------------------------*/
/* foundation
------------------------------------*/
/* foundation
------------------------------------*/
.c-list-cta {
  display: inline-flex;
  justify-content: center;
  list-style: none;
}
@media screen and (min-width: 769px) {
  .c-list-cta {
    gap: min(2.7777777778vw, 2.5rem);
  }
}
@media screen and (max-width: 768px) {
  .c-list-cta {
    flex-direction: column;
    gap: 10.2564102564vw;
  }
}

/* foundation
------------------------------------*/
/* foundation
------------------------------------*/
/* foundation
------------------------------------*/
/* utility
------------------------------------*/
/* foundation
------------------------------------*/
/* 表示&非表示を操作するユーティリティ */
.u-hide {
  display: none;
}

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

.u-tab {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  .u-tab {
    display: inline-block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1080px) {
  .u-tab-none {
    display: none !important;
  }
}

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

.u-small {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-small {
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .u-small-none {
    display: none;
  }
}

/* pages
------------------------------------*/
/* foundation
------------------------------------*/
/*****************************************************
* p-top-fv
*****************************************************/
.p-top-fv {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100vh;
}

.p-top-fv__heading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-top-fv__heading {
    width: min(56.7361111111vw, 51.0625rem);
  }
}
@media screen and (max-width: 768px) {
  .p-top-fv__heading {
    width: 86.1538461538vw;
  }
}
.p-top-fv__heading img {
  width: 100%;
}

.p-top-fv__text {
  position: absolute;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .p-top-fv__text {
    bottom: min(2.2222222222vw, 2rem);
    right: min(2.2222222222vw, 2rem);
    width: min(28.4722222222vw, 25.625rem);
  }
}
@media screen and (max-width: 768px) {
  .p-top-fv__text {
    bottom: 15.3846153846vw;
    right: 6.1538461538vw;
    width: 50.7692307692vw;
  }
  .is-chrome .p-top-fv__text {
    bottom: 38.4615384615vw;
  }
}
.p-top-fv__text img {
  width: 100%;
}

/*****************************************************
* p-top-contents
*****************************************************/
@media screen and (min-width: 769px) {
  .p-top-contents {
    padding: min(11.5277777778vw, 10.375rem) 0 min(10.625vw, 9.5625rem);
  }
}
@media screen and (max-width: 768px) {
  .p-top-contents {
    padding: 30.7692307692vw 0;
  }
}

.p-top-contents__inner {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-top-contents__inner {
    width: min(55.8333333333vw, 50.25rem);
  }
}
@media screen and (max-width: 768px) {
  .p-top-contents__inner {
    width: 75.1282051282vw;
  }
}

@media screen and (min-width: 769px) {
  .p-top-contents__heading {
    width: min(30.9027777778vw, 27.8125rem);
  }
}
@media screen and (max-width: 768px) {
  .p-top-contents__heading {
    width: 69.7435897436vw;
  }
}
.p-top-contents__heading img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .p-top-contents__text {
    margin: min(5vw, 4.5rem) 0 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top-contents__text {
    margin: 12.0512820513vw 0 0;
  }
}
.p-top-contents__text img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-top-contents__text img.is-pc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .p-top-contents__text img.is-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .p-top-contents__text img.is-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-top-contents__text img.is-sp {
    display: block;
  }
}

/*****************************************************
* p-top-cta
*****************************************************/
.p-top-cta {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-top-cta {
    padding: min(24.1666666667vw, 21.75rem) 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top-cta {
    padding: 43.8461538462vw 0 65.3846153846vw;
  }
}

.p-top-cta__button {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .p-top-cta__button {
    bottom: min(2.2222222222vw, 2rem);
    right: min(2.2222222222vw, 2rem);
  }
}
@media screen and (max-width: 768px) {
  .p-top-cta__button {
    bottom: 8.2051282051vw;
    right: 50%;
    transform: translate3d(50%, 0, 0);
  }
}/*# sourceMappingURL=style.css.map */