/*
 * main.css
 *
 * ここにインクルードされるCSSは適用されるスコープが
 * 全ページ対象となる共通スタイルを定義したものとする。
 */

/*
 * 1_generic
*/
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*, ::before, ::after {
  box-sizing: border-box;
}

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

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * 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, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl, dl ol, dl ul {
  margin: 0;
}

ol dl, ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol, ol ul {
  margin: 0;
}

ul ol, ul ul {
  margin: 0;
}

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

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

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

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

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

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

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

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

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (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 iframes in all browsers (opinionated).
 */
iframe, img {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}
svg:not(:root) {
  overflow: hidden;
}

/**
 * Hide the overflow in IE.
 */
/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button, input, select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
  -webkit-appearance: button;
}

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

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
}

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

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox], [type=radio] {
  padding: 0;
}

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

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
dialog:not([open]) {
  display: none;
}

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

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

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

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a, area, button, input, label, select, summary, textarea, [tabindex] {
  /* 1 */
  touch-action: manipulation;
  /* 2 */
}

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

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

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

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true], [disabled] {
  cursor: not-allowed;
}

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

/*
 * 2_elements
*/
html {
  font-size: 3.571428571vw;
}
@media (min-width: 785px) {
  html {
    font-size: 100%;
  }
}

/* Defaults
 * ========================================================================== */
html, body {
  width: 100%;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  position: relative;
  z-index: 0;
  overflow-x: hidden;
  color: #05161A;
  background-color: #fff;
  line-height: 2;
  letter-spacing: 0.05em;
}

a {
  color: #05161A;
  text-decoration: none;
}
@media (min-width: 785px) {
  a a:hover, a a:active, a a:focus {
    color: #05161A;
    text-decoration: none;
  }
}

@media (min-width: 785px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

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

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  margin: 0;
}

dl, dt, dd, ul, ol, li, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style-type: none;
}

p {
  margin: 0;
}

/*
 * 3_objects
*/
.o-wrapper {
  position: relative;
  z-index: 0;
}
/* ============================
   HEADER BASE
============================ */
.o-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Keep consistent spacing on resize */
@media (max-width: 1024px) {
  .o-header {
    padding: 1rem 2rem;
  }
}

@media (max-width: 768px) {
  .o-header {
    padding: 0.75rem 1.5rem;
  }
}

/* ============================
   BRAND / LOGO
============================ */
.o-header__brand {
  display: flex;
  align-items: center;
  z-index: 10;
}

.o-header__brand img {
  max-height: 42px;
  width: auto;
}

/* ============================
   NAVIGATION (desktop)
============================ */
.o-header__nav {
  display: none;
}

@media (min-width: 768px) {
  .o-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    background: transparent; /* remove white background */
  }
}

.c-header-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-header-menu__link {
  position: relative;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Underline hover colors (Explore Goof palette) */
.c-header-menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.c-header-menu__link:nth-child(1)::after {
  background-color: #ff595e; /* red */
}
.c-header-menu__link:nth-child(2)::after {
  background-color: #1982c4; /* blue */
}
.c-header-menu__link:nth-child(3)::after {
  background-color: #8ac926; /* green */
}
.c-header-menu__link:nth-child(4)::after {
  background-color: #ffca3a; /* yellow */
}

.c-header-menu__link:hover::after {
  transform: scaleX(1);
}

/* ============================
   HAMBURGER MENU (mobile)
============================ */
.o-header__checkbox {
  display: none;
}

.o-header__humberger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  z-index: 101;
}

.c-humberger__open span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate open/close */
.o-header__checkbox:checked + .o-header__humberger .c-humberger__open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.o-header__checkbox:checked + .o-header__humberger .c-humberger__open span:nth-child(2) {
  opacity: 0;
}
.o-header__checkbox:checked + .o-header__humberger .c-humberger__open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* ============================
   MOBILE NAV MENU OVERLAY
