@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 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. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

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

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

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

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

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

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(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.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

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

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

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

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

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

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

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -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 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

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

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

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

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Restrict sizing to the page width in all browsers (opinionated).
 */
:where(iframe, img, input, video, select, textarea) {
  height: auto;
  max-width: 100%;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
:where(button, input, select, textarea) {
  background-color: transparent; /* 1 */
  border: 1px solid WindowFrame; /* 1 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  letter-spacing: inherit; /* 2 */
  padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(select) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center/1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Don't show the arrow for multiple choice selects
 */
:where(select[multiple]) {
  background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */
:where([type=color i], [type=range i]) {
  border-width: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-tap-highlight-color: revert;
  cursor: revert;
  min-width: 375px;
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  line-break: normal;
  overflow-wrap: anywhere;
}
@media not all and (max-width: 47.9375em) {
  html {
    min-width: 1200px;
  }
}

body {
  font-size: 1.6rem;
  color: #000;
}

li {
  list-style-type: none;
}

th {
  font-weight: inherit;
}

address {
  font-style: inherit;
}

fieldset {
  border: 0;
  min-width: 0;
}

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

h1 {
  margin: 0;
}

cite,
dfn,
em,
i,
var {
  font-style: inherit;
}

small {
  font-size: inherit;
}

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

button,
input,
select,
textarea {
  border: 0;
  padding: 0;
}
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
}

button {
  touch-action: manipulation;
}
button:not(:disabled, [aria-disabled=true]) {
  cursor: pointer;
}

[hidden][hidden] {
  display: none !important;
}

.c-button-link {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #b5cdf2;
  filter: drop-shadow(3px 3px 0 rgba(92, 136, 201, 0.11));
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  text-align: center;
  color: #0a0a0a;
  padding-block: 17px;
  position: relative;
  transition: filter 0.3s;
  will-change: filter;
}
@media (max-width: 47.9375em) {
  .c-button-link {
    padding-block: 14px;
    font-size: 1.5rem;
  }
}
@media not all and (max-width: 47.9375em) {
  .c-button-link:hover {
    filter: drop-shadow(10px 10px 0 rgba(92, 136, 201, 0.11));
  }
  .c-button-link:hover::before {
    opacity: 1;
  }
  .c-button-link:hover::after {
    margin-right: -3px;
  }
}
.c-button-link::before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 10px;
  border: 3px solid #6685ba;
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.c-button-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  border-top: solid 2px #6686ba;
  border-right: solid 2px #6686ba;
  width: 9px;
  height: 9px;
  content: "";
  transition: margin 0.3s;
}
@media (max-width: 47.9375em) {
  .c-button-link::after {
    right: 16px;
  }
}

.c-button-link--pdf::after {
  width: 20px;
  height: 24px;
  border: 0;
  right: 16px;
  background-image: url("/assets/images/components/icon_pdf.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
.c-button-link--pdf:hover::after {
  margin: 0;
}

.c-disclosure-details {
  overflow: hidden;
  transition: visibility 0.3s, height 0.3s;
}

.c-disclosure-details[aria-hidden=true] {
  visibility: hidden;
  height: 0;
  transition: visibility 0.3s, height 0.3s;
}

.c-footer {
  border-top: 2px solid #e6e6e6;
  padding: 25px 0 50px;
}
@media (max-width: 47.9375em) {
  .c-footer {
    border-width: 1px;
    padding: 20px 0 30px;
  }
}

.c-footer__container {
  max-width: 1180px;
  margin: auto;
}

.c-footer__top {
  margin-bottom: 20px;
}
@media (max-width: 47.9375em) {
  .c-footer__top {
    width: calc(100% - 30px);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    gap: 0 25px;
  }
}

.c-footer__logo {
  width: 103px;
  margin: auto;
}
@media (max-width: 47.9375em) {
  .c-footer__logo {
    width: 80px;
    margin: 0;
  }
}
.c-footer__logo img {
  width: 100%;
}

.c-footer__name {
  font-size: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.8;
  text-align: center;
  color: #333;
  margin-top: 10px;
}
@media (max-width: 47.9375em) {
  .c-footer__name {
    text-align: left;
    margin-top: 0;
  }
}

.c-footer__nav {
  padding: 25px 0;
  border-top: 1px solid #e6e6e6;
}
@media (max-width: 47.9375em) {
  .c-footer__nav {
    padding: 0 15px 8px;
  }
}

.c-footer__nav-list {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 47.9375em) {
  .c-footer__nav-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-footer__nav-item {
  position: relative;
  height: 100%;
}
@media not all and (max-width: 47.9375em) {
  .c-footer__nav-item:first-of-type a {
    padding-left: 0;
  }
  .c-footer__nav-item:first-of-type::before {
    content: none;
  }
  .c-footer__nav-item::before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #e5e5e5;
  }
  .c-footer__nav-item a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px 0 20px;
    font-size: 1.4rem;
    line-height: 1.2857142857;
    position: relative;
  }
  .c-footer__nav-item a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: rotate(45deg) translateY(-50%);
    border-top: solid 2px #6686ba;
    border-right: solid 2px #6686ba;
    width: 9px;
    height: 9px;
    content: "";
  }
}
@media (max-width: 47.9375em) {
  .c-footer__nav-item {
    min-height: 60px;
  }
  .c-footer__nav-item a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    line-height: 1.3846153846;
    padding: 12px 0;
  }
  .c-footer__nav-item a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: rotate(45deg) translateY(-50%);
    border-top: solid 2px #6686ba;
    border-right: solid 2px #6686ba;
    width: 8px;
    height: 8px;
    content: "";
  }
  .c-footer__nav-item:nth-child(even)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 34px;
    background-color: #e6e6e6;
    transform: translateY(-50%);
  }
  .c-footer__nav-item:nth-child(even) a {
    padding-left: 15px;
  }
  .c-footer__nav-item:nth-child(even) a::after {
    right: 7px;
  }
  .c-footer__nav-item:nth-child(n+3) {
    border-top: 1px solid #e6e6e6;
  }
}