============================ */
.o-header__checkbox:checked ~ .o-header__nav {
  display: fl
.o-main {
  width: 100%;
  padding-top: 5rem;
  position: relative;
  z-index: 0;
  background-color: #fff;
}
@media (min-width: 785px) {
  .o-main {
    padding-top: 230px;
  }
}
@media (min-width: 992px) {
  .o-main {
    padding-top: 120px;
  }
}
.o-footer {
  width: 100%;
  padding: 2rem 1rem 0;
  position: relative;
  z-index: 0;
  background-color: #fff;
}
@media (min-width: 785px) {
  .o-footer {
    padding: 3rem 3rem 0;
  }
}

.o-footer__content {
  padding: 4rem 2rem;
  background-color: #F3F5F7;
  border-radius: 1.7857142857rem;
}
@media (min-width: 785px) {
  .o-footer__content {
    padding: 4rem 3.5rem;
    border-radius: 2.7777777778rem;
  }
}
@media (min-width: 992px) {
  .o-footer__content {
    padding: 4rem 3.5rem;
  }
}
@media (min-width: 1200px) {
  .o-footer__content {
    padding: 4rem 7rem;
  }
}

.o-footer__rows {
  max-width: 1016px;
  margin: 0 auto;
}

.o-footer__rows > * + * {
  margin-top: 3rem;
}

.o-footer__brand {
  text-align: center;
}
@media (min-width: 785px) {
  .o-footer__brand {
    text-align: left;
  }
}
.o-footer__brand > * {
  max-width: 10.6428571429rem;
  margin: 0 auto;
}
@media (min-width: 785px) {
  .o-footer__brand > * {
    max-width: 16rem;
    margin: 0;
  }
}

.o-footer__columns {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  gap: 3rem;
}
@media (min-width: 992px) {
  .o-footer__columns {
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 1rem;
  }
  .o-footer__columns.is_center {
    align-items: center;
    margin-top: 0;
  }
}
.o-footer__columns > :nth-child(1) {
  order: 2;
  padding-top: 3rem;
  border-top: 1px solid #D7DEE4;
}
@media (min-width: 992px) {
  .o-footer__columns > :nth-child(1) {
    order: 1;
    flex: 0 1 425px;
    padding-top: 0;
    border-top: none;
  }
}
.o-footer__columns > :nth-child(2) {
  order: 1;
}
@media (min-width: 992px) {
  .o-footer__columns > :nth-child(2) {
    order: 2;
    flex: 0 0 440px;
  }
}

.o-footer__columns__logo__sp {
  display: block;
}
@media (min-width: 992px) {
  .o-footer__columns__logo__sp {
    display: none;
  }
}

.o-footer__columns__logo__pc {
  display: none;
}
@media (min-width: 992px) {
  .o-footer__columns__logo__pc {
    display: block;
  }
}
/*
 * @var --pr-max-width
 * @var --pr-offset-top
 *
*/
.o-page-pr {
  --heading-funky-font-size: 4.2857142857rem;
  --heading-funky-line-height: 1;
  --pr-offset-top: 2.1428571429rem;
  --pr-max-width: 100%;
  box-sizing: content-box;
  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 4rem;
  margin-top: 2rem;
}
@media (min-width: 785px) {
  .o-page-pr {
    --heading-funky-font-size: 6rem;
    --pr-offset-top: 3rem;
    --pr-max-width: 1098px;
    padding-left: 6.4102564103%;
    padding-right: 6.4102564103%;
    padding-bottom: 4rem;
    margin-left: 7.6923076923%;
    margin-top: 3rem;
  }
}
.o-page-pr::after {
  content: "";
  width: 100%;
  height: calc(100% - var(--pr-offset-top, 0%));
  margin-top: var(--pr-offset-top, 0);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: #F3F5F7;
}
@media (min-width: 785px) {
  .o-page-pr::after {
    border-top-left-radius: 2.7777777778rem;
    border-bottom-left-radius: 2.7777777778rem;
  }
}

.o-page-pr.--releasenotes {
  --heading-funky-font-size: 2.5714285714rem;
  --pr-offset-top: 1.2857142857rem;
}
@media (min-width: 785px) {
  .o-page-pr.--releasenotes {
    --heading-funky-font-size: 4rem;
    --pr-offset-top: 2rem;
  }
}

.o-page-pr.--form {
  --heading-funky-font-size: 3.2142857143rem;
  --pr-offset-top: 1.6071428571rem;
}
@media (min-width: 785px) {
  .o-page-pr.--form {
    --heading-funky-font-size: 6rem;
    --pr-offset-top: 3rem;
  }
}

[data-pr-theme] {
  max-width: var(--pr-max-width);
  margin-left: auto;
  margin-right: auto;
}
/*
 * @var --single-max-width
*/
.o-page-single {
  --single-max-width: 100%;
  padding-top: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 4rem;
  background-color: #f3f5f7;
}
@media (min-width: 785px) {
  .o-page-single {
    --single-max-width: 1188px;
    padding-top: 6.1111111111rem;
    padding-left: 7.6923076923%;
    padding-right: 7.6923076923%;
    padding-bottom: 8rem;
  }
}

[data-single-theme] {
  max-width: var(--single-max-width);
  margin-left: auto;
  margin-right: auto;
}
/*
 * @var --domain-max-width
 * @var --domain-horizontal-gap-left
 * @var --domain-horizontal-gap-right
 *
*/
.o-page-domain {
  --domain-max-width: 100%;
  --domain-horizontal-gap-left: 2rem;
  --domain-horizontal-gap-right: 2rem;
}
@media (min-width: 785px) {
  .o-page-domain {
    --domain-max-width: 1188px;
    --domain-horizontal-gap-left: 6.4102564103%;
    --domain-horizontal-gap-right: 7.6923076923%;
  }
}
.o-page-domain > * + * {
  margin-top: 5rem;
}
@media (min-width: 785px) {
  .o-page-domain > * + * {
    margin-top: 7rem;
  }
}
.o-domain-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 3rem;
}
@media (min-width: 785px) {
  .o-domain-hero {
    padding-bottom: 6rem;
  }
}
.o-domain-hero::after {
  content: "";
  width: 100%;
  height: calc(100% - 4.2857142857rem);
  position: absolute;
  left: 17.8571428571%;
  top: 4.2857142857rem;
  z-index: -1;
  background-color: #F3F5F7;
  border-top-left-radius: 1.7857142857rem;
  border-bottom-left-radius: 1.7857142857rem;
}
@media (min-width: 785px) {
  .o-domain-hero::after {
    height: calc(100% - 7rem);
    left: 20.5128205128%;
    top: 7rem;
    border-top-left-radius: 2.7777777778rem;
    border-bottom-left-radius: 2.7777777778rem;
  }
}

.o-domain-hero__content {
  box-sizing: content-box;
  max-width: var(--domain-max-width, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--domain-horizontal-gap-left, 0);
  padding-right: var(--domain-horizontal-gap-right, 0);
}
.o-domain-hero__content > * + :not(.c-jumbotron) {
  margin-top: 2rem;
}
@media (min-width: 785px) {
  .o-domain-hero__content > * + :not(.c-jumbotron) {
    margin-top: 4rem;
  }
}
.o-domain-section {
  position: relative;
  scroll-margin-top: 5rem;
}
@media (min-width: 785px) {
  .o-domain-section {
    scroll-margin-top: 230px;
  }
}
@media (min-width: 992px) {
  .o-domain-section {
    scroll-margin-top: 120px;
  }
}
.o-domain-section > * + * {
  margin-top: 2rem;
}
@media (min-width: 785px) {
  .o-domain-section > * + * {
    margin-top: 3rem;
  }
}

.o-domain-section__heading {
  box-sizing: content-box;
  max-width: var(--domain-max-width, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--domain-horizontal-gap-left, 0);
  padding-right: var(--domain-horizontal-gap-right, 0);
}

.o-domain-section__content {
  box-sizing: content-box;
  padding-top: 3rem;
  padding-bottom: 4rem;
  padding-left: var(--domain-horizontal-gap-left, 0);
  padding-right: var(--domain-horizontal-gap-right, 0);
  position: relative;
  overflow: hidden;
}
@media (min-width: 785px) {
  .o-domain-section__content {
    padding-top: 5rem;
    padding-bottom: 6rem;
    margin-left: var(--domain-horizontal-gap-left, 0);
  }
}
.o-domain-section__content::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: #F3F5F7;
}
@media (min-width: 785px) {
  .o-domain-section__content::after {
    border-top-left-radius: 2.7777777778rem;
    border-bottom-left-radius: 2.7777777778rem;
  }
}