.c-footer__bottom {
  border-top: 1px solid #e6e6e6;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 47.9375em) {
  .c-footer__bottom {
    padding-top: 15px;
    display: block;
  }
}

@media (max-width: 47.9375em) {
  .c-footer__bottom-nav {
    width: calc(100% - 30px);
    margin: auto;
    padding-bottom: 15px;
    border-bottom: 1px solid #e6e6e6;
  }
}

.c-footer__bottom-nav-list {
  display: flex;
  margin-left: -20px;
}
@media (max-width: 47.9375em) {
  .c-footer__bottom-nav-list {
    justify-content: center;
    margin-left: -16px;
  }
}

.c-footer__bottom-nav-item {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.5833333333;
  text-align: center;
  color: #333;
}
@media (max-width: 47.9375em) {
  .c-footer__bottom-nav-item:last-of-type a {
    padding-right: 0;
  }
}
.c-footer__bottom-nav-item:nth-child(n+2) {
  border-left: 1px solid #e6e6e6;
}
.c-footer__bottom-nav-item a {
  padding: 0 20px;
  display: block;
}
@media (max-width: 47.9375em) {
  .c-footer__bottom-nav-item a {
    padding: 0 16px;
  }
}

.c-footer__copy {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.8333333333;
  text-align: right;
  color: #333;
}
@media (max-width: 47.9375em) {
  .c-footer__copy {
    margin-top: 25px;
    font-size: 1rem;
    line-height: 2.2;
    text-align: center;
  }
}

.c-header__container {
  display: flex;
  justify-content: space-between;
  padding: 22px 30px;
  background-color: #fff;
}
@media (max-width: 47.9375em) {
  .c-header__container {
    padding: 0;
  }
}