.o-domain-section__content.--centered {
  margin-left: 1rem;
  margin-right: 1rem;
}
@media (min-width: 785px) {
  .o-domain-section__content.--centered {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}
@media (min-width: 785px) {
  .o-domain-section__content.--centered::after {
    border-top-right-radius: 2.7777777778rem;
    border-bottom-right-radius: 2.7777777778rem;
  }
}

[data-section-theme] {
  max-width: 1098px;
  margin-left: auto;
  margin-right: auto;
}

/*
 * 4_components
*/
/*
 * @var --anchor-menu-font-size
*/
.c-anchor-menu {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-around;
}
.c-anchor-menu > * {
  flex: 1 1 auto;
}

.c-anchor-menu__item {
  display: block;
  font-weight: 900;
  font-size: var(--anchor-menu-font-size, 1rem);
  text-align: center;
}
.c-anchor-menu__item:not(:last-of-type) {
  border-right: 1px solid #cfd8e2;
}

.c-anchor-menu__link {
  display: block;
  padding: 0 1em;
  font-weight: inherit;
  font-size: inherit;
  white-space: nowrap;
}
@media (min-width: 785px) {
  .c-anchor-menu__link {
    padding: 0 2.8em;
  }
}
@media (min-width: 785px) {
  .c-anchor-menu__link {
    transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .c-anchor-menu__link:hover {
    color: #32659c;
  }
}
.c-brand {
  display: inline-block;
}
.c-breadcrumb {
  padding: 2rem 1rem 1rem;
  background-color: #fff;
}
@media (min-width: 785px) {
  .c-breadcrumb {
    padding: 2rem 3rem 1rem;
  }
}

.c-breadcrumb__menu {
  display: flex;
  flex-flow: row nowrap;
}

.c-breadcrumb__item {
  display: inline-flex;
  flex-flow: row nowrap;
  font-size: 0.7857142857rem;
}
@media (min-width: 785px) {
  .c-breadcrumb__item {
    font-size: 0.8888888889rem;
  }
}
.c-breadcrumb__item:last-of-type {
  font-weight: 700;
  overflow: hidden;
}
.c-breadcrumb__item:last-of-type::after {
  display: none;
}
.c-breadcrumb__item::after {
  content: ">";
  display: block;
  width: 2.1428571429rem;
  height: 100%;
  text-align: center;
}
@media (min-width: 785px) {
  .c-breadcrumb__item::after {
    width: 1.6666666667rem;
  }
}

.c-breadcrumb__link {
  display: block;
  font-size: inherit;
  line-height: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 785px) {
  .c-breadcrumb__link {
    transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .c-breadcrumb__link:hover {
    color: #32659c;
  }
}
/*
 * @var --button-entry-font-size
 * @var --button-entry-font-weight
 * @var --button-entry-line-height
*/
.c-button-entry {
  display: flex;
  flex-flow: row nowrap;
  font-size: var(--button-entry-font-size, 1rem);
  line-height: var(--button-entry-line-height, inherit);
  font-weight: var(--button-entry-font-weight, inherit);
}
@media (min-width: 785px) {
  .c-button-entry {
    transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .c-button-entry:hover {
    color: #32659c;
  }
}

.c-button-entry__arrow {
  display: inline-block;
  width: 1.1em;
  margin-right: 0.6em;
  flex-shrink: 0;
  line-height: inherit;
  transform: translate(0, -6%);
}
.c-button-entry__arrow > img {
  width: 100%;
  vertical-align: middle;
}

.c-button-entry__line {
  display: block;
  margin-top: 10px;
  margin-left: 35px;
  padding-left: 36px;
  position: relative;
}

.c-button-entry__line::before {
  background-color: #000;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 31px;
  height: 1px;
}
/*
 * @var --button-link-font-size
 * @var --button-link-color
 * @var --button-link-line-height
*/
.c-button-link {
  display: inline-flex;
  align-items: center;
  text-align: center;
  font-size: var(--button-link-font-size, 1rem);
  line-height: var(--button-link-line-height, inherit);
  font-weight: 900;
}
.c-button-link.u-ff-en {
  font-weight: 800;
}
@media (min-width: 785px) {
  .c-button-link {
    cursor: pointer;
  }
}
.c-button-link.--arrow {
  padding-right: 0.5em;
}
@media (min-width: 785px) {
  .c-button-link.--arrow > [class$=icon] {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .c-button-link.--arrow:hover > [class$=icon] {
    transform: translateX(24%);
  }
}

.c-button-link__icon {
  display: inline-block;
  line-height: 1;
  width: 1.2em;
  margin-left: 0.5em;
  position: relative;
  top: -0.2em;
}
.c-button-link__icon > img {
  width: 100%;
  vertical-align: middle;
}
/*
 * @var --button-primary-font-size
 * @var --button-primary-line-height
*/
.c-button-primary {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 0.85714em 2em 0.85714em 3em;
  border: 0.1428571429rem solid transparent;
  border-radius: 5.5em;
  box-shadow: 0 0.1785714286rem 1.0714285714rem rgba(6, 30, 54, 0.15);
  color: #fff;
  background-color: #003166;
  font-size: var(--button-primary-font-size, 1rem);
  line-height: var(--button-primary-line-height, inherit);
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}
.c-button-primary.u-ff-en {
  font-weight: 800;
}
@media (min-width: 785px) {
  .c-button-primary {
    padding: 0.77777em 2em 0.77777em 3em;
    border: 4px solid transparent;
    cursor: pointer;
    transition: background-color 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0.2777777778rem 1.6666666667rem rgba(6, 30, 54, 0.15);
  }
  .c-button-primary:hover, .c-button-primary:focus, .c-button-primary:active {
    color: #fff;
    background-color: #32659c;
  }
}
.c-button-primary > .c-button-primary__icon {
  position: relative;
  margin-left: 1em;
}
.c-button-primary.--arrow > .c-button-primary__icon {
  top: -0.2em;
}
@media (min-width: 785px) {
  .c-button-primary.--arrow:hover > .c-button-primary__icon {
    transform: translateX(30%);
  }
}

.c-button-primary__icon {
  display: inline-block;
  line-height: 1;
  width: 1.2em;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.c-button-primary__icon > img {
  width: 100%;
  vertical-align: middle;
}
/*
 * @var --button-secondary-font-size
 * @var --button-secondary-line-height
*/
.c-button-secondary {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 0.8em 2em;
  border: 0.1428571429rem solid #fafbfc;
  border-radius: 5.5em;
  color: #05161A;
  background-color: #fafbfc;
  font-size: var(--button-secondary-font-size, 1.142857143rem);
  line-height: var(--button-secondary-line-height, inherit);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.c-button-secondary.u-ff-en {
  font-weight: 800;
}
@media (min-width: 785px) {
  .c-button-secondary {
    padding: 0.7em 2.2em;
    border: 4px solid #fafbfc;
    font-size: var(--button-secondary-font-size, 1rem);
    line-height: var(--button-secondary-line-height, inherit);
    cursor: pointer;
    transition: background-color 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .c-button-secondary:hover, .c-button-secondary:focus, .c-button-secondary:active {
    background-color: transparent;
  }
}
.c-button-secondary > .c-button-secondary__icon {
  position: relative;
  top: -0.2em;
}
.c-button-secondary.--next > .c-button-secondary__icon {
  margin-left: 0.5em;
}
@media (min-width: 785px) {
  .c-button-secondary.--next:hover > .c-button-secondary__icon {
    transform: translateX(30%);
  }
}
.c-button-secondary.--prev > .c-button-secondary__icon {
  margin-right: 0.5em;
}
@media (min-width: 785px) {
  .c-button-secondary.--prev:hover > .c-button-secondary__icon {
    transform: translateX(-30%);
  }
}

.c-button-secondary__icon {
  display: inline-block;
  line-height: 1;
  width: 1.2em;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.c-button-secondary__icon > img {
  width: 100%;
  vertical-align: middle;
}
.c-footer-copyright {
  text-align: center;
  font-size: 0.6666666667rem;
  line-height: 5;
}
.c-footer-locale {
  display: block;
}
.c-footer-locale > * + * {
  margin-top: 1rem;
}

.c-footer-locale__address {
  font-size: 0.8571428571rem;
  line-height: 1.5;
}
@media (min-width: 785px) {
  .c-footer-locale__address {
    font-size: 0.8888888889rem;
    line-height: inherit;
  }
}
.c-footer-locale__address > span {
  display: block;
}

.c-footer-locale__tel {
  font-size: 1.4285714286rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 785px) {
  .c-footer-locale__tel {
    font-size: 1.5555555556rem;
    line-height: inherit;
  }
}

.c-footer-locale__mail {
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 785px) {
  .c-footer-locale__mail {
    transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .c-footer-locale__mail:hover {
    color: #32659c;
  }
}
.c-footer-menu {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
}

.c-footer-menu__item {
  flex: 1 1 50%;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .c-footer-menu__item {
    padding-left: 2rem;
  }
}

.c-footer-menu__link {
  display: inline-block;
}
@media (min-width: 785px) {
  .c-footer-menu__link {
    transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .c-footer-menu__link:hover {
    color: #32659c;
  }
}
.c-header-dropdown {
  display: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-2px);
  transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  text-align: left;
  background-color: #fff;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  padding-top: 4rem;
  padding-right: 10.2564102564%;
  padding-left: 10.2564102564%;
  padding-bottom: 4rem;
}
@media (min-width: 785px) {
  .c-header-dropdown {
    display: block;
  }
}

.c-header-dropdown__venues {
  max-width: 1116px;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
}
.c-header-dropdown__venues > :nth-child(1) {
  flex: 1 1 324px;
}
.c-header-dropdown__venues > :nth-child(2) {
  flex: 1 1 792px;
}

.c-header-dropdown__venue {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  border-right: 1px solid #A7AFBA;
  --button-entry-line-height: 1.5;
}

.c-header-dropdown__label {
  display: block;
  padding-right: 1rem;
  font-size: 2.3333333333rem;
  font-weight: 800;
  line-height: 1.5;
  white-space: nowrap;
}

.c-header-dropdown__short {
  font-size: 0.7777777778rem;
}
.c-header-menu {
  position: static;
  background-color: #fff;
}
@media (min-width: 785px) {
  .c-header-menu {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .c-header-menu {
    justify-content: flex-end;
    text-align: left;
  }
}

.c-header-menu__item {
  display: block;
  position: static;
}
.c-header-menu__item + * {
  margin-top: 2rem;
}
@media (min-width: 785px) {
  .c-header-menu__item + * {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .c-header-menu__item:hover > .c-header-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

.c-header-menu__link {
  display: inline-block;
}
@media (min-width: 785px) {
  .c-header-menu__link {
    display: block;
    padding: 1.49rem 1.5rem;
  }
}

.c-header-menu__label {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.5;
}
@media (min-width: 785px) {
  .c-header-menu__label {
    position: relative;
    font-size: 1rem;
    font-weight: 700;
    line-height: 3;
  }
  .c-header-menu__label::after {
    content: none;
    display: block;
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0.2em;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background-color: #05161A;
  }
  .c-header-menu__label span {
    display: block;
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0.2em;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
}

.c-header-menu__short {
  display: block;
  font-size: 0.8571428571rem;
  line-height: 1.4;
}
@media (min-width: 785px) {
  .c-header-menu__short {
    display: none;
  }
}

@media (min-width: 785px) {
  .c-header-menu__link:hover > *::after {
    transform: scaleX(1);
  }
  .c-header-menu__link.--current > *::after {
    transform: scaleX(1);
  }
  .c-header-menu__link:hover .c-header-menu__label span {
    transform: scaleX(1);
  }
  .c-header-menu__link.--current .c-header-menu__label span {
    transform: scaleX(1);
  }
}
/*
 * @var --heading-funky-font-size
 * @var --heading-funky-line-height
*/
.c-heading-funky {
  display: inline-flex;
  align-items: center;
  line-height: var(--heading-funky-line-height, inherit);
  font-size: var(--heading-funky-font-size, 4.285714rem);
  font-weight: 800;
}
@media (min-width: 785px) {
  .c-heading-funky {
    font-size: var(--heading-funky-font-size, 6.666666rem);
  }
}
.c-heading-funky > img {
  display: inline-block;
  width: 0.9em;
  text-align: center;
  vertical-align: baseline;
}
.c-hero-image {
  position: relative;
}

.c-hero-image.--layered {
  padding-bottom: 9.2142857143rem;
}
@media (min-width: 785px) {
  .c-hero-image.--layered {
    padding-bottom: 3.5rem;
  }
}
.c-hero-image.--layered > :nth-child(1) {
  width: 20rem;
}
@media (min-width: 785px) {
  .c-hero-image.--layered > :nth-child(1) {
    width: 60.6060606061%;
  }
}
.c-hero-image.--layered > :nth-child(2) {
  width: 20rem;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media (min-width: 785px) {
  .c-hero-image.--layered > :nth-child(2) {
    width: 57.5757575758%;
  }
}

.c-hero-image__image {
  border-radius: 0.3571428571rem;
  box-shadow: 0 0.1785714286rem 0.7142857143rem rgba(13, 39, 65, 0.05);
}
@media (min-width: 785px) {
  .c-hero-image__image {
    box-shadow: 0 0.2777777778rem 1.6666666667rem rgba(13, 39, 65, 0.05);
    border-radius: 0.5555555556rem;
  }
}
.c-hero-image__image > img {
  width: 100%;
  border-radius: inherit;
}
.c-humberger {
  width: 3.4642857143rem;
  height: 3.1071428571rem;
  text-align: center;
}

.c-humberger__borders {
  width: 100%;
  height: 1.5714285714rem;
  position: relative;
  overflow: hidden;
}

.c-humberger__open {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}
.c-humberger__open > * {
  display: inline-block;
  width: 0.2857142857rem;
  height: 1.5714285714rem;
  transform: rotate(45deg);
  transform-origin: top center;
  position: absolute;
  top: 0.1rem;
  background-color: #05161A;
}
.c-humberger__open > :nth-of-type(1) {
  left: 32%;
}
.c-humberger__open > :nth-of-type(2) {
  left: 62%;
}
.c-humberger__open > :nth-of-type(3) {
  left: 92%;
}

.c-humberger__close {
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}
.c-humberger__close > * {
  display: inline-block;
  width: 1.5714285714rem;
  height: 0.2857142857rem;
  position: absolute;
  left: 30%;
  top: 40%;
  background-color: #05161A;
  transform-origin: center center;
}
.c-humberger__close > :nth-of-type(1) {
  transform: rotate(45deg);
}
.c-humberger__close > :nth-of-type(2) {
  transform: rotate(-45deg);
}

.c-humberger__label {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.c-inquiry {
  padding: 5rem 1rem 4rem;
  background-color: #fff;
  text-align: center;
}
@media (min-width: 785px) {
  .c-inquiry {
    padding: 4rem 1rem 3rem;
  }
}

.c-inquiry__heading {
  font-weight: 800;
  font-size: 2.2857142857rem;
}
@media (min-width: 785px) {
  .c-inquiry__heading {
    font-size: 3rem;
  }
}

.c-inquiry__action {
  margin-top: 2rem;
}
.c-jumbotron {
  font-weight: 900;
  font-size: 1.5rem;
}
@media (min-width: 785px) {
  .c-jumbotron {
    font-size: 2.3333333333rem;
  }
}

.c-jumbotron__about {
  display: block;
  padding-left: 2.5em;
  position: relative;
  font-size: inherit;
}
@media (min-width: 785px) {
  .c-jumbotron__about {
    font-size: 2rem;
  }
}
.c-jumbotron__about::before {
  content: "";
  width: 1.7em;
  height: 4px;
  background-color: #05161A;
  position: absolute;
  left: 0;
  top: 1em;
}
.c-megamenu {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  row-gap: 1rem;
  background-color: #fff;
}

.c-megamenu__item {
  flex: 1 1 50%;
  padding-left: 11.3636363636%;
  line-height: 1.5;
  --button-entry-font-size: 1rem;
  --button-entry-font-weight: 700;
}

.c-megamenu-grid {
  display: grid;
  grid-template-columns: auto auto;
  align-items: flex-start;
  row-gap: 1rem;
  background-color: #fff;
}

.c-megamenu__item-grid {
  padding-left: 11.3636363636%;
  line-height: 1.5;
  --button-entry-font-size: 1rem;
  --button-entry-font-weight: 700;
}
/*
 * @var news-headline-font-size
*/
.c-news-headline {
  display: inline-block;
  vertical-align: middle;
  font-size: var(--news-headline-font-size, inherit);
}
@media (min-width: 785px) {
  .c-news-headline:hover .c-news-headline__text {
    color: #32659c;
  }
}

@media (min-width: 785px) {
  .c-news-headline__columns {
    display: inline-flex;
  }
}
@media (min-width: 785px) {
  .c-news-headline__columns > :nth-child(1) {
    flex-shrink: 0;
  }
}

.c-news-headline__date {
  color: inherit;
  font-weight: 700;
  font-size: inherit;
}
@media (min-width: 785px) {
  .c-news-headline__date {
    padding-right: 2em;
    margin-right: 2em;
    position: relative;
  }
  .c-news-headline__date::after {
    content: "";
    width: 1px;
    height: 2em;
    background-color: #000;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.c-news-headline__text {
  color: inherit;
  font-size: inherit;
  transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
/*
 * @var --product-goof-left-width
 * @var --product-goof-right-width
 * @var --product-goof-image-background
 * @var --product-goof-shadow-prop
*/
.c-product-goof > * + * {
  margin-top: 1rem;
}
@media (min-width: 992px) {
  .c-product-goof {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .c-product-goof > * + * {
    margin-top: 0;
  }
  .c-product-goof > :nth-child(1) {
    flex: 0 1 var(--product-goof-left-width, 450px);
  }
  .c-product-goof > :nth-child(2) {
    flex: 1 1 var(--product-goof-right-width, 594px);
    margin-left: 3rem;
  }
}

.c-product-goof__image {
  display: block;
  border-radius: 0.3571428571rem;
  box-shadow: var(--product-goof-shadow-prop, 0 0.1785714286rem 0.7142857143rem rgba(13, 39, 65, 0.05));
  background-color: var(--product-goof-image-background, #fff);
  overflow: hidden;
}
@media (min-width: 785px) {
  .c-product-goof__image {
    border-radius: 0.5555555556rem;
    box-shadow: var(--product-goof-shadow-prop, 0 0.2777777778rem 1.1111111111rem rgba(13, 39, 65, 0.05));
  }
  .c-product-goof__image:hover > img {
    transform: scale(1.1);
  }
}
.c-product-goof__image > img {
  width: 100%;
  border-radius: inherit;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.c-product-goof__summary > * + * {
  margin-top: 1rem;
}

.c-product-goof__name {
  font-weight: 900;
  font-size: 1.2857142857rem;
  line-height: 1.5;
}
@media (min-width: 785px) {
  .c-product-goof__name {
    font-size: 1.3333333333rem;
  }
}

.c-product-goof__richtext {
  overflow: hidden;
}
.c-product-goof__richtext strong, .c-product-goof__richtext b {
  font-weight: 900;
}
.c-product-goof__richtext ul, .c-product-goof__richtext ol {
  list-style-type: revert;
}
.c-product-goof__richtext ul, .c-product-goof__richtext ol, .c-product-goof__richtext li, .c-product-goof__richtext dl, .c-product-goof__richtext dt, .c-product-goof__richtext dd {
  margin: revert;
  padding: revert;
}
.c-product-goof__richtext a {
  text-decoration: underline;
  color: #05161A;
}
@media (min-width: 785px) {
  .c-product-goof__richtext a:hover {
    text-decoration: none;
    color: #05161A;
  }
}
.c-product-partner {
  display: flex;
  align-items: flex-start;
}
.c-product-partner > :nth-child(1) {
  flex: 1 0 7.8571428571rem;
}
@media (min-width: 992px) {
  .c-product-partner > :nth-child(1) {
    flex-basis: 140px;
  }
}
@media (min-width: 1200px) {
  .c-product-partner > :nth-child(1) {
    flex-basis: 180px;
  }
}
.c-product-partner > :nth-child(2) {
  flex: 1 1 auto;
  margin-left: 1rem;
}
@media (min-width: 785px) {
  .c-product-partner > :nth-child(2) {
    margin-left: 2rem;
  }
}
@media (min-width: 785px) {
  .c-product-partner:hover .c-product-partner__image > img {
    transform: scale(1.1);
  }
  .c-product-partner:hover .c-product-partner__name {
    text-decoration: none;
  }
}

.c-product-partner__image {
  display: block;
  border-radius: 0.3571428571rem;
  box-shadow: 0 0.1785714286rem 0.7142857143rem rgba(13, 39, 65, 0.05);
  background-color: #fff;
  overflow: hidden;
}
@media (min-width: 785px) {
  .c-product-partner__image {
    border-radius: 0.5555555556rem;
    box-shadow: 0 0.2777777778rem 1.1111111111rem rgba(13, 39, 65, 0.05);
  }
}
.c-product-partner__image > img {
  width: 100%;
  border-radius: inherit;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.c-product-partner__info > * + * {
  margin-top: 1rem;
}

.c-product-partner__name {
  font-weight: 900;
  text-decoration: underline;
  font-size: 1.2857142857rem;
}
@media (min-width: 785px) {
  .c-product-partner__name {
    font-size: 1rem;
  }
}

.c-product-partner__summary {
  font-size: 1rem;
}
@media (min-width: 785px) {
  .c-product-partner__summary {
    font-size: 0.8888888889rem;
  }
}
.c-youtube-modal {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
}
.c-youtube-modal.v-enter-active {
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.c-youtube-modal.v-leave-active {
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s;
}
.c-youtube-modal.v-enter, .c-youtube-modal.v-leave-to {
  opacity: 0;
}
.c-youtube-modal.v-enter-to, .c-youtube-modal.v-leave {
  opacity: 1;
}

.c-youtube-modal__window {
  width: 90%;
  position: relative;
}
@media (min-width: 785px) {
  .c-youtube-modal__window {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .c-youtube-modal__window {
    width: 980px;
  }
}
.c-youtube-modal__window.v-enter-active {
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s;
}
.c-youtube-modal__window.v-leave-active {
  transition: opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.c-youtube-modal__window.v-enter, .c-youtube-modal__window.v-leave-to {
  opacity: 0;
}
.c-youtube-modal__window.v-enter-to, .c-youtube-modal__window.v-leave {
  opacity: 1;
}

.c-youtube-modal__close {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: -2.6rem;
  right: 0;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
  padding: 0;
}
@media (min-width: 576px) {
  .c-youtube-modal__close {
    width: 1.6rem;
    height: 1.6rem;
    top: -2rem;
  }
}
@media (min-width: 785px) {
  .c-youtube-modal__close {
    width: 2rem;
    height: 2rem;
    top: -2.4rem;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .c-youtube-modal__close:hover {
    transform: scale(1.2);
  }
}
.c-youtube-modal__close::before, .c-youtube-modal__close::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  transform-origin: center center;
}
.c-youtube-modal__close::before {
  transform: rotate(45deg);
}
.c-youtube-modal__close::after {
  transform: rotate(-45deg);
}

.c-youtube-modal__content {
  position: relative;
  overflow: hidden;
  background-color: #000;
}
.c-youtube-modal__content::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.c-youtube-modal__content > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.c-btn01 a {
  border-radius: 56px;
  border: 6px solid #003166;
  background: #fff;
  color: #003166;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px; /* 200% */
  display: inline-block;
  padding: 12px 28px;
}
.c-btn01 a span {
  background: url(https://8810322.fs1.hubspotusercontent-na1.net/hubfs/8810322/corporate-website/solution/ico_arrow01.svg) no-repeat right 5px center;
  display: inline-block;
  padding-right: 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn01 a:hover span {
  background-position: right center;
}
.c-btn01.is_blue a {
  color: #fff;
  background-color: #003166;
}
.c-btn01.is_blue a span {
  background-image: url(https://8810322.fs1.hubspotusercontent-na1.net/hubfs/8810322/corporate-website/solution/ico_arrow02.svg);
}
@media screen and (max-width: 767px) {
  .c-btn01 a {
    border-radius: 32px;
    border: 6px solid #003166;
    font-size: 14px;
    line-height: 2;
    padding: 8px 24px;
  }
}

/*
 * 5_templates
 *  ページユニークなものは 5_templates ディレクトリに格納。
 *  対象のテンプレート側で `require_css` をして適用。
 *  ここにインクルードはしないこと。
*/

/*
 * 6_utils
*/
.u-none {
  display: none !important;
}

.u-block {
  display: block !important;
  font-size: 0 !important;
}

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

@media (min-width: 576px) {
  .u-sm-none {
    display: none !important;
  }

  .u-sm-block {
    display: block !important;
    font-size: 0 !important;
  }

  .u-sm-inline {
    display: inline-block !important;
  }
}
@media (min-width: 785px) {
  .u-md-none {
    display: none !important;
  }

  .u-md-block {
    display: block !important;
    font-size: 0 !important;
  }

  .u-md-inline {
    display: inline-block !important;
  }
}
@media (min-width: 992px) {
  .u-lg-none {
    display: none !important;
  }

  .u-lg-block {
    display: block !important;
    font-size: 0 !important;
  }

  .u-lg-inline {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .u-xl-none {
    display: none !important;
  }

  .u-xl-block {
    display: block !important;
    font-size: 0 !important;
  }

  .u-xl-inline {
    display: inline-block !important;
  }
}
.u-ff-en {
  font-family: "Montserrat", sans-serif;
  font-feature-settings: normal;
  letter-spacing: normal;
}