.c-header__logos {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
@media (max-width: 47.9375em) {
  .c-header__logos {
    width: calc(100% - 58px);
    position: relative;
    z-index: 50;
    padding: 12px 16px;
    background-color: #fff;
  }
}

@media (max-width: 47.9375em) {
  .c-header__logo {
    width: 80px;
  }
}

.c-header__app-logo {
  width: 44px;
}
@media (max-width: 47.9375em) {
  .c-header__app-logo {
    width: 34px;
  }
}

.c-header__name {
  font-size: 1.2rem;
  line-height: 1.3333333333;
  font-weight: 400;
}

@media (max-width: 47.9375em) {
  .c-header__nav {
    display: none;
  }
}

.c-header__nav-list {
  display: flex;
  align-items: center;
}

.c-header__nav-item {
  position: relative;
}
.c-header__nav-item:first-of-type::before {
  content: none;
}
.c-header__nav-item::before {
  content: "";
  width: 1px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #e5e5e5;
}
.c-header__nav-item a {
  display: block;
  padding: 0 15px;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  position: relative;
  transition: font-weight 0.3s, color 0.3s;
}
.c-header__nav-item a:hover {
  color: #6686ba;
  font-weight: 600;
}

.c-header__nav-item--current a {
  color: #6686ba;
  font-weight: 600;
}
.c-header__nav-item--current a::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: calc(100% - 10px);
  height: 3px;
  background-color: #6686ba;
  border-radius: 3px;
  transform: translateX(-50%);
}
.c-header__menu-open {
  width: 58px;
  height: 58px;
}
@media not all and (max-width: 47.9375em) {
  .c-header__menu-open {
    display: none;
  }
}

.c-header__menu-close {
  position: fixed;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  z-index: 1000;
  font-size: 12px;
}

.c-pagetop {
  display: block;
  width: 52px;
  height: 52px;
  position: fixed;
  bottom: 20px;
  right: 20px;
}
@media (max-width: 47.9375em) {
  .c-pagetop {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }
}

.c-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 20;
  display: flex;
  flex-direction: column;
  overflow: auto;
  transition: opacity 0.3s ease;
}

.c-menu[aria-hidden=true] {
  display: flex;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.4s, opacity 0.4s;
}

.c-menu__backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #fff;
}

.c-menu__document {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  padding-bottom: 36px;
  margin: 63px auto 0;
}

.c-menu__links {
  padding: 0 15px;
  border-bottom: 1px solid #e7e7e7;
}
.c-menu__links li {
  border-bottom: 1px solid #e7e7e7;
  font-size: 14px;
}
.c-menu__links li:last-child {
  border-bottom: 0;
}
.c-menu__links li a {
  display: block;
  padding: 18px 30px 18px 0;
  position: relative;
}
.c-menu__links li a::after {
  content: "";
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: rotate(45deg) translateY(-50%);
  border-top: solid 2px #6686ba;
  border-right: solid 2px #6686ba;
  width: 9px;
  height: 9px;
  content: "";
  transition: margin 0.3s;
}

.c-menu__btns {
  width: calc(100% - 30px);
  display: flex;
  justify-content: space-between;
  margin: 30px 15px 0;
}

.c-menu__btn {
  width: 32%;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  border: 1px solid #e7e7e7;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}
.c-menu__btn a {
  display: block;
  text-align: center;
  color: #333;
  position: relative;
  padding: 60px 5px 20px;
}
.c-menu__btn a::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-size: 100% auto;
}

.c-menu__btn--doc a::before {
  width: 27px;
  height: 35px;
  background-image: url("/assets/images/components/menu-icon_doc.svg");
}

.c-menu__btn--mail a::before {
  width: 29px;
  height: 35px;
  background-image: url("/assets/images/components/menu-icon_mail.svg");
}

.c-menu__btn--contact a::before {
  width: 33px;
  height: 35px;
  background-image: url("/assets/images/components/menu-icon_contact.svg");
}

.c-movie-dialog {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0%;
  z-index: 100;
  z-index: 9999;
  transition: visibility 0s 0.3s, opacity 0.3s ease-out;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.c-movie-dialog.active .c-movie-dialog__content {
  opacity: 1;
}

.c-movie-dialog__content {
  -ms-overflow-style: none;
  position: relative;
  will-change: transform;
  margin: 0 auto;
  padding: 0;
  width: 94%;
  transition: transform 0.3s ease-out;
}
@media not all and (max-width: 47.9375em) {
  .c-movie-dialog__content {
    max-width: 1000px;
  }
}
.c-movie-dialog__content::-webkit-scrollbar {
  display: none;
}

.c-movie-dialog.active {
  visibility: visible;
  opacity: 100%;
  transition: opacity 0.5s;
  pointer-events: all;
}

.c-movie-dialog__close {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 999;
  width: 40px;
  height: 40px;
}
@media (max-width: 47.9375em) {
  .c-movie-dialog__close {
    top: -30px;
    right: 0;
    width: 20px;
    height: 20px;
  }
}
.c-movie-dialog__close::before, .c-movie-dialog__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  width: 45px;
  height: 2px;
  content: "";
}
@media (max-width: 47.9375em) {
  .c-movie-dialog__close::before, .c-movie-dialog__close::after {
    width: 25px;
  }
}
.c-movie-dialog__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-movie-dialog__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media not all and (max-width: 47.9375em) {
  .c-movie-dialog__close:hover {
    opacity: 70%;
  }
}

.c-mv {
  background-color: #ebf1f5;
  height: 160px;
}
@media (max-width: 47.9375em) {
  .c-mv {
    height: 110px;
  }
}

.c-mv__container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-mv__heading {
  font-weight: 600;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #0e2a57;
}
@media (max-width: 47.9375em) {
  .c-mv__heading {
    font-size: 2.4rem;
    line-height: 1.3333333333;
  }
}
.c-mv__heading span {
  position: relative;
}
.c-mv__heading span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.c-mv__heading--usage span {
  padding-left: 65px;
}
@media (max-width: 47.9375em) {
  .c-mv__heading--usage span {
    padding-left: 0;
  }
}
.c-mv__heading--usage span::before {
  width: 52px;
  height: 47px;
  background-image: url("/assets/images/components/icon01.svg");
  background-size: 100% auto;
}
@media (max-width: 47.9375em) {
  .c-mv__heading--usage span::before {
    left: -55px;
    width: 47px;
    height: 43px;
  }
}

@media (max-width: 47.9375em) {
  .c-mv__heading--maker_app_dl {
    padding-left: 82px;
  }
}
.c-mv__heading--maker_app_dl span {
  padding-left: 70px;
}
@media (max-width: 47.9375em) {
  .c-mv__heading--maker_app_dl span {
    padding-left: 0;
  }
}
.c-mv__heading--maker_app_dl span::before {
  width: 58px;
  height: 55px;
  background-image: url("/assets/images/components/icon02.svg");
  background-size: 100% auto;
}
@media (max-width: 47.9375em) {
  .c-mv__heading--maker_app_dl span::before {
    margin-top: 3px;
    left: -80px;
    width: 60px;
    height: 57px;
  }
}

@media (max-width: 47.9375em) {
  .c-mv__heading--maker_app_manual {
    padding-left: 82px;
  }
}
.c-mv__heading--maker_app_manual span {
  padding-left: 60px;
}
@media (max-width: 47.9375em) {
  .c-mv__heading--maker_app_manual span {
    padding-left: 0;
  }
}
.c-mv__heading--maker_app_manual span::before {
  margin-top: 5px;
  margin-left: -16px;
  width: 67px;
  height: 49px;
  background-image: url("/assets/images/components/icon03.svg");
  background-size: 100% auto;
}
@media (max-width: 47.9375em) {
  .c-mv__heading--maker_app_manual span::before {
    margin-top: 0;
    margin-left: 0;
    left: -84px;
    width: 70px;
    height: 52px;
  }
}

@media (max-width: 47.9375em) {
  .c-mv__heading--manual {
    padding-left: 52px;
  }
}
.c-mv__heading--manual span {
  padding-left: 60px;
}
@media (max-width: 47.9375em) {
  .c-mv__heading--manual span {
    padding-left: 0;
  }
}
.c-mv__heading--manual span::before {
  width: 48px;
  height: 57px;
  background-image: url("/assets/images/components/icon04.svg");
  background-size: 100% auto;
}
@media (max-width: 47.9375em) {
  .c-mv__heading--manual span::before {
    left: -65px;
  }
}

@media (max-width: 47.9375em) {
  .c-mv__heading--faq {
    padding-left: 64px;
  }
}
.c-mv__heading--faq span {
  padding-left: 72px;
}
@media (max-width: 47.9375em) {
  .c-mv__heading--faq span {
    padding-left: 0;
  }
}
.c-mv__heading--faq span::before {
  width: 64px;
  height: 51px;
  background-image: url("/assets/images/components/icon05.svg");
  background-size: 100% auto;
}
@media (max-width: 47.9375em) {
  .c-mv__heading--faq span::before {
    left: -75px;
  }
}

@media (max-width: 47.9375em) {
  .c-mv__heading--contact {
    padding-left: 64px;
  }
}
.c-mv__heading--contact span {
  padding-left: 72px;
}
@media (max-width: 47.9375em) {
  .c-mv__heading--contact span {
    padding-left: 0;
  }
}
.c-mv__heading--contact span::before {
  width: 50px;
  height: 49px;
  margin-left: 10px;
  background-image: url("/assets/images/components/icon06.svg");
  background-size: 100% auto;
}
@media (max-width: 47.9375em) {
  .c-mv__heading--contact span::before {
    margin: 0;
    left: -62px;
  }
}

.c-mv:has(.c-mv__heading--sitemap),
.c-mv:has(.c-mv__heading--information) {
  height: 140px;
}
@media (max-width: 47.9375em) {
  .c-mv:has(.c-mv__heading--sitemap),
  .c-mv:has(.c-mv__heading--information) {
    height: 80px;
  }
}

.c-mv__heading--sitemap,
.c-mv__heading--information {
  font-size: 2.8rem;
}
@media (max-width: 47.9375em) {
  .c-mv__heading--sitemap,
  .c-mv__heading--information {
    font-size: 2.4rem;
  }
}

.l-container {
  width: 1080px;
  margin: auto;
}
@media (max-width: 47.9375em) {
  .l-container {
    width: calc(100% - 30px);
  }
}

.u-d-none {
  display: none !important;
}

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

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

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

.u-d-grid {
  display: grid !important;
}

.u-d-table {
  display: table !important;
}

.u-d-table-row {
  display: table-row !important;
}

.u-d-table-cell {
  display: table-cell !important;
}

.u-d-flex {
  display: flex !important;
}

.u-d-inline-flex {
  display: inline-flex !important;
}

@media (max-width: 47.9375em) {
  .u-d-sp-none {
    display: none !important;
  }
  .u-d-sp-inline {
    display: inline !important;
  }
  .u-d-sp-inline-block {
    display: inline-block !important;
  }
  .u-d-sp-block {
    display: block !important;
  }
  .u-d-sp-grid {
    display: grid !important;
  }
  .u-d-sp-table {
    display: table !important;
  }
  .u-d-sp-table-row {
    display: table-row !important;
  }
  .u-d-sp-table-cell {
    display: table-cell !important;
  }
  .u-d-sp-flex {
    display: flex !important;
  }
  .u-d-sp-inline-flex {
    display: inline-flex !important;
  }
}
@media (max-width: 75em) {
  .u-d-lg-none {
    display: none !important;
  }
  .u-d-lg-inline {
    display: inline !important;
  }
  .u-d-lg-inline-block {
    display: inline-block !important;
  }
  .u-d-lg-block {
    display: block !important;
  }
  .u-d-lg-grid {
    display: grid !important;
  }
  .u-d-lg-table {
    display: table !important;
  }
  .u-d-lg-table-row {
    display: table-row !important;
  }
  .u-d-lg-table-cell {
    display: table-cell !important;
  }
  .u-d-lg-flex {
    display: flex !important;
  }
  .u-d-lg-inline-flex {
    display: inline-flex !important;
  }
}
.u-visually-hidden-focusable:not(:focus, :focus-within) {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  visibility: visible !important;
  opacity: 0% !important;
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  width: 4px !important;
  height: 4px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.u-visually-hidden {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  visibility: visible !important;
  opacity: 0% !important;
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  width: 4px !important;
  height: 4px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}